Jump to content

(1.12.2)[SOLVED] Questions about Recipes


Bektor

Recommended Posts

Hi there,

 

I've got a few questions regarding recipes in Forge 1.12.2:

 

  1. What 'types' does forge come with besides the normal minecraft:shaped_recipe and minecraft:smelting stuff.
  2. How can one register his own type.
  3. How can I create a recipe which returns multiply different items, for example an emtpy bucket and an apple (in this case a full bucket was provided) or an apple and a dirt block.

 

Thx in advance.

Bektor

 

EDIT: see here

Edited by Bektor

Developer of Primeval Forest.

Link to comment
Share on other sites

27 minutes ago, Bektor said:
  1. What 'types' does forge come with besides the normal minecraft:shaped_recipe and minecraft:smelting stuff.

there's also a couple of Forge ones, for oredict.

27 minutes ago, Bektor said:
  1. How can one register his own type.

You need a _factories.json file:

https://github.com/Draco18s/ReasonableRealism/blob/1.12.1/src/main/resources/assets/hardlib/recipes/_factories.json

27 minutes ago, Bektor said:
  1. How can I create a recipe which returns multiply different items, for example an emtpy bucket and an apple (in this case a full bucket was provided) or an apple and a dirt block.

Buckets of liquids automatically return an empty bucket due to the Container Item mechanics. This has nothing to do with the recipe.

  • Thanks 1

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

A "factory" in the programming sense is a class and code that constructs an object of another class.

https://en.wikipedia.org/wiki/Factory_(object-oriented_programming)

 

The _factories.json file points the string key name from the type to a class reference. Specifically the factory that has a known constructor and input method that the JSON segment needing to be deserialized can be passed to in order to construct the unknown object type:

 

https://github.com/Draco18s/ReasonableRealism/blob/1.12.1/src/main/java/com/draco18s/hardlib/api/recipes/RecipeToolMold.java#L245

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

  • 2 weeks later...
On 5/17/2018 at 6:35 PM, Draco18s said:

Buckets of liquids automatically return an empty bucket due to the Container Item mechanics. This has nothing to do with the recipe. 

But what about custom items?

 

I'm also wondering if it is possible to define multiply recipes for the same item and how this should be done?

Developer of Primeval Forest.

Link to comment
Share on other sites

8 minutes ago, Bektor said:

But what about custom items?

Override hasContainerItem and getContainerItem :|

Quote

I'm also wondering if it is possible to define multiply recipes for the same item and how this should be done?

Probably not. I mean how would that work, a bucket of milk returns a glass bottle, but a bucket of water returns a bucket?

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

2 minutes ago, Draco18s said:

Probably not. I mean how would that work, a bucket of milk returns a glass bottle, but a bucket of water returns a bucket? 

Well: Crafting a bed might need wool, but you might also use stone. :P

Different recipe, same result.

Developer of Primeval Forest.

Link to comment
Share on other sites

That's...not even related to container items...

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.