1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
package gtPlusPlus.xmod.gregtech.api.gui;
import gregtech.api.util.GT_Utility;
import gtPlusPlus.api.objects.Logger;
import gtPlusPlus.core.lib.CORE;
import gtPlusPlus.core.util.minecraft.ItemUtils;
import gregtech.api.interfaces.tileentity.IGregTechTileEntity;
import net.minecraft.entity.player.InventoryPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.util.IIcon;
import gregtech.api.gui.GT_GUIContainerMetaTile_Machine;
public class GUI_PowerSubStation extends GT_GUIContainerMetaTile_Machine {
public String mNEI;
String mName;
public GUI_PowerSubStation(final InventoryPlayer aInventoryPlayer, final IGregTechTileEntity aTileEntity, final String aName, final String aNEI) {
super(new CONTAINER_PowerSubStation(aInventoryPlayer, aTileEntity, false),
CORE.RES_PATH_GUI + "PowerSubStation.png");
this.mName = aName;
this.mNEI = aNEI;
/** The X size of the inventory window in pixels. */
this.xSize = 196;
/** The Y size of the inventory window in pixels. */
this.ySize = 191;
}
protected void drawGuiContainerForegroundLayer(final int par1, final int par2) {
this.fontRendererObj.drawString(this.mName, 8, -10, 16448255);
if (this.mContainer != null) {
this.fontRendererObj.drawString("Error Code: "+((CONTAINER_PowerSubStation) this.mContainer).mDisplayErrorCode, 10, 142, 16448255);
if (((this.mContainer).mDisplayErrorCode & 1) != 0) {
this.fontRendererObj.drawString("Pipe is loose.", 10, 8, 16448255);
}
if ((((CONTAINER_PowerSubStation) this.mContainer).mDisplayErrorCode & 2) != 0) {
this.fontRendererObj.drawString("Screws are missing.", 10, 16, 16448255);
}
if ((((CONTAINER_PowerSubStation) this.mContainer).mDisplayErrorCode & 4) != 0) {
this.fontRendererObj.drawString("Something is stuck.", 10, 24, 16448255);
}
if ((((CONTAINER_PowerSubStation) this.mContainer).mDisplayErrorCode & 8) != 0) {
this.fontRendererObj.drawString("Platings are dented.", 10, 32, 16448255);
}
if ((((CONTAINER_PowerSubStation) this.mContainer).mDisplayErrorCode & 16) != 0) {
this.fontRendererObj.drawString("Circuitry burned out.", 10, 40, 16448255);
}
if ((((CONTAINER_PowerSubStation) this.mContainer).mDisplayErrorCode & 32) != 0) {
this.fontRendererObj.drawString("That doesn't belong there.", 10, 48, 16448255);
}
if (((CONTAINER_PowerSubStation) this.mContainer).mDisplayErrorCode == 0) {
if (((CONTAINER_PowerSubStation) this.mContainer).mActive == 0) {
this.fontRendererObj.drawString(
"Hit with Soft Hammer to (re-)start the Machine if it doesn't start.", -70, 8, 16448255);
} else {
this.fontRendererObj.drawString("Running perfectly.", 10, 8, 16448255);
}
}
if (this.mContainer.mEnergy > 160000000 && this.mContainer.mEnergy < 160010000) {
this.fontRendererObj.drawString("160,000,000 EU", 50, 155, 16711680);
} else if (this.mContainer.mEnergy > 320000000 && this.mContainer.mEnergy < 320010000) {
this.fontRendererObj.drawString("320,000,000 EU", 50, 155, 16711680);
} else if (this.mContainer.mEnergy > 640000000 && this.mContainer.mEnergy < 640010000) {
this.fontRendererObj.drawString("640,000,000 EU", 50, 155, 16711680);
} else {
this.fontRendererObj.drawString(GT_Utility.formatNumbers((long) this.mContainer.mEnergy) + " EU", 50,
155, 16711680);
}
}
else {
Logger.INFO("Bad Container");
this.fontRendererObj.drawString("Bad Container", 8, 30, 16448255);
}
}
protected void drawGuiContainerBackgroundLayer(final float par1, final int par2, final int par3) {
/** The X size of the inventory window in pixels. */
if (this.xSize != 196)
this.xSize = 196;
/** The Y size of the inventory window in pixels. */
if (this.ySize != 191)
this.ySize = 191;
super.drawGuiContainerBackgroundLayer(par1, par2, par3);
final int x = (this.width - this.xSize) / 2;
final int y = (this.height - this.ySize) / 2;
this.drawTexturedModalRect(x, y, 0, 0, this.xSize, this.ySize);
if (this.mContainer != null) {
final double tScale = this.mContainer.mEnergy / this.mContainer.mStorage;
this.drawTexturedModalRect(x + 5, y + 156, 0, 251, Math.min(147, (int) (tScale * 148.0)), 5);
IIcon texture = null;
ItemStack tempStack = null;
tempStack = ItemUtils.getItemStackOfAmountFromOreDict("toolWrench", 1);
if (tempStack != null) {
texture = tempStack.getItem().getIcon(tempStack, 0);
if (texture != null) {
this.drawTexturedModelRectFromIcon(x + 154, y + 76, texture, 9, 9);
texture = tempStack.getItem().getIcon(tempStack, 1);
this.drawTexturedModelRectFromIcon(x + 154, y + 76, texture, 9, 9);
}
else {
this.drawTexturedModalRect(x + 154, y + 76, 0, 251, 18, 5);
}
}
//Maint Done
//this.drawTexturedModalRect(x + 154, y + 76, 238, 0, 18, 18);
//Maint Required
//this.drawTexturedModalRect(x + 154, y + 76, 238, 18, 18, 18);
}
}
}
|