Jump to content

(1.14) Custom IRecipe RecipeManager Help


pancax

Recommended Posts

Hello, my friend and I recently started modding because we thought it would be fun, so far it has!

Unfortunately i have been hard-stuck on this particular problem and i really don't know why.

Basically i have made a custom recipe called a "grinding recipe" for my block the grinder (called firstblock for now) and i would like when you put a firstblock item into the top slot for it to "grind it" and transform it into a firstitem. This is really just a proof of concept before i implement it further with actual items. Once it works i can replicate the success easily (hopefully)

The problem code is this:

                       IRecipe<?> irecipe = this.world.getRecipeManager().getRecipe(Objects.requireNonNull((ModItems.FIRSTITEM).getRegistryName())/*(IRecipeType<AbstractGrindingRecipe>)this.recipeType,this,this.world*/).orElse(null);

getRecipe always returns null no matter what i give it. As you can see by the commented out section i have also tried the other method of getRecipe. 

 

My question is, is it not enough that i have registered my recipe like this

package orebesity.common.recipes;

import net.minecraft.item.crafting.IRecipeSerializer;
import net.minecraftforge.registries.ObjectHolder;

public class ModRecipes {
    @ObjectHolder("orebesity:grinding")
    public static IRecipeSerializer<GrindingRecipe> GRINDING;// = IRecipeSerializer.register("grinding",new GrindingRecipeSerializer<>(GrindingRecipe::new,100));

}

 

and made my recipes item file like this?

 

{
  "type": "orebesity:grinding",
  "ingredient": {
    "item": "orebesity:firstblock"
  },
  "result": "orebesity:firstitem",
  "experience": 0.7,
  "grindingtime": 200
}

 

I have no idea how forge adds recipes to the RecipeManager (or if i even have to) but it seems like minecraft doesn't recognize that my firstitem CAN be grinded from my firstblock. Here is my firstblock tile entity code if that is the problem.

class FirstBlockTile extends TileEntity implements ITickableTileEntity, INamedContainerProvider, IRecipeHolder, ISidedInventory {
    private LazyOptional<IItemHandler> handler = LazyOptional.of(this::getHandler);
    public FirstBlockTile() {
        super(FIRSTBLOCK_TILE);
        recipeType=null;
    }
    public FirstBlockTile(IRecipeType<? extends AbstractGrindingRecipe> recipeType) {
        super(FIRSTBLOCK_TILE);
        this.recipeType = recipeType;
    }
    protected final IRecipeType<? extends AbstractGrindingRecipe> recipeType;
    private int grindingTime=0;
    @Override
    public void tick() {
        if(!this.world.isRemote){

           handler.ifPresent(h->{
               boolean isOn=false;
               ItemStack stack = h.getStackInSlot(0);
               if(stack.getItem()==ModBlocks.FIRSTBLOCK.asItem()){
                   isOn=true;
                   if(!stack.isEmpty()){
                       IRecipe<?> irecipe = this.world.getRecipeManager().getRecipe(Objects.requireNonNull((ModItems.FIRSTITEM).getRegistryName())/*(IRecipeType<AbstractGrindingRecipe>)this.recipeType,this,this.world*/).orElse(null);
                       System.out.println("alligator"+ModItems.FIRSTITEM.getRegistryName());
                       System.out.println("crocodile"+irecipe);
                       if(this.canYouGrind(irecipe)){
                           if(stack.hasContainerItem()){

                           }
                           else{
                               if(!stack.isEmpty()){
                                   Item item = stack.getItem();
                                   stack.shrink(1);
                                   if(stack.isEmpty()){

                                   }
                               }
                           }
                       }

                       if(canYouGrind(irecipe)){
                           ++this.grindingTime;
                           if(this.grindingTime==getDefaultGrindTime(stack.getItem())){
                               this.grindingTime=0;
                               this.itemGrinded(irecipe);
                           }
                       }else{
                           this.grindingTime=0;
                       }

                   }


               }
               if(isOn){
                   this.world.setBlockState(pos,this.world.getBlockState(this.pos).with(FirstBlock.ON,Boolean.valueOf("true")));
               }
               else{
                   this.world.setBlockState(pos,this.world.getBlockState(this.pos).with(FirstBlock.ON,Boolean.valueOf("false")));
               }


           });

        }
    }

