blob: ee5c12511dda5a776b8683fd746d861429e317bf (
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
|
package shcm.shsupercm.fabric.citresewn.mixin;
import net.minecraft.client.texture.atlas.AtlasLoader;
import net.minecraft.client.texture.atlas.AtlasSource;
import net.minecraft.client.texture.atlas.AtlasSourceType;
import net.minecraft.resource.Resource;
import net.minecraft.resource.ResourceFinder;
import net.minecraft.resource.ResourceManager;
import net.minecraft.util.Identifier;
import org.spongepowered.asm.mixin.Final;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Shadow;
import org.spongepowered.asm.mixin.injection.At;
import org.spongepowered.asm.mixin.injection.Inject;
import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable;
import shcm.shsupercm.fabric.citresewn.pack.PackParser;
import java.util.List;
import java.util.Map;
@Mixin(AtlasLoader.class)
public class AtlasLoaderMixin {
@Shadow @Final private List<AtlasSource> sources;
@Inject(method = "of", at = @At("RETURN"), cancellable = true)
private static void citresewn$atlasSource(ResourceManager resourceManager, Identifier id, CallbackInfoReturnable<AtlasLoader> cir) {
if (id.getPath().equals("blocks") && id.getNamespace().equals("minecraft")) {
((AtlasLoaderMixin) (Object) cir.getReturnValue()).sources.add(new AtlasSource() {
@Override
public void load(ResourceManager resourceManager, SpriteRegions regions) {
for (String root : PackParser.ROOTS) {
ResourceFinder resourceFinder = new ResourceFinder(root + "/cit", ".png");
for (Map.Entry<Identifier, Resource> entry : resourceFinder.findResources(resourceManager).entrySet())
regions.add(resourceFinder.toResourceId(entry.getKey()).withPrefixedPath(root + "/cit/"), entry.getValue());
}
}
@Override
public AtlasSourceType getType() {
return null;
}
});
}
}
}
|