[1.15.2-1.14.4] JEI API integration for Custom Crafting!

Started by tbroski on

Topic category: User side tutorials

Last seen on 04:35, 17. Jan 2021
Joined Sep 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
[1.15.2-1.14.4] JEI API integration for Custom Crafting!
Sat, 03/30/2024 - 09:58 (edited)

JEI API integration for Custom Crafting

You will need java knowledge for this tutorial.

In the tutorial, I will assume you know how to create a variable and know basic java syntax. However, I am open to helping everybody, so if you need extra guidance. Add my discord (in profile).

 

Before we get started, you will need these elements and textures;

  1. GUI element and texture
  2. Block
  3. Working procedure recipes in-game

 

Now lets get started 😋,

First, we have to install the JEI API in our MCreator workspace.

To do this go to,

Open workspace folder

 

Now open the "build.gradle" file with notepad (or any other alternative),

build.gradle

Now add the following,

repositories {
  maven {
    // location of the maven that hosts JEI files
    name = "Progwml6 maven"
    url = "https://dvs1.progwml6.com/files/maven/"
  }
  maven {
    // location of a maven mirror for JEI files, as a fallback
    name = "ModMaven"
    url = "https://modmaven.k-4u.nl"
  }
}
 compileOnly fg.deobf("mezz.jei:jei-1.15.2:6.0.0.4:api")
  // at runtime, use the full JEI jar
  runtimeOnly fg.deobf("mezz.jei:jei-1.15.2:6.0.0.4")

Keep in mind, you can change, "6.0.0.4" to any compatible JEI version.

Now add the above snippets so your build.gradle file looks similar to this,

buildscript {
    repositories {
        maven { url = 'https://files.minecraftforge.net/maven' }
        jcenter()
        mavenCentral()
    }
    dependencies {
        classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '3.+', changing: true
    }
}
repositories {
  maven {
    name = "Progwml6 maven"
    url = "https://dvs1.progwml6.com/files/maven/"
  }
  maven {
    name = "ModMaven"
    url = "https://modmaven.k-4u.nl"
  }
}
apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'eclipse'

version = '1.0'
group = 'com.yourname.modid'
archivesBaseName = 'modid'
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8'
minecraft {
    mappings channel: 'snapshot', version: '20200514-1.15.1'

    runs {
        client {
            workingDirectory project.file('run')
            property 'forge.logging.markers', 'REGISTRIES'
            property 'forge.logging.console.level', 'debug'
            mods {
                examplemod {
                    source sourceSets.main
                }
            }
        }

        server {
            workingDirectory project.file('run')
            property 'forge.logging.markers', 'REGISTRIES'
            property 'forge.logging.console.level', 'debug'
            mods {
                examplemod {
                    source sourceSets.main
                }
            }
        }
    }
}

dependencies {
    minecraft 'net.minecraftforge:forge:1.15.2-31.2.0'
  compileOnly fg.deobf("mezz.jei:jei-1.15.2:6.0.0.4:api")
  runtimeOnly fg.deobf("mezz.jei:jei-1.15.2:6.0.0.4")

}
apply from: 'mcreator.gradle'

 

Now you should be done with the build.gradle file!🤪🤪 All you have to do now is save and close the file and open the MCreator workspace again. Finally, build the workspace by clicking the hammer in the top right corner!😎😎

If you get an error, 😡🤬, post your build.gradle file in the comments. And I will try to respond quick!

 

Now we have to create our plugin, recipe/s, and category 😀. So let's create a custom element and name it "JeiPlugin",

Custom Element

JeiPlugin code

Now optimize the code to look similar to this, and remove the constructor😱😱😱. Also add, "@mezz.jei.api.JeiPlugin" to the top;

package net.mcreator.jeitest;


@mezz.jei.api.JeiPlugin
public class JeiPlugin {

}

Now that we have a clean slate to work with, we can follow (not copy) the template at the end of the post.

 

An explanation for each method follows;

Blue Text = Important

Green Text = Self explanatory or a simple method

 

JeiPlugin Class Methods,

getPluginUid - Well, you provide a ResourceLocation for your plugin...

 

registerCategories - This method register's category of your crafting. For example in vanilla minecraft, the crafting table category, furnace table category, and a blast furnace.*This does not provide JEI with an extra tab (see registerRecipeCatalysts for that)*.

 

