Crock Pot

Crock Pot

328k Downloads

[Request]jei integration

khjxiaogu opened this issue ยท 5 comments

commented
commented

In fact, I have made JEI compatibility for Food Values in the next version, but I have no clue about JEI compatibility for Crock Pot for now. Because the implementation of the Crock Pot is rather complicated, it is implemented by judging whether the input meets some requirements, and I don't know how to implement its JEI compatibility to illustrate the recipe of food more clearly for the time being.

commented

In fact, I have made JEI compatibility for Food Values in the next version, but I have no clue about JEI compatibility for Crock Pot for now. Because the implementation of the Crock Pot is rather complicated, it is implemented by judging whether the input meets some requirements, and I don't know how to implement its JEI compatibility to illustrate the recipe of food more clearly for the time being.

Like some DS wiki program, I think this is enough:
jei

commented

In our design, there are two special requirements, RequirementCombinationAnd and RequirementCombinationOr. They are combination requirements that allow two other requirements (including themselves) to be combined together. Combination requirements are very useful. For example, the recipe of Hot Cocoa (i.e., Coffee in Don't Starve) requires 3 Cocoa Beans, and the fourth filler can only be Cocoa Beans, Dairy, or Sweetener. And I really don't know how to display the combination requirements.

commented

In our design, there are two special requirements, RequirementCombinationAnd and RequirementCombinationOr. They are combination requirements that allow two other requirements (including themselves) to be combined together. Combination requirements are very useful. For example, the recipe of Hot Cocoa (i.e., Coffee in Don't Starve) requires 3 Cocoa Beans, and the fourth filler can only be Cocoa Beans, Dairy, or Sweetener. And I really don't know how to display the combination requirements.

you can display all "Or" elements in an interval, just like how jei display an receipt with ore dictionary or tags

commented

you can display all "Or" elements in an interval, just like how jei display an receipt with ore dictionary or tags

There are also nested combination requirements. There's no obvious way other than showing the expression tree directly, which is not very user-friendly.

Also, taking the priorities into account (some recipes may cover others), things are more complex.