Applied-Energistics-2-tiler.../src/main/java/appeng/container/implementations/ContainerGrinder.java

33 lines
1.3 KiB
Java
Raw Normal View History

2014-09-24 02:26:27 +02:00
package appeng.container.implementations;
import appeng.container.slot.SlotInaccessible;
import net.minecraft.entity.player.InventoryPlayer;
import appeng.container.AEBaseContainer;
import appeng.container.slot.SlotOutput;
import appeng.container.slot.SlotRestrictedInput;
import appeng.tile.grindstone.TileGrinder;
public class ContainerGrinder extends AEBaseContainer
{
final TileGrinder grinder;
2014-09-24 02:26:27 +02:00
public ContainerGrinder(InventoryPlayer ip, TileGrinder grinder) {
super( ip, grinder, null );
this.grinder = grinder;
2014-09-24 02:26:27 +02:00
addSlotToContainer( new SlotRestrictedInput( SlotRestrictedInput.PlacableItemType.ORE, grinder, 0, 12, 17, invPlayer ) );
addSlotToContainer( new SlotRestrictedInput( SlotRestrictedInput.PlacableItemType.ORE, grinder, 1, 12 + 18, 17, invPlayer ) );
addSlotToContainer( new SlotRestrictedInput( SlotRestrictedInput.PlacableItemType.ORE, grinder, 2, 12 + 36, 17, invPlayer ) );
2014-09-24 02:26:27 +02:00
addSlotToContainer( new SlotInaccessible( grinder, 6, 80, 40 ) );
2014-09-24 02:26:27 +02:00
addSlotToContainer( new SlotOutput( grinder, 3, 112, 63, 2 * 16 + 15 ) );
addSlotToContainer( new SlotOutput( grinder, 4, 112 + 18, 63, 2 * 16 + 15 ) );
addSlotToContainer( new SlotOutput( grinder, 5, 112 + 36, 63, 2 * 16 + 15 ) );
2014-09-24 02:26:27 +02:00
bindPlayerInventory( ip, 0, 176 - /* height of player inventory */82 );
2014-09-24 02:26:27 +02:00
}
}