mirror of
https://github.com/PuzzleMC/Puzzle.git
synced 2025-12-15 19:35:10 +01:00
133 lines
7.1 KiB
Java
Executable File
133 lines
7.1 KiB
Java
Executable File
package net.puzzlemc.splashscreen;
|
|
|
|
import net.fabricmc.api.ClientModInitializer;
|
|
import net.minecraft.client.texture.NativeImageBackedTexture;
|
|
import net.minecraft.util.math.ColorHelper;
|
|
import net.puzzlemc.core.config.PuzzleConfig;
|
|
import net.puzzlemc.core.util.ColorUtil;
|
|
import net.fabricmc.api.EnvType;
|
|
import net.fabricmc.api.Environment;
|
|
import net.fabricmc.fabric.api.resource.ResourceManagerHelper;
|
|
import net.fabricmc.fabric.api.resource.SimpleSynchronousResourceReloadListener;
|
|
import net.fabricmc.loader.api.FabricLoader;
|
|
import net.minecraft.client.MinecraftClient;
|
|
import net.minecraft.client.resource.metadata.TextureResourceMetadata;
|
|
import net.minecraft.client.texture.NativeImage;
|
|
import net.minecraft.client.texture.ResourceTexture;
|
|
import net.minecraft.resource.DefaultResourcePack;
|
|
import net.minecraft.resource.ResourceManager;
|
|
import net.minecraft.resource.ResourceType;
|
|
import net.minecraft.util.Identifier;
|
|
import org.apache.logging.log4j.LogManager;
|
|
|
|
import java.awt.*;
|
|
import java.io.File;
|
|
import java.io.FileInputStream;
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import java.nio.file.Files;
|
|
import java.nio.file.Path;
|
|
import java.nio.file.Paths;
|
|
import java.nio.file.StandardCopyOption;
|
|
import java.util.Properties;
|
|
|
|
public class PuzzleSplashScreen implements ClientModInitializer {
|
|
public static final Identifier LOGO = new Identifier("textures/gui/title/mojangstudios.png");
|
|
public static File CONFIG_PATH = new File(String.valueOf(FabricLoader.getInstance().getConfigDir().resolve(".puzzle_cache")));
|
|
public static Path LOGO_TEXTURE = Paths.get(CONFIG_PATH + "/mojangstudios.png");
|
|
private static final MinecraftClient client = MinecraftClient.getInstance();
|
|
|
|
public static void resetColors() {
|
|
PuzzleConfig.backgroundColor = 15675965;
|
|
PuzzleConfig.progressBarColor = 16777215;
|
|
PuzzleConfig.progressFrameColor = 16777215;
|
|
PuzzleConfig.write("puzzle");
|
|
}
|
|
|
|
public void onInitializeClient() {
|
|
if (!CONFIG_PATH.exists()) { // Run when config directory is nonexistent //
|
|
if (CONFIG_PATH.mkdir()) { // Create our custom config directory //
|
|
try {
|
|
Files.setAttribute(CONFIG_PATH.toPath(), "dos:hidden", true);
|
|
} catch (IOException ignored) {
|
|
}
|
|
}
|
|
}
|
|
ResourceManagerHelper.get(ResourceType.CLIENT_RESOURCES).registerReloadListener(new SimpleSynchronousResourceReloadListener() {
|
|
@Override
|
|
public Identifier getFabricId() {
|
|
return new Identifier("puzzle", "splash_screen");
|
|
}
|
|
|
|
@Override
|
|
public void reload(ResourceManager manager) {
|
|
if (PuzzleConfig.resourcepackSplashScreen) {
|
|
PuzzleSplashScreen.resetColors();
|
|
client.getTextureManager().registerTexture(LOGO, new LogoTexture());
|
|
|
|
for (Identifier id : manager.findResources("optifine", path -> path.contains("color.properties"))) {
|
|
try (InputStream stream = manager.getResource(id).getInputStream()) {
|
|
Properties properties = new Properties();
|
|
properties.load(stream);
|
|
|
|
if (properties.get("screen.loading") != null) {
|
|
Color backgroundColorRGB = ColorUtil.hex2Rgb(properties.get("screen.loading").toString());
|
|
PuzzleConfig.backgroundColor = ColorHelper.Argb.getArgb(backgroundColorRGB.getAlpha(), backgroundColorRGB.getRed(), backgroundColorRGB.getGreen(), backgroundColorRGB.getGreen());
|
|
}
|
|
if (properties.get("screen.loading.bar") != null) {
|
|
Color progressFrameColorRGB = ColorUtil.hex2Rgb(properties.get("screen.loading.bar").toString());
|
|
PuzzleConfig.progressFrameColor = ColorHelper.Argb.getArgb(progressFrameColorRGB.getAlpha(), progressFrameColorRGB.getRed(), progressFrameColorRGB.getGreen(), progressFrameColorRGB.getGreen());
|
|
}
|
|
if (properties.get("screen.loading.progress") != null) {
|
|
Color progressBarColorRGB = ColorUtil.hex2Rgb(properties.get("screen.loading.progress").toString());
|
|
PuzzleConfig.progressBarColor = ColorHelper.Argb.getArgb(progressBarColorRGB.getAlpha(), progressBarColorRGB.getRed(), progressBarColorRGB.getGreen(), progressBarColorRGB.getGreen());
|
|
}
|
|
if (properties.get("screen.loading") != null) {
|
|
PuzzleConfig.write("puzzle");
|
|
}
|
|
} catch (Exception e) {
|
|
LogManager.getLogger("Puzzle").error("Error occurred while loading color.properties " + id.toString(), e);
|
|
}
|
|
}
|
|
for (Identifier id : manager.findResources("textures", path -> path.contains("mojangstudios.png"))) {
|
|
try (InputStream stream = manager.getResource(id).getInputStream()) {
|
|
Files.copy(stream, LOGO_TEXTURE, StandardCopyOption.REPLACE_EXISTING);
|
|
DefaultResourcePack defaultResourcePack = client.getResourcePackProvider().getPack();
|
|
InputStream defaultLogo = defaultResourcePack.open(ResourceType.CLIENT_RESOURCES, LOGO);
|
|
InputStream input = new FileInputStream(String.valueOf(PuzzleSplashScreen.LOGO_TEXTURE));
|
|
if (input != defaultLogo)
|
|
client.getTextureManager().registerTexture(LOGO, new NativeImageBackedTexture(NativeImage.read(input)));
|
|
else Files.delete(LOGO_TEXTURE);
|
|
} catch (Exception e) {
|
|
LogManager.getLogger("Puzzle").error("Error occurred while loading custom minecraft logo " + id.toString(), e);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
});
|
|
}
|
|
@Environment(EnvType.CLIENT)
|
|
public static class LogoTexture extends ResourceTexture {
|
|
public LogoTexture() { super(LOGO); }
|
|
|
|
protected TextureData loadTextureData(ResourceManager resourceManager) {
|
|
MinecraftClient minecraftClient = MinecraftClient.getInstance();
|
|
DefaultResourcePack defaultResourcePack = minecraftClient.getResourcePackProvider().getPack();
|
|
try {
|
|
InputStream inputStream = defaultResourcePack.open(ResourceType.CLIENT_RESOURCES, LOGO);
|
|
TextureData var6;
|
|
try {
|
|
var6 = new TextureData(new TextureResourceMetadata(true, true), NativeImage.read(inputStream));
|
|
} finally {
|
|
if (inputStream != null) {
|
|
inputStream.close();
|
|
}
|
|
}
|
|
return var6;
|
|
} catch (IOException var18) {
|
|
return new TextureData(var18);
|
|
}
|
|
}
|
|
}
|
|
}
|