/* * 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 . */ package appeng.client.gui.implementations; import net.minecraft.client.gui.GuiButton; import net.minecraft.entity.player.InventoryPlayer; import org.lwjgl.input.Mouse; import appeng.api.config.FuzzyMode; import appeng.api.config.RedstoneMode; import appeng.api.config.Settings; import appeng.api.config.Upgrades; import appeng.api.config.YesNo; import appeng.api.implementations.IUpgradeableHost; import appeng.client.gui.AEBaseGui; import appeng.client.gui.widgets.GuiImgButton; import appeng.container.implementations.ContainerUpgradeable; import appeng.core.localization.GuiText; import appeng.core.sync.network.NetworkHandler; import appeng.core.sync.packets.PacketConfigButton; import appeng.parts.automation.PartImportBus; public class GuiUpgradeable extends AEBaseGui { final ContainerUpgradeable cvb; final IUpgradeableHost bc; GuiImgButton redstoneMode; GuiImgButton fuzzyMode; GuiImgButton craftMode; public GuiUpgradeable(InventoryPlayer inventoryPlayer, IUpgradeableHost te) { this( new ContainerUpgradeable( inventoryPlayer, te ) ); } public GuiUpgradeable(ContainerUpgradeable te) { super( te ); cvb = te; bc = (IUpgradeableHost) te.getTarget(); this.xSize = hasToolbox() ? 246 : 211; this.ySize = 184; } @Override public void initGui() { super.initGui(); addButtons(); } protected void addButtons() { redstoneMode = new GuiImgButton( this.guiLeft - 18, guiTop + 8, Settings.REDSTONE_CONTROLLED, RedstoneMode.IGNORE ); fuzzyMode = new GuiImgButton( this.guiLeft - 18, guiTop + 28, Settings.FUZZY_MODE, FuzzyMode.IGNORE_ALL ); craftMode = new GuiImgButton( this.guiLeft - 18, guiTop + 48, Settings.CRAFT_ONLY, YesNo.NO ); buttonList.add( craftMode ); buttonList.add( redstoneMode ); buttonList.add( fuzzyMode ); } @Override protected void actionPerformed(GuiButton btn) { super.actionPerformed( btn ); boolean backwards = Mouse.isButtonDown( 1 ); if ( btn == redstoneMode ) NetworkHandler.instance.sendToServer( new PacketConfigButton( redstoneMode.getSetting(), backwards ) ); if ( btn == craftMode ) NetworkHandler.instance.sendToServer( new PacketConfigButton( craftMode.getSetting(), backwards ) ); if ( btn == fuzzyMode ) NetworkHandler.instance.sendToServer( new PacketConfigButton( fuzzyMode.getSetting(), backwards ) ); } protected boolean hasToolbox() { return ((ContainerUpgradeable) inventorySlots).hasToolbox(); } @Override public void drawBG(int offsetX, int offsetY, int mouseX, int mouseY) { handleButtonVisibility(); bindTexture( getBackground() ); this.drawTexturedModalRect( offsetX, offsetY, 0, 0, 211 - 34, ySize ); if ( drawUpgrades() ) this.drawTexturedModalRect( offsetX + 177, offsetY, 177, 0, 35, 14 + cvb.availableUpgrades() * 18 ); if ( hasToolbox() ) this.drawTexturedModalRect( offsetX + 178, offsetY + ySize - 90, 178, ySize - 90, 68, 68 ); } protected boolean drawUpgrades() { return true; } protected String getBackground() { return "guis/bus.png"; } protected void handleButtonVisibility() { if ( redstoneMode != null ) redstoneMode.setVisibility( bc.getInstalledUpgrades( Upgrades.REDSTONE ) > 0 ); if ( fuzzyMode != null ) fuzzyMode.setVisibility( bc.getInstalledUpgrades( Upgrades.FUZZY ) > 0 ); if ( craftMode != null ) craftMode.setVisibility( bc.getInstalledUpgrades( Upgrades.CRAFTING ) > 0 ); } @Override public void drawFG(int offsetX, int offsetY, int mouseX, int mouseY) { fontRendererObj.drawString( getGuiDisplayName( getName().getLocal() ), 8, 6, 4210752 ); fontRendererObj.drawString( GuiText.inventory.getLocal(), 8, ySize - 96 + 3, 4210752 ); if ( redstoneMode != null ) redstoneMode.set( cvb.rsMode ); if ( fuzzyMode != null ) fuzzyMode.set( cvb.fzMode ); if ( craftMode != null ) craftMode.set( cvb.cMode ); } protected GuiText getName() { return bc instanceof PartImportBus ? GuiText.ImportBus : GuiText.ExportBus; } }