2
2
3
3
import com .google .common .collect .ImmutableList ;
4
4
import com .google .common .collect .Lists ;
5
- import com .google .gson .Gson ;
6
5
import com .google .gson .GsonBuilder ;
7
6
import com .google .gson .JsonArray ;
8
7
import com .google .gson .JsonElement ;
@@ -77,6 +76,18 @@ public class MixinPatchTransformer implements Transformer {
77
76
.targetInjectionPoint ("Lnet/fabricmc/loader/impl/game/minecraft/Hooks;startServer(Ljava/io/File;Ljava/lang/Object;)V" )
78
77
.modifyInjectionPoint ("Lnet/minecraftforge/server/loading/ServerModLoader;load()V" )
79
78
.build (),
79
+ Patch .builder ()
80
+ .targetClass ("net/minecraft/world/level/NaturalSpawner" )
81
+ .targetMethod ("m_220443_" )
82
+ .targetInjectionPoint ("Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure;f_228517_:Lnet/minecraft/util/random/WeightedRandomList;" )
83
+ .modifyInjectionPoint ("INVOKE" , "Lnet/minecraft/world/level/StructureManager;m_220521_()Lnet/minecraft/core/RegistryAccess;" )
84
+ .build (),
85
+ Patch .builder ()
86
+ .targetClass ("net/minecraft/world/item/Item" )
87
+ .targetMethod ("m_7203_" )
88
+ .targetInjectionPoint ("Lnet/minecraft/world/item/Item;m_41473_()Lnet/minecraft/world/food/FoodProperties;" )
89
+ .modifyInjectionPoint ("Lnet/minecraft/world/item/ItemStack;getFoodProperties(Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/food/FoodProperties;" )
90
+ .build (),
80
91
Patch .builder ()
81
92
.targetClass ("net/minecraft/world/entity/Entity" )
82
93
.targetMethod ("m_204031_(Lnet/minecraft/tags/TagKey;D)Z" )
@@ -113,13 +124,6 @@ public class MixinPatchTransformer implements Transformer {
113
124
.extractMixin ("net/minecraftforge/common/extensions/IForgeLivingEntity" )
114
125
.modifyTarget ("sinkInFluid(Lnet/minecraftforge/fluids/FluidType;)V" )
115
126
.build (),
116
- Patch .builder ()
117
- .targetClass ("net/minecraft/client/renderer/entity/layers/ElytraLayer" )
118
- .targetMethod ("m_6494_(Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V" )
119
- .targetInjectionPoint ("Lnet/minecraft/world/item/ItemStack;m_150930_(Lnet/minecraft/world/item/Item;)Z" )
120
- .targetMixinType (Patch .MODIFY_EXPR_VAL )
121
- .modifyInjectionPoint ("Lnet/minecraft/client/renderer/entity/layers/ElytraLayer;shouldRender(Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;)Z" )
122
- .build (),
123
127
Patch .builder ()
124
128
.targetClass ("net/minecraft/world/item/BoneMealItem" )
125
129
.targetMethod ("m_40627_" )
@@ -187,11 +191,19 @@ public class MixinPatchTransformer implements Transformer {
187
191
.targetInjectionPoint ("Lnet/minecraft/world/level/block/FireBlock;m_221150_(Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/util/RandomSource;I)V" )
188
192
.modifyInjectionPoint ("Lnet/minecraft/world/level/block/FireBlock;tryCatchFire(Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/util/RandomSource;ILnet/minecraft/core/Direction;)V" )
189
193
.build (),
194
+ Patch .builder ()
195
+ .targetClass ("net/minecraft/client/gui/Gui" )
196
+ .targetMethod ("m_280173_(Lnet/minecraft/client/gui/GuiGraphics;)V" )
197
+ .targetInjectionPoint ("Lnet/minecraft/client/gui/Gui;m_168688_(Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/entity/player/Player;IIIIFIIIZ)V" )
198
+ .extractMixin ("net/minecraftforge/client/gui/overlay/ForgeGui" )
199
+ .modifyTarget ("renderHealth(IILnet/minecraft/client/gui/GuiGraphics;)V" )
200
+ .modifyParams (b -> b .insert (0 , Type .INT_TYPE ).insert (1 , Type .INT_TYPE ).targetType (ModifyMethodParams .TargetType .METHOD ))
201
+ .build (),
190
202
Patch .builder ()
191
203
.targetClass ("net/minecraft/client/gui/Gui" )
192
204
.targetMethod ("m_280173_(Lnet/minecraft/client/gui/GuiGraphics;)V" )
193
205
.extractMixin ("net/minecraftforge/client/gui/overlay/ForgeGui" )
194
- .modifyTarget ("Lnet/minecraftforge/client/gui/overlay/ForgeGui; renderArmor(Lnet/minecraft/client/gui/GuiGraphics;II)V" )
206
+ .modifyTarget ("renderArmor(Lnet/minecraft/client/gui/GuiGraphics;II)V" )
195
207
.modifyParams (b -> b .insert (1 , Type .INT_TYPE ).insert (2 , Type .INT_TYPE ).targetType (ModifyMethodParams .TargetType .METHOD ))
196
208
.build (),
197
209
Patch .builder ()
@@ -440,7 +452,7 @@ public MixinPatchTransformer(LVTOffsets lvtOffsets, Set<String> mixinPackages, P
440
452
.build ();
441
453
}
442
454
443
- public void finalize (Path zipRoot , Collection <String > configs , SrgRemappingReferenceMapper .SimpleRefmap refmap ) throws IOException {
455
+ public void finalize (Path zipRoot , Collection <String > configs , Map < String , SrgRemappingReferenceMapper .SimpleRefmap > refmapFiles , Set < String > dirtyRefmaps ) throws IOException {
444
456
Map <String , MixinClassGenerator .GeneratedClass > generatedMixinClasses = this .environment .getClassGenerator ().getGeneratedMixinClasses ();
445
457
if (!generatedMixinClasses .isEmpty ()) {
446
458
for (String config : configs ) {
@@ -463,8 +475,14 @@ public void finalize(Path zipRoot, Collection<String> configs, SrgRemappingRefer
463
475
464
476
// Update refmap
465
477
if (json .has ("refmap" )) {
466
- for (MixinClassGenerator .GeneratedClass generatedClass : mixins .values ()) {
467
- moveRefmapMappings (generatedClass .originalName (), generatedClass .generatedName (), json .get ("refmap" ).getAsString (), zipRoot , refmap );
478
+ String refmapName = json .get ("refmap" ).getAsString ();
479
+ if (dirtyRefmaps .contains (refmapName )) {
480
+ SrgRemappingReferenceMapper .SimpleRefmap refmap = refmapFiles .get (refmapName );
481
+ Path path = zipRoot .resolve (refmapName );
482
+ if (Files .exists (path )) {
483
+ String refmapString = new GsonBuilder ().disableHtmlEscaping ().setPrettyPrinting ().create ().toJson (refmap );
484
+ Files .writeString (path , refmapString , StandardCharsets .UTF_8 );
485
+ }
468
486
}
469
487
}
470
488
}
@@ -503,30 +521,6 @@ public void finalize(Path zipRoot, Collection<String> configs, SrgRemappingRefer
503
521
}
504
522
}
505
523
506
- private void moveRefmapMappings (String oldClass , String newClass , String refmap , Path root , SrgRemappingReferenceMapper .SimpleRefmap oldRefmap ) throws IOException {
507
- Map <String , String > mappingsEntry = oldRefmap .mappings .get (oldClass );
508
- if (mappingsEntry == null ) {
509
- return ;
510
- }
511
- Map <String , String > dataMappingsEntry = oldRefmap .data .get ("searge" ).get (oldClass );
512
- if (dataMappingsEntry == null ) {
513
- return ;
514
- }
515
- Path path = root .resolve (refmap );
516
- if (Files .notExists (path )) {
517
- return ;
518
- }
519
- try (Reader reader = Files .newBufferedReader (path )) {
520
- SrgRemappingReferenceMapper .SimpleRefmap configRefmap = new Gson ().fromJson (reader , SrgRemappingReferenceMapper .SimpleRefmap .class );
521
-
522
- configRefmap .mappings .put (newClass , mappingsEntry );
523
- configRefmap .data .get ("searge" ).put (newClass , dataMappingsEntry );
524
-
525
- String output = new GsonBuilder ().disableHtmlEscaping ().setPrettyPrinting ().create ().toJson (configRefmap );
526
- Files .writeString (path , output , StandardCharsets .UTF_8 );
527
- }
528
- }
529
-
530
524
private Map <String , MixinClassGenerator .GeneratedClass > getMixinsInPackage (String mixinPackage , Map <String , MixinClassGenerator .GeneratedClass > generatedMixinClasses ) {
531
525
Map <String , MixinClassGenerator .GeneratedClass > classes = new HashMap <>();
532
526
for (Map .Entry <String , MixinClassGenerator .GeneratedClass > entry : generatedMixinClasses .entrySet ()) {
0 commit comments