2014-05-07 07:22:42 +02:00
|
|
|
package appeng.container.implementations;
|
|
|
|
|
|
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
|
|
|
import net.minecraft.inventory.IInventory;
|
|
|
|
import appeng.api.config.FullnessMode;
|
|
|
|
import appeng.api.config.OperationMode;
|
|
|
|
import appeng.api.config.RedstoneMode;
|
|
|
|
import appeng.api.config.SecurityPermissions;
|
|
|
|
import appeng.api.config.Settings;
|
|
|
|
import appeng.container.guisync.GuiSync;
|
|
|
|
import appeng.container.slot.SlotOutput;
|
|
|
|
import appeng.container.slot.SlotRestrictedInput;
|
|
|
|
import appeng.container.slot.SlotRestrictedInput.PlaceableItemType;
|
|
|
|
import appeng.tile.storage.TileIOPort;
|
|
|
|
import appeng.util.Platform;
|
|
|
|
|
|
|
|
public class ContainerIOPort extends ContainerUpgradeable
|
|
|
|
{
|
|
|
|
|
|
|
|
TileIOPort ioPort;
|
|
|
|
|
|
|
|
@GuiSync(2)
|
|
|
|
public FullnessMode fMode = FullnessMode.EMPTY;
|
|
|
|
@GuiSync(3)
|
|
|
|
public OperationMode opMode = OperationMode.EMPTY;
|
|
|
|
|
|
|
|
public ContainerIOPort(InventoryPlayer ip, TileIOPort te) {
|
|
|
|
super( ip, te );
|
|
|
|
ioPort = te;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected int getHeight()
|
|
|
|
{
|
|
|
|
return 166;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int availableUpgrades()
|
|
|
|
{
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected boolean supportCapacity()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void setupConfig()
|
|
|
|
{
|
|
|
|
int offx = 19;
|
|
|
|
int offy = 17;
|
|
|
|
|
|
|
|
IInventory cells = myte.getInventoryByName( "cells" );
|
|
|
|
|
|
|
|
for (int y = 0; y < 3; y++)
|
|
|
|
for (int x = 0; x < 2; x++)
|
2014-07-13 03:03:17 +02:00
|
|
|
addSlotToContainer( new SlotRestrictedInput( PlaceableItemType.STORAGE_CELLS, cells, x + y * 2, offx + x * 18, offy + y * 18, invPlayer ) );
|
2014-05-07 07:22:42 +02:00
|
|
|
|
|
|
|
offx = 122;
|
|
|
|
offy = 17;
|
|
|
|
for (int y = 0; y < 3; y++)
|
|
|
|
for (int x = 0; x < 2; x++)
|
|
|
|
addSlotToContainer( new SlotOutput( cells, 6 + x + y * 2, offx + x * 18, offy + y * 18, PlaceableItemType.STORAGE_CELLS.IIcon ) );
|
|
|
|
|
|
|
|
IInventory upgrades = myte.getInventoryByName( "upgrades" );
|
2014-07-13 03:03:17 +02:00
|
|
|
addSlotToContainer( (new SlotRestrictedInput( PlaceableItemType.UPGRADES, upgrades, 0, 187, 8 + 18 * 0, invPlayer )).setNotDraggable() );
|
|
|
|
addSlotToContainer( (new SlotRestrictedInput( PlaceableItemType.UPGRADES, upgrades, 1, 187, 8 + 18 * 1, invPlayer )).setNotDraggable() );
|
|
|
|
addSlotToContainer( (new SlotRestrictedInput( PlaceableItemType.UPGRADES, upgrades, 2, 187, 8 + 18 * 2, invPlayer )).setNotDraggable() );
|
2014-05-07 07:22:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void detectAndSendChanges()
|
|
|
|
{
|
|
|
|
verifyPermissions( SecurityPermissions.BUILD, false );
|
|
|
|
|
|
|
|
if ( Platform.isServer() )
|
|
|
|
{
|
|
|
|
this.opMode = (OperationMode) myte.getConfigManager().getSetting( Settings.OPERATION_MODE );
|
|
|
|
this.fMode = (FullnessMode) this.myte.getConfigManager().getSetting( Settings.FULLNESS_MODE );
|
|
|
|
this.rsMode = (RedstoneMode) this.myte.getConfigManager().getSetting( Settings.REDSTONE_CONTROLLED );
|
|
|
|
}
|
|
|
|
|
|
|
|
standardDetectAndSendChanges();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|