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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
|
package gregtech.api.gui;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import gregtech.api.interfaces.tileentity.IGregTechTileEntity;
import gregtech.api.metatileentity.implementations.GT_MetaTileEntity_BasicMachine;
import gregtech.api.metatileentity.implementations.GT_MetaTileEntity_BasicTank;
import gregtech.api.util.GT_Utility;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.InventoryPlayer;
import net.minecraft.inventory.ICrafting;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;
import java.util.List;
import static gregtech.api.metatileentity.implementations.GT_MetaTileEntity_BasicMachine.OTHER_SLOT_COUNT;
/**
* NEVER INCLUDE THIS FILE IN YOUR MOD!!!
* <p/>
* The Container I use for all my Basic Machines
*/
public class GT_Container_BasicMachine extends GT_Container_BasicTank {
public boolean
mFluidTransfer = false,
mItemTransfer = false,
mStuttering = false;
private Runnable circuitSlotClickCallback;
GT_Slot_Render slotCircuit;
public GT_Container_BasicMachine(InventoryPlayer aInventoryPlayer, IGregTechTileEntity aTileEntity) {
super(aInventoryPlayer, aTileEntity);
}
@Override
public void addSlots(InventoryPlayer aInventoryPlayer) {
addSlotToContainer(new GT_Slot_Holo(mTileEntity, 0, 8, 63, false, true, 1));
addSlotToContainer(new GT_Slot_Holo(mTileEntity, 0, 26, 63, false, true, 1));
addSlotToContainer(new GT_Slot_Render(mTileEntity, 2, 107, 63));
GT_MetaTileEntity_BasicMachine machine = (GT_MetaTileEntity_BasicMachine) mTileEntity.getMetaTileEntity();
addSlotToContainer(slotCircuit = new GT_Slot_Render(mTileEntity, machine.getCircuitSlot(), 153, 63));
int tStartIndex = machine.getInputSlot();
switch (machine.mInputSlotCount) {
case 0:
break;
case 1:
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 53, 25));
break;
case 2:
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 35, 25));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 53, 25));
break;
case 3:
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 17, 25));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 35, 25));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 53, 25));
break;
case 4:
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 35, 16));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 53, 16));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 35, 34));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 53, 34));
break;
case 5:
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 17, 16));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 35, 16));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 53, 16));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 35, 34));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 53, 34));
break;
case 6:
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 17, 16));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 35, 16));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 53, 16));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 17, 34));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 35, 34));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 53, 34));
break;
case 7:
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 17, 7));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 35, 7));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 53, 7));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 17, 25));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 35, 25));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 53, 25));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 17, 43));
break;
case 8:
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 17, 7));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 35, 7));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 53, 7));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 17, 25));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 35, 25));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 53, 25));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 17, 43));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 35, 43));
break;
default:
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 17, 7));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 35, 7));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 53, 7));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 17, 25));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 35, 25));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 53, 25));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 17, 43));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 35, 43));
addSlotToContainer(new Slot(mTileEntity, tStartIndex++, 53, 43));
break;
}
tStartIndex = machine.getOutputSlot();
switch (machine.mOutputItems.length) {
case 0:
break;
case 1:
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 107, 25));
break;
case 2:
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 107, 25));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 125, 25));
break;
case 3:
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 107, 25));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 125, 25));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 143, 25));
break;
case 4:
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 107, 16));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 125, 16));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 107, 34));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 125, 34));
break;
case 5:
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 107, 16));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 125, 16));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 143, 16));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 107, 34));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 125, 34));
break;
case 6:
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 107, 16));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 125, 16));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 143, 16));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 107, 34));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 125, 34));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 143, 34));
break;
case 7:
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 107, 7));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 125, 7));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 143, 7));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 107, 25));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 125, 25));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 143, 25));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 107, 43));
break;
case 8:
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 107, 7));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 125, 7));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 143, 7));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 107, 25));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 125, 25));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 143, 25));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 107, 43));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 125, 43));
break;
default:
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 107, 7));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 125, 7));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 143, 7));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 107, 25));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 125, 25));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 143, 25));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 107, 43));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 125, 43));
addSlotToContainer(new GT_Slot_Output(mTileEntity, tStartIndex++, 143, 43));
break;
}
addSlotToContainer(new Slot(mTileEntity, 1, 80, 63));
addSlotToContainer(new Slot(mTileEntity, 3, 125, 63));
addSlotToContainer(new GT_Slot_Render(mTileEntity, tStartIndex++, 53, 63));
}
@Override
public ItemStack slotClick(int aSlotIndex, int aMouseclick, int aShifthold, EntityPlayer aPlayer) {
if (mTileEntity.getMetaTileEntity() == null) return null;
GT_MetaTileEntity_BasicMachine machine = (GT_MetaTileEntity_BasicMachine) mTileEntity.getMetaTileEntity();
if (machine == null) return null;
ItemStack tResultStack;
switch (aSlotIndex) {
case 0:
machine.mFluidTransfer = !machine.mFluidTransfer;
return null;
case 1:
machine.mItemTransfer = !machine.mItemTransfer;
return null;
case 3:
if (machine.allowSelectCircuit() && aMouseclick < 2) {
ItemStack newCircuit;
if (aShifthold == 1) {
if (aMouseclick == 0) {
if (circuitSlotClickCallback != null)
circuitSlotClickCallback.run();
return null;
} else {
// clear
newCircuit = null;
}
} else {
ItemStack cursorStack = aPlayer.inventory.getItemStack();
List<ItemStack> tCircuits = machine.getConfigurationCircuits();
int index = GT_Utility.findMatchingStackInList(tCircuits, cursorStack);
if (index < 0) {
int curIndex = GT_Utility.findMatchingStackInList(tCircuits, machine.getStackInSlot(machine.getCircuitSlot())) + 1;
if (aMouseclick == 0) {
curIndex += 1;
} else {
curIndex -= 1;
}
curIndex = Math.floorMod(curIndex, tCircuits.size() + 1) - 1;
newCircuit = curIndex < 0 ? null : tCircuits.get(curIndex);
} else {
// set to whatever it is
newCircuit = tCircuits.get(index);
}
}
mTileEntity.setInventorySlotContents(machine.getCircuitSlot(), newCircuit);
return newCircuit;
}
return null;
default:
if (aSlotIndex == OTHER_SLOT_COUNT + 1 + machine.mInputSlotCount + machine.mOutputItems.length && aMouseclick < 2) {
if (mTileEntity.isClientSide()) {
// see parent class slotClick for an explanation on why doing this
GT_MetaTileEntity_BasicTank tTank = (GT_MetaTileEntity_BasicTank) mTileEntity.getMetaTileEntity();
tTank.setFillableStack(GT_Utility.getFluidFromDisplayStack(tTank.getStackInSlot(2)));
}
GT_MetaTileEntity_BasicTank tTank = (GT_MetaTileEntity_BasicTank) mTileEntity.getMetaTileEntity();
IFluidAccess tFillableAccess = IFluidAccess.from(tTank, true);
ItemStack tToken = handleFluidSlotClick(tFillableAccess, aPlayer, aMouseclick == 0, true, true);
if (mTileEntity.isServerSide() && tToken != null)
mTileEntity.markInventoryBeenModified();
return tToken;
} else {
return super.slotClick(aSlotIndex, aMouseclick, aShifthold, aPlayer);
}
}
}
@Override
public void detectAndSendChanges() {
super.detectAndSendChanges();
if (mTileEntity.isClientSide() || mTileEntity.getMetaTileEntity() == null) return;
mFluidTransfer = ((GT_MetaTileEntity_BasicMachine) mTileEntity.getMetaTileEntity()).mFluidTransfer;
mItemTransfer = ((GT_MetaTileEntity_BasicMachine) mTileEntity.getMetaTileEntity()).mItemTransfer;
mStuttering = ((GT_MetaTileEntity_BasicMachine) mTileEntity.getMetaTileEntity()).mStuttering;
for (Object crafter : this.crafters) {
ICrafting var1 = (ICrafting) crafter;
var1.sendProgressBarUpdate(this, 102, mFluidTransfer ? 1 : 0);
var1.sendProgressBarUpdate(this, 103, mItemTransfer ? 1 : 0);
var1.sendProgressBarUpdate(this, 104, mStuttering ? 1 : 0);
}
}
@Override
public void addCraftingToCrafters(ICrafting par1ICrafting) {
super.addCraftingToCrafters(par1ICrafting);
}
@Override
@SideOnly(Side.CLIENT)
public void updateProgressBar(int par1, int par2) {
super.updateProgressBar(par1, par2);
switch (par1) {
case 102:
mFluidTransfer = (par2 != 0);
break;
case 103:
mItemTransfer = (par2 != 0);
break;
case 104:
mStuttering = (par2 != 0);
break;
}
}
@Override
public int getSlotStartIndex() {
return 4;
}
@Override
public int getShiftClickStartIndex() {
return 4;
}
@Override
public int getSlotCount() {
return getShiftClickSlotCount() + ((GT_MetaTileEntity_BasicMachine) mTileEntity.getMetaTileEntity()).mOutputItems.length + 2;
}
@Override
public int getShiftClickSlotCount() {
return ((GT_MetaTileEntity_BasicMachine) mTileEntity.getMetaTileEntity()).mInputSlotCount;
}
public void setCircuitSlotClickCallback(Runnable circuitSlotClickCallback) {
this.circuitSlotClickCallback = circuitSlotClickCallback;
}
}
|