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
|
package gtPlusPlus.core.tileentities.general;
import java.util.ArrayList;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.ISidedInventory;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.network.NetworkManager;
import net.minecraft.network.Packet;
import net.minecraft.network.play.server.S35PacketUpdateTileEntity;
import net.minecraft.tileentity.TileEntity;
import gregtech.api.util.GTUtility;
import gtPlusPlus.core.inventories.InventoryCircuitProgrammer;
import gtPlusPlus.core.recipe.common.CI;
import gtPlusPlus.core.slots.SlotIntegratedCircuit;
import gtPlusPlus.core.util.minecraft.PlayerUtils;
public class TileEntityCircuitProgrammer extends TileEntity implements ISidedInventory {
private int tickCount = 0;
private final InventoryCircuitProgrammer inventoryContents;
private String customName;
public int locationX;
public int locationY;
public int locationZ;
private int aCurrentMode = 0;
public TileEntityCircuitProgrammer() {
this.inventoryContents = new InventoryCircuitProgrammer();
this.setTileLocation();
}
public boolean setTileLocation() {
if (this.hasWorldObj()) {
if (!this.getWorldObj().isRemote) {
this.locationX = this.xCoord;
this.locationY = this.yCoord;
this.locationZ = this.zCoord;
return true;
}
}
return false;
}
// Rename to hasCircuitToConfigure
public final boolean hasCircuitToConfigure() {
for (ItemStack i : this.getInventory()
.getInventory()) {
if (i != null) {
return true;
}
}
return false;
}
public InventoryCircuitProgrammer getInventory() {
return this.inventoryContents;
}
public boolean addOutput() {
ItemStack[] aInputs = this.getInventory()
.getInventory()
.clone();
// Check if there is output in slot.
boolean hasOutput = aInputs[25] != null;
ArrayList<Integer> aValidSlots = new ArrayList<>();
int aSlotCount = 0;
for (ItemStack i : aInputs) {
if (i != null) {
aValidSlots.add(aSlotCount);
}
aSlotCount++;
}
for (int e : aValidSlots) {
boolean doAdd = false;
ItemStack g = this.getStackInSlot(e);
int aSize = 0;
ItemStack aInputStack = null;
int aTypeInSlot = SlotIntegratedCircuit.isRegularProgrammableCircuit(g);
if (aTypeInSlot >= 0 && g != null) {
// No Existing Output
if (!hasOutput) {
aSize = g.stackSize;
doAdd = true;
}
// Existing Output
else {
ItemStack f = this.getStackInSlot(25);
int aTypeInCheckedSlot = SlotIntegratedCircuit.isRegularProgrammableCircuit(f);
// Check that the Circuit in the Output slot is not null and the same type as the circuit input.
if (aTypeInCheckedSlot >= 0 && (aTypeInSlot == aTypeInCheckedSlot) && f != null) {
if (g.getItem() == f.getItem() && f.getItemDamage() == e) {
aSize = f.stackSize + g.stackSize;
if (aSize > 64) {
aInputStack = g.copy();
aInputStack.stackSize = (aSize - 64);
}
doAdd = true;
}
}
}
if (doAdd) {
// Check Circuit Type
ItemStack aOutput;
if (aTypeInSlot == 0) {
aOutput = GTUtility.getIntegratedCircuit(e);
} else if (aTypeInSlot == 1) {
aOutput = CI.getNumberedBioCircuit(e);
} else if (aTypeInSlot == 2) {
aOutput = CI.getNumberedAdvancedCircuit(e);
} else {
aOutput = null;
}
if (aOutput != null) {
aOutput.stackSize = aSize;
this.setInventorySlotContents(e, aInputStack);
this.setInventorySlotContents(25, aOutput);
return true;
}
}
}
}
return false;
}
@Override
public void updateEntity() {
try {
if (!this.worldObj.isRemote) {
if (tickCount % 10 == 0) {
if (hasCircuitToConfigure()) {
this.addOutput();
this.markDirty();
}
}
this.tickCount++;
}
} catch (final Throwable ignored) {}
}
public boolean anyPlayerInRange() {
return this.worldObj.getClosestPlayer(this.xCoord + 0.5D, this.yCoord + 0.5D, this.zCoord + 0.5D, 32) != null;
}
public NBTTagCompound getTag(final NBTTagCompound nbt, final String tag) {
if (!nbt.hasKey(tag)) {
nbt.setTag(tag, new NBTTagCompound());
}
return nbt.getCompoundTag(tag);
}
@Override
public void writeToNBT(final NBTTagCompound nbt) {
super.writeToNBT(nbt);
// Utils.LOG_WARNING("Trying to write NBT data to TE.");
final NBTTagCompound chestData = new NBTTagCompound();
this.inventoryContents.writeToNBT(chestData);
nbt.setTag("ContentsChest", chestData);
if (this.hasCustomInventoryName()) {
nbt.setString("CustomName", this.getCustomName());
}
nbt.setInteger("aCurrentMode", aCurrentMode);
}
@Override
public void readFromNBT(final NBTTagCompound nbt) {
super.readFromNBT(nbt);
// Utils.LOG_WARNING("Trying to read NBT data from TE.");
this.inventoryContents.readFromNBT(nbt.getCompoundTag("ContentsChest"));
if (nbt.hasKey("CustomName", 8)) {
this.setCustomName(nbt.getString("CustomName"));
}
aCurrentMode = nbt.getInteger("aCurrentMode");
}
@Override
public int getSizeInventory() {
return this.getInventory()
.getSizeInventory();
}
@Override
public ItemStack getStackInSlot(final int slot) {
return this.getInventory()
.getStackInSlot(slot);
}
@Override
public ItemStack decrStackSize(final int slot, final int count) {
return this.getInventory()
.decrStackSize(slot, count);
}
@Override
public ItemStack getStackInSlotOnClosing(final int slot) {
return this.getInventory()
.getStackInSlotOnClosing(slot);
}
@Override
public void setInventorySlotContents(final int slot, final ItemStack stack) {
this.getInventory()
.setInventorySlotContents(slot, stack);
}
@Override
public int getInventoryStackLimit() {
return this.getInventory()
.getInventoryStackLimit();
}
@Override
public boolean isUseableByPlayer(final EntityPlayer entityplayer) {
return this.getInventory()
.isUseableByPlayer(entityplayer);
}
@Override
public void openInventory() {
this.worldObj.addBlockEvent(this.xCoord, this.yCoord, this.zCoord, this.getBlockType(), 1, 1);
this.worldObj.notifyBlocksOfNeighborChange(this.xCoord, this.yCoord, this.zCoord, this.getBlockType());
this.worldObj.notifyBlocksOfNeighborChange(this.xCoord, this.yCoord - 1, this.zCoord, this.getBlockType());
this.getInventory()
.openInventory();
}
@Override
public void closeInventory() {
this.worldObj.addBlockEvent(this.xCoord, this.yCoord, this.zCoord, this.getBlockType(), 1, 1);
this.worldObj.notifyBlocksOfNeighborChange(this.xCoord, this.yCoord, this.zCoord, this.getBlockType());
this.worldObj.notifyBlocksOfNeighborChange(this.xCoord, this.yCoord - 1, this.zCoord, this.getBlockType());
this.getInventory()
.closeInventory();
}
@Override
public boolean isItemValidForSlot(final int slot, final ItemStack itemstack) {
return this.getInventory()
.isItemValidForSlot(slot, itemstack);
}
@Override
public int[] getAccessibleSlotsFromSide(final int p_94128_1_) {
final int[] accessibleSides = new int[this.getSizeInventory()];
for (int r = 0; r < this.getInventory()
.getSizeInventory(); r++) {
accessibleSides[r] = r;
}
return accessibleSides;
}
@Override
public boolean canInsertItem(final int p_102007_1_, final ItemStack p_102007_2_, final int p_102007_3_) {
return p_102007_1_ >= 0 && p_102007_1_ <= 24;
}
@Override
public boolean canExtractItem(final int p_102008_1_, final ItemStack p_102008_2_, final int p_102008_3_) {
return p_102008_1_ == 25;
}
public String getCustomName() {
return this.customName;
}
public void setCustomName(final String customName) {
this.customName = customName;
}
@Override
public String getInventoryName() {
return this.hasCustomInventoryName() ? this.customName : "container.circuitprogrammer";
}
@Override
public boolean hasCustomInventoryName() {
return (this.customName != null) && !this.customName.isEmpty();
}
@Override
public Packet getDescriptionPacket() {
final NBTTagCompound tag = new NBTTagCompound();
this.writeToNBT(tag);
return new S35PacketUpdateTileEntity(this.xCoord, this.yCoord, this.zCoord, this.blockMetadata, tag);
}
@Override
public void onDataPacket(final NetworkManager net, final S35PacketUpdateTileEntity pkt) {
final NBTTagCompound tag = pkt.func_148857_g();
this.readFromNBT(tag);
}
public boolean onScrewdriverRightClick(byte side, EntityPlayer player, int x, int y, int z) {
try {
if (aCurrentMode == 24) {
aCurrentMode = 0;
} else {
aCurrentMode++;
}
PlayerUtils.messagePlayer(player, "Now configuring units for type " + aCurrentMode + ".");
return true;
} catch (Throwable t) {
return false;
}
}
}
|