aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Fluids.java
blob: 0661ea5ea450ebfe0dfc5a777c90802295cf0cf5 (plain)
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
package gtPlusPlus.xmod.gregtech.loaders;

import java.util.HashSet;
import java.util.Set;

import gregtech.api.enums.GT_Values;
import gregtech.api.enums.ItemList;
import gregtech.api.enums.OrePrefixes;
import gregtech.api.util.GT_OreDictUnificator;
import gtPlusPlus.api.interfaces.RunnableWithInfo;
import gtPlusPlus.api.objects.Logger;
import gtPlusPlus.core.lib.CORE;
import gtPlusPlus.core.material.Material;
import gtPlusPlus.core.material.MaterialGenerator;
import gtPlusPlus.core.util.minecraft.ItemUtils;

public class RecipeGen_Fluids extends RecipeGen_Base {

	public final static Set<RunnableWithInfo<Material>> mRecipeGenMap = new HashSet<RunnableWithInfo<Material>>();
	private static boolean mRotorShapeEnabled = false;
	static {
		MaterialGenerator.mRecipeMapsToGenerate.put(mRecipeGenMap);
		mRotorShapeEnabled = ItemUtils.doesItemListEntryExist("Shape_Extruder_Rotor");
	}

	public RecipeGen_Fluids(final Material M) {
		this(M, false);
	}

	public RecipeGen_Fluids(final Material M, final boolean dO) {
		this.toGenerate = M;
		this.disableOptional = dO;
		mRecipeGenMap.add(this);
	}

	@Override
	public void run() {
		generateRecipes(this.toGenerate, this.disableOptional);
	}