    protected int getDefaultGrindTime(Item item){
        if(item==ModBlocks.FIRSTBLOCK.asItem())
            return 100;
        return 0;
    }
    private void itemGrinded(@Nullable IRecipe<?> recipe) {
        if (recipe != null && this.canYouGrind(recipe)) {
            ItemStack itemstack1 = recipe.getRecipeOutput();
            handler.ifPresent(h-> {
                ItemStack itemstack = h.getStackInSlot(0);
                ItemStack itemstack2= h.getStackInSlot(1);
                if (itemstack2.isEmpty()) {
                    itemstack2=itemstack1;
                } else if (itemstack2.getItem() == itemstack1.getItem()) {
                    itemstack2.grow(itemstack1.getCount());
                }

                if (!this.world.isRemote) {
                    this.setRecipeUsed(recipe);
                }
                itemstack.shrink(1);
            });
        }
    }
    protected boolean canYouGrind(@Nullable IRecipe<?> recipeType){

        ItemStack stack = recipeType.getRecipeOutput();
        if(stack.isEmpty()){
            return true;
        }else{
            AtomicReference<ItemStack> resultSlot = null;
            handler.ifPresent((IItemHandler h) -> resultSlot.set(h.getStackInSlot(1)));
            if(resultSlot.get().isEmpty())
            {
                return true;
            }else if (!resultSlot.get().isItemEqual(resultSlot.get())) {
                return false;
            } else if (resultSlot.get().getCount() + resultSlot.get().getCount() <= this.getInventoryStackLimit() && resultSlot.get().getCount() + resultSlot.get().getCount() <= resultSlot.get().getMaxStackSize()) { // Forge fix: make furnace respect stack sizes in furnace recipes
                return true;
            } else {
                return resultSlot.get().getCount() + resultSlot.get().getCount() <= resultSlot.get().getMaxStackSize(); // Forge fix: make furnace respect stack sizes in furnace recipes
            }
        }

    }
    @Override
    public void read(CompoundNBT compound) {
        CompoundNBT invTag = compound.getCompound("inv");

        handler.ifPresent(new NonNullConsumer<IItemHandler>() {
            @Override
            public void accept(@Nonnull IItemHandler h) {
                ((INBTSerializable<CompoundNBT>) h).deserializeNBT(invTag);

            }
        });
        super.read(compound);
    }

    @Override
    public CompoundNBT write(CompoundNBT compound) {

        handler.ifPresent(new NonNullConsumer<IItemHandler>() {
            @Override
            public void accept(@Nonnull IItemHandler h) {
                CompoundNBT c = ((INBTSerializable<CompoundNBT>) h).serializeNBT();
                compound.put("inv", c);
            }
        });

        return super.write(compound);
    }
    private IItemHandler getHandler(){
        return new ItemStackHandler(2){
            @Override
            protected void onContentsChanged(int slot) {
                markDirty();
            }
        };
    }
    @Nonnull
    @Override
    public <T> LazyOptional<T> getCapability(@Nonnull Capability<T> cap, @Nullable Direction side) {
        if(cap == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY) {
            return handler.cast();
        }
        return super.getCapability(cap, side);
    }

    @Override
    public ITextComponent getDisplayName() {
        return new StringTextComponent(getType().getRegistryName().getPath());
    }

    @Nullable
    @Override
    public Container createMenu(int i, PlayerInventory playerInventory, PlayerEntity playerEntity) {
        return new FirstBlockContainer(i,pos,world,playerInventory,playerEntity);
    }

    @Override
    public void setRecipeUsed(@Nullable IRecipe<?> recipe) {

    }

    @Nullable
    @Override
    public IRecipe<?> getRecipeUsed() {
        return null;
    }

    @Override
    public int[] getSlotsForFace(Direction side) {
        return new int[0];
    }

    @Override
    public boolean canInsertItem(int index, ItemStack itemStackIn, @Nullable Direction direction) {
        return false;
    }

    @Override
    public boolean canExtractItem(int index, ItemStack stack, Direction direction) {
        return false;
    }

    @Override
    public int getSizeInventory() {
        return 0;
    }

    @Override
    public boolean isEmpty() {
        return false;
    }

    @Override
    public ItemStack getStackInSlot(int index) {
        return null;
    }

    @Override
    public ItemStack decrStackSize(int index, int count) {
        return null;
    }

    @Override
    public ItemStack removeStackFromSlot(int index) {
        return null;
    }

    @Override
    public void setInventorySlotContents(int index, ItemStack stack) {

    }

    @Override
    public boolean isUsableByPlayer(PlayerEntity player) {
        return false;
    }

    @Override
    public void clear() {

    }
}

 

Thanks for the help ❤️

Edited by pancax
Link to comment
Share on other sites

You haven't actually registered your recipeSerializer.

@ObjectHolder is just a reference to the registered serializer, it doesn't register anything. You need to subscribe to the registry event (Just like you do for items/blocks)

Link to comment
Share on other sites

Hello, Thanks for the replay AlpVax! Turns out i have already registered it ( i just forgot to include it in the original post) Here is how i registered it

@SubscribeEvent
        public static void registerRecipes(final RegistryEvent.Register<IRecipeSerializer<?>> event){
            event.getRegistry().register(new GrindingRecipeSerializer<>(GrindingRecipe::new,100));
            LOGGER.info("hello from recipes");

        }

And here is my Grinding Recipe Serializer

 

public class GrindingRecipeSerializer<T extends AbstractGrindingRecipe> extends net.minecraftforge.registries.ForgeRegistryEntry<IRecipeSerializer<?>> implements IRecipeSerializer<T> {
        private final int i;
        private final GrindingRecipeSerializer.IFactory<T> factory;

