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

245 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;
@GuiSync( 0 )
public RedstoneMode rsMode = RedstoneMode.IGNORE;
@GuiSync( 1 )
public FuzzyMode fzMode = FuzzyMode.IGNORE_ALL;
@GuiSync( 5 )
public YesNo cMode = YesNo.NO;
int tbSlot;
NetworkToolViewer tbInventory;
2013-12-30 06:56:43 +01:00
public ContainerUpgradeable( InventoryPlayer ip, IUpgradeableHost te )
{
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 )
2014-01-23 17:28:12 +01:00
{
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-01-23 17:28:12 +01:00
{
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();
for( int x = 0; x < pi.getSizeInventory(); x++ )
2014-01-23 17:28:12 +01:00
{
ItemStack pii = pi.getStackInSlot( x );
if( pii != null && pii.getItem() instanceof ToolNetworkTool )
2014-01-23 17:28:12 +01:00
{
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;
}
}
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++ )
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
}
public boolean hasToolbox()
2014-01-20 17:41:37 +01:00
{
return this.tbInventory != null;
}
protected int getHeight()
{
return 184;
}
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 ) );
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 void setupUpgrades()
{
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 boolean supportCapacity()
{
return true;
}
public int availableUpgrades()
2014-01-23 17:28:12 +01:00
{
return 4;
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
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 );
if( this.upgradeable instanceof PartExportBus )
this.cMode = (YesNo) cm.getSetting( Settings.CRAFT_ONLY );
}
public void checkToolbox()
{
if( this.hasToolbox() )
{
ItemStack currentItem = this.getPlayerInv().getStackInSlot( this.tbSlot );
if( currentItem != this.tbInventory.getItemStack() )
{
if( currentItem != null )
{
if( Platform.isSameItem( this.tbInventory.getItemStack(), currentItem ) )
this.getPlayerInv().setInventorySlotContents( this.tbSlot, this.tbInventory.getItemStack() );
else
this.isContainerValid = false;
}
else
this.isContainerValid = false;
}
}
}
protected void standardDetectAndSendChanges()
2013-12-30 06:56:43 +01:00
{
super.detectAndSendChanges();
2013-12-30 06:56:43 +01:00
}
@Override
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;
}
}