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
|
package gregtech.api.util;
import gregtech.api.interfaces.internal.IGT_CraftingRecipe;
import net.minecraft.block.Block;
import net.minecraft.enchantment.Enchantment;
import net.minecraft.enchantment.EnchantmentHelper;
import net.minecraft.inventory.InventoryCrafting;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.world.World;
import net.minecraftforge.oredict.ShapedOreRecipe;
import java.util.List;
public class GT_Shaped_Recipe extends ShapedOreRecipe implements IGT_CraftingRecipe {
public final boolean /*mDismantleable,*/ mRemovableByGT, mKeepingNBT;
private final Enchantment[] mEnchantmentsAdded;
private final int[] mEnchantmentLevelsAdded;
public GT_Shaped_Recipe(ItemStack aResult, boolean aDismantleAble, boolean aRemovableByGT, boolean aKeepingNBT, Enchantment[] aEnchantmentsAdded, int[] aEnchantmentLevelsAdded, Object... aRecipe) {
super(aResult, aRecipe);
mEnchantmentsAdded = aEnchantmentsAdded;
mEnchantmentLevelsAdded = aEnchantmentLevelsAdded;
mRemovableByGT = aRemovableByGT;
mKeepingNBT = aKeepingNBT;
// mDismantleable = aDismantleAble;
if (aDismantleAble){
for (Object o : aRecipe) {
String toPrint = null;
if (o instanceof String) {
toPrint = (String) o;
toPrint += " String";
} else if (o instanceof ItemStack) {
toPrint = GT_LanguageManager.getTranslation(GT_LanguageManager.getTranslateableItemStackName((ItemStack) o));
toPrint += " ItemStack";
} else if (o instanceof List) {
toPrint = String.join(", ", ((List<String>) o));
toPrint += " List<String>";
} else if (o instanceof Item) {
toPrint = GT_LanguageManager.getTranslation(GT_LanguageManager.getTranslateableItemStackName(new ItemStack((Item) o)));
toPrint += " Item";
} else if (o instanceof Block) {
toPrint = GT_LanguageManager.getTranslation(GT_LanguageManager.getTranslateableItemStackName(new ItemStack((Block) o)));
toPrint += " Block";
}
if (toPrint != null)
System.out.println(toPrint);
}
}
//TODO: Register Dissassembler "Recipe"
}
@Override
public boolean matches(InventoryCrafting aGrid, World aWorld) {
if (mKeepingNBT) {
ItemStack tStack = null;
for (int i = 0; i < aGrid.getSizeInventory(); i++) {
if (aGrid.getStackInSlot(i) != null) {
if (tStack != null) {
if ((tStack.hasTagCompound() != aGrid.getStackInSlot(i).hasTagCompound()) || (tStack.hasTagCompound() && !tStack.getTagCompound().equals(aGrid.getStackInSlot(i).getTagCompound())))
return false;
}
tStack = aGrid.getStackInSlot(i);
}
}
}
return super.matches(aGrid, aWorld);
}
@Override
public ItemStack getCraftingResult(InventoryCrafting aGrid) {
ItemStack rStack = super.getCraftingResult(aGrid);
if (rStack != null) {
// Update the Stack
GT_Utility.updateItemStack(rStack);
// Keeping NBT
if (mKeepingNBT) for (int i = 0; i < aGrid.getSizeInventory(); i++) {
if (aGrid.getStackInSlot(i) != null && aGrid.getStackInSlot(i).hasTagCompound()) {
rStack.setTagCompound((NBTTagCompound) aGrid.getStackInSlot(i).getTagCompound().copy());
break;
}
}
// Charge Values
if (GT_ModHandler.isElectricItem(rStack)) {
GT_ModHandler.dischargeElectricItem(rStack, Integer.MAX_VALUE, Integer.MAX_VALUE, true, false, true);
int tCharge = 0;
for (int i = 0; i < aGrid.getSizeInventory(); i++)
tCharge += GT_ModHandler.dischargeElectricItem(aGrid.getStackInSlot(i), Integer.MAX_VALUE, Integer.MAX_VALUE, true, true, true);
if (tCharge > 0) GT_ModHandler.chargeElectricItem(rStack, tCharge, Integer.MAX_VALUE, true, false);
}
// Saving Ingredients inside the Item.
// if (mDismantleable) {
// NBTTagCompound rNBT = rStack.getTagCompound(), tNBT = new NBTTagCompound();
// if (rNBT == null) rNBT = new NBTTagCompound();
// for (int i = 0; i < 9; i++) {
// ItemStack tStack = aGrid.getStackInSlot(i);
// if (tStack != null && GT_Utility.getContainerItem(tStack, true) == null && !(tStack.getItem() instanceof GT_MetaGenerated_Tool)) {
// tStack = GT_Utility.copyAmount(1, tStack);
// if(GT_Utility.isStackValid(tStack)){
// GT_ModHandler.dischargeElectricItem(tStack, Integer.MAX_VALUE, Integer.MAX_VALUE, true, false, true);
// tNBT.setTag("Ingredient." + i, tStack.writeToNBT(new NBTTagCompound()));}
// }
// }
// rNBT.setTag("GT.CraftingComponents", tNBT);
// rStack.setTagCompound(rNBT);
// }
// Add Enchantments
for (int i = 0; i < mEnchantmentsAdded.length; i++)
GT_Utility.ItemNBT.addEnchantment(rStack, mEnchantmentsAdded[i], EnchantmentHelper.getEnchantmentLevel(mEnchantmentsAdded[i].effectId, rStack) + mEnchantmentLevelsAdded[i]);
// Update the Stack again
GT_Utility.updateItemStack(rStack);
}
return rStack;
}
@Override
public boolean isRemovable() {
return mRemovableByGT;
}
}
|