/
Belyash5
/
Flu
Обзор
Документация
Войти
/
Belyash5
/
Flu
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/main/java/com/hbm/inventory/container/ContainerReactorZirnox.java
115 строк
4 KB
Boblet
fixed forge's broken ass item stats
20 мар 2023, 12:59
20 мар 2023, 12:59
109b671
Код
Авторство
О чём код?
package com.hbm.inventory.container; import com.hbm.inventory.FluidContainerRegistry; import com.hbm.inventory.SlotTakeOnly; import com.hbm.inventory.fluid.Fluids; import com.hbm.items.machine.ItemZirnoxRod; import com.hbm.tileentity.machine.TileEntityReactorZirnox; 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 ContainerReactorZirnox extends Container { private TileEntityReactorZirnox zirnox; public ContainerReactorZirnox(InventoryPlayer invPlayer, TileEntityReactorZirnox te) { zirnox = te; // Rods this.addSlotToContainer(new Slot(te, 0, 26, 16)); this.addSlotToContainer(new Slot(te, 1, 62, 16)); this.addSlotToContainer(new Slot(te, 2, 98, 16)); this.addSlotToContainer(new Slot(te, 3, 8, 34)); this.addSlotToContainer(new Slot(te, 4, 44, 34)); this.addSlotToContainer(new Slot(te, 5, 80, 34)); this.addSlotToContainer(new Slot(te, 6, 116, 34)); this.addSlotToContainer(new Slot(te, 7, 26, 52)); this.addSlotToContainer(new Slot(te, 8, 62, 52)); this.addSlotToContainer(new Slot(te, 9, 98, 52)); this.addSlotToContainer(new Slot(te, 10, 8, 70)); this.addSlotToContainer(new Slot(te, 11, 44, 70)); this.addSlotToContainer(new Slot(te, 12, 80, 70)); this.addSlotToContainer(new Slot(te, 13, 116, 70)); this.addSlotToContainer(new Slot(te, 14, 26, 88)); this.addSlotToContainer(new Slot(te, 15, 62, 88)); this.addSlotToContainer(new Slot(te, 16, 98, 88)); this.addSlotToContainer(new Slot(te, 17, 8, 106)); this.addSlotToContainer(new Slot(te, 18, 44, 106)); this.addSlotToContainer(new Slot(te, 19, 80, 106)); this.addSlotToContainer(new Slot(te, 20, 116, 106)); this.addSlotToContainer(new Slot(te, 21, 26, 124)); this.addSlotToContainer(new Slot(te, 22, 62, 124)); this.addSlotToContainer(new Slot(te, 23, 98, 124)); // Fluid IO this.addSlotToContainer(new Slot(te, 24, 143, 124)); this.addSlotToContainer(new SlotTakeOnly(te, 26, 143, 142)); this.addSlotToContainer(new Slot(te, 25, 179, 124)); this.addSlotToContainer(new SlotTakeOnly(te, 27, 179, 142)); 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, 84 + i * 18 + 90)); } } for(int i = 0; i < 9; i++) { this.addSlotToContainer(new Slot(invPlayer, i, 8 + i * 18, 232)); } } @Override public ItemStack transferStackInSlot(EntityPlayer player, int index) { ItemStack var3 = null; Slot slot = (Slot) this.inventorySlots.get(index); if(slot != null && slot.getHasStack()) { ItemStack stack = slot.getStack(); var3 = stack.copy(); if(index <= 27) { if(!this.mergeItemStack(stack, 28, this.inventorySlots.size(), true)) { return null; } } else { if(FluidContainerRegistry.getFluidContent(stack, Fluids.CARBONDIOXIDE) > 0) { if(!this.mergeItemStack(stack, 24, 26, false)) return null; } else if(FluidContainerRegistry.getFluidContent(stack, Fluids.WATER) > 0) { if(!this.mergeItemStack(stack, 26, 28, false)) return null; } else { if(stack.getItem() instanceof ItemZirnoxRod) { if(!this.mergeItemStack(stack, 0, 24, true)) return null; } else { return null; } } } if(stack.stackSize == 0) { slot.putStack((ItemStack) null); } else { slot.onSlotChanged(); } } return var3; } @Override public boolean canInteractWith(EntityPlayer player) { return zirnox.isUseableByPlayer(player); } }