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
|
package tectech.thing.metaTileEntity.multi;
import static com.gtnewhorizon.structurelib.structure.StructureUtility.ofBlock;
import static com.gtnewhorizon.structurelib.structure.StructureUtility.transpose;
import static gregtech.api.enums.GTValues.V;
import static gregtech.api.enums.HatchElement.Energy;
import static gregtech.api.enums.HatchElement.Maintenance;
import static gregtech.api.util.GTStructureUtility.buildHatchAdder;
import static gregtech.api.util.GTUtility.filterValidMTEs;
import static net.minecraft.util.StatCollector.translateToLocal;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import javax.annotation.Nonnull;
import net.minecraft.client.renderer.texture.IIconRegister;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.EnumChatFormatting;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.common.util.ForgeDirection;
import org.jetbrains.annotations.NotNull;
import com.gtnewhorizon.structurelib.alignment.constructable.ISurvivalConstructable;
import com.gtnewhorizon.structurelib.structure.IItemSource;
import com.gtnewhorizon.structurelib.structure.IStructureDefinition;
import com.gtnewhorizon.structurelib.util.Vec3Impl;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import gregtech.api.enums.Textures;
import gregtech.api.interfaces.IHatchElement;
import gregtech.api.interfaces.ITexture;
import gregtech.api.interfaces.metatileentity.IMetaTileEntity;
import gregtech.api.interfaces.tileentity.IGregTechTileEntity;
import gregtech.api.metatileentity.MetaTileEntity;
import gregtech.api.metatileentity.implementations.MTEHatch;
import gregtech.api.recipe.check.CheckRecipeResult;
import gregtech.api.recipe.check.CheckRecipeResultRegistry;
import gregtech.api.recipe.check.SimpleCheckRecipeResult;
import gregtech.api.util.GTUtility;
import gregtech.api.util.IGTHatchAdder;
import gregtech.api.util.MultiblockTooltipBuilder;
import gregtech.api.util.shutdown.ShutDownReason;
import gregtech.common.WirelessComputationPacket;
import tectech.mechanics.dataTransport.QuantumDataPacket;
import tectech.thing.casing.BlockGTCasingsTT;
import tectech.thing.casing.TTCasingsContainer;
import tectech.thing.metaTileEntity.hatch.MTEHatchDataInput;
import tectech.thing.metaTileEntity.hatch.MTEHatchDataOutput;
import tectech.thing.metaTileEntity.hatch.MTEHatchRack;
import tectech.thing.metaTileEntity.hatch.MTEHatchWirelessComputationOutput;
import tectech.thing.metaTileEntity.multi.base.INameFunction;
import tectech.thing.metaTileEntity.multi.base.IStatusFunction;
import tectech.thing.metaTileEntity.multi.base.LedStatus;
import tectech.thing.metaTileEntity.multi.base.Parameters;
import tectech.thing.metaTileEntity.multi.base.TTMultiblockBase;
import tectech.thing.metaTileEntity.multi.base.render.TTRenderedExtendedFacingTexture;
import tectech.util.CommonValues;
/**
* Created by danie_000 on 17.12.2016.
*/
public class MTEQuantumComputer extends TTMultiblockBase implements ISurvivalConstructable {
// region variables
private final ArrayList<MTEHatchRack> eRacks = new ArrayList<>();
private final ArrayList<MTEHatchWirelessComputationOutput> eWirelessComputationOutputs = new ArrayList<>();
private static Textures.BlockIcons.CustomIcon ScreenOFF;
private static Textures.BlockIcons.CustomIcon ScreenON;
// endregion
// region structure
private static final String[] description = new String[] {
EnumChatFormatting.AQUA + translateToLocal("tt.keyphrase.Hint_Details") + ":",
translateToLocal("gt.blockmachines.multimachine.em.computer.hint.0"), // 1 - Classic/Data Hatches or
// Computer casing
translateToLocal("gt.blockmachines.multimachine.em.computer.hint.1"), // 2 - Rack Hatches or Advanced
// computer casing
};
private static final IStructureDefinition<MTEQuantumComputer> STRUCTURE_DEFINITION = IStructureDefinition
.<MTEQuantumComputer>builder()
.addShape("front", transpose(new String[][] { { " AA" }, { " AA" }, { " ~A" }, { " AA" } }))
.addShape("cap", transpose(new String[][] { { "-CB" }, { " DD" }, { " DD" }, { "-CB" } }))
.addShape("slice", transpose(new String[][] { { "-CB" }, { " ED" }, { " ED" }, { "-CB" } }))
.addShape("back", transpose(new String[][] { { " AA" }, { " AA" }, { " AA" }, { " AA" } }))
.addElement('B', ofBlock(TTCasingsContainer.sBlockCasingsTT, 1))
.addElement('C', ofBlock(TTCasingsContainer.sBlockCasingsTT, 2))
.addElement('D', ofBlock(TTCasingsContainer.sBlockCasingsTT, 3))
.addElement(
'A',
buildHatchAdder(MTEQuantumComputer.class)
.atLeast(
Energy.or(HatchElement.EnergyMulti),
Maintenance,
HatchElement.Uncertainty,
HatchElement.OutputData,
WirelessComputationHatchElement.INSTANCE)
.casingIndex(BlockGTCasingsTT.textureOffset + 1)
.dot(1)
.buildAndChain(ofBlock(TTCasingsContainer.sBlockCasingsTT, 1)))
.addElement(
'E',
RackHatchElement.INSTANCE
.newAnyOrCasing(BlockGTCasingsTT.textureOffset + 3, 2, TTCasingsContainer.sBlockCasingsTT, 3))
.build();
// endregion
// region parameters
protected Parameters.Group.ParameterIn overclock, overvolt;
protected Parameters.Group.ParameterOut maxCurrentTemp, availableData;
private boolean wirelessModeEnabled = false;
private static final INameFunction<MTEQuantumComputer> OC_NAME = (base,
p) -> translateToLocal("gt.blockmachines.multimachine.em.computer.cfgi.0"); // Overclock ratio
private static final INameFunction<MTEQuantumComputer> OV_NAME = (base,
p) -> translateToLocal("gt.blockmachines.multimachine.em.computer.cfgi.1"); // Overvoltage ratio
private static final INameFunction<MTEQuantumComputer> MAX_TEMP_NAME = (base,
p) -> translateToLocal("gt.blockmachines.multimachine.em.computer.cfgo.0"); // Current max. heat
private static final INameFunction<MTEQuantumComputer> COMPUTE_NAME = (base,
p) -> translateToLocal("gt.blockmachines.multimachine.em.computer.cfgo.1"); // Produced computation
private static final IStatusFunction<MTEQuantumComputer> OC_STATUS = (base, p) -> LedStatus
.fromLimitsInclusiveOuterBoundary(p.get(), 0, 1, 3, 5);
private static final IStatusFunction<MTEQuantumComputer> OV_STATUS = (base, p) -> LedStatus
.fromLimitsInclusiveOuterBoundary(p.get(), 0, 1, 3, 5);
private static final IStatusFunction<MTEQuantumComputer> MAX_TEMP_STATUS = (base, p) -> LedStatus
.fromLimitsInclusiveOuterBoundary(p.get(), 0, 2000, 8000, 10000);
private static final IStatusFunction<MTEQuantumComputer> COMPUTE_STATUS = (base, p) -> {
if (base.eAvailableData < 0) {
return LedStatus.STATUS_TOO_LOW;
}
if (base.eAvailableData == 0) {
return LedStatus.STATUS_NEUTRAL;
}
return LedStatus.STATUS_OK;
};
// endregion
public MTEQuantumComputer(int aID, String aName, String aNameRegional) {
super(aID, aName, aNameRegional);
eCertainMode = 5;
eCertainStatus = -128; // no-brain value
}
public MTEQuantumComputer(String aName) {
super(aName);
eCertainMode = 5;
eCertainStatus = -128; // no-brain value
}
@Override
public IMetaTileEntity newMetaEntity(IGregTechTileEntity aTileEntity) {
return new MTEQuantumComputer(mName);
}
@Override
protected void parametersInstantiation_EM() {
Parameters.Group hatch_0 = parametrization.getGroup(0);
overclock = hatch_0.makeInParameter(0, 1, OC_NAME, OC_STATUS);
overvolt = hatch_0.makeInParameter(1, 1, OV_NAME, OV_STATUS);
maxCurrentTemp = hatch_0.makeOutParameter(0, 0, MAX_TEMP_NAME, MAX_TEMP_STATUS);
availableData = hatch_0.makeOutParameter(1, 0, COMPUTE_NAME, COMPUTE_STATUS);
}
@Override
public boolean checkMachine_EM(IGregTechTileEntity iGregTechTileEntity, ItemStack itemStack) {
for (MTEHatchRack rack : filterValidMTEs(eRacks)) {
rack.getBaseMetaTileEntity()
.setActive(false);
}
eRacks.clear();
if (!structureCheck_EM("front", 1, 2, 0)) {
return false;
}
if (!structureCheck_EM("cap", 1, 2, -1)) {
return false;
}
byte offset = -2, totalLen = 4;
while (offset > -16) {
if (!structureCheck_EM("slice", 1, 2, offset)) {
break;
}
totalLen++;
offset--;
}
if (totalLen > 17) {
return false;
}
if (!structureCheck_EM("cap", 1, 2, ++offset)) {
return false;
}
if (!structureCheck_EM("back", 1, 2, --offset)) {
return false;
}
eCertainMode = (byte) Math.min(totalLen / 3, 5);
for (MTEHatchRack rack : filterValidMTEs(eRacks)) {
rack.getBaseMetaTileEntity()
.setActive(iGregTechTileEntity.isActive());
}
return eUncertainHatches.size() == 1;
}
@Override
public void saveNBTData(NBTTagCompound aNBT) {
super.saveNBTData(aNBT);
aNBT.setDouble("computation", availableData.get());
aNBT.setBoolean("wirelessModeEnabled", wirelessModeEnabled);
}
@Override
public void loadNBTData(NBTTagCompound aNBT) {
super.loadNBTData(aNBT);
if (availableData != null) {
availableData.set(aNBT.getDouble("computation"));
eAvailableData = (long) availableData.get();
}
if (aNBT.hasKey("wirelessModeEnabled")) {
wirelessModeEnabled = aNBT.getBoolean("wirelessModeEnabled");
if (wirelessModeEnabled) {
WirelessComputationPacket.enableWirelessNetWork(getBaseMetaTileEntity());
}
} else {
wirelessModeEnabled = false;
}
}
@Override
public void onPreTick(IGregTechTileEntity aBaseMetaTileEntity, long aTick) {
super.onPreTick(aBaseMetaTileEntity, aTick);
if (aBaseMetaTileEntity.isServerSide() && wirelessModeEnabled && aTick % 20 == 0) {
WirelessComputationPacket.updatePacket(aBaseMetaTileEntity, aTick);
}
}
@Override
public void onPostTick(IGregTechTileEntity aBaseMetaTileEntity, long aTick) {
super.onPostTick(aBaseMetaTileEntity, aTick);
if (aBaseMetaTileEntity.isServerSide() && mMachine
&& !aBaseMetaTileEntity.isActive()
&& aTick % 20 == CommonValues.MULTI_CHECK_AT) {
double maxTemp = 0;
for (MTEHatchRack rack : filterValidMTEs(eRacks)) {
if (rack.heat > maxTemp) {
maxTemp = rack.heat;
}
}
maxCurrentTemp.set(maxTemp);
}
}
@Override
@NotNull
protected CheckRecipeResult checkProcessing_EM() {
parametrization.setToDefaults(false, true);
eAvailableData = 0;
double maxTemp = 0;
double overClockRatio = overclock.get();
double overVoltageRatio = overvolt.get();
if (Double.isNaN(overClockRatio) || Double.isNaN(overVoltageRatio)) {
return SimpleCheckRecipeResult.ofFailure("no_computing");
}
if (overclock.getStatus(true).isOk && overvolt.getStatus(true).isOk) {
float eut = V[7] * (float) overClockRatio * (float) overVoltageRatio;
if (eut < Integer.MAX_VALUE - 7) {
mEUt = -(int) eut;
} else {
mEUt = -(int) V[7];
return CheckRecipeResultRegistry.POWER_OVERFLOW;
}
short thingsActive = 0;
int rackComputation;
for (MTEHatchRack rack : filterValidMTEs(eRacks)) {
if (rack.heat > maxTemp) {
maxTemp = rack.heat;
}
rackComputation = rack.tickComponents((float) overClockRatio, (float) overVoltageRatio);
if (rackComputation > 0) {
eAvailableData += rackComputation;
thingsActive += 4;
}
rack.getBaseMetaTileEntity()
.setActive(true);
}
for (MTEHatchDataInput di : eInputData) {
if (di.q != null) // ok for power losses
{
thingsActive++;
}
}
if (thingsActive > 0 && eCertainStatus == 0) {
thingsActive += eOutputData.size();
eAmpereFlow = 1 + (thingsActive >> 2);
mMaxProgresstime = 20;
mEfficiencyIncrease = 10000;
maxCurrentTemp.set(maxTemp);
availableData.set(eAvailableData);
return SimpleCheckRecipeResult.ofSuccess("computing");
} else {
eAvailableData = 0;
mEUt = -(int) V[7];
eAmpereFlow = 1;
mMaxProgresstime = 20;
mEfficiencyIncrease = 10000;
maxCurrentTemp.set(maxTemp);
availableData.set(eAvailableData);
return SimpleCheckRecipeResult.ofSuccess("no_computing");
}
}
return SimpleCheckRecipeResult.ofFailure("no_computing");
}
@Override
public void outputAfterRecipe_EM() {
if (!eOutputData.isEmpty()) {
Vec3Impl pos = new Vec3Impl(
getBaseMetaTileEntity().getXCoord(),
getBaseMetaTileEntity().getYCoord(),
getBaseMetaTileEntity().getZCoord());
int eHatchData = 0;
for (MTEHatchDataInput hatch : eInputData) {
if (hatch.q == null || hatch.q.contains(pos)) {
continue;
}
eHatchData += hatch.q.getContent();
}
QuantumDataPacket pack = new QuantumDataPacket((eAvailableData + eHatchData) / eOutputData.size())
.unifyTraceWith(pos);
if (pack == null) {
return;
}
for (MTEHatchDataOutput o : eOutputData) {
o.q = pack;
}
}
}
@Override
public MultiblockTooltipBuilder createTooltip() {
final MultiblockTooltipBuilder tt = new MultiblockTooltipBuilder();
tt.addMachineType(translateToLocal("gt.blockmachines.multimachine.em.computer.name")) // Machine Type: Quantum
// Computer
.addInfo(translateToLocal("gt.blockmachines.multimachine.em.computer.desc.0")) // Controller block of
// the Quantum Computer
.addInfo(translateToLocal("gt.blockmachines.multimachine.em.computer.desc.1")) // Used to generate
// computation (and heat)
.addInfo(translateToLocal("gt.blockmachines.multimachine.em.computer.desc.2")) // Use screwdriver to toggle
// wireless mode
.addInfo(translateToLocal("tt.keyword.Structure.StructureTooComplex")) // The structure is too complex!
.addSeparator()
.beginVariableStructureBlock(2, 2, 4, 4, 5, 16, false)
.addOtherStructurePart(
translateToLocal("gt.blockmachines.hatch.certain.tier.07.name"),
translateToLocal("tt.keyword.Structure.AnyComputerCasingFirstOrLastSlice"),
1) // Uncertainty Resolver: Any Computer Casing on first or last slice
.addOtherStructurePart(
translateToLocal("tt.keyword.Structure.DataConnector"),
translateToLocal("tt.keyword.Structure.AnyComputerCasingFirstOrLastSlice"),
1) // Optical Connector: Any Computer Casing on first or last slice
.addOtherStructurePart(
translateToLocal("gt.blockmachines.hatch.rack.tier.08.name"),
translateToLocal("tt.keyword.Structure.AnyAdvComputerCasingExceptOuter"),
2) // Computer Rack: Any Advanced Computer Casing, except the outer ones
.addOtherStructurePart(
translateToLocal("gt.blockmachines.hatch.param.tier.05.name"),
translateToLocal("tt.keyword.Structure.Optional") + " "
+ translateToLocal("tt.keyword.Structure.AnyComputerCasingFirstOrLastSlice"),
2) // Parametrizer: (optional) Any Computer Casing on first or last slice
.addEnergyHatch(translateToLocal("tt.keyword.Structure.AnyComputerCasingFirstOrLastSlice"), 1) // Energy
// Hatch:
// Any
// Computer
// Casing
// on
// first
// or
// last
// slice
.addMaintenanceHatch(translateToLocal("tt.keyword.Structure.AnyComputerCasingFirstOrLastSlice"), 1) // Maintenance
// Hatch:
// Any
// Computer
// Casing
// on
// first
// or
// last
// slice
.toolTipFinisher(CommonValues.TEC_MARK_EM);
return tt;
}
@Override
public void onScrewdriverRightClick(ForgeDirection side, EntityPlayer aPlayer, float aX, float aY, float aZ) {
if (getBaseMetaTileEntity().isServerSide()) {
wirelessModeEnabled = !wirelessModeEnabled;
if (wirelessModeEnabled) {
GTUtility.sendChatToPlayer(aPlayer, "Wireless mode enabled");
WirelessComputationPacket.enableWirelessNetWork(getBaseMetaTileEntity());
} else {
GTUtility.sendChatToPlayer(aPlayer, "Wireless mode disabled");
WirelessComputationPacket.disableWirelessNetWork(getBaseMetaTileEntity());
}
}
}
@Override
@SideOnly(Side.CLIENT)
public void registerIcons(IIconRegister aBlockIconRegister) {
ScreenOFF = new Textures.BlockIcons.CustomIcon("iconsets/EM_COMPUTER");
ScreenON = new Textures.BlockIcons.CustomIcon("iconsets/EM_COMPUTER_ACTIVE");
super.registerIcons(aBlockIconRegister);
}
@Override
public ITexture[] getTexture(IGregTechTileEntity aBaseMetaTileEntity, ForgeDirection side, ForgeDirection facing,
int colorIndex, boolean aActive, boolean aRedstone) {
if (side == facing) {
return new ITexture[] { Textures.BlockIcons.casingTexturePages[BlockGTCasingsTT.texturePage][3],
new TTRenderedExtendedFacingTexture(aActive ? ScreenON : ScreenOFF) };
}
return new ITexture[] { Textures.BlockIcons.casingTexturePages[BlockGTCasingsTT.texturePage][3] };
}
@Override
@SideOnly(Side.CLIENT)
protected ResourceLocation getActivitySound() {
return MTENetworkSwitch.activitySound;
}
@Override
public void onRemoval() {
super.onRemoval();
for (MTEHatchRack rack : filterValidMTEs(eRacks)) {
rack.getBaseMetaTileEntity()
.setActive(false);
}
}
@Override
protected void extraExplosions_EM() {
for (MetaTileEntity tTileEntity : eRacks) {
tTileEntity.getBaseMetaTileEntity()
.doExplosion(V[8]);
}
}
@Override
protected long getAvailableData_EM() {
return eAvailableData;
}
@Override
public void stopMachine(@Nonnull ShutDownReason reason) {
super.stopMachine(reason);
eAvailableData = 0;
for (MTEHatchRack rack : filterValidMTEs(eRacks)) {
rack.getBaseMetaTileEntity()
.setActive(false);
}
}
@Override
protected void afterRecipeCheckFailed() {
super.afterRecipeCheckFailed();
for (MTEHatchRack rack : filterValidMTEs(eRacks)) {
rack.getBaseMetaTileEntity()
.setActive(false);
}
}
public final boolean addRackToMachineList(IGregTechTileEntity aTileEntity, int aBaseCasingIndex) {
if (aTileEntity == null) {
return false;
}
IMetaTileEntity aMetaTileEntity = aTileEntity.getMetaTileEntity();
if (aMetaTileEntity == null) {
return false;
}
if (aMetaTileEntity instanceof MTEHatchRack) {
((MTEHatch) aMetaTileEntity).updateTexture(aBaseCasingIndex);
return eRacks.add((MTEHatchRack) aMetaTileEntity);
}
return false;
}
public final boolean addWirelessDataOutputToMachineList(IGregTechTileEntity aTileEntity, int aBaseCasingIndex) {
if (aTileEntity == null) {
return false;
}
IMetaTileEntity aMetaTileEntity = aTileEntity.getMetaTileEntity();
if (aMetaTileEntity == null) {
return false;
}
if (aMetaTileEntity instanceof MTEHatchWirelessComputationOutput) {
((MTEHatch) aMetaTileEntity).updateTexture(aBaseCasingIndex);
// Add to wireless computation outputs, so we can detect these and turn on wireless mode,
// but also add to regular outputs, so they are used as output data hatches by the quantum computer
return eWirelessComputationOutputs.add((MTEHatchWirelessComputationOutput) aMetaTileEntity)
&& eOutputData.add((MTEHatchWirelessComputationOutput) aMetaTileEntity);
}
return false;
}
@Override
public void construct(ItemStack stackSize, boolean hintsOnly) {
structureBuild_EM("front", 1, 2, 0, stackSize, hintsOnly);
structureBuild_EM("cap", 1, 2, -1, stackSize, hintsOnly);
byte offset = -2;
for (int rackSlices = Math.min(stackSize.stackSize, 12); rackSlices > 0; rackSlices--) {
structureBuild_EM("slice", 1, 2, offset--, stackSize, hintsOnly);
}
structureBuild_EM("cap", 1, 2, offset--, stackSize, hintsOnly);
structureBuild_EM("back", 1, 2, offset, stackSize, hintsOnly);
}
@Override
public int survivalConstruct(ItemStack stackSize, int elementBudget, IItemSource source, EntityPlayerMP actor) {
if (mMachine) return -1;
int built;
built = survivialBuildPiece("front", stackSize, 1, 2, 0, elementBudget, source, actor, false, true);
if (built >= 0) return built;
built = survivialBuildPiece("cap", stackSize, 1, 2, -1, elementBudget, source, actor, false, true);
if (built >= 0) return built;
byte offset = -2;
for (int rackSlices = Math.min(stackSize.stackSize, 12); rackSlices > 0; rackSlices--) {
built = survivialBuildPiece("slice", stackSize, 1, 2, offset--, elementBudget, source, actor, false, true);
if (built >= 0) return built;
}
built = survivialBuildPiece("cap", stackSize, 1, 2, offset--, elementBudget, source, actor, false, true);
if (built >= 0) return built;
return survivialBuildPiece("back", stackSize, 1, 2, offset, elementBudget, source, actor, false, true);
}
@Override
public IStructureDefinition<MTEQuantumComputer> getStructure_EM() {
return STRUCTURE_DEFINITION;
}
@Override
public String[] getStructureDescription(ItemStack stackSize) {
return description;
}
@Override
public String[] getInfoData() {
ArrayList<String> data = new ArrayList<>(Arrays.asList(super.getInfoData()));
if (wirelessModeEnabled) {
WirelessComputationPacket wirelessComputationPacket = WirelessComputationPacket
.getPacketByUserId(getBaseMetaTileEntity().getOwnerUuid());
data.add("Wireless mode: " + EnumChatFormatting.GREEN + "enabled");
data.add(
"Total wireless computation available: " + EnumChatFormatting.YELLOW
+ wirelessComputationPacket.getTotalComputationStored());
} else {
data.add("Wireless mode: " + EnumChatFormatting.RED + "disabled");
}
return data.toArray(new String[] {});
}
private enum RackHatchElement implements IHatchElement<MTEQuantumComputer> {
INSTANCE;
@Override
public List<? extends Class<? extends IMetaTileEntity>> mteClasses() {
return Collections.singletonList(MTEHatchRack.class);
}
@Override
public IGTHatchAdder<? super MTEQuantumComputer> adder() {
return MTEQuantumComputer::addRackToMachineList;
}
@Override
public long count(MTEQuantumComputer t) {
return t.eRacks.size();
}
}
private enum WirelessComputationHatchElement implements IHatchElement<MTEQuantumComputer> {
INSTANCE;
@Override
public List<? extends Class<? extends IMetaTileEntity>> mteClasses() {
return Collections.singletonList(MTEHatchWirelessComputationOutput.class);
}
@Override
public IGTHatchAdder<? super MTEQuantumComputer> adder() {
return MTEQuantumComputer::addWirelessDataOutputToMachineList;
}
@Override
public long count(MTEQuantumComputer gtMetaTileEntityEmComputer) {
return gtMetaTileEntityEmComputer.eWirelessComputationOutputs.size();
}
}
}
|