Spaces:
Build error
Build error
File size: 1,629 Bytes
d46f4a3 |
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 |
package com.mojang.blaze3d.platform;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.util.List;
import net.minecraft.server.packs.PackResources;
import net.minecraft.server.packs.resources.IoSupplier;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
import org.apache.commons.lang3.ArrayUtils;
@OnlyIn(Dist.CLIENT)
public enum IconSet {
RELEASE("icons"),
SNAPSHOT("icons", "snapshot");
private final String[] path;
private IconSet(final String... p_281663_) {
this.path = p_281663_;
}
public List<IoSupplier<InputStream>> getStandardIcons(PackResources p_281372_) throws IOException {
return List.of(
this.getFile(p_281372_, "icon_16x16.png"),
this.getFile(p_281372_, "icon_32x32.png"),
this.getFile(p_281372_, "icon_48x48.png"),
this.getFile(p_281372_, "icon_128x128.png"),
this.getFile(p_281372_, "icon_256x256.png")
);
}
public IoSupplier<InputStream> getMacIcon(PackResources p_281289_) throws IOException {
return this.getFile(p_281289_, "minecraft.icns");
}
private IoSupplier<InputStream> getFile(PackResources p_281570_, String p_281345_) throws IOException {
String[] astring = ArrayUtils.add(this.path, p_281345_);
IoSupplier<InputStream> iosupplier = p_281570_.getRootResource(astring);
if (iosupplier == null) {
throw new FileNotFoundException(String.join("/", astring));
} else {
return iosupplier;
}
}
} |