aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/automation/MTETesseractTerminal.java
blob: 1935129e32e33eb5611b13f6d79ca5a080365d1b (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
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
package gtPlusPlus.xmod.gregtech.common.tileentities.automation;

import java.util.UUID;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
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 org.apache.commons.lang3.ArrayUtils;

import gregtech.api.enums.Textures;
import gregtech.api.interfaces.ITexture;
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.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 MTETesseractTerminal extends MTEBasicTank {

    public int mFrequency = 0;
    public UUID mOwner;
    public boolean mDidWork = false;
    public static boolean sInterDimensionalTesseractAllowed = true;
    private static int TESSERACT_ENERGY_COST = 128;
    private static int TESSERACT_ENERGY_COST_DIMENSIONAL = 512;

    public MTETesseractTerminal(final int aID, final String aName, final String aNameRegional, final int aTier) {
        super(aID, aName, aNameRegional, aTier, 3, "");
    }

    public MTETesseractTerminal(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 MTETesseractTerminal(this.mName, this.mTier, this.mDescriptionArray, this.mTextures);
    }

    @Override
    public boolean isTransformerUpgradable() {
        return false;
    }

    @Override
    public boolean isOverclockerUpgradable() {
        return false;
    }

    @Override
    public boolean isSimpleMachine() {
        return false;
    }

    @Override
    public boolean isFacingValid(final ForgeDirection facing) {
        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() / 100);
    }

    @Override
    public long maxEUInput() {
        return TESSERACT_ENERGY_COST_DIMENSIONAL;
    }

    @Override
    public boolean isAccessAllowed(final EntityPlayer aPlayer) {
        return true;
    }

    @Override
    public long maxEUStore() {
        return TESSERACT_ENERGY_COST_DIMENSIONAL * 8 * 32;
    }

    @Override
    public long maxSteamStore() {
        return this.maxEUStore();
    }

    @Override
    public boolean ownerControl() {
        return true;
    }

    @Override
    public int getProgresstime() {
        return this.getTesseract(this.mFrequency, false) != null ? 999 : 0;
    }

    @Override
    public int maxProgresstime() {
        return 1000;
    }

    @Override
    public void saveNBTData(final NBTTagCompound aNBT) {
        aNBT.setInteger("mFrequency", this.mFrequency);
        aNBT.setString("mOwner", mOwner.toString());
    }

    @Override
    public void loadNBTData(final NBTTagCompound aNBT) {
        this.mFrequency = aNBT.getInteger("mFrequency");
        this.mOwner = UUID.fromString(aNBT.getString("mOnwer"));
    }

    @Override
    public void onConfigLoad() {
        sInterDimensionalTesseractAllowed = true;
        TESSERACT_ENERGY_COST = 512;
        TESSERACT_ENERGY_COST_DIMENSIONAL = 2048;
    }

    @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 (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:
                        // Utils.LOG_WARNING("Freq. -1 | " + this.mFrequency);
                        try {
                            GTPPCore.sTesseractTerminalOwnershipMap.get(mOwner)
                                .remove(this.mFrequency);
                        } catch (Throwable t) {}
                        this.mFrequency -= 1;
                        break;
                    case 1:
                        // Utils.LOG_WARNING("Freq. +1 | " + this.mFrequency);
                        try {
                            GTPPCore.sTesseractTerminalOwnershipMap.get(mOwner)
                                .remove(this.mFrequency);
                        } catch (Throwable t) {}
                        this.mFrequency += 1;
                    default:
                        // Utils.LOG_WARNING("Did not click the correct place.");
                        try {
                            GTPPCore.sTesseractTerminalOwnershipMap.get(mOwner)
                                .remove(this.mFrequency);
                        } catch (Throwable t) {}
                        break;
                }
                PlayerUtils.messagePlayer(aPlayer, "Frequency: " + this.mFrequency);
                if (this.getTesseract(this.mFrequency, false) != null) {
                    PlayerUtils.messagePlayer(aPlayer, EnumChatFormatting.GREEN + " (Connected)");
                }
            }
        } else if (aPlayer.getUniqueID()
            .compareTo(this.mOwner) != 0) {
                GTUtility.sendChatToPlayer(aPlayer, "This is not your Tesseract Terminal 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.sTesseractTerminalOwnershipMap.get(mOwner)
                                .remove(this.mFrequency);
                        } catch (Throwable t) {}
                        this.mFrequency -= 64;
                    }
                    case 1 -> {
                        try {
                            GTPPCore.sTesseractTerminalOwnershipMap.get(mOwner)
                                .remove(this.mFrequency);
                        } catch (Throwable t) {}
                        this.mFrequency += 64;
                    }
                    case 2 -> {
                        try {
                            GTPPCore.sTesseractTerminalOwnershipMap.get(mOwner)
                                .remove(this.mFrequency);
                        } catch (Throwable t) {}
                        this.mFrequency -= 512;
                    }
                    case 3 -> {
                        try {
                            GTPPCore.sTesseractTerminalOwnershipMap.get(mOwner)
                                .remove(this.mFrequency);
                        } catch (Throwable t) {}
                        this.mFrequency += 512;
                    }
                }
                GTUtility.sendChatToPlayer(
                    aPlayer,
                    "Frequency: " + this.mFrequency
                        + (this.getTesseract(this.mFrequency, false) == null ? ""
                            : EnumChatFormatting.GREEN + " (Connected)"));
            }
        } else if (aPlayer.getUniqueID()
            .compareTo(this.mOwner) != 0) {
                GTUtility.sendChatToPlayer(aPlayer, "This is not your Tesseract Terminal to configure.");
            }
    }

    public boolean allowCoverOnSide(final ForgeDirection side, final int aCoverID) {
        return side != this.getBaseMetaTileEntity()
            .getFrontFacing();
    }

    public MTETesseractGenerator getTesseract(final int aFrequency, final boolean aWorkIrrelevant) {
        final MTETesseractGenerator rTesseract = TesseractHelper
            .getGeneratorByFrequency(PlayerUtils.getPlayerOnServerFromUUID(mOwner), aFrequency);
        if (rTesseract == null) {
            return null;
        }
        if (!TesseractHelper.isGeneratorOwnedByPlayer(PlayerUtils.getPlayerOnServerFromUUID(mOwner), rTesseract)) {
            return null;
        }
        if (rTesseract.mFrequency != aFrequency) {
            TesseractHelper
                .setTerminalOwnershipByPlayer(PlayerUtils.getPlayerOnServerFromUUID(mOwner), aFrequency, null);
            return null;
        }
        if (!rTesseract.isValidTesseractGenerator(
            this.getBaseMetaTileEntity()
                .getOwnerName(),
            aWorkIrrelevant)) {
            return null;
        }
        if ((!sInterDimensionalTesseractAllowed) && (rTesseract.getBaseMetaTileEntity()
            .getWorld()
            != this.getBaseMetaTileEntity()
                .getWorld())) {
            return null;
        }
        return rTesseract;
    }

    @Override
    public String[] getInfoData() {
        final MTETesseractGenerator tTileEntity = this.getTesseract(this.mFrequency, false);
        if ((tTileEntity != null) && (this.getBaseMetaTileEntity()
            .isAllowedToWork()) && (tTileEntity.isSendingInformation())) {
            return tTileEntity.getInfoData();
        }
        return new String[] { "Tesseract Generator", "Freqency:", "" + this.mFrequency,
            this.getTesseract(this.mFrequency, false) != null ? "Active" : "Inactive" };
    }

    @Override
    public boolean isGivingInformation() {
        return true;
    }

    @Override
    public boolean isDigitalChest() {
        final MTETesseractGenerator tTileEntity = this.getTesseract(this.mFrequency, false);
        if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
            .isAllowedToWork())) {
            return false;
        }
        return tTileEntity.isDigitalChest();
    }

    @Override
    public ItemStack[] getStoredItemData() {
        final MTETesseractGenerator tTileEntity = this.getTesseract(this.mFrequency, false);
        if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
            .isAllowedToWork())) {
            return null;
        }
        return tTileEntity.getStoredItemData();
    }

    @Override
    public void setItemCount(final int aCount) {
        final MTETesseractGenerator tTileEntity = this.getTesseract(this.mFrequency, false);
        if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
            .isAllowedToWork())) {
            return;
        }
        tTileEntity.setItemCount(aCount);
    }

    @Override
    public int getMaxItemCount() {
        final MTETesseractGenerator tTileEntity = this.getTesseract(this.mFrequency, false);
        if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
            .isAllowedToWork())) {
            return 0;
        }
        return tTileEntity.getMaxItemCount();
    }

    @Override
    public boolean isItemValidForSlot(final int aIndex, final ItemStack aStack) {
        final MTETesseractGenerator tTileEntity = this.getTesseract(this.mFrequency, false);
        if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
            .isAllowedToWork())) {
            return false;
        }
        return tTileEntity.isItemValidForSlot(aIndex, aStack);
    }

    @Override
    public int[] getAccessibleSlotsFromSide(final int ordinalSide) {
        final MTETesseractGenerator tTileEntity = this.getTesseract(this.mFrequency, false);
        if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
            .isAllowedToWork())) {
            return new int[0];
        }
        return tTileEntity.getAccessibleSlotsFromSide(ordinalSide);
    }

    @Override
    public boolean canInsertItem(final int aIndex, final ItemStack aStack, final int ordinalSide) {
        final MTETesseractGenerator tTileEntity = this.getTesseract(this.mFrequency, false);
        if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
            .isAllowedToWork())) {
            return false;
        }
        return tTileEntity.canInsertItem(aIndex, aStack, ordinalSide);
    }

    @Override
    public boolean canExtractItem(final int aIndex, final ItemStack aStack, final int ordinalSide) {
        final MTETesseractGenerator tTileEntity = this.getTesseract(this.mFrequency, false);
        if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
            .isAllowedToWork())) {
            return false;
        }
        return tTileEntity.canExtractItem(aIndex, aStack, ordinalSide);
    }

    @Override
    public int getSizeInventory() {
        final MTETesseractGenerator tTileEntity = this.getTesseract(this.mFrequency, false);
        if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
            .isAllowedToWork())) {
            return 0;
        }
        return tTileEntity.getSizeInventory();
    }

    @Override
    public ItemStack getStackInSlot(final int aIndex) {
        final MTETesseractGenerator tTileEntity = this.getTesseract(this.mFrequency, false);
        if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
            .isAllowedToWork())) {
            return null;
        }
        return tTileEntity.getStackInSlot(aIndex);
    }

    @Override
    public void setInventorySlotContents(final int aIndex, final ItemStack aStack) {
        final MTETesseractGenerator tTileEntity = this.getTesseract(this.mFrequency, false);
        if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
            .isAllowedToWork())) {
            return;
        }
        tTileEntity.setInventorySlotContents(aIndex, aStack);
    }

    @Override
    public ItemStack decrStackSize(final int aIndex, final int aAmount) {
        final MTETesseractGenerator tTileEntity = this.getTesseract(this.mFrequency, false);
        if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
            .isAllowedToWork())) {
            return null;
        }
        return tTileEntity.decrStackSize(aIndex, aAmount);
    }

    @Override
    public String getInventoryName() {
        final MTETesseractGenerator tTileEntity = this.getTesseract(this.mFrequency, false);
        if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
            .isAllowedToWork())) {
            return "";
        }
        return tTileEntity.getInventoryName();
    }

    @Override
    public int getInventoryStackLimit() {
        final MTETesseractGenerator tTileEntity = this.getTesseract(this.mFrequency, false);
        if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
            .isAllowedToWork())) {
            return 0;
        }
        return tTileEntity.getInventoryStackLimit();
    }

    @Override
    public boolean canFill(final ForgeDirection aSide, final Fluid aFluid) {
        final MTETesseractGenerator tTileEntity = this.getTesseract(this.mFrequency, false);
        if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
            .isAllowedToWork())) {
            return false;
        }
        return tTileEntity.canFill(aSide, aFluid);
    }

    @Override
    public boolean canDrain(final ForgeDirection aSide, final Fluid aFluid) {
        final MTETesseractGenerator tTileEntity = this.getTesseract(this.mFrequency, false);
        if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
            .isAllowedToWork())) {
            return false;
        }
        return tTileEntity.canDrain(aSide, aFluid);
    }

    @Override
    public FluidTankInfo[] getTankInfo(final ForgeDirection aSide) {
        final MTETesseractGenerator tTileEntity = this.getTesseract(this.mFrequency, false);
        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 MTETesseractGenerator tTileEntity = this.getTesseract(this.mFrequency, false);
        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 MTETesseractGenerator tTileEntity = this.getTesseract(this.mFrequency, false);
        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 MTETesseractGenerator tTileEntity = this.getTesseract(this.mFrequency, false);
        if ((tTileEntity == null) || (!this.getBaseMetaTileEntity()
            .isAllowedToWork())) {
            return null;
        }
        return tTileEntity.drain(aSide, aFluid, doDrain);
    }

    @Override
    public void onPostTick(IGregTechTileEntity aBaseMetaTileEntity, long aTick) {
        if ((this.getBaseMetaTileEntity()
            .isServerSide())
            && (this.getBaseMetaTileEntity()
                .isAllowedToWork())) {
            // Set owner
            if (PlayerUtils.getPlayersUUIDByName(
                this.getBaseMetaTileEntity()
                    .getOwnerName())
                != null) {
                if (this.mOwner == null) {
                    this.mOwner = PlayerUtils.getPlayersUUIDByName(
                        this.getBaseMetaTileEntity()
                            .getOwnerName());
                }
            }
            final MTETesseractGenerator tTileEntity = this.getTesseract(this.mFrequency, true);
            if (tTileEntity != null) {
                tTileEntity.addEnergyConsumption(this);
                if ((!this.mDidWork) && (this.getTesseract(this.mFrequency, false) != null)) {
                    this.mDidWork = true;
                    this.getBaseMetaTileEntity()
                        .issueBlockUpdate();
                    this.getBaseMetaTileEntity()
                        .decreaseStoredEnergyUnits(128, false);
                }
            } else if (this.mDidWork) {
                this.mDidWork = false;
                this.getBaseMetaTileEntity()
                    .issueBlockUpdate();
            }
        }
    }

    @Override
    public String[] getDescription() {
        return ArrayUtils.addAll(
            this.mDescriptionArray,
            "Accesses Tesseract Generators remotely",
            "Connect with pipes to extract items or fluids",
            "Outputs from the back face",
            "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;
    }

    @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());
        }
        super.onCreated(aStack, aWorld, aPlayer);
    }

    @Override
    public void onRemoval() {
        try {
            GTPPCore.sTesseractTerminalOwnershipMap.get(mOwner)
                .remove(this.mFrequency);
        } catch (Throwable t) {}
        super.onRemoval();
    }
}