Search in sources :

Example 1 with NormalMk2GuiOrderer

use of logisticspipes.gui.orderer.NormalMk2GuiOrderer in project LogisticsPipes by RS485.

the class GuiHandler method getClientGuiElement.

@Override
public Object getClientGuiElement(int ID, EntityPlayer player, final World world, int x, int y, int z) {
    TileEntity tile = world.getTileEntity(x, y, z);
    LogisticsTileGenericPipe pipe = null;
    if (tile instanceof LogisticsTileGenericPipe) {
        pipe = (LogisticsTileGenericPipe) tile;
    }
    if (ID == -1) {
        return getClientGuiElement(-100 * 20 + x, player, world, 0, -1, z);
    }
    if (ID < 110 && ID > 0) {
        switch(ID) {
            case GuiIDs.GUI_FluidSupplier_ID:
                if (pipe == null || pipe.pipe == null || !(pipe.pipe instanceof PipeItemsFluidSupplier)) {
                    return null;
                }
                return new GuiFluidSupplierPipe(player.inventory, ((PipeItemsFluidSupplier) pipe.pipe).getDummyInventory(), (PipeItemsFluidSupplier) pipe.pipe);
            case GuiIDs.GUI_FluidSupplier_MK2_ID:
                if (pipe == null || pipe.pipe == null || !(pipe.pipe instanceof PipeFluidSupplierMk2)) {
                    return null;
                }
                return new GuiFluidSupplierMk2Pipe(player.inventory, ((PipeFluidSupplierMk2) pipe.pipe).getDummyInventory(), (PipeFluidSupplierMk2) pipe.pipe);
            case GuiIDs.GUI_ProviderPipe_ID:
                if (pipe == null || pipe.pipe == null || !(pipe.pipe instanceof PipeItemsProviderLogistics)) {
                    return null;
                }
                return new GuiProviderPipe(player.inventory, ((PipeItemsProviderLogistics) pipe.pipe).getprovidingInventory(), (PipeItemsProviderLogistics) pipe.pipe);
            case GuiIDs.GUI_SatellitePipe_ID:
                if (pipe != null && pipe.pipe != null && pipe.pipe instanceof PipeItemsSatelliteLogistics) {
                    return new GuiSatellitePipe((PipeItemsSatelliteLogistics) pipe.pipe, player);
                }
                if (pipe != null && pipe.pipe != null && pipe.pipe instanceof PipeFluidSatellite) {
                    return new GuiSatellitePipe((PipeFluidSatellite) pipe.pipe, player);
                }
                return null;
            case GuiIDs.GUI_Normal_Orderer_ID:
                return new NormalGuiOrderer(x, y, z, MainProxy.getDimensionForWorld(world), player);
            case GuiIDs.GUI_Normal_Mk2_Orderer_ID:
                if (pipe == null || pipe.pipe == null || !(pipe.pipe instanceof PipeItemsRequestLogisticsMk2)) {
                    return null;
                }
                return new NormalMk2GuiOrderer(((PipeItemsRequestLogisticsMk2) pipe.pipe), player);
            case GuiIDs.GUI_Fluid_Orderer_ID:
                if (pipe == null || pipe.pipe == null || !(pipe.pipe instanceof PipeFluidRequestLogistics)) {
                    return null;
                }
                return new FluidGuiOrderer(((PipeFluidRequestLogistics) pipe.pipe), player);
            case GuiIDs.GUI_Inv_Sys_Connector_ID:
                if (pipe == null || pipe.pipe == null || !(pipe.pipe instanceof PipeItemsInvSysConnector)) {
                    return null;
                }
                return new GuiInvSysConnector(player, (PipeItemsInvSysConnector) pipe.pipe);
            case GuiIDs.GUI_Freq_Card_ID:
                if (pipe == null || pipe.pipe == null || !((pipe.pipe instanceof PipeItemsSystemEntranceLogistics) || (pipe.pipe instanceof PipeItemsSystemDestinationLogistics))) {
                    return null;
                }
                IInventory inv = null;
                if (pipe.pipe instanceof PipeItemsSystemEntranceLogistics) {
                    inv = ((PipeItemsSystemEntranceLogistics) pipe.pipe).inv;
                } else if (pipe.pipe instanceof PipeItemsSystemDestinationLogistics) {
                    inv = ((PipeItemsSystemDestinationLogistics) pipe.pipe).inv;
                }
                return new GuiFreqCardContent(player, inv);
            case GuiIDs.GUI_HUD_Settings:
                return new GuiHUDSettings(player, x);
            case GuiIDs.GUI_Fluid_Basic_ID:
                if (pipe == null || pipe.pipe == null || !((pipe.pipe instanceof PipeFluidBasic))) {
                    return null;
                }
                return new GuiFluidBasic(player, ((PipeFluidBasic) pipe.pipe).filterInv);
            case GuiIDs.GUI_FIREWALL:
                if (pipe == null || pipe.pipe == null || !((pipe.pipe instanceof PipeItemsFirewall))) {
                    return null;
                }
                return new GuiFirewall((PipeItemsFirewall) pipe.pipe, player);
            case GuiIDs.GUI_Request_Table_ID:
                if (pipe == null || pipe.pipe == null || !(pipe.pipe instanceof PipeBlockRequestTable)) {
                    return null;
                }
                return new GuiRequestTable(player, ((PipeBlockRequestTable) pipe.pipe));
            default:
                break;
        }
    }
    return null;
}
Also used : GuiFreqCardContent(logisticspipes.gui.GuiFreqCardContent) GuiFluidSupplierPipe(logisticspipes.gui.GuiFluidSupplierPipe) PipeFluidBasic(logisticspipes.pipes.PipeFluidBasic) TileEntity(net.minecraft.tileentity.TileEntity) PipeFluidSupplierMk2(logisticspipes.pipes.PipeFluidSupplierMk2) PipeItemsInvSysConnector(logisticspipes.pipes.PipeItemsInvSysConnector) PipeItemsFluidSupplier(logisticspipes.pipes.PipeItemsFluidSupplier) PipeFluidRequestLogistics(logisticspipes.pipes.PipeFluidRequestLogistics) PipeItemsSystemDestinationLogistics(logisticspipes.pipes.PipeItemsSystemDestinationLogistics) NormalGuiOrderer(logisticspipes.gui.orderer.NormalGuiOrderer) NormalMk2GuiOrderer(logisticspipes.gui.orderer.NormalMk2GuiOrderer) LogisticsTileGenericPipe(logisticspipes.pipes.basic.LogisticsTileGenericPipe) PipeItemsRequestLogisticsMk2(logisticspipes.pipes.PipeItemsRequestLogisticsMk2) GuiHUDSettings(logisticspipes.gui.hud.GuiHUDSettings) FluidGuiOrderer(logisticspipes.gui.orderer.FluidGuiOrderer) IInventory(net.minecraft.inventory.IInventory) GuiSatellitePipe(logisticspipes.gui.GuiSatellitePipe) PipeItemsFirewall(logisticspipes.pipes.PipeItemsFirewall) PipeBlockRequestTable(logisticspipes.pipes.PipeBlockRequestTable) PipeItemsSatelliteLogistics(logisticspipes.pipes.PipeItemsSatelliteLogistics) GuiFirewall(logisticspipes.gui.GuiFirewall) PipeItemsSystemEntranceLogistics(logisticspipes.pipes.PipeItemsSystemEntranceLogistics) GuiFluidBasic(logisticspipes.gui.GuiFluidBasic) PipeFluidSatellite(logisticspipes.pipes.PipeFluidSatellite) PipeItemsProviderLogistics(logisticspipes.pipes.PipeItemsProviderLogistics) GuiRequestTable(logisticspipes.gui.orderer.GuiRequestTable) GuiInvSysConnector(logisticspipes.gui.GuiInvSysConnector) GuiFluidSupplierMk2Pipe(logisticspipes.gui.GuiFluidSupplierMk2Pipe) GuiProviderPipe(logisticspipes.gui.GuiProviderPipe)