registerRecipes - This method registers the recipe. For example, when you click on a torch in JEI you can see the stick + coal recipe. In the template we register a list of all of our recipes. To add a recipe, add another;

	private List<[YOURBLOCK]JeiCategory.[YOURBLOCK]RecipeWrapper> generate[YOURBLOCK]Recipes() {
		List<[YOURBLOCK]JeiCategory.[YOURBLOCK]RecipeWrapper> recipes = new ArrayList<>();
		ArrayList<ItemStack> inputs = new ArrayList<>();
        ArrayList<ItemStack> outputs = new ArrayList<>();
        inputs.add(new ItemStack([ANYINPUTITEM));
        outputs.add(new ItemStack([ANYOUTPUTITEM]));
		recipes.add(new [YOURBLOCK]JeiCategory.[YOURBLOCK]RecipeWrapper(inputs, outputs));
		return recipes;
	}

However, to add more inputs/outputs, add another;

        inputs.add(new ItemStack([ANYINPUTITEM]));

or

        outputs.add(new ItemStack([ANYOUTPUTITEM]));

To the correlated list

 

registerRecipeCatalysts - This provides JEI with the tab for the recipes. I.e. the Crafting Table tab. This parameter;

new ItemStack([YOURBLOCK].block)

is the block/icon the tab shows. Similar but different to the Creative tabs.

 

JeiCategory sub-class methods,

getUid - Well, returns the Uid variable...

getRecipeClass - returns our "recipe wrapper"

getTitle = returns the title of our GUI

getBackground- returns the background texture of the GUI

getIcon = returns null if you want to have your block as the icon. If you want a custom icon, return the icon ResourceLocation (I won't be covering that, if you need help add my discord).

setIngredients - This may be the most important method, it allows you to set the inputs and outputs of your gui. To add more inputs, see the "registerRecipes" method. 

setRecipes - This also tops the most important method, it provides JEI the layout of your gui. To add more slots add additional init and set corresponding to the slot coordinates in the GUI texture. I.e this;

            IGuiItemStackGroup stacks = iRecipeLayout.getItemStacks();

            stacks.init(input1, true, [IN1SLOTX], [IN1SLOTY]);
            stacks.init(output1, false, [OUT1SLOTX], [OUT1SLOTY]);
            //...

            stacks.set(input1, iIngredients.getInputs(VanillaTypes.ITEM).get(0));
            stacks.set(output1, iIngredients.getOutputs(VanillaTypes.ITEM).get(0));
            //...

to this;

            IGuiItemStackGroup stacks = iRecipeLayout.getItemStacks();

            stacks.init(input1, true, [IN1SLOTX], [IN1SLOTY]);
            stacks.init(input2, true, [IN2SLOTX], [IN2SLOTY]);
            stacks.init(output1, false, [OUT1SLOTX], [OUT1SLOTY]);
            //...

            stacks.set(input1, iIngredients.getInputs(VanillaTypes.ITEM).get(0));
            stacks.set(input2, iIngredients.getInputs(VanillaTypes.Item).get(1)); //+1 from previous variable.
            stacks.set(output1, iIngredients.getOutputs(VanillaTypes.ITEM).get(0));
            //...

You need to create another variable, "input2", that corresponds to that slotID. If you need help add my discord (in profile).

That should cover a lot, a may be missing something so if anything jumps out comment below. If you have any questions/additions comment below or add my discord. Thanks!

 

 

TEMPLATE BELOW

Key;

Basics,

[MODID] = Your modid i.e. mobench

[YOURBLOCK] = Your block name, i.e. InfuseBlock

[YOURBLOCKLOWERCASE]  = Your block name no capitals, i.e. infuseblock

[YOURBLOCKNAMEINGAME] = The title of your block, i.e. Crafting Bench and Infuse Bench

[GUIFILELOCATION] = Where the GUI texture is stored, i.e. "textures/infuse_bench_gui.png"

[GUIWIDTH] = The width of the GUI, i.e 176

[GUIHEIGHT] = The height of the GUI, i.e. 166

//... = You can add on to these elements

 

You should have, {Number of items in recipe = Number of slots in gui}

You can have more than provided two items in the template. If you need help with how to do this, ask below or add my discord (in profile).

@mezz.jei.api.JeiPlugin
public class JeiPlugin implements IModPlugin {
	public static IJeiHelpers jeiHelper;
	@Override
	public ResourceLocation getPluginUid() {
		return new ResourceLocation("[MODID]", "default");
	}

	@Override
	public void registerCategories(IRecipeCategoryRegistration registration) {
		jeiHelper = registration.getJeiHelpers();
		registration.addRecipeCategories(new [YOURBLOCK]JeiCategory(jeiHelper.getGuiHelper()));
	}

	@Override
	public void registerRecipes(IRecipeRegistration registration) {
		registration.addRecipes(generate[YOURBLOCK]Recipes(), [YOURBLOCK]JeiCategory.Uid);
		// ...
	}

	private List<[YOURBLOCK]JeiCategory.[YOURBLOCK]RecipeWrapper> generate[YOURBLOCK]Recipes() {
		List<[YOURBLOCK]JeiCategory.[YOURBLOCK]RecipeWrapper> recipes = new ArrayList<>();
		ArrayList<ItemStack> inputs = new ArrayList<>();
        ArrayList<ItemStack> outputs = new ArrayList<>();
        inputs.add(new ItemStack([ANYINPUTITEM]));
        outputs.add(new ItemStack([ANYOUTPUTITEM]));
        // ...
		recipes.add(new [YourBlock]JeiCategory.[YourBlock]RecipeWrapper(inputs, outputs));
		return recipes;
	}

	@Override
	public void registerRecipeCatalysts(IRecipeCatalystRegistration registration) {
		registration.addRecipeCatalyst(new ItemStack([YOURBLOCK].block), [YOURBLOCK]JeiCategory.Uid);
	}
	public static class [YOURBLOCK]JeiCategory implements IRecipeCategory<[YOURBLOCK]JeiCategory.[YOURBLOCK]RecipeWrapper> {
		private static ResourceLocation Uid = new ResourceLocation("[MODID]", "[YOURBLOCKLOWERCASE]category");
		private static final int input1 = 0; // THE NUMBER = SLOTID
		private static final int output1 = 1; // THE NUMBER = SLOTID
		// ...
		private final String title;
		private final IDrawable background;
		public [YOURBLOCK]JeiCategory(IGuiHelper guiHelper) {
			this.title = "[YOURBLOCKNAMEINGAME]";
			this.background = guiHelper.createDrawable(new ResourceLocation("[MODID]", "[GUIFILELOCATION].png"), 0, 0, [GUIWIDTH], [GUIHEIGHT]);
		}

		@Override
		public ResourceLocation getUid() {
			return Uid;
		}

		@Override
		public Class<? extends [YOURBLOCK]RecipeWrapper> getRecipeClass() {
			return [YOURBLOCK]JeiCategory.[YOURBLOCK]RecipeWrapper.class;
		}

		@Override
		public String getTitle() {
			return title;
		}

		@Override
		public IDrawable getBackground() {
			return background;
		}

		@Override
		public IDrawable getIcon() {
			return null;
		}

		@Override
		public void setIngredients([YOURBLOCK]RecipeWrapper recipeWrapper, IIngredients iIngredients) {
            iIngredients.setInputs(VanillaTypes.ITEM, recipeWrapper.getInput());
            iIngredients.setOutputs(VanillaTypes.ITEM, recipeWrapper.getOutput());
		}

		@Override
		public void setRecipe(IRecipeLayout iRecipeLayout, [YOURBLOCK]RecipeWrapper recipeWrapper, IIngredients iIngredients) {
			IGuiItemStackGroup stacks = iRecipeLayout.getItemStacks();
			stacks.init(input1, true, [IN1SLOTX], [IN1SLOTY]);
			stacks.init(output1, false, [OUT1SLOTX], [OUT1SLOTY]);
            // ...

            stacks.set(input1, iIngredients.getInputs(VanillaTypes.ITEM).get(0));
			stacks.set(output1, iIngredients.getOutputs(VanillaTypes.ITEM).get(0));
			// ...
		}
		public static class [YOURBLOCK]RecipeWrapper {
            private List<ItemStack> input;
            private List<ItemStack> output;

            public [YourBlock]RecipeWrapper(List<ItemStack> input, List<ItemStack> output) {
                this.input = input;
                this.output = output;
            }


            public List<ItemStack> getInput() {
                return input;
            }

            public List<ItemStack> getOutput() {
                return output;
            }
        }
	}
}

MAKE SURE TO ADD THESE BARE MINIMUM IMPORTS😁😁😁!

import mezz.jei.api.IModPlugin;
import mezz.jei.api.constants.VanillaTypes;
import mezz.jei.api.gui.IRecipeLayout;
import mezz.jei.api.gui.drawable.IDrawable;
import mezz.jei.api.gui.ingredient.IGuiItemStackGroup;
import mezz.jei.api.helpers.IGuiHelper;
import mezz.jei.api.helpers.IJeiHelpers;
import mezz.jei.api.ingredients.IIngredients;
import mezz.jei.api.recipe.category.IRecipeCategory;
import mezz.jei.api.registration.IRecipeCatalystRegistration;
import mezz.jei.api.registration.IRecipeCategoryRegistration;
import mezz.jei.api.registration.IRecipeRegistration;
import net.minecraft.item.ItemStack;
import net.minecraft.item.Items;
import net.minecraft.util.ResourceLocation;

import java.util.ArrayList;
import java.util.List;

PROOF OF WORKING

[NEW TEMPLATE] CODE PROOF

[OLD] CODE PROOF

InGame GUI

JEI recipe

 

MIRROR LINKS FOR IMAGES;

Open Workspace Folder

Build.Gradle File

Custom Element

Custom Element Code

Edited by tbroski on Sat, 03/30/2024 - 09:58
Last seen on 13:56, 19. Dec 2022
Joined Feb 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Is it possible to do this…
Wed, 04/06/2022 - 21:08

Is it possible to do this with patchouli? I know that it has a recipe thing as an option, so if you could figure out how to do that, it would be great.

Last seen on 01:39, 7. Sep 2024
Joined Mar 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I tried following this and i…
Sun, 04/17/2022 - 00:17

I tried following this and i'm not getting any errors but nothing happens. my items don't do anything in JEI, I am trying to do this in 1.16.5 though. Does anyone know what i'm doing wrong?
 

MY CODE

Last seen on 14:47, 26. May 2024
Joined May 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
buildscript { …
Fri, 02/24/2023 - 17:10
buildscript {
    repositories {
        maven { url = 'https://maven.minecraftforge.net' }
        mavenCentral()
    }
    dependencies {
        classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '5.1.+', changing: true
    }
}
repositories {
    maven {
        // location of the maven that hosts JEI files
        name = "Progwml6 maven"
        url = "https://dvs1.progwml6.com/files/maven/"
    }
    maven {
        // location of a maven mirror for JEI files, as a fallback
        name = "ModMaven"
        url = "https://modmaven.k-4u.nl"
    }
}

apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'eclipse'

version = '1.0'
group = 'com.yourname.modid'
archivesBaseName = 'modid'

java.toolchain.languageVersion = JavaLanguageVersion.of(17)

minecraft {
    mappings channel: 'official', version: '1.19.2'

    accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg')

    runs {
        client {
            workingDirectory project.file('run')

            property 'forge.logging.markers', 'REGISTRIES'
            property 'forge.logging.console.level', 'debug'

            mods {
                examplemod {
                    source sourceSets.main
                }
            }
        }

        server {
            workingDirectory project.file('run')

            property 'forge.logging.markers', 'REGISTRIES'
            property 'forge.logging.console.level', 'debug'

            mods {
                examplemod {
                    source sourceSets.main
                }
            }
        }
    }
}

dependencies {
    minecraft 'net.minecraftforge:forge:1.19.2-43.2.0'

    // JEI
    compileOnly fg.deobf("mezz.jei:jei-1.19.2:11.4.0.286:api")
    runtimeOnly fg.deobf("mezz.jei:jei-1.19.2:11.4.0.286")
}

tasks.withType(JavaCompile).configureEach {
    options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation
}

apply from: 'mcreator.gradle'


Is that right
Last seen on 16:54, 3. Sep 2023
Joined Jul 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Nice! Could you make a…
Wed, 07/19/2023 - 14:34

Nice! Could you make a tutorial on how to make clones of the player?

Last seen on 12:44, 17. Jul 2024
Joined May 2015
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Does This Still Work For 1…
Sat, 07/29/2023 - 20:08

Does This Still Work For 1.19.2?

 

Last seen on 17:02, 12. Aug 2024
Joined Mar 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I kinda got it working for 1…
Sat, 08/26/2023 - 14:12

I kinda got it working for 1.18.2 but i got one (1) error


error: invalid method declaration; return type required

public MyJeiPlugin(insanityModElements instance) {
            ^

Last seen on 17:02, 12. Aug 2024
Joined Mar 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
btw your discord in your bio…
Sat, 08/26/2023 - 14:31

btw your discord in your bio doesnt work so i couldnt even message you to ask for help

Last seen on 21:03, 18. Oct 2023
Joined Aug 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I am trying to do this in 1…
Wed, 09/20/2023 - 18:57

I am trying to do this in 1.20.1 and some of the imports seem to not work anymore.

The ones that throw errors are:

  • IRecipeLayout
  • IGuiItemStackGroup
  • IIngredients

Also, the net.minecraft.item and utils don't import either

If there any way to fix this? I have been trying to make it work for an hour now so any solutions would be greatly appreciated.

Last seen on 19:29, 15. Aug 2024
Joined Dec 2015
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
same problem after checking…
Thu, 11/23/2023 - 19:38

same problem after checking the mezz database no longer contains for version 1.20.1 the Iingredient entries etc. I have to find another method to implement them for the moment I am looking to try to do that in a single code

Last seen on 14:26, 31. Aug 2024
Joined Jul 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
niceee i did this and it…
Fri, 03/29/2024 - 17:12

niceee i did this and it completely wrecked my workspace and all others, not even reinstalling mcreator fixes it 👍

Last seen on 14:53, 6. Sep 2024
Joined Jul 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
No need to do this, just use…
Sat, 03/30/2024 - 09:35

No need to do this, just use my plugin