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
|
package kekztech.common.tileentities;
import static com.gtnewhorizon.structurelib.structure.StructureUtility.ofBlock;
import static com.gtnewhorizon.structurelib.structure.StructureUtility.ofBlockAnyMeta;
import static com.gtnewhorizon.structurelib.structure.StructureUtility.ofChain;
import static com.gtnewhorizon.structurelib.structure.StructureUtility.onElementPass;
import static com.gtnewhorizon.structurelib.structure.StructureUtility.transpose;
import static gregtech.api.enums.Textures.BlockIcons.OVERLAY_FRONT_HEAT_EXCHANGER;
import static gregtech.api.enums.Textures.BlockIcons.OVERLAY_FRONT_HEAT_EXCHANGER_ACTIVE;
import static gregtech.api.enums.Textures.BlockIcons.OVERLAY_FRONT_HEAT_EXCHANGER_ACTIVE_GLOW;
import static gregtech.api.enums.Textures.BlockIcons.OVERLAY_FRONT_HEAT_EXCHANGER_GLOW;
import static gregtech.api.util.GTStructureUtility.ofHatchAdder;
import java.util.ArrayList;
import java.util.Collection;
import javax.annotation.Nonnull;
import net.minecraft.item.ItemStack;
import net.minecraftforge.common.util.ForgeDirection;
import net.minecraftforge.fluids.FluidStack;
import com.gtnewhorizon.structurelib.structure.IStructureDefinition;
import cpw.mods.fml.common.registry.GameRegistry;
import gregtech.api.GregTechAPI;
import gregtech.api.enums.Materials;
import gregtech.api.enums.Textures;
import gregtech.api.interfaces.ITexture;
import gregtech.api.interfaces.metatileentity.IMetaTileEntity;
import gregtech.api.interfaces.tileentity.IGregTechTileEntity;
import gregtech.api.metatileentity.implementations.MTEEnhancedMultiBlockBase;
import gregtech.api.recipe.RecipeMaps;
import gregtech.api.recipe.check.CheckRecipeResult;
import gregtech.api.recipe.check.CheckRecipeResultRegistry;
import gregtech.api.render.TextureFactory;
import gregtech.api.util.GTModHandler;
import gregtech.api.util.GTRecipe;
import gregtech.api.util.GTUtility;
import gregtech.api.util.MultiblockTooltipBuilder;
import kekztech.common.Blocks;
public class MTESOFuelCellMK1 extends MTEEnhancedMultiBlockBase<MTESOFuelCellMK1> {
private final int OXYGEN_PER_SEC = 100;
private final int EU_PER_TICK = 2048;
private final int STEAM_PER_SEC = 20000;
public MTESOFuelCellMK1(int aID, String aName, String aNameRegional) {
super(aID, aName, aNameRegional);
}
public MTESOFuelCellMK1(String aName) {
super(aName);
}
@Override
public IMetaTileEntity newMetaEntity(IGregTechTileEntity var1) {
return new MTESOFuelCellMK1(super.mName);
}
private int mCasing = 0;
private static final int CASING_TEXTURE_ID = 49;
private static final String STRUCTURE_PIECE_MAIN = "main";
private static final IStructureDefinition<MTESOFuelCellMK1> STRUCTURE_DEFINITION = IStructureDefinition
.<MTESOFuelCellMK1>builder()
.addShape(
STRUCTURE_PIECE_MAIN,
transpose(
new String[][] { { "ccc", "ccc", "ccc", "ccc", "ccc" }, { "c~c", "geg", "geg", "geg", "cdc" },
{ "ccc", "ccc", "ccc", "ccc", "ccc" } }))
.addElement(
'c',
ofChain(
onElementPass(te -> te.mCasing++, ofBlock(GregTechAPI.sBlockCasings4, 1)),
ofHatchAdder(MTESOFuelCellMK1::addInputToMachineList, CASING_TEXTURE_ID, 1),
ofHatchAdder(MTESOFuelCellMK1::addMaintenanceToMachineList, CASING_TEXTURE_ID, 1),
ofHatchAdder(MTESOFuelCellMK1::addOutputToMachineList, CASING_TEXTURE_ID, 1)))
.addElement('d', ofHatchAdder(MTESOFuelCellMK1::addDynamoToMachineList, CASING_TEXTURE_ID, 1))
.addElement('g', ofBlockAnyMeta(GameRegistry.findBlock("IC2", "blockAlloyGlass")))
.addElement('e', ofBlockAnyMeta(Blocks.yszUnit))
.build();
@Override
public IStructureDefinition<MTESOFuelCellMK1> getStructureDefinition() {
return STRUCTURE_DEFINITION;
}
@Override
protected MultiblockTooltipBuilder createTooltip() {
final MultiblockTooltipBuilder tt = new MultiblockTooltipBuilder();
tt.addMachineType("Gas Turbine")
.addInfo("Oxidizes gas fuels to generate electricity without polluting the environment")
.addInfo(
"Consumes up to " + GTUtility.formatNumbers(EU_PER_TICK * 20)
+ "EU worth of fuel with up to 100% efficiency each second")
.addInfo("Steam production requires the SOFC to heat up completely first")
.addInfo("Outputs " + EU_PER_TICK + "EU/t and " + STEAM_PER_SEC + "L/s Steam")
.addInfo("Additionally, requires " + OXYGEN_PER_SEC + "L/s Oxygen gas")
.beginStructureBlock(3, 3, 5, false)
.addController("Front center")
.addCasingInfoMin("Clean Stainless Steel Casing", 12, false)
.addOtherStructurePart("YSZ Ceramic Electrolyte Unit", "3x, Center 1x1x3")
.addOtherStructurePart("Reinforced Glass", "6x, touching the electrolyte units on the horizontal sides")
.addDynamoHatch("Back center", 1)
.addMaintenanceHatch("Any casing")
.addInputHatch("Fuel, any casing")
.addInputHatch("Oxygen, any casing")
.addOutputHatch("Steam, any casing")
.toolTipFinisher();
return tt;
}
@Override
public ITexture[] getTexture(final IGregTechTileEntity aBaseMetaTileEntity, final ForgeDirection side,
final ForgeDirection facing, final int colorIndex, final boolean aActive, final boolean aRedstone) {
if (side == facing) {
if (aActive) return new ITexture[] { Textures.BlockIcons.getCasingTextureForId(CASING_TEXTURE_ID),
TextureFactory.builder()
.addIcon(OVERLAY_FRONT_HEAT_EXCHANGER_ACTIVE)
.extFacing()
.build(),
TextureFactory.builder()
.addIcon(OVERLAY_FRONT_HEAT_EXCHANGER_ACTIVE_GLOW)
.extFacing()
.glow()
.build() };
return new ITexture[] { Textures.BlockIcons.getCasingTextureForId(CASING_TEXTURE_ID),
TextureFactory.builder()
.addIcon(OVERLAY_FRONT_HEAT_EXCHANGER)
.extFacing()
.build(),
TextureFactory.builder()
.addIcon(OVERLAY_FRONT_HEAT_EXCHANGER_GLOW)
.extFacing()
.glow()
.build() };
}
return new ITexture[] { Textures.BlockIcons.getCasingTextureForId(CASING_TEXTURE_ID) };
}
@Override
public boolean isCorrectMachinePart(ItemStack stack) {
return true;
}
@Nonnull
@Override
public CheckRecipeResult checkProcessing() {
final ArrayList<FluidStack> storedFluids = super.getStoredFluids();
Collection<GTRecipe> recipeList = RecipeMaps.gasTurbineFuels.getAllRecipes();
for (FluidStack hatchFluid : storedFluids) {
for (GTRecipe aFuel : recipeList) {
FluidStack liquid;
if ((liquid = GTUtility.getFluidForFilledItem(aFuel.getRepresentativeInput(0), true)) != null
&& hatchFluid.isFluidEqual(liquid)) {
liquid.amount = (EU_PER_TICK * 20) / aFuel.mSpecialValue;
if (super.depleteInput(liquid)) {
if (!super.depleteInput(Materials.Oxygen.getGas(OXYGEN_PER_SEC))) {
super.mEUt = 0;
super.mEfficiency = 0;
return CheckRecipeResultRegistry.NO_FUEL_FOUND;
}
super.mEUt = EU_PER_TICK;
super.mMaxProgresstime = 20;
super.mEfficiencyIncrease = 40;
if (super.mEfficiency == getMaxEfficiency(null)) {
super.addOutput(GTModHandler.getSteam(STEAM_PER_SEC));
}
return CheckRecipeResultRegistry.GENERATING;
}
}
}
}
super.mEUt = 0;
super.mEfficiency = 0;
return CheckRecipeResultRegistry.NO_FUEL_FOUND;
}
@Override
public boolean checkMachine(IGregTechTileEntity thisController, ItemStack guiSlotItem) {
this.mCasing = 0;
if (!checkPiece(STRUCTURE_PIECE_MAIN, 1, 1, 0)) return false;
return (this.mCasing >= 12 && this.mMaintenanceHatches.size() == 1 && this.mInputHatches.size() >= 2);
}
@Override
public int getMaxEfficiency(ItemStack stack) {
return 10000;
}
@Override
public int getPollutionPerTick(ItemStack stack) {
return 0;
}
@Override
public int getDamageToComponent(ItemStack stack) {
return 0;
}
@Override
public boolean explodesOnComponentBreak(ItemStack stack) {
return false;
}
@Override
public void construct(ItemStack itemStack, boolean b) {
buildPiece(STRUCTURE_PIECE_MAIN, itemStack, b, 1, 1, 0);
}
}
|