-
Notifications
You must be signed in to change notification settings - Fork 184
/
Copy pathMaterialFlags.java
305 lines (247 loc) · 11.1 KB
/
MaterialFlags.java
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
package gregtech.api.unification.material.info;
import gregtech.api.unification.material.Material;
import gregtech.api.unification.material.properties.PropertyKey;
import java.util.Arrays;
import java.util.Collection;
import java.util.HashSet;
import java.util.Set;
import java.util.stream.Collectors;
public class MaterialFlags {
private final Set<MaterialFlag> flags = new HashSet<>();
public MaterialFlags addFlags(MaterialFlag... flags) {
this.flags.addAll(Arrays.asList(flags));
return this;
}
public void verify(Material material) {
flags.addAll(flags.stream()
.map(f -> f.verifyFlag(material))
.flatMap(Collection::stream)
.collect(Collectors.toSet()));
}
public boolean hasFlag(MaterialFlag flag) {
return flags.contains(flag);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
flags.forEach(f -> sb.append(f.toString()).append("\n"));
return sb.toString();
}
/////////////////
// GENERIC //
/////////////////
/**
* Add to material to disable it's unification fully
*/
public static final MaterialFlag NO_UNIFICATION = new MaterialFlag.Builder("no_unification").build();
/**
* Enables electrolyzer decomposition recipe generation
*/
public static final MaterialFlag DECOMPOSITION_BY_ELECTROLYZING = new MaterialFlag.Builder(
"decomposition_by_electrolyzing").build();
/**
* Enables centrifuge decomposition recipe generation
*/
public static final MaterialFlag DECOMPOSITION_BY_CENTRIFUGING = new MaterialFlag.Builder(
"decomposition_by_centrifuging").build();
/**
* Disables decomposition recipe generation for this material
*/
public static final MaterialFlag DISABLE_DECOMPOSITION = new MaterialFlag.Builder("disable_decomposition").build();
/**
* Add to material if it is some kind of explosive
*/
public static final MaterialFlag EXPLOSIVE = new MaterialFlag.Builder("explosive").build();
/**
* Add to material if it is some kind of flammable
*/
public static final MaterialFlag FLAMMABLE = new MaterialFlag.Builder("flammable").build();
/**
* Add to material if it is some kind of sticky
*/
public static final MaterialFlag STICKY = new MaterialFlag.Builder("sticky").build();
/**
* Add to material if it is some kind of glowing material
*/
public static final MaterialFlag GLOWING = new MaterialFlag.Builder("glowing").build();
//////////////////
// DUST //
//////////////////
/**
* Generate a plate for this material
* If it's dust material, dust compressor recipe into plate will be generated
* If it's metal material, bending machine recipes will be generated
* If block is found, cutting machine recipe will be also generated
*/
public static final MaterialFlag GENERATE_PLATE = new MaterialFlag.Builder("generate_plate")
.requireProps(PropertyKey.DUST)
.build();
public static final MaterialFlag GENERATE_DOUBLE_PLATE = new MaterialFlag.Builder("generate_double_plate")
.requireFlags(GENERATE_PLATE)
.requireProps(PropertyKey.INGOT)
.build();
public static final MaterialFlag GENERATE_DENSE = new MaterialFlag.Builder("generate_dense")
.requireFlags(GENERATE_PLATE)
.requireProps(PropertyKey.DUST)
.build();
public static final MaterialFlag GENERATE_ROD = new MaterialFlag.Builder("generate_rod")
.requireProps(PropertyKey.DUST)
.build();
public static final MaterialFlag GENERATE_BOLT_SCREW = new MaterialFlag.Builder("generate_bolt_screw")
.requireFlags(GENERATE_ROD)
.requireProps(PropertyKey.DUST)
.build();
public static final MaterialFlag GENERATE_FRAME = new MaterialFlag.Builder("generate_frame")
.requireFlags(GENERATE_ROD)
.requireProps(PropertyKey.DUST)
.build();
public static final MaterialFlag GENERATE_GEAR = new MaterialFlag.Builder("generate_gear")
.requireFlags(GENERATE_PLATE, GENERATE_ROD)
.requireProps(PropertyKey.DUST)
.build();
public static final MaterialFlag GENERATE_LONG_ROD = new MaterialFlag.Builder("generate_long_rod")
.requireFlags(GENERATE_ROD)
.requireProps(PropertyKey.DUST)
.build();
public static final MaterialFlag FORCE_GENERATE_BLOCK = new MaterialFlag.Builder("force_generate_block")
.requireProps(PropertyKey.DUST)
.build();
/**
* This will prevent material from creating Shapeless recipes for dust to block and vice versa
* Also preventing extruding and alloy smelting recipes via SHAPE_EXTRUDING/MOLD_BLOCK
*/
public static final MaterialFlag EXCLUDE_BLOCK_CRAFTING_RECIPES = new MaterialFlag.Builder(
"exclude_block_crafting_recipes")
.requireProps(PropertyKey.DUST)
.build();
public static final MaterialFlag EXCLUDE_PLATE_COMPRESSOR_RECIPE = new MaterialFlag.Builder(
"exclude_plate_compressor_recipe")
.requireFlags(GENERATE_PLATE)
.requireProps(PropertyKey.DUST)
.build();
/**
* This will prevent material from creating Shapeless recipes for dust to block and vice versa
*/
public static final MaterialFlag EXCLUDE_BLOCK_CRAFTING_BY_HAND_RECIPES = new MaterialFlag.Builder(
"exclude_block_crafting_by_hand_recipes")
.requireProps(PropertyKey.DUST)
.build();
public static final MaterialFlag MORTAR_GRINDABLE = new MaterialFlag.Builder("mortar_grindable")
.requireProps(PropertyKey.DUST)
.build();
/**
* Add to material if it cannot be worked by any other means, than smashing or smelting. This is used for coated
* Materials.
*/
public static final MaterialFlag NO_WORKING = new MaterialFlag.Builder("no_working")
.requireProps(PropertyKey.DUST)
.build();
/**
* Add to material if it cannot be used for regular Metal working techniques since it is not possible to bend it.
*/
public static final MaterialFlag NO_SMASHING = new MaterialFlag.Builder("no_smashing")
.requireProps(PropertyKey.DUST)
.build();
/**
* Add to material if it's impossible to smelt it
*/
public static final MaterialFlag NO_SMELTING = new MaterialFlag.Builder("no_smelting")
.requireProps(PropertyKey.DUST)
.build();
/**
* Add this to your Material if you want to have its Ore Calcite heated in a Blast Furnace for more output. Already
* listed are:
* Iron, Pyrite, PigIron, WroughtIron.
*/
public static final MaterialFlag BLAST_FURNACE_CALCITE_DOUBLE = new MaterialFlag.Builder(
"blast_furnace_calcite_double")
.requireProps(PropertyKey.DUST)
.build();
public static final MaterialFlag BLAST_FURNACE_CALCITE_TRIPLE = new MaterialFlag.Builder(
"blast_furnace_calcite_triple")
.requireProps(PropertyKey.DUST)
.build();
public static final MaterialFlag GENERATE_SMALL_DUST = new MaterialFlag.Builder("small_dust")
.requireProps(PropertyKey.DUST)
.build();
public static final MaterialFlag GENERATE_TINY_DUST = new MaterialFlag.Builder("tiny_dust")
.requireProps(PropertyKey.DUST)
.build();
/////////////////
// FLUID //
/////////////////
public static final MaterialFlag SOLDER_MATERIAL = new MaterialFlag.Builder("solder_material")
.requireProps(PropertyKey.FLUID)
.build();
public static final MaterialFlag SOLDER_MATERIAL_BAD = new MaterialFlag.Builder("solder_material_bad")
.requireProps(PropertyKey.FLUID)
.build();
public static final MaterialFlag SOLDER_MATERIAL_GOOD = new MaterialFlag.Builder("solder_material_good")
.requireProps(PropertyKey.FLUID)
.build();
/////////////////
// INGOT //
/////////////////
public static final MaterialFlag GENERATE_FOIL = new MaterialFlag.Builder("generate_foil")
.requireFlags(GENERATE_PLATE)
.requireProps(PropertyKey.INGOT)
.build();
public static final MaterialFlag GENERATE_RING = new MaterialFlag.Builder("generate_ring")
.requireFlags(GENERATE_ROD)
.requireProps(PropertyKey.INGOT)
.build();
public static final MaterialFlag GENERATE_SPRING = new MaterialFlag.Builder("generate_spring")
.requireFlags(GENERATE_LONG_ROD)
.requireProps(PropertyKey.INGOT)
.build();
public static final MaterialFlag GENERATE_SPRING_SMALL = new MaterialFlag.Builder("generate_spring_small")
.requireFlags(GENERATE_ROD)
.requireProps(PropertyKey.INGOT)
.build();
public static final MaterialFlag GENERATE_SMALL_GEAR = new MaterialFlag.Builder("generate_small_gear")
.requireFlags(GENERATE_PLATE, GENERATE_ROD)
.requireProps(PropertyKey.INGOT)
.build();
public static final MaterialFlag GENERATE_FINE_WIRE = new MaterialFlag.Builder("generate_fine_wire")
.requireFlags(GENERATE_FOIL)
.requireProps(PropertyKey.INGOT)
.build();
public static final MaterialFlag GENERATE_ROTOR = new MaterialFlag.Builder("generate_rotor")
.requireFlags(GENERATE_BOLT_SCREW, GENERATE_RING, GENERATE_PLATE)
.requireProps(PropertyKey.INGOT)
.build();
public static final MaterialFlag GENERATE_ROUND = new MaterialFlag.Builder("generate_round")
.requireProps(PropertyKey.INGOT)
.build();
/**
* Add this to your Material if it is a magnetized form of another Material.
*/
public static final MaterialFlag IS_MAGNETIC = new MaterialFlag.Builder("is_magnetic")
.requireProps(PropertyKey.INGOT)
.build();
/////////////////
// GEM //
/////////////////
/**
* If this material can be crystallized.
*/
public static final MaterialFlag CRYSTALLIZABLE = new MaterialFlag.Builder("crystallizable")
.requireProps(PropertyKey.GEM)
.build();
public static final MaterialFlag GENERATE_LENS = new MaterialFlag.Builder("generate_lens")
.requireFlags(GENERATE_PLATE)
.requireProps(PropertyKey.GEM)
.build();
/////////////////
// ORE //
/////////////////
public static final MaterialFlag HIGH_SIFTER_OUTPUT = new MaterialFlag.Builder("high_sifter_output")
.requireProps(PropertyKey.GEM, PropertyKey.ORE)
.build();
/**
* If this material should generate ore processing items, but no ore block.
*/
public static final MaterialFlag DISABLE_ORE_BLOCK = new MaterialFlag.Builder("disable_ore_block")
.requireProps(PropertyKey.ORE)
.build();
}