Jump to content

Accounting for Slot stack limit in Container.mergeItemStack()


Recommended Posts

Posted

I recently added a slot to a container I had, and overrided the getSlotStackLimit() function.

However, when I shift-clicked items from my inventory, the value I set in getSlotStackLimit() was completely ignored.

 

I ended up having to override the mergeItemStack() function in my container class to account for the slot stack limit.

I think this would be a good thing to change for all instances however, and given forge already changes the mergeItemStack() function to make sure that the item (to put in) is valid for the slot, I don't see why this shouldn't be added.

 

Here's the new version of the function that I came up with:

//Changed to be sensitive to Slot stack limits
@Override
protected boolean mergeItemStack(ItemStack stack, int startIndex, int endIndex, boolean reverseDirection){
    boolean flag = false;
    int i = startIndex;
    if (reverseDirection) i = endIndex - 1;
    
    if (stack.isStackable()){
        while (stack.stackSize > 0 && (!reverseDirection && i < endIndex || reverseDirection && i >= startIndex)){
            Slot slot = (Slot)this.inventorySlots.get(i);
            ItemStack itemstack = slot.getStack();
            int maxLimit = Math.min(stack.getMaxStackSize(), slot.getSlotStackLimit());
            
            if (itemstack != null && areItemStacksEqual(stack, itemstack)){
                int j = itemstack.stackSize + stack.stackSize;
                if (j <= maxLimit){
                    stack.stackSize = 0;
                    itemstack.stackSize = j;
                    slot.onSlotChanged();
                    flag = true;
                    
                }else if (itemstack.stackSize < maxLimit){
                    stack.stackSize -= maxLimit - itemstack.stackSize;
                    itemstack.stackSize = maxLimit;
                    slot.onSlotChanged();
                    flag = true;
                }
            }
            if (reverseDirection){ 
            	--i;
            }else ++i;
        }
    }
    if (stack.stackSize > 0){
        if (reverseDirection){
            i = endIndex - 1;
        }else i = startIndex;

        while (!reverseDirection && i < endIndex || reverseDirection && i >= startIndex){
            Slot slot1 = (Slot)this.inventorySlots.get(i);
            ItemStack itemstack1 = slot1.getStack();

            if (itemstack1 == null && slot1.isItemValid(stack)){ // Forge: Make sure to respect isItemValid in the slot.
            	if(stack.stackSize <= slot1.getSlotStackLimit()){
            	    slot1.putStack(stack.copy());
                    slot1.onSlotChanged();
                    stack.stackSize = 0;
                    flag = true;
                    break;
            	}else{
            	    itemstack1 = stack.copy();
            	    stack.stackSize -= slot1.getSlotStackLimit();
                    itemstack1.stackSize = slot1.getSlotStackLimit();
                    slot1.putStack(itemstack1);
                    slot1.onSlotChanged();
                    flag = true;
            	}                    
            }
            if (reverseDirection){
                --i;
            }else ++i;
        }
    }
    return flag;
}

I'm not currently using 4 spaces or the other formatting stuff, but I can change that if need be.

Posted

This would be really nice.  I was able to work around the issue in 1.7, as things generally accounted for it except in the TransferStack method, which everyone always supplied a copy-paste from the wiki because It Worked.

 

Now though, I can't.  Even the method above isn't sufficient to fix the issues I have trying to make a hopper with a slot stack limit of 16.

 

One problem is that shift-clicking results in an infinite loop:

at net.minecraft.inventory.Container.retrySlotClick(Container.java:549)

at net.minecraft.inventory.Container.slotClick(Container.java:284)

at net.minecraft.inventory.Container.retrySlotClick(Container.java:549)

at net.minecraft.inventory.Container.slotClick(Container.java:284)

 

"If I failed, retry with the same parameters, maybe it'll work then."  Yeesh.

 

The other is that hopper also doesn't respect is own inventory limits when pulling from other containers.  It pulls the item, puts it into its inventory, then checks the stack against the size limits and deletes the extra.

 

"Click, click" works properly (only 16 are put into the slot) as does hopper-push.

But shift-clicking and hopper-pull is broken.

 

:\

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.

Posted

Finally, someone replied!

 

When are you getting the infinite loop? (hopper-pull, shift-click...)

Also, I made my modifications to the mergeItemStack() function when I came across problems while shift-clicking, and I tested it and it worked fine for me. How is shift-clicking not working for you?

 

I'm determined to get this added to forge (hopefully) now that I know others wish this were a thing.

 

  • 3 weeks later...
