167 lines
4.8 KiB
Java
167 lines
4.8 KiB
Java
package appeng.container.implementations;
|
|
|
|
import java.util.Iterator;
|
|
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
|
import net.minecraft.inventory.ICrafting;
|
|
import net.minecraft.inventory.IInventory;
|
|
import net.minecraft.item.ItemStack;
|
|
import appeng.api.AEApi;
|
|
import appeng.api.config.AccessRestriction;
|
|
import appeng.api.config.FuzzyMode;
|
|
import appeng.api.config.SecurityPermissions;
|
|
import appeng.api.config.Settings;
|
|
import appeng.api.config.Upgrades;
|
|
import appeng.api.storage.IMEInventory;
|
|
import appeng.api.storage.data.IAEItemStack;
|
|
import appeng.api.storage.data.IItemList;
|
|
import appeng.container.slot.OptionalSlotFakeTypeOnly;
|
|
import appeng.container.slot.SlotFakeTypeOnly;
|
|
import appeng.container.slot.SlotRestrictedInput;
|
|
import appeng.container.slot.SlotRestrictedInput.PlaceableItemType;
|
|
import appeng.parts.misc.PartStorageBus;
|
|
import appeng.util.Platform;
|
|
import appeng.util.iterators.NullIterator;
|
|
|
|
public class ContainerStorageBus extends ContainerUpgradeable
|
|
{
|
|
|
|
PartStorageBus storageBus;
|
|
public AccessRestriction rwMode = AccessRestriction.READ_WRITE;
|
|
|
|
public ContainerStorageBus(InventoryPlayer ip, PartStorageBus te) {
|
|
super( ip, te );
|
|
storageBus = te;
|
|
}
|
|
|
|
@Override
|
|
protected int getHeight()
|
|
{
|
|
return 251;
|
|
}
|
|
|
|
@Override
|
|
public int availableUpgrades()
|
|
{
|
|
return 5;
|
|
}
|
|
|
|
@Override
|
|
protected boolean supportCapacity()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public boolean isSlotEnabled(int idx)
|
|
{
|
|
int upgrades = myte.getInstalledUpgrades( Upgrades.CAPACITY );
|
|
|
|
return upgrades > idx;
|
|
}
|
|
|
|
@Override
|
|
protected void setupConfig()
|
|
{
|
|
int xo = 8;
|
|
int yo = 23 + 6;
|
|
|
|
IInventory config = myte.getInventoryByName( "config" );
|
|
for (int y = 0; y < 7; y++)
|
|
{
|
|
for (int x = 0; x < 9; x++)
|
|
{
|
|
if ( y < 2 )
|
|
addSlotToContainer( new SlotFakeTypeOnly( config, y * 9 + x, xo + x * 18, yo + y * 18 ) );
|
|
else
|
|
addSlotToContainer( new OptionalSlotFakeTypeOnly( config, this, y * 9 + x, xo, yo, x, y, y - 2 ) );
|
|
}
|
|
}
|
|
|
|
IInventory upgrades = myte.getInventoryByName( "upgrades" );
|
|
addSlotToContainer( (new SlotRestrictedInput( PlaceableItemType.UPGRADES, upgrades, 0, 187, 8 + 18 * 0 )).setNotDraggable() );
|
|
addSlotToContainer( (new SlotRestrictedInput( PlaceableItemType.UPGRADES, upgrades, 1, 187, 8 + 18 * 1 )).setNotDraggable() );
|
|
addSlotToContainer( (new SlotRestrictedInput( PlaceableItemType.UPGRADES, upgrades, 2, 187, 8 + 18 * 2 )).setNotDraggable() );
|
|
addSlotToContainer( (new SlotRestrictedInput( PlaceableItemType.UPGRADES, upgrades, 3, 187, 8 + 18 * 3 )).setNotDraggable() );
|
|
addSlotToContainer( (new SlotRestrictedInput( PlaceableItemType.UPGRADES, upgrades, 4, 187, 8 + 18 * 4 )).setNotDraggable() );
|
|
}
|
|
|
|
@Override
|
|
public void detectAndSendChanges()
|
|
{
|
|
verifyPermissions( SecurityPermissions.BUILD, false );
|
|
|
|
if ( Platform.isServer() )
|
|
{
|
|
for (int i = 0; i < this.crafters.size(); ++i)
|
|
{
|
|
ICrafting icrafting = (ICrafting) this.crafters.get( i );
|
|
|
|
if ( this.rwMode != this.myte.getConfigManager().getSetting( Settings.ACCESS ) )
|
|
{
|
|
icrafting.sendProgressBarUpdate( this, 3, (int) this.myte.getConfigManager().getSetting( Settings.ACCESS ).ordinal() );
|
|
}
|
|
|
|
if ( this.fzMode != this.myte.getConfigManager().getSetting( Settings.FUZZY_MODE ) )
|
|
{
|
|
icrafting.sendProgressBarUpdate( this, 4, (int) this.myte.getConfigManager().getSetting( Settings.FUZZY_MODE ).ordinal() );
|
|
}
|
|
}
|
|
|
|
this.fzMode = (FuzzyMode) this.myte.getConfigManager().getSetting( Settings.FUZZY_MODE );
|
|
this.rwMode = (AccessRestriction) this.myte.getConfigManager().getSetting( Settings.ACCESS );
|
|
}
|
|
|
|
standardDetectAndSendChanges();
|
|
}
|
|
|
|
@Override
|
|
public void updateProgressBar(int idx, int value)
|
|
{
|
|
super.updateProgressBar( idx, value );
|
|
|
|
if ( idx == 3 )
|
|
this.rwMode = AccessRestriction.values()[value];
|
|
|
|
if ( idx == 4 )
|
|
this.fzMode = FuzzyMode.values()[value];
|
|
|
|
}
|
|
|
|
public void clear()
|
|
{
|
|
IInventory inv = myte.getInventoryByName( "config" );
|
|
for (int x = 0; x < inv.getSizeInventory(); x++)
|
|
inv.setInventorySlotContents( x, null );
|
|
detectAndSendChanges();
|
|
}
|
|
|
|
public void partition()
|
|
{
|
|
IInventory inv = myte.getInventoryByName( "config" );
|
|
|
|
IMEInventory<IAEItemStack> cellInv = storageBus.getInternalHandler();
|
|
|
|
Iterator<IAEItemStack> i = new NullIterator<IAEItemStack>();
|
|
if ( cellInv != null )
|
|
{
|
|
IItemList<IAEItemStack> list = cellInv.getAvailableItems( AEApi.instance().storage().createItemList() );
|
|
i = list.iterator();
|
|
}
|
|
|
|
for (int x = 0; x < inv.getSizeInventory(); x++)
|
|
{
|
|
if ( i.hasNext() && isSlotEnabled( (x / 9) - 2 ) )
|
|
{
|
|
ItemStack g = i.next().getItemStack();
|
|
g.stackSize = 1;
|
|
inv.setInventorySlotContents( x, g );
|
|
}
|
|
else
|
|
inv.setInventorySlotContents( x, null );
|
|
}
|
|
|
|
detectAndSendChanges();
|
|
}
|
|
|
|
}
|