blob: 602737129753a9062c706c9beeed6e1c409fd373 (
plain)
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
|
package binnie.craftgui.minecraft.control;
import binnie.core.machines.power.ErrorState;
import binnie.craftgui.controls.core.Control;
import binnie.craftgui.core.Attribute;
import binnie.craftgui.core.CraftGUI;
import binnie.craftgui.core.ITooltip;
import binnie.craftgui.core.IWidget;
import binnie.craftgui.core.Tooltip;
import binnie.craftgui.core.geometry.IPoint;
import binnie.craftgui.core.renderer.Renderer;
import binnie.craftgui.minecraft.ContainerCraftGUI;
import binnie.craftgui.minecraft.CustomSlot;
import binnie.craftgui.minecraft.MinecraftTooltip;
import binnie.craftgui.minecraft.MinecraftTooltip.Type;
import binnie.craftgui.minecraft.Window;
import binnie.craftgui.resource.minecraft.CraftGUITexture;
import java.util.List;
import java.util.Map;
import net.minecraft.entity.player.InventoryPlayer;
public class ControlErrorState
extends Control
implements ITooltip
{
private ErrorState errorState;
public void onRenderBackground()
{
Object texture = CraftGUITexture.StateWarning;
if (this.errorState == null) {
texture = CraftGUITexture.StateNone;
} else if (this.type == 0) {
texture = CraftGUITexture.StateError;
}
CraftGUI.Render.texture(texture, IPoint.ZERO);
super.onRenderBackground();
}
public ErrorState getError()
{
return Window.get(this).getContainer().getErrorState();
}
public final void onUpdateClient()
{
this.errorState = getError();
this.type = Window.get(this).getContainer().getErrorType();
((List)ControlSlot.highlighting.get(EnumHighlighting.Error)).clear();
((List)ControlSlot.highlighting.get(EnumHighlighting.Warning)).clear();
ControlLiquidTank.tankError.clear();
ControlEnergyBar.isError = false;
if ((!isMouseOver()) || (this.errorState == null)) {
return;
}
ControlEnergyBar.isError = this.errorState.isPowerError();
if (this.errorState.isItemError()) {
for (int slot : this.errorState.getData())
{
int id = -1;
for (CustomSlot cslot : Window.get(this).getContainer().getCustomSlots()) {
if ((!(cslot.inventory instanceof InventoryPlayer)) && (cslot.getSlotIndex() == slot)) {
id = cslot.slotNumber;
}
}
if (id >= 0) {
if (this.type == 0) {
((List)ControlSlot.highlighting.get(EnumHighlighting.Error)).add(Integer.valueOf(id));
} else {
((List)ControlSlot.highlighting.get(EnumHighlighting.Warning)).add(Integer.valueOf(id));
}
}
}
}
if (this.errorState.isTankError()) {
for (int slot : this.errorState.getData()) {
ControlLiquidTank.tankError.add(Integer.valueOf(slot));
}
}
}
private int type = 0;
public ControlErrorState(IWidget parent, float x, float y)
{
super(parent, x, y, 16.0F, 16.0F);
addAttribute(Attribute.MouseOver);
}
public void getTooltip(Tooltip tooltipOrig)
{
MinecraftTooltip tooltip = (MinecraftTooltip)tooltipOrig;
if (this.errorState != null)
{
if (this.type == 0) {
tooltip.setType(MinecraftTooltip.Type.Error);
} else {
tooltip.setType(MinecraftTooltip.Type.Warning);
}
tooltip.add(this.errorState.toString());
if (this.errorState.getTooltip().length() > 0) {
tooltip.add(this.errorState.getTooltip());
}
}
}
public ErrorState getErrorState()
{
return this.errorState;
}
}
|