2013-12-27 23:59:59 +01:00
|
|
|
package appeng.core.sync;
|
|
|
|
|
|
|
|
import java.lang.reflect.Constructor;
|
2013-12-28 22:03:20 +01:00
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
2014-01-20 17:41:37 +01:00
|
|
|
import net.minecraft.item.ItemStack;
|
2013-12-27 23:59:59 +01:00
|
|
|
import net.minecraft.tileentity.TileEntity;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
import net.minecraftforge.common.ForgeDirection;
|
|
|
|
import appeng.api.exceptions.AppEngException;
|
2013-12-30 06:56:43 +01:00
|
|
|
import appeng.api.implementations.IBusCommon;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.api.parts.IPart;
|
|
|
|
import appeng.api.parts.IPartHost;
|
2014-01-05 09:39:48 +01:00
|
|
|
import appeng.api.storage.IStorageMonitorable;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.client.gui.GuiNull;
|
|
|
|
import appeng.container.ContainerNull;
|
2014-01-20 17:41:37 +01:00
|
|
|
import appeng.container.implementations.ContainerCellWorkbench;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.container.implementations.ContainerChest;
|
|
|
|
import appeng.container.implementations.ContainerCondenser;
|
|
|
|
import appeng.container.implementations.ContainerDrive;
|
|
|
|
import appeng.container.implementations.ContainerGrinder;
|
2014-01-20 17:41:37 +01:00
|
|
|
import appeng.container.implementations.ContainerIOPort;
|
2013-12-28 22:03:20 +01:00
|
|
|
import appeng.container.implementations.ContainerInterface;
|
2014-01-05 09:39:48 +01:00
|
|
|
import appeng.container.implementations.ContainerLevelEmitter;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.container.implementations.ContainerMEMonitorable;
|
2014-01-20 17:41:37 +01:00
|
|
|
import appeng.container.implementations.ContainerMEPortableCell;
|
2014-01-23 17:28:12 +01:00
|
|
|
import appeng.container.implementations.ContainerNetworkStatus;
|
|
|
|
import appeng.container.implementations.ContainerNetworkTool;
|
2014-01-20 17:41:37 +01:00
|
|
|
import appeng.container.implementations.ContainerQNB;
|
|
|
|
import appeng.container.implementations.ContainerUpgradeable;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.container.implementations.ContainerVibrationChamber;
|
2014-01-20 17:41:37 +01:00
|
|
|
import appeng.helpers.ICellItemViewer;
|
|
|
|
import appeng.helpers.IGuiItem;
|
2014-01-05 09:39:48 +01:00
|
|
|
import appeng.helpers.IInterfaceHost;
|
2014-01-23 17:28:12 +01:00
|
|
|
import appeng.helpers.INetworkTool;
|
2014-01-05 09:39:48 +01:00
|
|
|
import appeng.parts.automation.PartLevelEmitter;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.tile.grindstone.TileGrinder;
|
2014-01-06 07:54:25 +01:00
|
|
|
import appeng.tile.misc.TileCellWorkbench;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.tile.misc.TileCondenser;
|
|
|
|
import appeng.tile.misc.TileVibrationChamber;
|
2014-01-20 17:41:37 +01:00
|
|
|
import appeng.tile.qnb.TileQuantumBridge;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.tile.storage.TileChest;
|
|
|
|
import appeng.tile.storage.TileDrive;
|
2014-01-20 17:41:37 +01:00
|
|
|
import appeng.tile.storage.TileIOPort;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.util.Platform;
|
|
|
|
import cpw.mods.fml.common.network.IGuiHandler;
|
|
|
|
import cpw.mods.fml.relauncher.ReflectionHelper;
|
|
|
|
|
|
|
|
public enum GuiBridge implements IGuiHandler
|
|
|
|
{
|
|
|
|
GUI_Handler(),
|
|
|
|
|
2014-01-20 17:41:37 +01:00
|
|
|
GUI_GRINDER(ContainerGrinder.class, TileGrinder.class, false),
|
2013-12-27 23:59:59 +01:00
|
|
|
|
2014-01-20 17:41:37 +01:00
|
|
|
GUI_QNB(ContainerQNB.class, TileQuantumBridge.class, false),
|
2013-12-27 23:59:59 +01:00
|
|
|
|
2014-01-20 17:41:37 +01:00
|
|
|
GUI_CHEST(ContainerChest.class, TileChest.class, false),
|
2013-12-27 23:59:59 +01:00
|
|
|
|
2014-01-20 17:41:37 +01:00
|
|
|
GUI_ME(ContainerMEMonitorable.class, IStorageMonitorable.class, false),
|
2013-12-27 23:59:59 +01:00
|
|
|
|
2014-01-20 17:41:37 +01:00
|
|
|
GUI_PORTABLE_CELL(ContainerMEPortableCell.class, ICellItemViewer.class, true),
|
2013-12-27 23:59:59 +01:00
|
|
|
|
2014-01-23 17:28:12 +01:00
|
|
|
GUI_NETWORK_STATUS(ContainerNetworkStatus.class, INetworkTool.class, true),
|
|
|
|
|
|
|
|
GUI_NETWORK_TOOL(ContainerNetworkTool.class, INetworkTool.class, true),
|
|
|
|
|
2014-01-20 17:41:37 +01:00
|
|
|
GUI_DRIVE(ContainerDrive.class, TileDrive.class, false),
|
2013-12-28 22:03:20 +01:00
|
|
|
|
2014-01-20 17:41:37 +01:00
|
|
|
GUI_VIBRATIONCHAMBER(ContainerVibrationChamber.class, TileVibrationChamber.class, false),
|
2013-12-30 06:56:43 +01:00
|
|
|
|
2014-01-20 17:41:37 +01:00
|
|
|
GUI_CONDENSER(ContainerCondenser.class, TileCondenser.class, false),
|
|
|
|
|
|
|
|
GUI_INTERFACE(ContainerInterface.class, IInterfaceHost.class, false),
|
|
|
|
|
|
|
|
GUI_BUS(ContainerUpgradeable.class, IBusCommon.class, false),
|
|
|
|
|
|
|
|
GUI_IOPORT(ContainerIOPort.class, TileIOPort.class, false),
|
2014-01-05 09:39:48 +01:00
|
|
|
|
|
|
|
// extends (Container/Gui) + Bus
|
2014-01-20 17:41:37 +01:00
|
|
|
GUI_LEVELEMITTER(ContainerLevelEmitter.class, PartLevelEmitter.class, false),
|
2014-01-06 07:54:25 +01:00
|
|
|
|
2014-01-20 17:41:37 +01:00
|
|
|
GUI_CELLWORKBENCH(ContainerCellWorkbench.class, TileCellWorkbench.class, false);
|
2013-12-27 23:59:59 +01:00
|
|
|
|
|
|
|
private Class Tile;
|
|
|
|
private Class Gui;
|
|
|
|
private Class Container;
|
2014-01-20 17:41:37 +01:00
|
|
|
private boolean isItem;
|
2013-12-27 23:59:59 +01:00
|
|
|
|
|
|
|
private GuiBridge() {
|
|
|
|
Tile = null;
|
|
|
|
Gui = null;
|
|
|
|
Container = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* I honestly wish I could just use the GuiClass Names myself, but I can't access them without MC's Server
|
|
|
|
* Exploding.
|
|
|
|
*/
|
|
|
|
private void getGui()
|
|
|
|
{
|
|
|
|
if ( Platform.isClient() )
|
|
|
|
{
|
|
|
|
String start = Container.getName();
|
|
|
|
String GuiClass = start.replaceFirst( "container.", "client.gui." ).replace( ".Container", ".Gui" );
|
|
|
|
if ( start.equals( GuiClass ) )
|
|
|
|
throw new RuntimeException( "Unable to find gui class" );
|
|
|
|
Gui = ReflectionHelper.getClass( this.getClass().getClassLoader(), GuiClass );
|
|
|
|
if ( Gui == null )
|
|
|
|
throw new RuntimeException( "Cannot Load class: " + GuiClass );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private GuiBridge(Class _Container) {
|
|
|
|
Container = _Container;
|
|
|
|
Tile = null;
|
|
|
|
getGui();
|
|
|
|
}
|
|
|
|
|
2014-01-20 17:41:37 +01:00
|
|
|
private GuiBridge(Class _Container, Class _Tile, boolean isItem) {
|
2013-12-27 23:59:59 +01:00
|
|
|
Container = _Container;
|
2014-01-20 17:41:37 +01:00
|
|
|
this.isItem = isItem;
|
2013-12-27 23:59:59 +01:00
|
|
|
Tile = _Tile;
|
|
|
|
getGui();
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean CorrectTileOrPart(Object tE)
|
|
|
|
{
|
|
|
|
if ( Tile == null )
|
|
|
|
throw new RuntimeException( "This Gui Cannot use the standard Handler." );
|
|
|
|
|
|
|
|
return Tile.isInstance( tE );
|
|
|
|
}
|
|
|
|
|
|
|
|
public Object ConstructContainer(InventoryPlayer inventory, ForgeDirection side, Object tE)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
Constructor[] c = Container.getConstructors();
|
|
|
|
if ( c.length == 0 )
|
|
|
|
throw new AppEngException( "Invalid Gui Class" );
|
|
|
|
return c[0].newInstance( inventory, tE );
|
|
|
|
}
|
|
|
|
catch (Throwable t)
|
|
|
|
{
|
|
|
|
throw new RuntimeException( t );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-28 22:03:20 +01:00
|
|
|
public Object ConstructGui(InventoryPlayer inventory, ForgeDirection side, Object tE)
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
Constructor[] c = Gui.getConstructors();
|
|
|
|
if ( c.length == 0 )
|
|
|
|
throw new AppEngException( "Invalid Gui Class" );
|
|
|
|
return c[0].newInstance( inventory, tE );
|
|
|
|
}
|
|
|
|
catch (Throwable t)
|
|
|
|
{
|
|
|
|
throw new RuntimeException( t );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Object getServerGuiElement(int ID_ORDINAL, EntityPlayer player, World w, int x, int y, int z)
|
|
|
|
{
|
2013-12-28 22:03:20 +01:00
|
|
|
ForgeDirection side = ForgeDirection.getOrientation( ID_ORDINAL & 0x07 );
|
2013-12-27 23:59:59 +01:00
|
|
|
GuiBridge ID = values()[ID_ORDINAL >> 3];
|
|
|
|
|
2014-01-20 17:41:37 +01:00
|
|
|
if ( ID.isItem() )
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
2014-01-20 17:41:37 +01:00
|
|
|
ItemStack it = player.inventory.getCurrentItem();
|
|
|
|
if ( it != null && it.getItem() instanceof IGuiItem )
|
|
|
|
{
|
2014-01-23 17:28:12 +01:00
|
|
|
Object myItem = ((IGuiItem) it.getItem()).getGuiObject( it, w, x, y, z );
|
2014-01-20 17:41:37 +01:00
|
|
|
if ( ID.CorrectTileOrPart( myItem ) )
|
|
|
|
return ID.ConstructContainer( player.inventory, side, myItem );
|
|
|
|
}
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-01-20 17:41:37 +01:00
|
|
|
TileEntity TE = w.getBlockTileEntity( x, y, z );
|
|
|
|
if ( TE instanceof IPartHost )
|
|
|
|
{
|
|
|
|
((IPartHost) TE).getPart( side );
|
|
|
|
IPart part = ((IPartHost) TE).getPart( side );
|
|
|
|
if ( ID.CorrectTileOrPart( part ) )
|
|
|
|
return ID.ConstructContainer( player.inventory, side, part );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( ID.CorrectTileOrPart( TE ) )
|
|
|
|
return ID.ConstructContainer( player.inventory, side, TE );
|
|
|
|
}
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
2013-12-28 22:03:20 +01:00
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
return new ContainerNull();
|
|
|
|
}
|
|
|
|
|
2014-01-23 17:28:12 +01:00
|
|
|
public boolean isItem()
|
2014-01-20 17:41:37 +01:00
|
|
|
{
|
|
|
|
return isItem;
|
|
|
|
}
|
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
@Override
|
|
|
|
public Object getClientGuiElement(int ID_ORDINAL, EntityPlayer player, World w, int x, int y, int z)
|
|
|
|
{
|
2013-12-28 22:03:20 +01:00
|
|
|
ForgeDirection side = ForgeDirection.getOrientation( ID_ORDINAL & 0x07 );
|
2013-12-27 23:59:59 +01:00
|
|
|
GuiBridge ID = values()[ID_ORDINAL >> 3];
|
|
|
|
|
2014-01-20 17:41:37 +01:00
|
|
|
if ( ID.isItem() )
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
2014-01-20 17:41:37 +01:00
|
|
|
ItemStack it = player.inventory.getCurrentItem();
|
|
|
|
if ( it != null && it.getItem() instanceof IGuiItem )
|
|
|
|
{
|
2014-01-23 17:28:12 +01:00
|
|
|
Object myItem = ((IGuiItem) it.getItem()).getGuiObject( it, w, x, y, z );
|
2014-01-20 17:41:37 +01:00
|
|
|
if ( ID.CorrectTileOrPart( myItem ) )
|
|
|
|
return ID.ConstructGui( player.inventory, side, myItem );
|
|
|
|
}
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-01-20 17:41:37 +01:00
|
|
|
TileEntity TE = w.getBlockTileEntity( x, y, z );
|
|
|
|
|
|
|
|
if ( TE instanceof IPartHost )
|
|
|
|
{
|
|
|
|
((IPartHost) TE).getPart( side );
|
|
|
|
IPart part = ((IPartHost) TE).getPart( side );
|
|
|
|
if ( ID.CorrectTileOrPart( part ) )
|
|
|
|
return ID.ConstructGui( player.inventory, side, part );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( ID.CorrectTileOrPart( TE ) )
|
|
|
|
return ID.ConstructGui( player.inventory, side, TE );
|
|
|
|
}
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
2013-12-28 22:03:20 +01:00
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
return new GuiNull( new ContainerNull() );
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|