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

249 lines
7.5 KiB
Java
Raw Normal View History

2014-11-14 12:02:52 +01:00
/*
* This file is part of Applied Energistics 2.
* Copyright (c) 2013 - 2014, AlgorithmX2, All rights reserved.
*
* Applied Energistics 2 is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Applied Energistics 2 is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Applied Energistics 2. If not, see <http://www.gnu.org/licenses/lgpl>.
*/
2013-12-30 06:56:43 +01:00
package appeng.container.implementations;
2013-12-30 06:56:43 +01:00
import net.minecraft.entity.player.InventoryPlayer;
import net.minecraft.inventory.IInventory;
2014-01-23 17:28:12 +01:00
import net.minecraft.item.ItemStack;
2014-01-06 07:54:25 +01:00
import net.minecraft.tileentity.TileEntity;
2014-01-23 17:28:12 +01:00
import net.minecraft.world.World;
import appeng.api.config.FuzzyMode;
import appeng.api.config.RedstoneMode;
import appeng.api.config.SecurityPermissions;
import appeng.api.config.Settings;
import appeng.api.config.Upgrades;
import appeng.api.config.YesNo;
2014-01-23 20:02:48 +01:00
import appeng.api.implementations.IUpgradeableHost;
2014-01-06 07:54:25 +01:00
import appeng.api.parts.IPart;
import appeng.api.util.IConfigManager;
2013-12-30 06:56:43 +01:00
import appeng.container.AEBaseContainer;
import appeng.container.guisync.GuiSync;
2013-12-30 06:56:43 +01:00
import appeng.container.slot.IOptionalSlotHost;
import appeng.container.slot.OptionalSlotFake;
import appeng.container.slot.OptionalSlotFakeTypeOnly;
import appeng.container.slot.SlotFakeTypeOnly;
2013-12-30 06:56:43 +01:00
import appeng.container.slot.SlotRestrictedInput;
2014-01-26 07:44:50 +01:00
import appeng.items.contents.NetworkToolViewer;
2014-01-23 17:28:12 +01:00
import appeng.items.tools.ToolNetworkTool;
import appeng.parts.automation.PartExportBus;
import appeng.util.Platform;
2013-12-30 06:56:43 +01:00
2014-01-20 17:41:37 +01:00
public class ContainerUpgradeable extends AEBaseContainer implements IOptionalSlotHost
2013-12-30 06:56:43 +01:00
{
final IUpgradeableHost upgradeable;
2014-01-23 17:28:12 +01:00
int tbSlot;
NetworkToolViewer tbInventory;
2013-12-30 06:56:43 +01:00
2014-01-23 20:02:48 +01:00
public ContainerUpgradeable(InventoryPlayer ip, IUpgradeableHost te) {
2014-01-06 07:54:25 +01:00
super( ip, (TileEntity) (te instanceof TileEntity ? te : null), (IPart) (te instanceof IPart ? te : null) );
2014-12-29 15:13:47 +01:00
this.upgradeable = te;
2013-12-30 06:56:43 +01:00
2014-01-23 17:28:12 +01:00
World w = null;
2015-03-26 12:13:34 +01:00
int xCoord = 0;
int yCoord = 0;
int zCoord = 0;
2014-01-23 17:28:12 +01:00
if ( te instanceof TileEntity )
{
TileEntity myTile = (TileEntity) te;
w = myTile.getWorldObj();
xCoord = myTile.xCoord;
yCoord = myTile.yCoord;
zCoord = myTile.zCoord;
2014-01-23 17:28:12 +01:00
}
if ( te instanceof IPart )
{
2014-10-01 11:34:27 +02:00
TileEntity mk = te.getTile();
2014-01-23 17:28:12 +01:00
w = mk.getWorldObj();
xCoord = mk.xCoord;
yCoord = mk.yCoord;
zCoord = mk.zCoord;
2014-01-23 17:28:12 +01:00
}
2014-12-29 15:13:47 +01:00
IInventory pi = this.getPlayerInv();
2014-01-23 17:28:12 +01:00
for (int x = 0; x < pi.getSizeInventory(); x++)
{
ItemStack pii = pi.getStackInSlot( x );
if ( pii != null && pii.getItem() instanceof ToolNetworkTool )
{
2014-12-29 15:13:47 +01:00
this.lockPlayerInventorySlot( x );
this.tbSlot = x;
this.tbInventory = (NetworkToolViewer) ((ToolNetworkTool) pii.getItem()).getGuiObject( pii, w, xCoord, yCoord, zCoord );
2014-01-23 17:28:12 +01:00
break;
}
}
2014-12-29 15:13:47 +01:00
if ( this.hasToolbox() )
2014-01-20 17:41:37 +01:00
{
for (int v = 0; v < 3; v++)
for (int u = 0; u < 3; u++)
2014-12-29 15:13:47 +01:00
this.addSlotToContainer( (new SlotRestrictedInput( SlotRestrictedInput.PlacableItemType.UPGRADES, this.tbInventory, u + v * 3, 186 + u * 18, this.getHeight() - 82 + v * 18,
this.invPlayer )).setPlayerSide() );
2014-01-20 17:41:37 +01:00
}
2014-12-29 15:13:47 +01:00
this.setupConfig();
2014-01-20 17:41:37 +01:00
2014-12-29 15:13:47 +01:00
this.bindPlayerInventory( ip, 0, this.getHeight() - /* height of player inventory */82 );
2014-01-20 17:41:37 +01:00
}
protected void setupUpgrades()
2014-01-20 17:41:37 +01:00
{
2014-12-29 15:13:47 +01:00
IInventory upgrades = this.upgradeable.getInventoryByName( "upgrades" );
if ( this.availableUpgrades() > 0 )
this.addSlotToContainer( (new SlotRestrictedInput( SlotRestrictedInput.PlacableItemType.UPGRADES, upgrades, 0, 187, 8, this.invPlayer )).setNotDraggable() );
if ( this.availableUpgrades() > 1 )
this.addSlotToContainer( (new SlotRestrictedInput( SlotRestrictedInput.PlacableItemType.UPGRADES, upgrades, 1, 187, 8 + 18, this.invPlayer )).setNotDraggable() );
if ( this.availableUpgrades() > 2 )
this.addSlotToContainer( (new SlotRestrictedInput( SlotRestrictedInput.PlacableItemType.UPGRADES, upgrades, 2, 187, 8 + 18 * 2, this.invPlayer )).setNotDraggable() );
if ( this.availableUpgrades() > 3 )
this.addSlotToContainer( (new SlotRestrictedInput( SlotRestrictedInput.PlacableItemType.UPGRADES, upgrades, 3, 187, 8 + 18 * 3, this.invPlayer )).setNotDraggable() );
}
protected void setupConfig()
{
int x = 80;
int y = 40;
2014-12-29 15:13:47 +01:00
this.setupUpgrades();
2013-12-30 06:56:43 +01:00
2014-12-29 15:13:47 +01:00
IInventory inv = this.upgradeable.getInventoryByName( "config" );
this.addSlotToContainer( new SlotFakeTypeOnly( inv, 0, x, y ) );
2014-12-29 15:13:47 +01:00
if ( this.supportCapacity() )
{
2014-12-29 15:13:47 +01:00
this.addSlotToContainer( new OptionalSlotFakeTypeOnly( inv, this, 1, x, y, -1, 0, 1 ) );
this.addSlotToContainer( new OptionalSlotFakeTypeOnly( inv, this, 2, x, y, 1, 0, 1 ) );
this.addSlotToContainer( new OptionalSlotFakeTypeOnly( inv, this, 3, x, y, 0, -1, 1 ) );
this.addSlotToContainer( new OptionalSlotFakeTypeOnly( inv, this, 4, x, y, 0, 1, 1 ) );
this.addSlotToContainer( new OptionalSlotFakeTypeOnly( inv, this, 5, x, y, -1, -1, 2 ) );
this.addSlotToContainer( new OptionalSlotFakeTypeOnly( inv, this, 6, x, y, 1, -1, 2 ) );
this.addSlotToContainer( new OptionalSlotFakeTypeOnly( inv, this, 7, x, y, -1, 1, 2 ) );
this.addSlotToContainer( new OptionalSlotFakeTypeOnly( inv, this, 8, x, y, 1, 1, 2 ) );
}
2014-01-06 07:54:25 +01:00
}
protected int getHeight()
{
return 184;
2013-12-30 06:56:43 +01:00
}
2014-01-20 17:41:37 +01:00
public int availableUpgrades()
{
return 4;
}
protected boolean supportCapacity()
{
return true;
}
@GuiSync(0)
public RedstoneMode rsMode = RedstoneMode.IGNORE;
@GuiSync(1)
public FuzzyMode fzMode = FuzzyMode.IGNORE_ALL;
@GuiSync(5)
public YesNo cMode = YesNo.NO;
2014-01-23 17:28:12 +01:00
public void checkToolbox()
{
2014-12-29 15:13:47 +01:00
if ( this.hasToolbox() )
2014-01-23 17:28:12 +01:00
{
2014-12-29 15:13:47 +01:00
ItemStack currentItem = this.getPlayerInv().getStackInSlot( this.tbSlot );
2014-01-23 17:28:12 +01:00
2014-12-29 15:13:47 +01:00
if ( currentItem != this.tbInventory.getItemStack() )
2014-01-23 17:28:12 +01:00
{
if ( currentItem != null )
{
2014-12-29 15:13:47 +01:00
if ( Platform.isSameItem( this.tbInventory.getItemStack(), currentItem ) )
this.getPlayerInv().setInventorySlotContents( this.tbSlot, this.tbInventory.getItemStack() );
2014-01-23 17:28:12 +01:00
else
2014-12-29 15:13:47 +01:00
this.isContainerValid = false;
2014-01-23 17:28:12 +01:00
}
else
2014-12-29 15:13:47 +01:00
this.isContainerValid = false;
2014-01-23 17:28:12 +01:00
}
}
}
@Override
public void detectAndSendChanges()
{
2014-12-29 15:13:47 +01:00
this.verifyPermissions( SecurityPermissions.BUILD, false );
if ( Platform.isServer() )
{
IConfigManager cm = this.upgradeable.getConfigManager();
2014-12-29 15:13:47 +01:00
this.loadSettingsFromHost( cm );
}
2014-12-29 15:13:47 +01:00
this.checkToolbox();
2014-01-23 17:28:12 +01:00
2014-12-29 15:13:47 +01:00
for (Object o : this.inventorySlots)
{
if ( o instanceof OptionalSlotFake )
{
OptionalSlotFake fs = (OptionalSlotFake) o;
if ( !fs.isEnabled() && fs.getDisplayStack() != null )
2014-09-28 20:56:16 +02:00
fs.clearStack();
}
}
2014-12-29 15:13:47 +01:00
this.standardDetectAndSendChanges();
}
protected void loadSettingsFromHost(IConfigManager cm)
{
this.fzMode = (FuzzyMode) cm.getSetting( Settings.FUZZY_MODE );
this.rsMode = (RedstoneMode) cm.getSetting( Settings.REDSTONE_CONTROLLED );
2014-12-29 15:13:47 +01:00
if ( this.upgradeable instanceof PartExportBus )
this.cMode = (YesNo) cm.getSetting( Settings.CRAFT_ONLY );
}
protected void standardDetectAndSendChanges()
{
super.detectAndSendChanges();
}
2013-12-30 06:56:43 +01:00
public boolean hasToolbox()
{
2014-12-29 15:13:47 +01:00
return this.tbInventory != null;
2013-12-30 06:56:43 +01:00
}
@Override
2014-01-20 17:41:37 +01:00
public boolean isSlotEnabled(int idx)
2013-12-30 06:56:43 +01:00
{
2014-12-29 15:13:47 +01:00
int upgrades = this.upgradeable.getInstalledUpgrades( Upgrades.CAPACITY );
if ( idx == 1 && upgrades > 0 )
2013-12-30 06:56:43 +01:00
return true;
if ( idx == 2 && upgrades > 1 )
2013-12-30 06:56:43 +01:00
return true;
return false;
}
}