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
|
package gregtech.api.util;
import static gregtech.api.enums.GTValues.E;
import static gregtech.api.enums.Mods.IC2CropPlugin;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.List;
import net.minecraft.block.Block;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.item.ItemStack;
import net.minecraft.tileentity.TileEntity;
import gregtech.GTMod;
import gregtech.api.GregTechAPI;
import gregtech.api.enums.ConfigCategories;
import gregtech.api.enums.Materials;
import gregtech.api.enums.OrePrefixes;
import gregtech.api.objects.ItemData;
import gregtech.common.blocks.BlockOresAbstract;
import gregtech.common.blocks.TileEntityOres;
import ic2.api.crops.CropCard;
import ic2.api.crops.Crops;
import ic2.api.crops.ICropTile;
import speiger.src.crops.api.ICropCardInfo;
public class GTBaseCrop extends CropCard implements ICropCardInfo {
public static ArrayList<GTBaseCrop> sCropList = new ArrayList<>();
private String mName = E;
private String mDiscoveredBy = "Gregorius Techneticies";
private String[] mAttributes;
private int mTier = 0;
private int mMaxSize = 0;
private int mAfterHarvestSize = 0;
private int mHarvestSize = 0;
private final int[] mStats = new int[5];
private final int mGrowthSpeed = 0;
private ItemStack mDrop = null;
private ItemStack[] mSpecialDrops = null;
private Materials mBlock = null;
private static boolean bIc2NeiLoaded = IC2CropPlugin.isModLoaded();
/**
* To create new Crops
*
* @param aID Default ID
* @param aCropName Name of the Crop
* @param aDiscoveredBy The one who discovered the Crop
* @param aDrop The Item which is dropped by the Crop. must be != null
* @param aBaseSeed Baseseed to plant this Crop. null == crossbreed only
* @param aTier tier of the Crop. forced to be >= 1
* @param aMaxSize maximum Size of the Crop. forced to be >= 3
* @param aGrowthSpeed how fast the Crop grows. if < 0 then its set to Tier*300
* @param aHarvestSize the size the Crop needs to be harvested. forced to be between 2 and max size
*/
public GTBaseCrop(int aID, String aCropName, String aDiscoveredBy, ItemStack aBaseSeed, int aTier, int aMaxSize,
int aGrowthSpeed, int aAfterHarvestSize, int aHarvestSize, int aStatChemical, int aStatFood, int aStatDefensive,
int aStatColor, int aStatWeed, String[] aAttributes, ItemStack aDrop, ItemStack[] aSpecialDrops) {
new GTBaseCrop(
aID,
aCropName,
aDiscoveredBy,
aBaseSeed,
aTier,
aMaxSize,
aGrowthSpeed,
aAfterHarvestSize,
aHarvestSize,
aStatChemical,
aStatFood,
aStatDefensive,
aStatColor,
aStatWeed,
aAttributes,
null,
aDrop,
aSpecialDrops);
}
/**
* To create new Crops
*
* @param aID Default ID
* @param aCropName Name of the Crop
* @param aDiscoveredBy The one who discovered the Crop
* @param aDrop The Item which is dropped by the Crop. must be != null
* @param aBaseSeed Baseseed to plant this Crop. null == crossbreed only
* @param aTier tier of the Crop. forced to be >= 1
* @param aMaxSize maximum Size of the Crop. forced to be >= 3
* @param aGrowthSpeed how fast the Crop grows. if < 0 then its set to Tier*300
* @param aHarvestSize the size the Crop needs to be harvested. forced to be between 2 and max size
* @param aBlock the block below needed for crop to grow. If null no block needed
*/
public GTBaseCrop(int aID, String aCropName, String aDiscoveredBy, ItemStack aBaseSeed, int aTier, int aMaxSize,
int aGrowthSpeed, int aAfterHarvestSize, int aHarvestSize, int aStatChemical, int aStatFood, int aStatDefensive,
int aStatColor, int aStatWeed, String[] aAttributes, Materials aBlock, ItemStack aDrop,
ItemStack[] aSpecialDrops) {
mName = aCropName;
GTLanguageManager.addStringLocalization("gt.crop." + mName + ".name", mName);
aID = GTConfig.addIDConfig(ConfigCategories.IDs.crops, mName.replaceAll(" ", "_"), aID);
if (aDiscoveredBy != null && !aDiscoveredBy.equals(E)) mDiscoveredBy = aDiscoveredBy;
if (aDrop != null && aID > 0 && aID < 256) {
mDrop = GTUtility.copyOrNull(aDrop);
mSpecialDrops = aSpecialDrops;
mTier = Math.max(1, aTier);
mMaxSize = Math.max(3, aMaxSize);
mHarvestSize = Math.min(Math.max(aHarvestSize, 2), mMaxSize);
mAfterHarvestSize = Math.min(Math.max(aAfterHarvestSize, 1), mMaxSize - 1);
mStats[0] = aStatChemical;
mStats[1] = aStatFood;
mStats[2] = aStatDefensive;
mStats[3] = aStatColor;
mStats[4] = aStatWeed;
mAttributes = aAttributes;
mBlock = aBlock;
if (!Crops.instance.registerCrop(this, aID))
throw new GTItsNotMyFaultException("Make sure the Crop ID is valid!");
if (aBaseSeed != null) Crops.instance.registerBaseSeed(aBaseSeed, this, 1, 1, 1, 1);
sCropList.add(this);
}
if (bIc2NeiLoaded) {
try {
Class.forName("speiger.src.crops.api.CropPluginAPI")
.getMethod("registerCropInfo", Class.forName("speiger.src.crops.api.ICropCardInfo"))
.invoke(
Class.forName("speiger.src.crops.api.CropPluginAPI")
.getField("instance"),
this);
} catch (IllegalAccessException | ClassNotFoundException | SecurityException | NoSuchMethodException
| NoSuchFieldException | InvocationTargetException | IllegalArgumentException ex) {
bIc2NeiLoaded = false;
}
}
}
@Override
public byte getSizeAfterHarvest(ICropTile crop) {
return (byte) mAfterHarvestSize;
}
@Override
public int growthDuration(ICropTile aCrop) {
if (mGrowthSpeed < 200) return super.growthDuration(aCrop);
return tier() * mGrowthSpeed;
}
@Override
public int getrootslength(ICropTile crop) {
return 5;
}
@Override
public String[] attributes() {
return mAttributes;
}
@Override
public String discoveredBy() {
return mDiscoveredBy;
}
@Override
public final boolean canGrow(ICropTile aCrop) {
// block check is only performed at the last stage of growth
if (this.needsBlockBelow() && aCrop.getSize() == mMaxSize - 1) {
return isBlockBelow(aCrop);
}
return aCrop.getSize() < maxSize();
}
@Override
public final boolean canBeHarvested(ICropTile aCrop) {
return aCrop.getSize() >= mHarvestSize;
}
@Override
public boolean canCross(ICropTile aCrop) {
return aCrop.getSize() + 2 > maxSize();
}
@Override
public int stat(int n) {
if (n < 0 || n >= mStats.length) return 0;
return mStats[n];
}
@Override
public String name() {
return mName;
}
@Override
public String displayName() {
return GTLanguageManager.getTranslation("gt.crop." + mName + ".name");
}
@Override
public int tier() {
return mTier;
}
@Override
public int maxSize() {
return mMaxSize;
}
@Override
public ItemStack getGain(ICropTile aCrop) {
int tDrop = 0;
if (mSpecialDrops != null && (tDrop = java.util.concurrent.ThreadLocalRandom.current()
.nextInt(0, (mSpecialDrops.length * 2) + 2)) < mSpecialDrops.length && mSpecialDrops[tDrop] != null) {
return GTUtility.copyOrNull(mSpecialDrops[tDrop]);
}
return GTUtility.copyOrNull(mDrop);
}
@Override
public boolean rightclick(ICropTile aCrop, EntityPlayer aPlayer) {
if (!canBeHarvested(aCrop)) return false;
return aCrop.harvest(aPlayer instanceof EntityPlayerMP);
}
@Override
public int getOptimalHavestSize(ICropTile crop) {
return maxSize();
}
/**
* Checks if the crop needs a block below it
*
* @return True if the crop needs a block below it to grow to its max size
*/
public boolean needsBlockBelow() {
return GTMod.gregtechproxy.mCropNeedBlock && this.mBlock != null;
}
public boolean isBlockBelow(ICropTile aCrop) {
if (aCrop == null) {
return false;
}
for (int i = 1; i < this.getrootslength(aCrop); i++) {
Block tBlock = aCrop.getWorld()
.getBlock(aCrop.getLocation().posX, aCrop.getLocation().posY - i, aCrop.getLocation().posZ);
if ((tBlock instanceof BlockOresAbstract)) {
TileEntity tTileEntity = aCrop.getWorld()
.getTileEntity(aCrop.getLocation().posX, aCrop.getLocation().posY - i, aCrop.getLocation().posZ);
if ((tTileEntity instanceof TileEntityOres)) {
Materials tMaterial = GregTechAPI.sGeneratedMaterials[(((TileEntityOres) tTileEntity).mMetaData
% 1000)];
if ((tMaterial != null) && (tMaterial != Materials._NULL)) {
return tMaterial == mBlock;
}
}
} else {
int tMetaID = aCrop.getWorld()
.getBlockMetadata(aCrop.getLocation().posX, aCrop.getLocation().posY - i, aCrop.getLocation().posZ);
if (isBlockBelow(new ItemStack(tBlock, 1, tMetaID))) {
return true;
}
}
}
return false;
}
/**
* An isolated function to check if an item stack is a block that should be below this crop
*
* @param aItem a stack of the block placed under the crop
* @return The result of the check
*/
public boolean isBlockBelow(ItemStack aItem) {
// safety in case someone calls this without checking if we have a block
if (!this.needsBlockBelow()) return true;
// get material from stack
ItemData tAssociation = GTOreDictUnificator.getAssociation(aItem);
if (tAssociation == null) return false;
// return true if it's an ore of the material
// note: some ores don't appear to have associations in testing, naq ore is an example of that
if (tAssociation.mPrefix.toString()
.startsWith("ore") && tAssociation.mMaterial.mMaterial == mBlock) {
return true;
}
// return true if it's a block of the material
return tAssociation.mPrefix == OrePrefixes.block && tAssociation.mMaterial.mMaterial == mBlock;
}
@Override
public List<String> getCropInformation() {
if (mBlock != null) {
ArrayList<String> result = new ArrayList<>(1);
result.add(
String.format(
"Requires %s Ore or Block of %s as soil block to reach full growth.",
mBlock.mName,
mBlock.mName));
return result;
}
return null;
}
@Override
public ItemStack getDisplayItem() {
if (mSpecialDrops != null && mSpecialDrops[mSpecialDrops.length - 1] != null) {
return GTUtility.copyOrNull(mSpecialDrops[mSpecialDrops.length - 1]);
}
return GTUtility.copyOrNull(mDrop);
}
}
|