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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
|
package gtPlusPlus.xmod.gregtech.common.tileentities.automation;
import static gtPlusPlus.core.lib.GTPPCore.sTesseractGeneratorOwnershipMap;
import static gtPlusPlus.core.lib.GTPPCore.sTesseractTerminalOwnershipMap;
import java.util.UUID;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.ISidedInventory;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.EnumChatFormatting;
import net.minecraft.world.World;
import net.minecraftforge.common.util.ForgeDirection;
import net.minecraftforge.fluids.Fluid;
import net.minecraftforge.fluids.FluidStack;
import net.minecraftforge.fluids.FluidTankInfo;
import net.minecraftforge.fluids.IFluidHandler;
import org.apache.commons.lang3.ArrayUtils;
import gregtech.api.enums.Textures;
import gregtech.api.interfaces.ITexture;
import gregtech.api.interfaces.tileentity.IDigitalChest;
import gregtech.api.interfaces.tileentity.IGregTechDeviceInformation;
import gregtech.api.interfaces.tileentity.IGregTechTileEntity;
import gregtech.api.metatileentity.MetaTileEntity;
import gregtech.api.metatileentity.implementations.MTEBasicTank;
import gregtech.api.objects.GTRenderedTexture;
import gregtech.api.util.GTUtility;
import gtPlusPlus.api.objects.Logger;
import gtPlusPlus.core.lib.GTPPCore;
import gtPlusPlus.core.util.minecraft.PlayerUtils;
import gtPlusPlus.xmod.gregtech.common.blocks.textures.TexturesGtBlock;
import gtPlusPlus.xmod.gregtech.common.helpers.tesseract.TesseractHelper;
public class MTETesseractGenerator extends MTEBasicTank {
public static int TESSERACT_ENERGY_COST_DIMENSIONAL = 512;
public static int TESSERACT_ENERGY_COST = 128;
public byte isWorking = 0;
public int oFrequency = 0;
public int mNeededEnergy = 0;
public int mFrequency = 0;
public UUID mOwner;
public MTETesseractGenerator(final int aID, final String aName, final String aNameRegional, final int aTier) {
super(aID, aName, aNameRegional, aTier, 3, "");
}
public MTETesseractGenerator(final String aName, final int aTier, final String[] aDescription,
final ITexture[][][] aTextures) {
super(aName, aTier, 3, aDescription, aTextures);
}
@Override
public MetaTileEntity newMetaEntity(final IGregTechTileEntity aTileEntity) {
return new MTETesseractGenerator(this.mName, this.mTier, this.mDescriptionArray, this.mTextures);
}
@Override
public boolean isTransformerUpgradable() {
return true;
}
@Override
public boolean isOverclockerUpgradable() {
return false;
}
@Override
public boolean isSimpleMachine() {
return false;
}
@Override
public boolean isFacingValid(final ForgeDirection facing) {
return true;
}
@Override
public boolean isEnetInput() {
return true;
}
@Override
public boolean isEnetOutput() {
return false;
}
@Override
public boolean isInputFacing(final ForgeDirection side) {
return true;
}
@Override
public boolean isOutputFacing(final ForgeDirection side) {
return side == this.getBaseMetaTileEntity()
.getBackFacing();
}
@Override
public boolean isValidSlot(final int aIndex) {
return false;
}
@Override
public long getMinimumStoredEU() {
return this.getBaseMetaTileEntity()
.getEUCapacity() / 2;
}
@Override
public long maxEUInput() {
return 512;
}
@Override
public long maxEUOutput() {
return 0;
}
@Override
public long maxEUStore() {
return 512 * 32;
}
@Override
public long maxSteamStore() {
return this.maxEUStore();
}
@Override
public boolean isAccessAllowed(final EntityPlayer aPlayer) {
return true;
}
@Override
public boolean ownerControl() {
return true;
}
@Override
public int getProgresstime() {
return (TesseractHelper.getGeneratorByFrequency(PlayerUtils.getPlayerOnServerFromUUID(mOwner), this.mFrequency)
== this) && (this.isWorking >= 20) ? 999 : 0;
}
@Override
public int maxProgresstime() {
return 1000;
}
@Override
public void saveNBTData(final NBTTagCompound aNBT) {
aNBT.setInteger("mFrequency", this.mFrequency);
if (mOwner != null) aNBT.setString("mOwner", mOwner.toString());
}
@Override
public void loadNBTData(final NBTTagCompound aNBT) {
this.mFrequency = aNBT.getInteger("mFrequency");
try {
this.mOwner = UUID.fromString(aNBT.getString("mOnwer"));
} catch (IllegalArgumentException i) {
}
}
@Override
public void onConfigLoad() {
int J = 4;
TESSERACT_ENERGY_COST = 128 * J;
TESSERACT_ENERGY_COST_DIMENSIONAL = 512 * J;
}
@Override
public void onServerStart() {
sTesseractGeneratorOwnershipMap.clear();
sTesseractTerminalOwnershipMap.clear();
}
public void onServerStop() {
sTesseractGeneratorOwnershipMap.clear();
sTesseractTerminalOwnershipMap.clear();
}
@Override
public boolean onRightclick(final IGregTechTileEntity aBaseMetaTileEntity, final EntityPlayer aPlayer,
final ForgeDirection side, final float aX, final float aY, final float aZ) {
if (this.mOwner == null) {
if (this.getBaseMetaTileEntity()
.getOwnerName() != null
&& !this.getBaseMetaTileEntity()
.getOwnerName()
.isEmpty()) {
if (this.getBaseMetaTileEntity()
.getOwnerName()
.equalsIgnoreCase(aPlayer.getDisplayName())) {
this.mOwner = PlayerUtils.getPlayersUUIDByName(
this.getBaseMetaTileEntity()
.getOwnerName());
}
}
}
if (side == this.getBaseMetaTileEntity()
.getFrontFacing()) {
if (aPlayer.getUniqueID()
.compareTo(this.mOwner) == 0) {
final float[] tCoords = GTUtility.getClickedFacingCoords(side, aX, aY, aZ);
switch ((byte) ((byte) (int) (tCoords[0] * 2.0F) + (2 * (byte) (int) (tCoords[1] * 2.0F)))) {
case 0:
Logger.WARNING("Freq. -1 | " + this.mFrequency);
try {
GTPPCore.sTesseractGeneratorOwnershipMap.get(mOwner)
.remove(this.mFrequency);
} catch (Throwable t) {}
this.mFrequency -= 1;
break;
case 1:
Logger.WARNING("Freq. +1 | " + this.mFrequency);
try {
GTPPCore.sTesseractGeneratorOwnershipMap.get(mOwner)
.remove(this.mFrequency);
} catch (Throwable t) {}
this.mFrequency += 1;
default:
// Utils.LOG_WARNING("Did not click the correct place.");
break;
}
if (getGeneratorEntity(this.mFrequency) != null && getGeneratorEntity(this.mFrequency) != this) {
GTUtility.sendChatToPlayer(
aPlayer,
"Frequency: " + this.mFrequency + EnumChatFormatting.RED + " (Occupied)");
} else {
GTUtility.sendChatToPlayer(aPlayer, "Frequency: " + this.mFrequency);
}
} else if (aPlayer.getUniqueID()
.compareTo(this.mOwner) != 0) {
GTUtility.sendChatToPlayer(aPlayer, "This is not your Tesseract Generator to configure.");
}
}
return true;
}
@Override
public void onScrewdriverRightClick(final ForgeDirection side, final EntityPlayer aPlayer, final float aX,
final float aY, final float aZ) {
if (aPlayer.getUniqueID()
.compareTo(this.mOwner) == 0) {
if (side == this.getBaseMetaTileEntity()
.getFrontFacing()) {
final float[] tCoords = GTUtility.getClickedFacingCoords(side, aX, aY, aZ);
switch ((byte) ((byte) (int) (tCoords[0] * 2.0F) + (2 * (byte) (int) (tCoords[1] * 2.0F)))) {
case 0 -> {
try {
GTPPCore.sTesseractGeneratorOwnershipMap.get(mOwner)
.remove(this.mFrequency);
} catch (Throwable t) {}
this.mFrequency -= 64;
}
case 1 -> {
try {
GTPPCore.sTesseractGeneratorOwnershipMap.get(mOwner)
.remove(this.mFrequency);
} catch (Throwable t) {}
this.mFrequency += 64;
}
case 2 -> {
try {
GTPPCore.sTesseractGeneratorOwnershipMap.get(mOwner)
.remove(this.mFrequency);
} catch (Throwable t) {}
this.mFrequency -= 512;
}
case 3 -> {
try {
GTPPCore.sTesseractGeneratorOwnershipMap.get(mOwner)
.remove(this.mFrequency);
} catch (Throwable t) {}
this.mFrequency += 512;
}
}
if (getGeneratorEntity(this.mFrequency) != null && getGeneratorEntity(this.mFrequency) != this) {
GTUtility.sendChatToPlayer(
aPlayer,
"Frequency: " + this.mFrequency + EnumChatFormatting.RED + " (Occupied)");
} else {
GTUtility.sendChatToPlayer(aPlayer, "Frequency: " + this.mFrequency);
}
}
} else {
GTUtility.sendChatToPlayer(aPlayer, "This is not your Tesseract Generator to configure.");
}
}
public boolean allowCoverOnSide(final ForgeDirection side, final int aCoverID) {
return side != this.getBaseMetaTileEntity()
.getFrontFacing();
}
@Override
public String[] getInfoData() {
final TileEntity tTileEntity = this.getBaseMetaTileEntity()
.getTileEntityAtSide(
this.getBaseMetaTileEntity()
.getBackFacing());
if ((tTileEntity != null) && (this.getBaseMetaTileEntity()
.isAllowedToWork())
&& ((tTileEntity instanceof IGregTechDeviceInformation))
&& (((IGregTechDeviceInformation) tTileEntity).isGivingInformation())) {
return ((IGregTechDeviceInformation) tTileEntity).getInfoData();
}
return new String[] { "Tesseract Generator", "Freqency:", "" + this.mFrequency,
(getGeneratorEntity() == this) && (this.isWorking >= 20) ? "Active" : "Inactive" };
}
@Override
public boolean isGivingInformation() {
return true;
}
public boolean isSendingInformation() {
final TileEntity tTileEntity = this.getBaseMetaTileEntity()
.getTileEntityAtSide(
this.getBaseMetaTileEntity()
.getBackFacing());
if ((tTileEntity != null) && (this.getBaseMetaTileEntity()
.isAllowedToWork()) && ((tTileEntity instanceof IGregTechDeviceInformation))) {
return ((IGregTechDeviceInformation) tTileEntity).isGivingInformation();
}
return false;
}
@Override
public boolean isDigitalChest() {
final TileEntity tTileEntity = this.getBaseMetaTileEntity()
.getTileEntityAtSide(
this.getBaseMetaTileEntity()
.getBackFacing());
if ((tTileEntity != null) && (this.getBaseMetaTileEntity()
.isAllowedToWork()) && ((tTileEntity instanceof IDigitalChest))) {
return ((IDigitalChest) tTileEntity).isDigitalChest();
}
return false;
}
@Override
public ItemStack[] getStoredItemData() {
final TileEntity tTileEntity = this.getBaseMetaTileEntity()
.getTileEntityAtSide(
this.getBaseMetaTileEntity()
.getBackFacing());
if ((tTileEntity != null) && (this.getBaseMetaTileEntity()
.isAllowedToWork()) && ((tTileEntity instanceof IDigitalChest))) {
return ((IDigitalChest) tTileEntity).getStoredItemData();
}
return new ItemStack[] {};
}
@Override
public void setItemCount(final int aCount) {
final TileEntity tTileEntity = this.getBaseMetaTileEntity()
.getTileEntityAtSide(
this.getBaseMetaTileEntity()
.getBackFacing());
if ((tTileEntity != null) && (this.getBaseMetaTileEntity()
.isAllowedToWork()) && ((tTileEntity instanceof IDigitalChest))) {
((IDigitalChest) tTileEntity).setItemCount(aCount);
}
}
@Override
public int getMaxItemCount() {
final TileEntity tTileEntity = this.getBaseMetaTileEntity()
.getTileEntityAtSide(
this.getBaseMetaTileEntity()
.getBackFacing());
if ((tTileEntity != null) && (this.getBaseMetaTileEntity()
.isAllowedToWork()) && ((tTileEntity instanceof IDigitalChest))) {
return ((IDigitalChest) tTileEntity).getMaxItemCount();
}
return 0;
}
@Override
public boolean isItemValidForSlot(final int aIndex, final ItemStack aStack) {
final IInventory tTileEntity = this.getBaseMetaTileEntity()
.getIInventoryAtSide(
this.getBaseMetaTileEntity()
.getBackFacing());
if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
.isAllowedToWork())) {
return false;
}
return tTileEntity.isItemValidForSlot(aIndex, aStack);
}
@Override
public int[] getAccessibleSlotsFromSide(final int ordinalSide) {
final IInventory tTileEntity = this.getBaseMetaTileEntity()
.getIInventoryAtSide(
this.getBaseMetaTileEntity()
.getBackFacing());
if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
.isAllowedToWork())) {
return new int[0];
}
if ((tTileEntity instanceof ISidedInventory)) {
return ((ISidedInventory) tTileEntity).getAccessibleSlotsFromSide(ordinalSide);
}
final int[] rArray = new int[this.getSizeInventory()];
for (int i = 0; i < this.getSizeInventory(); i++) {
rArray[i] = i;
}
return rArray;
}
@Override
public boolean canInsertItem(final int aIndex, final ItemStack aStack, final int ordinalSide) {
final IInventory tTileEntity = this.getBaseMetaTileEntity()
.getIInventoryAtSide(
this.getBaseMetaTileEntity()
.getBackFacing());
if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
.isAllowedToWork())) {
return false;
}
if ((tTileEntity instanceof ISidedInventory)) {
return ((ISidedInventory) tTileEntity).canInsertItem(aIndex, aStack, ordinalSide);
}
return true;
}
@Override
public boolean canExtractItem(final int aIndex, final ItemStack aStack, final int ordinalSide) {
final IInventory tTileEntity = this.getBaseMetaTileEntity()
.getIInventoryAtSide(
this.getBaseMetaTileEntity()
.getBackFacing());
if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
.isAllowedToWork())) {
return false;
}
if ((tTileEntity instanceof ISidedInventory)) {
return ((ISidedInventory) tTileEntity).canExtractItem(aIndex, aStack, ordinalSide);
}
return true;
}
@Override
public int getSizeInventory() {
final IInventory tTileEntity = this.getBaseMetaTileEntity()
.getIInventoryAtSide(
this.getBaseMetaTileEntity()
.getBackFacing());
if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
.isAllowedToWork())) {
return 0;
}
return tTileEntity.getSizeInventory();
}
@Override
public ItemStack getStackInSlot(final int aIndex) {
final IInventory tTileEntity = this.getBaseMetaTileEntity()
.getIInventoryAtSide(
this.getBaseMetaTileEntity()
.getBackFacing());
if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
.isAllowedToWork())) {
return null;
}
return tTileEntity.getStackInSlot(aIndex);
}
@Override
public void setInventorySlotContents(final int aIndex, final ItemStack aStack) {
final IInventory tTileEntity = this.getBaseMetaTileEntity()
.getIInventoryAtSide(
this.getBaseMetaTileEntity()
.getBackFacing());
if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
.isAllowedToWork())) {
return;
}
tTileEntity.setInventorySlotContents(aIndex, aStack);
}
@Override
public ItemStack decrStackSize(final int aIndex, final int aAmount) {
final IInventory tTileEntity = this.getBaseMetaTileEntity()
.getIInventoryAtSide(
this.getBaseMetaTileEntity()
.getBackFacing());
if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
.isAllowedToWork())) {
return null;
}
return tTileEntity.decrStackSize(aIndex, aAmount);
}
@Override
public String getInventoryName() {
final IInventory tTileEntity = this.getBaseMetaTileEntity()
.getIInventoryAtSide(
this.getBaseMetaTileEntity()
.getBackFacing());
if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
.isAllowedToWork())) {
return "";
}
return tTileEntity.getInventoryName();
}
@Override
public int getInventoryStackLimit() {
final IInventory tTileEntity = this.getBaseMetaTileEntity()
.getIInventoryAtSide(
this.getBaseMetaTileEntity()
.getBackFacing());
if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
.isAllowedToWork())) {
return 0;
}
return tTileEntity.getInventoryStackLimit();
}
@Override
public boolean canFill(final ForgeDirection aSide, final Fluid aFluid) {
final IFluidHandler tTileEntity = this.getBaseMetaTileEntity()
.getITankContainerAtSide(
this.getBaseMetaTileEntity()
.getBackFacing());
if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
.isAllowedToWork())) {
return false;
}
return tTileEntity.canFill(aSide, aFluid);
}
@Override
public boolean canDrain(final ForgeDirection aSide, final Fluid aFluid) {
final IFluidHandler tTileEntity = this.getBaseMetaTileEntity()
.getITankContainerAtSide(
this.getBaseMetaTileEntity()
.getBackFacing());
if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
.isAllowedToWork())) {
return false;
}
return tTileEntity.canDrain(aSide, aFluid);
}
@Override
public FluidTankInfo[] getTankInfo(final ForgeDirection aSide) {
final IFluidHandler tTileEntity = this.getBaseMetaTileEntity()
.getITankContainerAtSide(
this.getBaseMetaTileEntity()
.getBackFacing());
if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
.isAllowedToWork())) {
return new FluidTankInfo[0];
}
return tTileEntity.getTankInfo(aSide);
}
@Override
public int fill_default(final ForgeDirection aDirection, final FluidStack aFluid, final boolean doFill) {
final IFluidHandler tTileEntity = this.getBaseMetaTileEntity()
.getITankContainerAtSide(
this.getBaseMetaTileEntity()
.getBackFacing());
if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
.isAllowedToWork())) {
return 0;
}
return tTileEntity.fill(aDirection, aFluid, doFill);
}
@Override
public FluidStack drain(final ForgeDirection aDirection, final int maxDrain, final boolean doDrain) {
final IFluidHandler tTileEntity = this.getBaseMetaTileEntity()
.getITankContainerAtSide(
this.getBaseMetaTileEntity()
.getBackFacing());
if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
.isAllowedToWork())) {
return null;
}
return tTileEntity.drain(aDirection, maxDrain, doDrain);
}
@Override
public FluidStack drain(final ForgeDirection aSide, final FluidStack aFluid, final boolean doDrain) {
final IFluidHandler tTileEntity = this.getBaseMetaTileEntity()
.getITankContainerAtSide(
this.getBaseMetaTileEntity()
.getBackFacing());
if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
.isAllowedToWork())) {
return null;
}
return tTileEntity.drain(aSide, aFluid, doDrain);
}
public boolean addEnergyConsumption(final MTETesseractTerminal aTerminal) {
if (!this.getBaseMetaTileEntity()
.isAllowedToWork()) {
return false;
}
int J = (aTerminal.getBaseMetaTileEntity()
.getWorld()
== this.getBaseMetaTileEntity()
.getWorld() ? TESSERACT_ENERGY_COST : TESSERACT_ENERGY_COST_DIMENSIONAL);
J *= 4;
this.mNeededEnergy += J;
return true;
}
public boolean isValidTesseractGenerator(final String aOwnerName, final boolean aWorkIrrelevant) {
return (this.getBaseMetaTileEntity() != null) && (!this.getBaseMetaTileEntity()
.isInvalidTileEntity())
&& (this.getBaseMetaTileEntity()
.isAllowedToWork())
&& ((aOwnerName == null) || (this.getBaseMetaTileEntity()
.getOwnerName()
.equals(aOwnerName)))
&& ((aWorkIrrelevant) || (this.isWorking >= 20));
}
@Override
public void onPreTick(IGregTechTileEntity aBaseMetaTileEntity, long aTick) {
// TODO Auto-generated method stub
super.onPreTick(aBaseMetaTileEntity, aTick);
}
@Override
public void onPostTick(IGregTechTileEntity aBaseMetaTileEntity, long aTick) {
// Utils.LOG_WARNING("Ticking Generator. 0");
if (this.getBaseMetaTileEntity()
.isServerSide()) {
// Utils.LOG_WARNING("Ticking Generator.");
// Set owner
if (PlayerUtils.getPlayersUUIDByName(
this.getBaseMetaTileEntity()
.getOwnerName())
!= null) {
if (this.mOwner == null) {
Logger.WARNING("Setting Generators Owner. 1");
this.mOwner = PlayerUtils.getPlayersUUIDByName(
this.getBaseMetaTileEntity()
.getOwnerName());
}
}
if (this.mFrequency != this.oFrequency) {
Logger.WARNING("mFreq != oFreq");
if (getGeneratorEntity() == this) {
getGeneratorEntity(this.oFrequency);
this.getBaseMetaTileEntity()
.issueBlockUpdate();
Logger.WARNING("this Gen == oFreq on map - do block update");
}
Logger.WARNING("mFreq will be set to oFreq");
this.oFrequency = this.mFrequency;
}
if ((this.getBaseMetaTileEntity()
.isAllowedToWork())
&& (this.getBaseMetaTileEntity()
.decreaseStoredEnergyUnits(this.mNeededEnergy, false))) {
// Utils.LOG_WARNING("Can Work & Has Energy");
if ((getGeneratorEntity(this.mFrequency) == null)
|| (!getGeneratorEntity(this.mFrequency).isValidTesseractGenerator(null, true))) {
// Utils.LOG_WARNING("storing TE I think to mFreq map?");
TesseractHelper.setGeneratorOwnershipByPlayer(
PlayerUtils.getPlayerOnServerFromUUID(mOwner),
this.mFrequency,
this);
}
} else {
if (getGeneratorEntity(this.mFrequency) == this) {
Logger.WARNING("this gen == mFreq on map - do block update");
TesseractHelper.removeGenerator(PlayerUtils.getPlayerOnServerFromUUID(mOwner), this.mFrequency);
this.getBaseMetaTileEntity()
.issueBlockUpdate();
}
this.isWorking = 0;
}
if (getGeneratorEntity(this.mFrequency) == this) {
// Utils.LOG_WARNING("mFreq == this - do work related things");
if (this.isWorking < 20) {
this.isWorking = ((byte) (this.isWorking + 1));
}
if (this.isWorking == 20) {
this.getBaseMetaTileEntity()
.issueBlockUpdate();
this.isWorking = ((byte) (this.isWorking + 1));
}
} else {
this.isWorking = 0;
}
this.mNeededEnergy = 0;
}
super.onPostTick(aBaseMetaTileEntity, aTick);
}
@Override
public String[] getDescription() {
return ArrayUtils.addAll(
this.mDescriptionArray,
"Generates a Tesseract for the attached Inventory",
"Connect with pipes to insert items",
"Consumes " + TESSERACT_ENERGY_COST + "EU/t for same dimension transfers",
"Consumes " + TESSERACT_ENERGY_COST_DIMENSIONAL + "EU/t for cross dimensional transfers",
GTPPCore.GT_Tooltip.get());
}
@Override
public boolean allowPullStack(final IGregTechTileEntity aBaseMetaTileEntity, final int aIndex,
final ForgeDirection side, final ItemStack aStack) {
return false;
}
@Override
public boolean allowPutStack(final IGregTechTileEntity aBaseMetaTileEntity, final int aIndex,
final ForgeDirection side, final ItemStack aStack) {
return false;
}
@Override
public ITexture[][][] getTextureSet(final ITexture[] aTextures) {
return new ITexture[0][0][0];
}
@Override
public ITexture[] getTexture(final IGregTechTileEntity aBaseMetaTileEntity, final ForgeDirection side,
final ForgeDirection facing, final int aColorIndex, final boolean aActive, final boolean aRedstone) {
return side == facing
? new ITexture[] { new GTRenderedTexture(TexturesGtBlock.Casing_Machine_Dimensional),
new GTRenderedTexture(TexturesGtBlock.Casing_Machine_Screen_Frequency) }
: new ITexture[] { new GTRenderedTexture(TexturesGtBlock.Casing_Machine_Dimensional),
new GTRenderedTexture(Textures.BlockIcons.VOID) };
}
// To-Do?
@Override
public boolean doesFillContainers() {
return false;
}
@Override
public boolean doesEmptyContainers() {
return false;
}
@Override
public boolean canTankBeFilled() {
return false;
}
@Override
public boolean canTankBeEmptied() {
return false;
}
@Override
public boolean displaysItemStack() {
return false;
}
@Override
public boolean displaysStackSize() {
return false;
}
private MTETesseractGenerator getGeneratorEntity() {
return TesseractHelper.getGeneratorByFrequency(PlayerUtils.getPlayerOnServerFromUUID(mOwner), this.mFrequency);
}
private MTETesseractGenerator getGeneratorEntity(int frequency) {
return TesseractHelper.getGeneratorByFrequency(PlayerUtils.getPlayerOnServerFromUUID(mOwner), frequency);
}
@Override
public void onCreated(ItemStack aStack, World aWorld, EntityPlayer aPlayer) {
if (this.getBaseMetaTileEntity()
.getOwnerName() != null
&& !this.getBaseMetaTileEntity()
.getOwnerName()
.isEmpty()) {
this.mOwner = PlayerUtils.getPlayersUUIDByName(
this.getBaseMetaTileEntity()
.getOwnerName());
Logger.WARNING("Setting Generators Owner. 2");
}
super.onCreated(aStack, aWorld, aPlayer);
}
@Override
public void onRemoval() {
try {
GTPPCore.sTesseractGeneratorOwnershipMap.get(mOwner)
.remove(this.mFrequency);
} catch (Throwable t) {}
super.onRemoval();
}
}
|