Skip to content

Categories (Just Enough Items)

Description

Modify the Categories visible in JEI, each of which contain recipes and are associated with specific blocks, typically machines.

Note

Hidden Categories will still take up load time, and recipes contained within can still be processed. This only prevents seeing Categories.

Identifier

Refer to this via any of the following:

groovy
mods.hei.category
mods.hei.Category
mods.jei.category/* Used as page default */
mods.jei.Category

Adding Entries

Recipe Builder

Just like other recipe types, the Categories also uses a recipe builder.

Don't know what a builder is? Check the builder info page out.

mods.jei.category.categoryBuilder()
  • String. Sets the ID of the Category, which must be unique among all other Categories. Requires not empty.

    groovy
    id(String)
  • List<IRecipeWrapper>. Sets the IRecipeWrappers used by the Category to generate entries.

    groovy
    wrapper(IRecipeWrapper)
    wrapper(IRecipeWrapper...)
    wrapper(Collection<? extends IRecipeWrapper>)
  • List<Object>. Sets the catalyst ingredients of the Category, which must belong to a class that has ingredient handling in JEI.

    groovy
    catalyst(Object)
    catalyst(Object...)
    catalyst(Collection<Object>)
  • Function<IGuiHelper, ? extends IRecipeCategory<? extends IRecipeWrapper>>. Sets the function used to generate the category. Must be a Function accepting a single input parameter IGuiHelper and creating the class, which itself must extend IRecipeCategory. Requires not null.

    groovy
    category(Function<IGuiHelper, ? extends IRecipeCategory<? extends IRecipeWrapper>>)
  • First validates the builder, returning null and outputting errors to the log file if the validation failed, then registers the builder and returns the registered object. (returns null or com.cleanroommc.groovyscript.compat.mods.jei.Category$CustomCategory).

    groovy
    register()
Example
groovy
mods.jei.category.categoryBuilder()
    .id(GenericRecipeCategory.UID)/* Note that `GenericRecipeCategory` must be defined elsewhere, and this example presumes certain fields and methods exist. */
    .category(guiHelper -> new GenericRecipeCategory(guiHelper))
    .catalyst(item('minecraft:clay'))
    .wrapper(GenericRecipeCategory.getRecipeWrappers())
    .register()

Removing Entries

  • Adds a new Category to JEI in the format id, category, catalsyts, wrappers:

    groovy
    mods.jei.category.add(Category.CustomCategory)
  • Adds a new Category to JEI in the format id, category, catalsyts, wrappers:

    groovy
    mods.jei.category.add(String, Function<IGuiHelper, ? extends IRecipeCategory<? extends IRecipeWrapper>>, List<?>, List<? extends IRecipeWrapper>)
  • Hides the given category from JEI:

    groovy
    mods.jei.category.hideCategory(String)
  • Hides the given category from JEI:

    groovy
    mods.jei.category.remove(String)
  • Hides all categories from JEI:

    groovy
    mods.jei.category.hideAll()
Example
groovy
mods.jei.category.hideCategory('minecraft.fuel')
mods.jei.category.hideAll()

Contributors

Changelog

© 2024 CleanroomMC. All Rights Reserved.