2013-12-27 23:59:59 +01:00
|
|
|
package appeng.container.implementations;
|
|
|
|
|
2014-01-23 17:28:12 +01:00
|
|
|
import java.io.IOException;
|
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
2014-01-23 17:28:12 +01:00
|
|
|
import net.minecraft.inventory.ICrafting;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.network.packet.Packet;
|
|
|
|
import net.minecraftforge.common.ForgeDirection;
|
|
|
|
import appeng.api.AEApi;
|
2014-01-23 20:02:48 +01:00
|
|
|
import appeng.api.implementations.guiobjects.INetworkTool;
|
2014-01-23 17:28:12 +01:00
|
|
|
import appeng.api.networking.IGrid;
|
|
|
|
import appeng.api.networking.IGridBlock;
|
|
|
|
import appeng.api.networking.IGridHost;
|
|
|
|
import appeng.api.networking.IGridNode;
|
|
|
|
import appeng.api.networking.energy.IEnergyGrid;
|
|
|
|
import appeng.api.storage.data.IAEItemStack;
|
|
|
|
import appeng.api.storage.data.IItemList;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.container.AEBaseContainer;
|
2014-01-23 17:28:12 +01:00
|
|
|
import appeng.core.sync.packets.PacketMEInventoryUpdate;
|
|
|
|
import appeng.util.Platform;
|
|
|
|
import appeng.util.item.AEItemStack;
|
|
|
|
import cpw.mods.fml.common.network.PacketDispatcher;
|
|
|
|
import cpw.mods.fml.common.network.Player;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2013-12-27 23:59:59 +01:00
|
|
|
|
|
|
|
public class ContainerNetworkStatus extends AEBaseContainer
|
|
|
|
{
|
|
|
|
|
2014-01-23 17:28:12 +01:00
|
|
|
IGrid network;
|
|
|
|
|
|
|
|
public ContainerNetworkStatus(InventoryPlayer ip, INetworkTool te) {
|
|
|
|
super( ip, null, null );
|
|
|
|
IGridHost host = te.getGridHost();
|
|
|
|
|
|
|
|
if ( host != null )
|
|
|
|
{
|
|
|
|
findNode( host, ForgeDirection.UNKNOWN );
|
|
|
|
for (ForgeDirection d : ForgeDirection.VALID_DIRECTIONS)
|
|
|
|
findNode( host, d );
|
|
|
|
}
|
|
|
|
|
2014-01-24 17:31:56 +01:00
|
|
|
if ( network == null && Platform.isServer() )
|
2014-01-23 17:28:12 +01:00
|
|
|
ip.player.closeScreen();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void findNode(IGridHost host, ForgeDirection d)
|
|
|
|
{
|
|
|
|
if ( network == null )
|
|
|
|
{
|
|
|
|
IGridNode node = host.getGridNode( d );
|
|
|
|
if ( node != null )
|
|
|
|
network = node.getGrid();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-24 17:31:56 +01:00
|
|
|
int delay = 40;
|
2013-12-27 23:59:59 +01:00
|
|
|
|
2014-01-23 17:28:12 +01:00
|
|
|
public long avgAddition;
|
|
|
|
public long powerUsage;
|
2013-12-27 23:59:59 +01:00
|
|
|
|
2014-01-23 17:28:12 +01:00
|
|
|
int lo_avgAddition, hi_avgAddition;
|
|
|
|
int lo_powerUsage, hi_powerUsage;
|
2013-12-27 23:59:59 +01:00
|
|
|
|
2014-01-23 17:28:12 +01:00
|
|
|
@Override
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void updateProgressBar(int idx, int value)
|
|
|
|
{
|
|
|
|
switch (idx)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
lo_avgAddition = value;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
hi_avgAddition = value;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
lo_powerUsage = value;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
hi_powerUsage = value;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
avgAddition = ((long) hi_avgAddition) << 32 | lo_avgAddition;
|
|
|
|
powerUsage = ((long) hi_powerUsage) << 32 | lo_powerUsage;
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
2014-01-23 17:28:12 +01:00
|
|
|
@Override
|
|
|
|
public void detectAndSendChanges()
|
|
|
|
{
|
|
|
|
delay++;
|
2014-01-24 17:31:56 +01:00
|
|
|
if ( Platform.isServer() && delay > 15 && network != null )
|
2014-01-23 17:28:12 +01:00
|
|
|
{
|
|
|
|
delay = 0;
|
|
|
|
|
|
|
|
IEnergyGrid eg = network.getCache( IEnergyGrid.class );
|
|
|
|
if ( eg != null )
|
|
|
|
{
|
|
|
|
avgAddition = (long) (100.0 * eg.getAvgPowerInjection());
|
|
|
|
powerUsage = (long) (100.0 * eg.getAvgPowerUsage());
|
|
|
|
|
|
|
|
lo_avgAddition = (int) (avgAddition & 0xffffffffL);
|
|
|
|
hi_avgAddition = (int) (avgAddition >> 32L);
|
|
|
|
|
|
|
|
lo_powerUsage = (int) (powerUsage & 0xffffffffL);
|
|
|
|
hi_powerUsage = (int) (powerUsage >> 32L);
|
|
|
|
|
|
|
|
for (Object c : this.crafters)
|
|
|
|
{
|
|
|
|
ICrafting icrafting = (ICrafting) c;
|
|
|
|
icrafting.sendProgressBarUpdate( this, 0, (int) lo_avgAddition );
|
|
|
|
icrafting.sendProgressBarUpdate( this, 1, (int) hi_avgAddition );
|
|
|
|
icrafting.sendProgressBarUpdate( this, 2, (int) lo_powerUsage );
|
|
|
|
icrafting.sendProgressBarUpdate( this, 3, (int) hi_powerUsage );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PacketMEInventoryUpdate piu;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
piu = new PacketMEInventoryUpdate();
|
|
|
|
|
|
|
|
for (Class<? extends IGridHost> machineClass : network.getMachinesClasses())
|
|
|
|
{
|
|
|
|
IItemList<IAEItemStack> list = AEApi.instance().storage().createItemList();
|
|
|
|
for (IGridNode machine : network.getMachines( machineClass ))
|
|
|
|
{
|
|
|
|
IGridBlock blk = machine.getGridBlock();
|
|
|
|
ItemStack is = blk.getMachineRepresentation();
|
|
|
|
if ( is != null )
|
|
|
|
{
|
|
|
|
IAEItemStack ais = AEItemStack.create( is );
|
|
|
|
ais.setStackSize( 1 );
|
|
|
|
ais.setCountRequestable( (long) (blk.getIdlePowerUsage() * 100.0) );
|
|
|
|
list.add( ais );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (IAEItemStack ais : list)
|
|
|
|
piu.appendItem( ais );
|
|
|
|
}
|
|
|
|
|
|
|
|
Packet p = piu.getPacket();
|
|
|
|
for (Object c : this.crafters)
|
|
|
|
{
|
|
|
|
if ( c instanceof Player )
|
|
|
|
PacketDispatcher.sendPacketToPlayer( p, (Player) c );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (IOException e)
|
|
|
|
{
|
|
|
|
// :P
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
super.detectAndSendChanges();
|
|
|
|
}
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|