        public GrindingRecipeSerializer(GrindingRecipeSerializer.IFactory<T> factory, int i){
            this.factory=factory;
            this.i=i;
            setRegistryName("orebesity:grinding");
        }
        @Override
        public T read(ResourceLocation recipeId, JsonObject json) {
            String s = JSONUtils.getString(json, "group", "");
            JsonElement jsonelement = (JsonElement)(JSONUtils.isJsonArray(json, "ingredient") ? JSONUtils.getJsonArray(json, "ingredient") : JSONUtils.getJsonObject(json, "ingredient"));
            Ingredient ingredient = Ingredient.deserialize(jsonelement);
            String s1 = JSONUtils.getString(json, "result");
            ResourceLocation resourcelocation = new ResourceLocation(s1);
            ItemStack itemstack = new ItemStack(Registry.ITEM.getValue(resourcelocation).orElseThrow(() -> new IllegalStateException("Item: " + s1 + " does not exist")));
            float f = JSONUtils.getFloat(json, "experience", 0.0F);
            int i = JSONUtils.getInt(json, "grindingtime", this.i);
            return this.factory.create(recipeId, s, ingredient, itemstack, f, i);
        }

        @Override
        public T read(ResourceLocation recipeId, PacketBuffer buffer) {
            String s = buffer.readString(32767);
            Ingredient ingredient = Ingredient.read(buffer);
            ItemStack itemstack = buffer.readItemStack();
            float f = buffer.readFloat();
            int i = buffer.readVarInt();
            return this.factory.create(recipeId, s, ingredient, itemstack, f, i);
        }

        @Override
        public void write(PacketBuffer buffer, T recipe) {
            buffer.writeString(recipe.group);
            recipe.ingredient.write(buffer);
            buffer.writeItemStack(recipe.result);
            buffer.writeFloat(recipe.experience);
            buffer.writeVarInt(recipe.grindTime);
        }

        public interface IFactory<T extends AbstractGrindingRecipe>{
            T create(ResourceLocation resourcelocation, String name, Ingredient ingredient, ItemStack stack, float f , int i);
        }

}

 

I was wondering if i need to register anything else as well?

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



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • https://pastebin.com/VwpAW6PX My game crashes upon launch when trying to implement the Oculus mod to this mod compilation, above is the crash report, I do not know where to begin to attempt to fix this issue and require assistance.
    • https://youtube.com/shorts/gqLTSMymgUg?si=5QOeSvA4TTs-bL46
    • CubeHaven is a SMP server with unique features that can't be found on the majority of other servers! Java: MC.CUBEHAVEN.NET Bedrock: MC.CUBEHAVEN.NET:19132 3 different stores: - CubeHaven Store: Our store to purchase using real money. - Bitcoin Store: Store for Bitcoin. Bitcoin can be earned from playing the server. Giving options for players if they want to spend real money or grind to obtain exclusive packages. - Black Market: A hidden store for trading that operates outside our traditional stores, like custom enchantments, exclusive items and more. Some of our features include: Rank Up: Progress through different ranks to unlock new privileges and perks. 📈 Skills: RPG-style skill system that enhances your gaming experience! 🎮 Leaderboards: Compete and shine! Top players are rewarded weekly! 🏆 Random Teleporter: Travel instantly across different worlds with a click! 🌐 Custom World Generation: Beautifully generated world. 🌍 Dungeons: Explore challenging and rewarding dungeons filled with treasures and monsters. 🏰 Kits: Unlock ranks and gain access to various kits. 🛠️ Fishing Tournament: Compete in a friendly fishing tournament! 🎣 Chat Games: Enjoy games right within the chat! 🎲 Minions: Get some help from your loyal minions. 👥 Piñata Party: Enjoy a festive party with Piñatas! 🎉 Quests: Over 1000 quests that you can complete! 📜 Bounty Hunter: Set a bounty on a player's head. 💰 Tags: Displayed on nametags, in the tab list, and in chat. 🏷️ Coinflip: Bet with other players on coin toss outcomes, victory, or defeat! 🟢 Invisible & Glowing Frames: Hide your frames for a cleaner look or apply a glow to it for a beautiful look. 🔲✨[ Player Warp: Set your own warp points for other players to teleport to. 🌟 Display Shop: Create your own shop and sell to other players! 🛒 Item Skins: Customize your items with unique skins. 🎨 Pets: Your cute loyal companion to follow you wherever you go! 🐾 Cosmetics: Enhance the look of your character with beautiful cosmetics! 💄 XP-Bottle: Store your exp safely in a bottle for later use! 🍶 Chest & Inventory Sorting: Keep your items neatly sorted in your inventory or chest! 📦 Glowing: Stand out from other players with a colorful glow! ✨ Player Particles: Over 100 unique particle effects to show off. 🎇 Portable Inventories: Over virtual inventories with ease. 🧳 And a lot more! Become part of our growing community today! Discord: https://cubehaven.net/discord Java: MC.CUBEHAVEN.NET Bedrock: MC.CUBEHAVEN.NET:19132
    • # Problematic frame: # C [libopenal.so+0x9fb4d] It is always the same issue - this refers to the Linux OS - so your system may prevent Java from working   I am not familiar with Linux - check for similar/related issues  
  • Topics

×
×
  • Create New...

Important Information

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