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
|
package gtPlusPlus.xmod.gregtech.common.tileentities.misc;
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.GT_MetaTileEntity_TieredMachineBlock;
import gregtech.api.objects.GT_ItemStack;
import gregtech.api.objects.GT_RenderedTexture;
import gregtech.api.util.GT_Utility;
import gtPlusPlus.api.objects.minecraft.BlockPos;
import gtPlusPlus.core.lib.CORE;
import gtPlusPlus.xmod.gregtech.common.blocks.textures.TexturesGtBlock;
import gtPlusPlus.xmod.gregtech.common.tileentities.machines.multi.production.GregtechMetaTileEntity_SolarTower;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
public class TileEntitySolarHeater extends GT_MetaTileEntity_TieredMachineBlock {
public String mSolarTower;
public boolean mHasTower = false;
private Integer mTX, mTY, mTZ;
private Byte mRequiredFacing;
public TileEntitySolarHeater(final int aID, final String aName, final String aNameRegional, final int aTier,
final String aDescription, final int aSlotCount) {
super(aID, aName, aNameRegional, aTier, aSlotCount, aDescription);
}
public TileEntitySolarHeater(final String aName, final int aTier, final String aDescription,
final ITexture[][][] aTextures, final int aSlotCount) {
super(aName, aTier, aSlotCount, aDescription, aTextures);
}
@Override
public String[] getDescription() {
return new String[] {
this.mDescription,
"Point me at a Solar Tower",
CORE.GT_Tooltip };
}
@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;
}
@Override
public ITexture[] getTexture(final IGregTechTileEntity aBaseMetaTileEntity, final byte aSide, final byte aFacing,
final byte aColorIndex, final boolean aActive, final boolean aRedstone) {
return this.mTextures[(aActive ? 5 : 0) + (aSide == aFacing ? 0
: aSide == GT_Utility.getOppositeSide(aFacing) ? 1 : aSide == 0 ? 2 : aSide == 1 ? 3 : 4)][aColorIndex
+ 1];
}
public ITexture[] getFront(final byte aColor) {
return new ITexture[] { new GT_RenderedTexture(TexturesGtBlock.Casing_Machine_Simple_Top),
new GT_RenderedTexture(Textures.BlockIcons.SOLARPANEL_IV) };
}
public ITexture[] getBack(final byte aColor) {
return new ITexture[] { new GT_RenderedTexture(TexturesGtBlock.Casing_Machine_Simple_Top) };
}
public ITexture[] getBottom(final byte aColor) {
return new ITexture[] { new GT_RenderedTexture(TexturesGtBlock.Casing_Machine_Simple_Bottom) };
}
public ITexture[] getTop(final byte aColor) {
return new ITexture[] { new GT_RenderedTexture(TexturesGtBlock.Casing_Machine_Simple_Top),
new GT_RenderedTexture(Textures.BlockIcons.SOLARPANEL_LuV) };
}
public ITexture[] getSides(final byte aColor) {
return new ITexture[] { new GT_RenderedTexture(TexturesGtBlock.Casing_Machine_Simple_Top) };
}
public ITexture[] getFrontActive(final byte aColor) {
return new ITexture[] { new GT_RenderedTexture(TexturesGtBlock.Casing_Machine_Simple_Top),
new GT_RenderedTexture(Textures.BlockIcons.SOLARPANEL_IV) };
}
public ITexture[] getBackActive(final byte aColor) {
return new ITexture[] { new GT_RenderedTexture(TexturesGtBlock.Casing_Machine_Simple_Top) };
}
public ITexture[] getBottomActive(final byte aColor) {
return new ITexture[] { new GT_RenderedTexture(TexturesGtBlock.Casing_Machine_Simple_Bottom) };
}
public ITexture[] getTopActive(final byte aColor) {
return new ITexture[] { new GT_RenderedTexture(TexturesGtBlock.Casing_Machine_Simple_Top),
new GT_RenderedTexture(Textures.BlockIcons.SOLARPANEL_LuV) };
}
public ITexture[] getSidesActive(final byte aColor) {
return new ITexture[] { new GT_RenderedTexture(TexturesGtBlock.Casing_Machine_Simple_Top) };
}
@Override
public IMetaTileEntity newMetaEntity(final IGregTechTileEntity aTileEntity) {
return new TileEntitySolarHeater(this.mName, this.mTier, this.mDescription, this.mTextures, 0);
}
@Override
public boolean allowPullStack(IGregTechTileEntity aBaseMetaTileEntity, int aIndex, byte aSide, ItemStack aStack) {
return false;
}
@Override
public boolean allowPutStack(IGregTechTileEntity aBaseMetaTileEntity, int aIndex, byte aSide, ItemStack aStack) {
return false;
}
@Override
public String[] getInfoData() {
return new String[] {
this.getLocalName(),
"Testificate"
};
}
@Override
public boolean isGivingInformation() {
return true;
}
@Override
public boolean isUseableByPlayer(final EntityPlayer p_70300_1_) {
return false;
}
public boolean allowCoverOnSide(final byte aSide, final int aCoverID) {
return false;
}
@Override
public int[] getAccessibleSlotsFromSide(final int p_94128_1_) {
return new int[] {};
}
@Override
public int getSizeInventory() {
return 0;
}
@Override
public ItemStack getStackInSlot(final int p_70301_1_) {
return null;
}
@Override
public long maxEUStore() {
return 0;
}
@Override
public int getCapacity() {
return 0;
}
@Override
public long maxEUInput() {
return 0;
}
@Override
public long maxEUOutput() {
return 0;
}
@Override
public long maxAmperesIn() {
return 0;
}
@Override
public long maxAmperesOut() {
return 0;
}
@Override
public boolean isElectric() {
return false;
}
@Override
public boolean isValidSlot(final int aIndex) {
return false;
}
@Override
public boolean isFacingValid(final byte aFacing) {
return aFacing >= 2;
}
@Override
public boolean isEnetInput() {
return false;
}
@Override
public boolean isEnetOutput() {
return false;
}
@Override
public void saveNBTData(NBTTagCompound aNBT) {
aNBT.setBoolean("mHasTower", mHasTower);
if (mHasTower && mTX != null && mTY != null && mTZ != null) {
aNBT.setInteger("mTX", mTX);
aNBT.setInteger("mTY", mTY);
aNBT.setInteger("mTZ", mTZ);
}
}
@Override
public void loadNBTData(NBTTagCompound aNBT) {
this.mHasTower = aNBT.getBoolean("mHasTower");
if (this.mHasTower) {
if (aNBT.hasKey("mTX"))
this.mTX = aNBT.getInteger("mTX");
if (aNBT.hasKey("mTY"))
this.mTY = aNBT.getInteger("mTY");
if (aNBT.hasKey("mTZ"))
this.mTZ = aNBT.getInteger("mTZ");
}
}
@Override
public long getInputTier() {
return 0;
}
@Override
public long getOutputTier() {
return 0;
}
@Override
public boolean allowCoverOnSide(byte aSide, GT_ItemStack aStack) {
return false;
}
@Override
public void onExplosion() {
}
public GregtechMetaTileEntity_SolarTower getSolarTower() {
if (this.mHasTower && this.mSolarTower != null && this.mSolarTower.length() > 0) {
BlockPos p = BlockPos.generateBlockPos(mSolarTower);
if (p != null) {
IGregTechTileEntity tTileEntity = getBaseMetaTileEntity().getIGregTechTileEntity(p.xPos, p.yPos, p.zPos);
if (tTileEntity != null && tTileEntity instanceof GregtechMetaTileEntity_SolarTower) {
return (GregtechMetaTileEntity_SolarTower) tTileEntity;
}
}
}
return null;
}
public boolean setSolarTower(BlockPos aTowerPos) {
if (!this.mHasTower && setSolarTowerInternal(aTowerPos.getUniqueIdentifier())) {
IGregTechTileEntity tTileEntity = getBaseMetaTileEntity().getIGregTechTileEntity(aTowerPos.xPos, aTowerPos.yPos, aTowerPos.zPos);
if (tTileEntity != null && tTileEntity instanceof GregtechMetaTileEntity_SolarTower) {
this.mTX = tTileEntity.getXCoord();
this.mTY = (int) tTileEntity.getYCoord();
this.mTZ = tTileEntity.getZCoord();
this.mHasTower = true;
return true;
}
}
return false;
}
private boolean clearSolarTower() {
if (mHasTower || mTX != null || mTY != null || mTZ != null || mRequiredFacing != null || this.mSolarTower != null) {
this.mTX = null;
this.mTY = null;
this.mTZ = null;
this.mRequiredFacing = null;
this.mSolarTower = null;
this.mHasTower = false;
return true;
}
return false;
}
private final boolean setSolarTowerInternal(String aTowerPos) {
this.mSolarTower = aTowerPos;
return this.mSolarTower != null && this.mSolarTower.length() > 0;
}
@Override
public void onPostTick(IGregTechTileEntity aBaseMetaTileEntity, long aTick) {
super.onPostTick(aBaseMetaTileEntity, aTick);
}
@Override
public void onRemoval() {
super.onRemoval();
}
@Override
public boolean isOutputFacing(byte aSide) {
return aSide > 1;
}
@Override
public boolean isInputFacing(byte aSide) {
return false;
}
@Override
public long getMinimumStoredEU() {
return 0;
}
@Override
public void onFacingChange() {
super.onFacingChange();
}
@Override
public void doExplosion(long aExplosionPower) {
}
}
|