blob: 2e34fb3332f8db3de1cf5dbee727fce0cd032167 (
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
|
package gregtech.api.util;
import static gregtech.api.metatileentity.implementations.GT_MetaTileEntity_MultiBlockBase.isValidMetaTileEntity;
import gregtech.api.interfaces.metatileentity.IMetaTileEntity;
import gregtech.api.metatileentity.implementations.GT_MetaTileEntity_Hatch;
import gregtech.api.metatileentity.implementations.GT_MetaTileEntity_Hatch_Energy;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
public class GT_ExoticEnergyInputHelper {
/**
* The Valid Types of TecTech Hatch List.
*/
private static final List<Class<? extends GT_MetaTileEntity_Hatch>> sExoticEnergyHatchType = new ArrayList<>();
static {
tryRegister("com.github.technus.tectech.thing.metaTileEntity.hatch.GT_MetaTileEntity_Hatch_EnergyMulti");
tryRegister("com.github.technus.tectech.thing.metaTileEntity.hatch.GT_MetaTileEntity_Hatch_EnergyTunnel");
}
public static void register(Class<? extends GT_MetaTileEntity_Hatch> clazz) {
if (!GT_MetaTileEntity_Hatch.class.isAssignableFrom(clazz))
throw new IllegalArgumentException(
clazz.getName() + " is not a subclass of " + GT_MetaTileEntity_Hatch.class.getName());
sExoticEnergyHatchType.add(clazz);
}
@SuppressWarnings("unchecked")
public static void tryRegister(String className) {
Class<?> clazz;
try {
clazz = Class.forName(className);
} catch (ClassNotFoundException e) {
return;
}
if (!GT_MetaTileEntity_Hatch.class.isAssignableFrom(clazz))
throw new IllegalArgumentException(
clazz.getName() + " is not a subclass of " + GT_MetaTileEntity_Hatch.class.getName());
sExoticEnergyHatchType.add((Class<? extends GT_MetaTileEntity_Hatch>) clazz);
}
public static boolean drainEnergy(long aEU, Collection<? extends GT_MetaTileEntity_Hatch> hatches) {
for (GT_MetaTileEntity_Hatch tHatch : hatches) {
long tDrain = Math.min(tHatch.getBaseMetaTileEntity().getStoredEU(), aEU);
tHatch.getBaseMetaTileEntity().decreaseStoredEnergyUnits(tDrain, false);
aEU -= tDrain;
}
return aEU <= 0;
}
public static boolean isExoticEnergyInput(IMetaTileEntity aHatch) {
for (Class<?> clazz : sExoticEnergyHatchType) {
if (clazz.isInstance(aHatch)) return true;
}
return false;
}
public static long getMaxInputVoltageMulti(Collection<? extends GT_MetaTileEntity_Hatch> hatches) {
long rVoltage = 0;
for (GT_MetaTileEntity_Hatch tHatch : hatches)
if (isValidMetaTileEntity(tHatch))
rVoltage += tHatch.getBaseMetaTileEntity().getInputVoltage();
return rVoltage;
}
public static long getMaxInputAmpsMulti(Collection<? extends GT_MetaTileEntity_Hatch> hatches) {
long rAmp = 0;
for (GT_MetaTileEntity_Hatch tHatch : hatches)
if (isValidMetaTileEntity(tHatch))
rAmp += tHatch.getBaseMetaTileEntity().getInputAmperage();
return rAmp;
}
public static long getMaxWorkingInputAmpsMulti(Collection<? extends GT_MetaTileEntity_Hatch> hatches) {
long rAmp = 0;
for (GT_MetaTileEntity_Hatch tHatch : hatches)
if (isValidMetaTileEntity(tHatch)) {
if (tHatch instanceof GT_MetaTileEntity_Hatch_Energy) {
rAmp += ((GT_MetaTileEntity_Hatch_Energy) tHatch).maxWorkingAmperesIn();
} else {
rAmp += tHatch.getBaseMetaTileEntity().getInputAmperage();
}
}
return rAmp;
}
public static List<Class<? extends GT_MetaTileEntity_Hatch>> getAllClasses() {
return Collections.unmodifiableList(sExoticEnergyHatchType);
}
}
|