Jump to content

Initialize Ore Recipes with a list of items


Bedrock_Miner

Recommended Posts

Hello everyone,

 

I recently wondered if it would be possible to register an ore recipe directly with a list of items as mapping for a recipe letter.

Internally, they are put into a list anyway, so it would be convenient to do that in registration like this:

addRecipe(new ItemStack(MagicumItems.copper_chestplate),  "# #","###","###", '#', Arrays.asList(MagicumItems.copper_ingot, MagicumItems.hardened_copper));

 

I know, that example is not perfect, because I could simply use oredict, but what I really want to do is the following:

 

I have created an item that is registered as two oredict names. I want both names to be mapped to the item in a recipe, but I don't want to create every recipe twice. Instead, i just want to do it like this:

List<ItemStack> list = new LinkedList<ItemStack>();
list.addAll(OreDictionary.getOres("firstName");
list.addAll(OreDictionary.getOres("secondName");
addRecipe(new ItemStack(result),			"###","###","###",	'#', list);

This is much easier, because the whole process can be packed into a simple method that reads every name for a stack and packs it into the recipe.

Is there a simple way of doing that or do I need to create some dirty workarounds?

Link to comment
Share on other sites

Use an OreDictionary recipe (ShapedOreRecipe and ShapelessOreRecipe), you can then use OreDictionary names instead of items/blocks/itemstacks directly.

 

GameRegistry.addRecipe(new ShapedOreRecipe(YourItems.output, "# #", "###", "###), '#' "ingotCopper");

Don't make mods if you don't know Java.

Check out my website: http://shadowfacts.net

Developer of many mods

Link to comment
Share on other sites

The method addRecipe in vanilla code does not check for a list of item has an argument..

 

You could create your own method that allows a list of item. You could then then calls the addRecipe in vanilla.

 

Or you could create your own Recipe class that implements IRecipe..

I might be terribly wrong.. Like really, really wrong. But I'm just trying to help.

Link to comment
Share on other sites

Most of the things you program in your life will be "dirty workarounds."  Some of them (like this one) is called a "helper method."

 

http://www.stilldrinking.org/programming-sucks

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Most of the things you program in your life will be "dirty workarounds."  Some of them (like this one) is called a "helper method."

 

http://www.stilldrinking.org/programming-sucks

That is the most funniest thing I have read in a loong while

 

Here's a rebuttal.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.