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
|
package gregtech.mixin;
import static gregtech.mixin.TargetedMod.VANILLA;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Set;
import java.util.function.Supplier;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import bartworks.common.configs.Configuration;
import cpw.mods.fml.relauncher.FMLLaunchHandler;
import gregtech.common.pollution.PollutionConfig;
public enum Mixin {
// Minecraft
SoundManagerMixin(new Builder("Seeking sound playback")
.addMixinClasses("minecraft.SoundManagerMixin", "minecraft.SoundManagerInnerMixin")
.addTargetedMod(VANILLA)
.setApplyIf(() -> true)
.setPhase(Phase.EARLY)
.setSide(Side.CLIENT)),
WorldMixin(new Builder("Block update detection").addMixinClasses("minecraft.WorldMixin")
.addTargetedMod(VANILLA)
.setApplyIf(() -> true)
.setPhase(Phase.EARLY)
.setSide(Side.BOTH)),
StringTranslateMixin(new Builder("Keep track of currently translating mods")
.addMixinClasses("minecraft.StringTranslateMixin", "minecraft.LanguageRegistryMixin")
.addTargetedMod(VANILLA)
.setApplyIf(() -> true)
.setPhase(Phase.EARLY)
.setSide(Side.BOTH)),
LocaleMixin(new Builder("Keep track of currently translating client mods").addMixinClasses("minecraft.LocaleMixin")
.addTargetedMod(VANILLA)
.setApplyIf(() -> true)
.setPhase(Phase.EARLY)
.setSide(Side.CLIENT)),
CacheCraftingManagerRecipes(
new Builder("Cache CraftingManager recipes").addMixinClasses("minecraft.CraftingManagerMixin")
.addTargetedMod(VANILLA)
.setApplyIf(() -> Configuration.mixins.enableCraftingManagerRecipeCaching)
.setPhase(Phase.EARLY)
.setSide(Side.BOTH)),
VanillaAccessors(new Builder("Adds various accessors")
.addMixinClasses(
"minecraft.accessors.BlockStemMixin",
"minecraft.accessors.VanillaShapedRecipeMixin",
"minecraft.accessors.VanillaShapelessRecipeMixin",
"minecraft.accessors.ForgeShapedRecipeMixin",
"minecraft.accessors.ForgeShapelessRecipeMixin",
"minecraft.accessors.PotionMixin",
"minecraft.accessors.EntityPlayerMPMixin")
.addTargetedMod(VANILLA)
.setApplyIf(() -> true)
.setPhase(Phase.EARLY)
.setSide(Side.BOTH)),
IC2_MACHINE_WRENCHING(new Builder("Changes the behavior of the wrenching mechanic for IC2 machines")
.addMixinClasses("ic2.MixinDamageDropped", "ic2.MixinHarvestTool", "ic2.MixinItemDropped")
.addTargetedMod(TargetedMod.IC2)
.setApplyIf(() -> true)
.setPhase(Phase.LATE)
.setSide(Side.BOTH)),
IC2_HAZMAT(new Builder("Hazmat").setPhase(Phase.LATE)
.setSide(Side.BOTH)
.addMixinClasses("ic2.MixinIc2Hazmat")
.setApplyIf(() -> true)
.addTargetedMod(TargetedMod.IC2)
.addExcludedMod(TargetedMod.GT6)),
// Pollution
POLLUTION_RENDER_BLOCKS(new Builder("Changes colors of certain blocks based on pollution levels")
.addMixinClasses("minecraft.pollution.MixinRenderBlocks_PollutionWithoutOptifine")
.addTargetedMod(TargetedMod.VANILLA)
.addExcludedMod(TargetedMod.OPTIFINE)
.setSide(Side.CLIENT)
.setApplyIf(() -> PollutionConfig.pollution && PollutionConfig.pollutionBlockRecolor)
.setPhase(Phase.EARLY)),
POLLUTION_RENDER_BLOCKS_OPTIFINE(new Builder("Changes colors of certain blocks based on pollution levels")
.addMixinClasses("minecraft.pollution.MixinRenderBlocks_PollutionWithOptifine")
.addTargetedMod(TargetedMod.VANILLA)
.addTargetedMod(TargetedMod.OPTIFINE)
.addExcludedMod(TargetedMod.ANGELICA)
.setSide(Side.CLIENT)
.setApplyIf(() -> PollutionConfig.pollution && PollutionConfig.pollutionBlockRecolor)
.setPhase(Phase.EARLY)),
POLLUTION_RENDER_BLOCKS_BOP(new Builder("Changes colors of certain blocks based on pollution levels")
.addMixinClasses("biomesoplenty.MixinFoliageRendererPollution")
.addTargetedMod(TargetedMod.BOP)
.setSide(Side.CLIENT)
.setApplyIf(() -> PollutionConfig.pollution && PollutionConfig.pollutionBlockRecolor)
.setPhase(Phase.LATE)),
POLLUTION_MINECRAFT_FURNACE(new Builder("Minecraft Furnace Pollutes").setPhase(Phase.EARLY)
.addMixinClasses("minecraft.pollution.MixinTileEntityFurnacePollution")
.setSide(Side.BOTH)
.setApplyIf(() -> PollutionConfig.pollution && PollutionConfig.furnacesPollute)
.addTargetedMod(TargetedMod.VANILLA)),
POLLUTION_MINECRAFT_EXPLOSION(new Builder("Minecraft explosions pollute").setPhase(Phase.EARLY)
.addMixinClasses("minecraft.pollution.MixinExplosionPollution")
.setSide(Side.BOTH)
.setApplyIf(() -> PollutionConfig.pollution && PollutionConfig.explosionPollutionAmount != 0F)
.addTargetedMod(TargetedMod.VANILLA)),
POLLUTION_IC2_IRON_FURNACE(
new Builder("Ic2 Iron Furnace Pollutes").addMixinClasses("ic2.MixinIC2IronFurnacePollution")
.setPhase(Phase.LATE)
.setSide(Side.BOTH)
.setApplyIf(() -> PollutionConfig.pollution && PollutionConfig.furnacesPollute)
.addTargetedMod(TargetedMod.IC2)),
POLLUTION_THAUMCRAFT_ALCHEMICAL_FURNACE(new Builder("Thaumcraft Alchemical Construct Pollutes")
.addMixinClasses("thaumcraft.MixinThaumcraftAlchemyFurnacePollution")
.setPhase(Phase.LATE)
.setSide(Side.BOTH)
.setApplyIf(() -> PollutionConfig.pollution && PollutionConfig.furnacesPollute)
.addTargetedMod(TargetedMod.THAUMCRAFT)),
POLLUTION_RAILCRAFT(new Builder("Make Railcraft Pollute")
.addMixinClasses(
"railcraft.MixinRailcraftBoilerPollution",
"railcraft.MixinRailcraftCokeOvenPollution",
"railcraft.MixinRailcraftTunnelBorePollution")
.setPhase(Phase.LATE)
.setSide(Side.BOTH)
.setApplyIf(() -> PollutionConfig.pollution && PollutionConfig.railcraftPollutes)
.addTargetedMod(TargetedMod.RAILCRAFT)),
POLLUTION_ROCKET(
new Builder("Make Rockets Pollute").addMixinClasses("galacticraftcore.MixinGalacticraftRocketPollution")
.setPhase(Phase.LATE)
.setSide(Side.BOTH)
.setApplyIf(() -> PollutionConfig.pollution && PollutionConfig.rocketsPollute)
.addTargetedMod(TargetedMod.GALACTICRAFT_CORE));
public static final Logger LOGGER = LogManager.getLogger("GregTech-Mixin");
private final List<String> mixinClasses;
private final List<TargetedMod> targetedMods;
private final List<TargetedMod> excludedMods;
private final Supplier<Boolean> applyIf;
private final Phase phase;
private final Side side;
Mixin(Builder builder) {
this.mixinClasses = builder.mixinClasses;
this.targetedMods = builder.targetedMods;
this.excludedMods = builder.excludedMods;
this.applyIf = builder.applyIf;
this.phase = builder.phase;
this.side = builder.side;
if (this.mixinClasses.isEmpty()) {
throw new RuntimeException("No mixin class specified for Mixin : " + this.name());
}
if (this.targetedMods.isEmpty()) {
throw new RuntimeException("No targeted mods specified for Mixin : " + this.name());
}
if (this.applyIf == null) {
throw new RuntimeException("No ApplyIf function specified for Mixin : " + this.name());
}
if (this.phase == null) {
throw new RuntimeException("No Phase specified for Mixin : " + this.name());
}
if (this.side == null) {
throw new RuntimeException("No Side function specified for Mixin : " + this.name());
}
}
public static List<String> getEarlyMixins(Set<String> loadedCoreMods) {
final List<String> mixins = new ArrayList<>();
final List<String> notLoading = new ArrayList<>();
for (Mixin mixin : Mixin.values()) {
if (mixin.phase == Phase.EARLY) {
if (mixin.shouldLoad(loadedCoreMods, Collections.emptySet())) {
mixins.addAll(mixin.mixinClasses);
} else {
notLoading.addAll(mixin.mixinClasses);
}
}
}
LOGGER.info("Not loading the following EARLY mixins: {}", notLoading.toString());
return mixins;
}
public static List<String> getLateMixins(Set<String> loadedMods) {
// NOTE: Any targetmod here needs a modid, not a coremod id
final List<String> mixins = new ArrayList<>();
final List<String> notLoading = new ArrayList<>();
for (Mixin mixin : Mixin.values()) {
if (mixin.phase == Phase.LATE) {
if (mixin.shouldLoad(Collections.emptySet(), loadedMods)) {
mixins.addAll(mixin.mixinClasses);
} else {
notLoading.addAll(mixin.mixinClasses);
}
}
}
LOGGER.info("Not loading the following LATE mixins: {}", notLoading.toString());
return mixins;
}
private boolean shouldLoadSide() {
return side == Side.BOTH || (side == Side.SERVER && FMLLaunchHandler.side()
.isServer())
|| (side == Side.CLIENT && FMLLaunchHandler.side()
.isClient());
}
private boolean allModsLoaded(List<TargetedMod> targetedMods, Set<String> loadedCoreMods, Set<String> loadedMods) {
if (targetedMods.isEmpty()) return false;
for (TargetedMod target : targetedMods) {
if (target == TargetedMod.VANILLA) continue;
// Check coremod first
if (!loadedCoreMods.isEmpty() && target.coreModClass != null
&& !loadedCoreMods.contains(target.coreModClass)) return false;
else if (!loadedMods.isEmpty() && target.modId != null && !loadedMods.contains(target.modId)) return false;
}
return true;
}
private boolean noModsLoaded(List<TargetedMod> targetedMods, Set<String> loadedCoreMods, Set<String> loadedMods) {
if (targetedMods.isEmpty()) return true;
for (TargetedMod target : targetedMods) {
if (target == TargetedMod.VANILLA) continue;
// Check coremod first
if (!loadedCoreMods.isEmpty() && target.coreModClass != null
&& loadedCoreMods.contains(target.coreModClass)) return false;
else if (!loadedMods.isEmpty() && target.modId != null && loadedMods.contains(target.modId)) return false;
}
return true;
}
private boolean shouldLoad(Set<String> loadedCoreMods, Set<String> loadedMods) {
return (shouldLoadSide() && applyIf.get()
&& allModsLoaded(targetedMods, loadedCoreMods, loadedMods)
&& noModsLoaded(excludedMods, loadedCoreMods, loadedMods));
}
private static class Builder {
private final String name;
private final List<String> mixinClasses = new ArrayList<>();
private final List<TargetedMod> targetedMods = new ArrayList<>();
private final List<TargetedMod> excludedMods = new ArrayList<>();
private Supplier<Boolean> applyIf = null;
private Phase phase = null;
private Side side = null;
public Builder(String name) {
this.name = name;
}
public Builder addMixinClasses(String... mixinClasses) {
this.mixinClasses.addAll(Arrays.asList(mixinClasses));
return this;
}
public Builder setPhase(Phase phase) {
if (this.phase != null) {
throw new RuntimeException("Trying to define Phase twice for " + this.name);
}
this.phase = phase;
return this;
}
public Builder setSide(Side side) {
if (this.side != null) {
throw new RuntimeException("Trying to define Side twice for " + this.name);
}
this.side = side;
return this;
}
public Builder setApplyIf(Supplier<Boolean> applyIf) {
this.applyIf = applyIf;
return this;
}
public Builder addTargetedMod(TargetedMod mod) {
this.targetedMods.add(mod);
return this;
}
public Builder addExcludedMod(TargetedMod mod) {
this.excludedMods.add(mod);
return this;
}
}
private enum Side {
BOTH,
CLIENT,
SERVER
}
private enum Phase {
EARLY,
LATE,
}
}
|