ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/ContainerCoffeeMachine.java

130 lines
4.9 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("ContainerCoffeeMachine.java") is part of the Actually Additions mod for Minecraft.
2015-08-29 14:33:25 +02:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2016-05-16 22:54:42 +02:00
* © 2015-2016 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.inventory;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.inventory.slot.SlotOutput;
import de.ellpeck.actuallyadditions.mod.items.InitItems;
import de.ellpeck.actuallyadditions.mod.items.ItemCoffee;
import de.ellpeck.actuallyadditions.mod.items.metalists.TheMiscItems;
import de.ellpeck.actuallyadditions.mod.tile.TileEntityBase;
import de.ellpeck.actuallyadditions.mod.tile.TileEntityCoffeeMachine;
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;
2016-05-19 20:05:12 +02:00
import javax.annotation.Nonnull;
public class ContainerCoffeeMachine extends Container{
2016-05-19 20:05:12 +02:00
private final TileEntityCoffeeMachine machine;
public ContainerCoffeeMachine(InventoryPlayer inventory, TileEntityBase tile){
this.machine = (TileEntityCoffeeMachine)tile;
2016-05-02 17:46:53 +02:00
this.addSlotToContainer(new Slot(this.machine, TileEntityCoffeeMachine.SLOT_COFFEE_BEANS, 37, 6));
this.addSlotToContainer(new Slot(this.machine, TileEntityCoffeeMachine.SLOT_INPUT, 80, 42));
this.addSlotToContainer(new SlotOutput(this.machine, TileEntityCoffeeMachine.SLOT_OUTPUT, 80, 73));
2015-10-02 16:48:01 +02:00
for(int i = 0; i < 4; i++){
for(int j = 0; j < 2; j++){
2016-05-02 17:46:53 +02:00
this.addSlotToContainer(new Slot(this.machine, j+i*2+3, 125+j*18, 6+i*18));
}
}
2015-10-02 16:48:01 +02:00
for(int i = 0; i < 3; i++){
for(int j = 0; j < 9; j++){
this.addSlotToContainer(new Slot(inventory, j+i*9+9, 8+j*18, 97+i*18));
}
}
2015-10-02 16:48:01 +02:00
for(int i = 0; i < 9; i++){
this.addSlotToContainer(new Slot(inventory, i, 8+i*18, 155));
}
}
@Override
public ItemStack transferStackInSlot(EntityPlayer player, int slot){
final int inventoryStart = 11;
final int inventoryEnd = inventoryStart+26;
final int hotbarStart = inventoryEnd+1;
final int hotbarEnd = hotbarStart+8;
2016-05-02 17:46:53 +02:00
Slot theSlot = this.inventorySlots.get(slot);
2015-10-02 16:48:01 +02:00
if(theSlot != null && theSlot.getHasStack()){
2015-07-15 09:28:01 +02:00
ItemStack newStack = theSlot.getStack();
ItemStack currentStack = newStack.copy();
2015-07-15 09:28:01 +02:00
//Slots in Inventory to shift from
if(slot == TileEntityCoffeeMachine.SLOT_OUTPUT){
2015-10-03 10:16:18 +02:00
if(!this.mergeItemStack(newStack, inventoryStart, hotbarEnd+1, true)){
return null;
}
2015-07-15 09:28:01 +02:00
theSlot.onSlotChange(newStack, currentStack);
}
//Other Slots in Inventory excluded
else if(slot >= inventoryStart){
//Shift from Inventory
if(newStack.getItem() == InitItems.itemMisc && newStack.getItemDamage() == TheMiscItems.CUP.ordinal()){
2015-10-02 16:48:01 +02:00
if(!this.mergeItemStack(newStack, TileEntityCoffeeMachine.SLOT_INPUT, TileEntityCoffeeMachine.SLOT_INPUT+1, false)){
return null;
}
2015-07-15 09:28:01 +02:00
}
else if(ItemCoffee.getIngredientFromStack(newStack) != null){
2015-10-03 10:16:18 +02:00
if(!this.mergeItemStack(newStack, 3, 11, false)){
return null;
}
}
2015-07-15 09:28:01 +02:00
else if(newStack.getItem() == InitItems.itemCoffeeBean){
2015-10-02 16:48:01 +02:00
if(!this.mergeItemStack(newStack, TileEntityCoffeeMachine.SLOT_COFFEE_BEANS, TileEntityCoffeeMachine.SLOT_COFFEE_BEANS+1, false)){
return null;
}
2015-07-15 09:28:01 +02:00
}
//
2015-07-15 09:28:01 +02:00
else if(slot >= inventoryStart && slot <= inventoryEnd){
2015-10-03 10:16:18 +02:00
if(!this.mergeItemStack(newStack, hotbarStart, hotbarEnd+1, false)){
return null;
}
}
2015-10-02 16:48:01 +02:00
else if(slot >= inventoryEnd+1 && slot < hotbarEnd+1 && !this.mergeItemStack(newStack, inventoryStart, inventoryEnd+1, false)){
return null;
}
2015-07-15 09:28:01 +02:00
}
2015-10-03 10:16:18 +02:00
else if(!this.mergeItemStack(newStack, inventoryStart, hotbarEnd+1, false)){
return null;
}
2015-10-02 16:48:01 +02:00
if(newStack.stackSize == 0){
theSlot.putStack(null);
}
else{
theSlot.onSlotChanged();
}
2015-10-03 10:16:18 +02:00
if(newStack.stackSize == currentStack.stackSize){
return null;
}
2015-07-15 09:28:01 +02:00
theSlot.onPickupFromSlot(player, newStack);
return currentStack;
}
return null;
}
2015-10-03 10:19:40 +02:00
@Override
2016-05-19 20:05:12 +02:00
public boolean canInteractWith(@Nonnull EntityPlayer player){
2015-10-03 10:19:40 +02:00
return this.machine.isUseableByPlayer(player);
}
}