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
|
package gtPlusPlus.xmod.gregtech.common.tileentities.generators;
import net.minecraft.item.ItemStack;
import net.minecraft.tileentity.TileEntityFurnace;
import net.minecraftforge.common.util.ForgeDirection;
import net.minecraftforge.fluids.FluidTankInfo;
import org.apache.commons.lang3.ArrayUtils;
import org.jetbrains.annotations.NotNull;
import com.gtnewhorizons.modularui.api.drawable.IDrawable;
import com.gtnewhorizons.modularui.api.drawable.UITexture;
import cpw.mods.fml.common.registry.GameRegistry;
import gregtech.api.enums.Materials;
import gregtech.api.enums.OrePrefixes;
import gregtech.api.enums.Textures;
import gregtech.api.gui.modularui.GTUITextures;
import gregtech.api.gui.modularui.GUITextureSet;
import gregtech.api.interfaces.ITexture;
import gregtech.api.interfaces.tileentity.IGregTechTileEntity;
import gregtech.api.metatileentity.MetaTileEntity;
import gregtech.api.objects.GTItemStack;
import gregtech.api.objects.GTRenderedTexture;
import gregtech.api.util.GTOreDictUnificator;
import gregtech.common.pollution.PollutionConfig;
import gregtech.common.tileentities.boilers.MTEBoiler;
import gtPlusPlus.core.config.Configuration;
import gtPlusPlus.core.lib.GTPPCore;
import gtPlusPlus.xmod.gregtech.api.gui.GTPPUITextures;
public class MTEBoilerBase extends MTEBoiler {
private final int steamPerSecond;
private final int tier;
public MTEBoilerBase(int aID, String aNameRegional, int tier) {
super(
aID,
"electricboiler." + tier + ".tier.single",
aNameRegional,
"Produces " + (Configuration.machines.boilerSteamPerSecond * tier) + "L of Steam per second");
this.steamPerSecond = (Configuration.machines.boilerSteamPerSecond * tier);
this.tier = tier;
}
public MTEBoilerBase(String aName, int aTier, String[] aDescription, ITexture[][][] aTextures) {
super(aName, aTier, aDescription, aTextures);
this.steamPerSecond = (Configuration.machines.boilerSteamPerSecond * aTier);
this.tier = aTier;
}
@Override
public String[] getDescription() {
return ArrayUtils.addAll(
this.mDescriptionArray,
"Produces " + getPollution() + " pollution/sec",
"Consumes fuel only when temperature is less than 100C",
"Fuel with burn time greater than 500 is more efficient.",
"Doesn't explode if there's no water",
GTPPCore.GT_Tooltip.get());
}
public ITexture getOverlayIcon() {
return new GTRenderedTexture(Textures.BlockIcons.BOILER_FRONT);
}
@Override
public ITexture[][][] getTextureSet(final ITexture[] aTextures) {
final ITexture[][][] rTextures = new ITexture[10][17][];
for (byte i = -1; i < 16; i++) {
rTextures[0][i + 1] = this.getFront(i);
rTextures[1][i + 1] = this.getBack(i);
rTextures[2][i + 1] = this.getBottom(i);
rTextures[3][i + 1] = this.getTop(i);
rTextures[4][i + 1] = this.getSides(i);
rTextures[5][i + 1] = this.getFrontActive(i);
rTextures[6][i + 1] = this.getBackActive(i);
rTextures[7][i + 1] = this.getBottomActive(i);
rTextures[8][i + 1] = this.getTopActive(i);
rTextures[9][i + 1] = this.getSidesActive(i);
}
return rTextures;
}
protected GTRenderedTexture getCasingTexture() {
if (this.tier == 1) {
return new GTRenderedTexture(Textures.BlockIcons.MACHINE_LV_SIDE);
} else if (this.tier == 2) {
return new GTRenderedTexture(Textures.BlockIcons.MACHINE_MV_SIDE);
} else {
return new GTRenderedTexture(Textures.BlockIcons.MACHINE_HV_SIDE);
}
}
@Override
public ITexture[] getTexture(final IGregTechTileEntity aBaseMetaTileEntity, final ForgeDirection side,
final ForgeDirection facing, final int aColorIndex, final boolean aActive, final boolean aRedstone) {
return this.mTextures[(aActive ? 5 : 0) + (side == facing ? 0
: side == facing.getOpposite() ? 1
: side == ForgeDirection.DOWN ? 2 : side == ForgeDirection.UP ? 3 : 4)][aColorIndex + 1];
}
public ITexture[] getFront(final byte aColor) {
return new ITexture[] { Textures.BlockIcons.MACHINE_CASINGS[this.tier][aColor + 1], this.getCasingTexture() };
}
public ITexture[] getBack(final byte aColor) {
return this.getSides(aColor);
}
public ITexture[] getBottom(final byte aColor) {
return this.getSides(aColor);
}
public ITexture[] getTop(final byte aColor) {
return this.getSides(aColor);
}
public ITexture[] getSides(final byte aColor) {
return new ITexture[] { Textures.BlockIcons.MACHINE_CASINGS[this.tier][aColor + 1], this.getCasingTexture() };
}
public ITexture[] getFrontActive(final byte aColor) {
return this.getFront(aColor);
}
public ITexture[] getBackActive(final byte aColor) {
return this.getSides(aColor);
}
public ITexture[] getBottomActive(final byte aColor) {
return this.getBottom(aColor);
}
public ITexture[] getTopActive(final byte aColor) {
return this.getTop(aColor);
}
public ITexture[] getSidesActive(final byte aColor) {
return this.getSides(aColor);
}
@Override
public boolean isOutputFacing(final ForgeDirection side) {
return side != this.getBaseMetaTileEntity()
.getFrontFacing();
}
@Override
public boolean isFacingValid(final ForgeDirection side) {
return side.offsetY == 0;
}
// Please find out what I do.
// I do stuff within the GUI.
// this.mTemperature = Math.min(54, Math.max(0, this.mTemperature * 54 / (((GT_MetaTileEntity_Boiler)
// this.mTileEntity.getMetaTileEntity()).maxProgresstime() - 10)));
@Override
public int maxProgresstime() {
return 1000 + (250 * tier);
}
@Override
public boolean isElectric() {
return false;
}
@Override
public int getCapacity() {
return (16000 + (16000 * tier));
}
// This type of machine can have different water and steam capacities.
@Override
public int getSteamCapacity() {
return 2 * getCapacity();
}
@Override
protected int getProductionPerSecond() {
return steamPerSecond;
}
@Override
protected int getMaxTemperature() {
return maxProgresstime();
}
@Override
protected int getEnergyConsumption() {
return 2;
}
@Override
protected int getCooldownInterval() {
return 40;
}
@Override
protected int getHeatUpRate() {
return 10;
}
@Override
protected void updateFuel(IGregTechTileEntity tile, long ticks) {
ItemStack fuelStack = this.mInventory[2];
if (fuelStack == null) return;
int burnTime = getBurnTime(fuelStack);
if (burnTime > 0 && this.mTemperature <= 101) {
consumeFuel(tile, fuelStack, burnTime);
}
}
@Override
protected boolean isItemValidFuel(@NotNull ItemStack stack) {
return getBurnTime(stack) > 0;
}
@Override
// Since this type of machine can have different water and steam capacities, we need to override getTankInfo() to
// support returning those different capacities.
public FluidTankInfo[] getTankInfo(ForgeDirection aSide) {
return new FluidTankInfo[] { new FluidTankInfo(this.mFluid, getCapacity()),
new FluidTankInfo(this.mSteam, getSteamCapacity()) };
}
@Override
protected boolean isAutomatable() {
return true;
}
@Override
protected int getPollution() {
return (int) (PollutionConfig.basePollutionPerSecondBoiler
* PollutionConfig.pollutionReleasedByTierBoiler[this.tier]);
}
@Override
public MetaTileEntity newMetaEntity(IGregTechTileEntity aTileEntity) {
return new MTEBoilerBase(this.mName, tier, this.mDescriptionArray, this.mTextures);
}
@Override
protected void onDangerousWaterLack(IGregTechTileEntity tile, long ticks) {
// Smart boilers don't explode!
}
/**
* Returns burn time if the stack is a valid fuel, otherwise return 0.
*/
private static int getBurnTime(ItemStack stack) {
int burnTime = GameRegistry.getFuelValue(stack);
if (burnTime <= 0) {
burnTime = TileEntityFurnace.getItemBurnTime(stack);
}
return burnTime;
}
public void consumeFuel(IGregTechTileEntity tile, ItemStack fuel, int burnTime) {
this.mProcessingEnergy += burnTime / 10;
this.mTemperature += burnTime / 500; // will add bonus temperature points if the burn time is pretty high
tile.decrStackSize(2, 1);
if (tile.getRandomNumber(3) == 0) {
if (fuel.getDisplayName()
.toLowerCase()
.contains("charcoal")
|| fuel.getDisplayName()
.toLowerCase()
.contains("coke")) {
tile.addStackToSlot(3, GTOreDictUnificator.get(OrePrefixes.dustTiny, Materials.Ash, 1L));
} else {
tile.addStackToSlot(3, GTOreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 1L));
}
}
}
@Override
public boolean allowCoverOnSide(ForgeDirection side, GTItemStack aCover) {
if (side != this.getBaseMetaTileEntity()
.getFrontFacing()) {
return true;
}
return super.allowCoverOnSide(side, aCover);
}
@Override
public GUITextureSet getGUITextureSet() {
return GUITextureSet.DEFAULT;
}
@Override
protected IDrawable[] getFuelSlotBackground() {
return new IDrawable[] { getGUITextureSet().getItemSlot(), GTPPUITextures.OVERLAY_SLOT_COAL };
}
@Override
protected IDrawable[] getAshSlotBackground() {
return new IDrawable[] { getGUITextureSet().getItemSlot(), GTUITextures.OVERLAY_SLOT_DUST };
}
@Override
public int getTitleColor() {
return COLOR_TITLE.get();
}
@Override
protected IDrawable getOverlaySlotIn() {
return GTUITextures.OVERLAY_SLOT_IN;
}
@Override
protected IDrawable getOverlaySlotOut() {
return GTUITextures.OVERLAY_SLOT_OUT;
}
@Override
protected IDrawable getOverlaySlotCanister() {
return GTPPUITextures.OVERLAY_SLOT_CANISTER_DARK;
}
@Override
protected UITexture getProgressbarEmpty() {
return GTPPUITextures.PROGRESSBAR_BOILER_EMPTY;
}
@Override
protected UITexture getProgressbarFuel() {
return GTPPUITextures.PROGRESSBAR_FUEL;
}
}
|