Posted

When are you getting the infinite loop? (hopper-pull, shift-click...)

 

Shift-click.

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.

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

    • the modpack keep crashing idk why,cause it never said anything about any mods causing it. crash log:https://drive.google.com/file/d/1iYKlUgvHUob8DjyRc3gqP_Viv_kSHO6L/view?usp=sharing mod list:https://drive.google.com/file/d/1MvMT-z9Jg2BITQ4uLshJ1uOh7q9EMBfC/view?usp=sharing but the server(anternos) works just fine
    • Hello, I am trying to make 2 recipes for a ruby. The first one is turning a block into a ruby and the other one is 9 nuggets into a ruby. But I keep on getting a error java.lang.IllegalStateException: Duplicate recipe rubymod:ruby   Any help would be great on how to fix it
    • Hello everyone, i'm new with programing Mods, and will need a lot of your help if possible,  Im trying to make a new GUI interface responsible to control the Droprate of game, it will control de loot drop and loot table for mobs and even blocks, but i try to make a simple Gui Screen, and wenever i try to use it, the game crash's with the error message in the subject, here is the code im using to:  IDE: IntelliJ Comunity - latest version Forge: 47.3.0 Minecraft version: 1.20.1 mapping_channel: parchment mapping_version=2023.09.03-1.20.1 Crash report link: https://pastebin.com/6dV8k1Fw   Code im using is:    package createchronical.droprateconfig; import com.mojang.blaze3d.systems.RenderSystem; import net.minecraft.client.gui.GuiGraphics; import net.minecraft.client.gui.components.Button; import net.minecraft.client.gui.screens.Screen; import net.minecraft.network.chat.Component; import net.minecraft.resources.ResourceLocation; import java.util.HashMap; import java.util.Map; public class ConfigScreen extends Screen { private static final ResourceLocation BACKGROUND_TEXTURE = new ResourceLocation("droprateconfig", "textures/gui/config_background.png"); // Mapa de mobs e itens com seus respectivos drop rates private final Map<String, Integer> dropRates = new HashMap<>(); public ConfigScreen() { super(Component.literal("Configurações de Drop Rate")); // Inicializa com valores de drop rate padrão dropRates.put("Zombie", 10); // Exemplo de mob dropRates.put("Creeper", 5); // Exemplo de mob dropRates.put("Iron Ore", 50); // Exemplo de item dropRates.put("Diamond", 2); // Exemplo de item } @Override protected void init() { // Cria um botão para cada mob/item e adiciona na tela int yOffset = this.height / 2 - 100; // Posicionamento inicial for (Map.Entry<String, Integer> entry : dropRates.entrySet()) { String itemName = entry.getKey(); int dropRate = entry.getValue(); // Cria um botão para cada mob/item this.addRenderableWidget(Button.builder( Component.literal(itemName + ": " + dropRate + "%"), button -> onDropRateButtonPressed(itemName) ).bounds(this.width / 2 - 100, yOffset, 200, 20).build()); yOffset += 25; // Incrementa a posição Y para o próximo botão } // Adiciona o botão de "Salvar Configurações" this.addRenderableWidget(Button.builder(Component.literal("Salvar Configurações"), button -> onSavePressed()) .bounds(this.width / 2 - 100, yOffset, 200, 20) .build()); } private void onDropRateButtonPressed(String itemName) { // Lógica para alterar o drop rate do item/mob selecionado // Aqui, vamos apenas incrementar o valor como exemplo int currentRate = dropRates.get(itemName); dropRates.put(itemName, currentRate + 5); // Aumenta o drop rate em 5% } private void onSavePressed() { // Lógica para salvar as configurações (temporariamente apenas na memória) // Vamos apenas imprimir para verificar dropRates.forEach((item, rate) -> { System.out.println("Item: " + item + " | Novo Drop Rate: " + rate + "%"); }); // Fecha a tela após salvar Screen pGuiScreen = null; assert this.minecraft != null; this.minecraft.setScreen(pGuiScreen); } @Override public void render(GuiGraphics guiGraphics, int mouseX, int mouseY, float partialTicks) { this.renderBackground(guiGraphics); guiGraphics.blit(BACKGROUND_TEXTURE, this.width / 2 - 128, this.height / 2 - 128, 0, 0, 256, 256, 256, 256); super.render(guiGraphics, mouseX, mouseY, partialTicks); } }  
  • Topics

×
×
  • Create New...

Important Information

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