/
Belyash5
/
Flu
Обзор
Документация
Войти
/
Belyash5
/
Flu
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/main/java/com/hbm/inventory/container/ContainerCrucible.java
81 строка
2 KB
Bob
sharticle accelerator
27 янв 2025, 00:09
27 янв 2025, 00:09
1564564
Код
Авторство
О чём код?
package com.hbm.inventory.container; import com.hbm.inventory.SlotNonRetarded; import com.hbm.tileentity.machine.TileEntityCrucible; import com.hbm.util.InventoryUtil; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.InventoryPlayer; import net.minecraft.inventory.Container; import net.minecraft.inventory.Slot; import net.minecraft.item.ItemStack; public class ContainerCrucible extends Container { protected TileEntityCrucible crucible; public ContainerCrucible(InventoryPlayer invPlayer, TileEntityCrucible crucible) { this.crucible = crucible; //template this.addSlotToContainer(new SlotNonRetarded(crucible, 0, 107, 81)); //input for(int i = 0; i < 3; i++) { for(int j = 0; j < 3; j++) { this.addSlotToContainer(new SlotNonRetarded(crucible, j + i * 3 + 1, 107 + j * 18, 18 + i * 18)); } } for(int i = 0; i < 3; i++) { for(int j = 0; j < 9; j++) { this.addSlotToContainer(new Slot(invPlayer, j + i * 9 + 9, 8 + j * 18, 132 + i * 18)); } } for(int i = 0; i < 9; i++) { this.addSlotToContainer(new Slot(invPlayer, i, 8 + i * 18, 190)); } } @Override public ItemStack slotClick(int slot, int button, int mode, EntityPlayer player) { if(mode == 2) return null; return super.slotClick(slot, button, mode, player); } @Override public ItemStack transferStackInSlot(EntityPlayer player, int index) { ItemStack stack = null; Slot slot = (Slot) this.inventorySlots.get(index); if(slot != null && slot.getHasStack()) { ItemStack originalStack = slot.getStack(); stack = originalStack.copy(); if(index <= 9) { if(!this.mergeItemStack(originalStack, 10, this.inventorySlots.size(), true)) { return null; } slot.onSlotChange(originalStack, stack); } else if(!InventoryUtil.mergeItemStack(this.inventorySlots, originalStack, 0, 10, false)) { return null; } if(originalStack.stackSize == 0) { slot.putStack((ItemStack) null); } else { slot.onSlotChanged(); } } return stack; } @Override public boolean canInteractWith(EntityPlayer player) { return crucible.isUseableByPlayer(player); } }