Aggregations

GuiFirewall (logisticspipes.gui.GuiFirewall)1 GuiFluidBasic (logisticspipes.gui.GuiFluidBasic)1 GuiFluidSupplierMk2Pipe (logisticspipes.gui.GuiFluidSupplierMk2Pipe)1 GuiFluidSupplierPipe (logisticspipes.gui.GuiFluidSupplierPipe)1 GuiFreqCardContent (logisticspipes.gui.GuiFreqCardContent)1 GuiInvSysConnector (logisticspipes.gui.GuiInvSysConnector)1 GuiProviderPipe (logisticspipes.gui.GuiProviderPipe)1 GuiSatellitePipe (logisticspipes.gui.GuiSatellitePipe)1 GuiHUDSettings (logisticspipes.gui.hud.GuiHUDSettings)1 FluidGuiOrderer (logisticspipes.gui.orderer.FluidGuiOrderer)1 GuiRequestTable (logisticspipes.gui.orderer.GuiRequestTable)1 NormalGuiOrderer (logisticspipes.gui.orderer.NormalGuiOrderer)1 NormalMk2GuiOrderer (logisticspipes.gui.orderer.NormalMk2GuiOrderer)1 PipeBlockRequestTable (logisticspipes.pipes.PipeBlockRequestTable)1 PipeFluidBasic (logisticspipes.pipes.PipeFluidBasic)1 PipeFluidRequestLogistics (logisticspipes.pipes.PipeFluidRequestLogistics)1 PipeFluidSatellite (logisticspipes.pipes.PipeFluidSatellite)1 PipeFluidSupplierMk2 (logisticspipes.pipes.PipeFluidSupplierMk2)1 PipeItemsFirewall (logisticspipes.pipes.PipeItemsFirewall)1 PipeItemsFluidSupplier (logisticspipes.pipes.PipeItemsFluidSupplier)1