	private void generateRecipes(final Material material, final boolean dO) {

		if (material == null) {
			return;
		}

		// Melting Shapes to fluid
		if (material.getFluidStack(1) != null
				&& !material.getFluidStack(1).getUnlocalizedName().toLowerCase().contains("plasma")) {

			// Making Shapes from fluid

			// Ingot
			if (ItemUtils.checkForInvalidItems(material.getIngot(1)))
				if (GT_Values.RA.addFluidSolidifierRecipe(ItemList.Shape_Mold_Ingot.get(0), // Item Shape
						material.getFluidStack(144), // Fluid Input
						material.getIngot(1), // output
						32, // Duration
						material.vVoltageMultiplier // Eu Tick
				)) {
					Logger.WARNING(
							"144l fluid molder for 1 ingot Recipe: " + material.getLocalizedName() + " - Success");
				} else {
					Logger.WARNING(
							"144l fluid molder for 1 ingot Recipe: " + material.getLocalizedName() + " - Failed");
				}

			// Plate
			if (ItemUtils.checkForInvalidItems(material.getPlate(1)))
				if (GT_Values.RA.addFluidSolidifierRecipe(ItemList.Shape_Mold_Plate.get(0), // Item Shape
						material.getFluidStack(144), // Fluid Input
						material.getPlate(1), // output
						32, // Duration
						material.vVoltageMultiplier // Eu Tick
				)) {
					Logger.WARNING(
							"144l fluid molder for 1 plate Recipe: " + material.getLocalizedName() + " - Success");
				} else {
					Logger.WARNING(
							"144l fluid molder for 1 plate Recipe: " + material.getLocalizedName() + " - Failed");
				}

			// Nugget
			if (ItemUtils.checkForInvalidItems(material.getNugget(1)))
				if (GT_Values.RA.addFluidSolidifierRecipe(ItemList.Shape_Mold_Nugget.get(0), // Item Shape
						material.getFluidStack(16), // Fluid Input
						material.getNugget(1), // output
						16, // Duration
						material.vVoltageMultiplier // Eu Tick
				)) {
					Logger.WARNING(
							"16l fluid molder for 1 nugget Recipe: " + material.getLocalizedName() + " - Success");
				} else {
					Logger.WARNING(
							"16l fluid molder for 1 nugget Recipe: " + material.getLocalizedName() + " - Failed");
				}

			// Gears
			if (ItemUtils.checkForInvalidItems(material.getGear(1)))
				if (GT_Values.RA.addFluidSolidifierRecipe(ItemList.Shape_Mold_Gear.get(0), // Item Shape
						material.getFluidStack(576), // Fluid Input
						material.getGear(1), // output
						128, // Duration
						material.vVoltageMultiplier // Eu Tick
				)) {
					Logger.WARNING(
							"576l fluid molder for 1 gear Recipe: " + material.getLocalizedName() + " - Success");
				} else {
					Logger.WARNING("576l fluid molder for 1 gear Recipe: " + material.getLocalizedName() + " - Failed");
				}

			// Blocks
			if (ItemUtils.checkForInvalidItems(material.getBlock(1)))
				if (GT_Values.RA.addFluidSolidifierRecipe(ItemList.Shape_Mold_Block.get(0), // Item Shape
						material.getFluidStack(144 * 9), // Fluid Input
						material.getBlock(1), // output
						288, // Duration
						material.vVoltageMultiplier // Eu Tick
				)) {
					Logger.WARNING((144 * 9) + "l fluid molder from 1 block Recipe: " + material.getLocalizedName()
							+ " - Success");
				} else {
					Logger.WARNING((144 * 9) + "l fluid molder from 1 block Recipe: " + material.getLocalizedName()
							+ " - Failed");
				}

			if (CORE.GTNH) {

				// GTNH

				// Shape_Mold_Rod
				// Shape_Mold_Rod_Long
				// Shape_Mold_Bolt,
				// Shape_Mold_Screw,
				// Shape_Mold_Ring,

				
				ItemList mold_Rod = ItemUtils.getValueOfItemList("Shape_Mold_Rod", null);
				ItemList mold_Rod_Long = ItemUtils.getValueOfItemList("Shape_Mold_Rod_Long", null);
				ItemList mold_Bolt = ItemUtils.getValueOfItemList("Shape_Mold_Bolt", null);
				ItemList mold_Screw = ItemUtils.getValueOfItemList("Shape_Mold_Screw", null);
				ItemList mold_Ring = ItemUtils.getValueOfItemList("Shape_Mold_Ring", null);
				ItemList mold_Rotor = ItemUtils.getValueOfItemList("Shape_Mold_Rotor", null);

				// Rod
				if (ItemUtils.checkForInvalidItems(material.getRod(1)))
					if (mold_Rod != null && GT_Values.RA.addFluidSolidifierRecipe(mold_Rod.get(0), // Item Shape
							material.getFluidStack(72), // Fluid Input
							material.getRod(1), // output
							150, // Duration
							material.vVoltageMultiplier // Eu Tick
					)) {
						Logger.WARNING((144 * 9) + "l fluid molder from 1 rod Recipe: " + material.getLocalizedName()
								+ " - Success");
					} else {
						Logger.WARNING((144 * 9) + "l fluid molder from 1 rod Recipe: " + material.getLocalizedName()
								+ " - Failed");
					}

				// Rod Long
				if (ItemUtils.checkForInvalidItems(material.getLongRod(1)))
					if (mold_Rod_Long != null && GT_Values.RA.addFluidSolidifierRecipe(mold_Rod_Long.get(0), // Item
																												// Shape
							material.getFluidStack(144), // Fluid Input
							material.getLongRod(1), // output
							300, // Duration
							material.vVoltageMultiplier // Eu Tick
					)) {
						Logger.WARNING((144 * 9) + "l fluid molder from 1 rod long Recipe: "
								+ material.getLocalizedName() + " - Success");
					} else {
						Logger.WARNING((144 * 9) + "l fluid molder from 1 rod long Recipe: "
								+ material.getLocalizedName() + " - Failed");
					}

				// Bolt
				if (ItemUtils.checkForInvalidItems(material.getBolt(1)))
					if (mold_Bolt != null && GT_Values.RA.addFluidSolidifierRecipe(mold_Bolt.get(0), // Item Shape
							material.getFluidStack(18), // Fluid Input
							material.getBolt(1), // output
							50, // Duration
							material.vVoltageMultiplier // Eu Tick
					)) {
						Logger.WARNING((144 * 9) + "l fluid molder from 1 bolt Recipe: " + material.getLocalizedName()
								+ " - Success");
					} else {
						Logger.WARNING((144 * 9) + "l fluid molder from 1 bolt Recipe: " + material.getLocalizedName()
								+ " - Failed");
					}

				// Screw
				if (ItemUtils.checkForInvalidItems(material.getScrew(1)))
					if (mold_Screw != null && GT_Values.RA.addFluidSolidifierRecipe(mold_Screw.get(0), // Item Shape
							material.getFluidStack(18), // Fluid Input
							material.getScrew(1), // output
							50, // Duration
							material.vVoltageMultiplier // Eu Tick
					)) {
						Logger.WARNING((144 * 9) + "l fluid molder from 1 screw Recipe: " + material.getLocalizedName()
								+ " - Success");
					} else {
						Logger.WARNING((144 * 9) + "l fluid molder from 1 screw Recipe: " + material.getLocalizedName()
								+ " - Failed");
					}

				// Ring
				if (ItemUtils.checkForInvalidItems(material.getRing(1)))
					if (mold_Ring != null && GT_Values.RA.addFluidSolidifierRecipe(mold_Ring.get(0), // Item Shape
							material.getFluidStack(36), // Fluid Input
							material.getRing(1), // output
							100, // Duration
							material.vVoltageMultiplier // Eu Tick
					)) {
						Logger.WARNING((144 * 9) + "l fluid molder from 1 ring Recipe: " + material.getLocalizedName()
								+ " - Success");
					} else {
						Logger.WARNING((144 * 9) + "l fluid molder from 1 ring Recipe: " + material.getLocalizedName()
								+ " - Failed");
					}
				
				// Rotor
				if (ItemUtils.checkForInvalidItems(material.getRotor(1)))
					if (mold_Rotor != null && GT_Values.RA.addFluidSolidifierRecipe(mold_Rotor.get(0), // Item Shape
							material.getFluidStack(612), // Fluid Input
							material.getRotor(1), // output
							100, // Duration
							material.vVoltageMultiplier // Eu Tick
					)) {
						Logger.WARNING((144 * 9) + "l fluid molder from 1 rotor Recipe: " + material.getLocalizedName()
								+ " - Success");
					} else {
						Logger.WARNING((144 * 9) + "l fluid molder from 1 rotor Recipe: " + material.getLocalizedName()
								+ " - Failed");
					}				

	            
			}
		}
	}
}