|
|
|
|
@@ -16,6 +16,8 @@ import me.pepperbell.continuity.client.config.Option;
|
|
|
|
|
import net.dorianpb.cem.internal.config.CemConfig;
|
|
|
|
|
import net.dorianpb.cem.internal.config.CemConfigFairy;
|
|
|
|
|
import net.dorianpb.cem.internal.config.CemOptions;
|
|
|
|
|
import net.minecraft.text.LiteralText;
|
|
|
|
|
import net.minecraft.text.TranslatableText;
|
|
|
|
|
import net.puzzlemc.core.config.PuzzleConfig;
|
|
|
|
|
import net.puzzlemc.gui.mixin.CemConfigAccessor;
|
|
|
|
|
import net.puzzlemc.gui.screen.widget.PuzzleWidget;
|
|
|
|
|
@@ -33,28 +35,28 @@ import io.github.kvverti.colormatic.ColormaticConfig;
|
|
|
|
|
public class PuzzleClient implements ClientModInitializer {
|
|
|
|
|
|
|
|
|
|
public final static String id = "puzzle";
|
|
|
|
|
public static final Text YES = Text.translatable("gui.yes").formatted(Formatting.GREEN);
|
|
|
|
|
public static final Text NO = Text.translatable("gui.no").formatted(Formatting.RED);
|
|
|
|
|
public static final Text YES = new TranslatableText("gui.yes").formatted(Formatting.GREEN);
|
|
|
|
|
public static final Text NO = new TranslatableText("gui.no").formatted(Formatting.RED);
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void onInitializeClient() {
|
|
|
|
|
MidnightLibClient.hiddenMods.add("puzzle");
|
|
|
|
|
MinecraftClient client = MinecraftClient.getInstance();
|
|
|
|
|
PuzzleApi.addToMiscOptions(new PuzzleWidget(Text.of("Puzzle")));
|
|
|
|
|
PuzzleApi.addToMiscOptions(new PuzzleWidget(Text.translatable("puzzle.option.check_for_updates"), (button) -> button.setMessage(PuzzleConfig.checkUpdates ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToMiscOptions(new PuzzleWidget(new TranslatableText("puzzle.option.check_for_updates"), (button) -> button.setMessage(PuzzleConfig.checkUpdates ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleConfig.checkUpdates = !PuzzleConfig.checkUpdates;
|
|
|
|
|
PuzzleConfig.write(id);
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToMiscOptions(new PuzzleWidget(Text.translatable("puzzle.option.show_version_info"), (button) -> button.setMessage(PuzzleConfig.showPuzzleInfo ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToMiscOptions(new PuzzleWidget(new TranslatableText("puzzle.option.show_version_info"), (button) -> button.setMessage(PuzzleConfig.showPuzzleInfo ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleConfig.showPuzzleInfo = !PuzzleConfig.showPuzzleInfo;
|
|
|
|
|
PuzzleConfig.write(id);
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToMiscOptions(new PuzzleWidget(Text.translatable("puzzle.midnightconfig.title"), (button) -> button.setMessage(Text.of("OPEN")), (button) -> {
|
|
|
|
|
PuzzleApi.addToMiscOptions(new PuzzleWidget(new TranslatableText("puzzle.midnightconfig.title"), (button) -> button.setMessage(Text.of("OPEN")), (button) -> {
|
|
|
|
|
client.setScreen(PuzzleConfig.getScreen(client.currentScreen, "puzzle"));
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.of("Puzzle")));
|
|
|
|
|
if (FabricLoader.getInstance().isModLoaded("puzzle-splashscreen") && !PuzzleConfig.disabledIntegrations.contains("puzzle-splashscreen")) {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("puzzle.option.resourcepack_splash_screen"), (button) -> button.setMessage(PuzzleConfig.resourcepackSplashScreen ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("puzzle.option.resourcepack_splash_screen"), (button) -> button.setMessage(PuzzleConfig.resourcepackSplashScreen ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleConfig.resourcepackSplashScreen = !PuzzleConfig.resourcepackSplashScreen;
|
|
|
|
|
PuzzleConfig.write(id);
|
|
|
|
|
PuzzleSplashScreen.resetColors();
|
|
|
|
|
@@ -62,18 +64,18 @@ public class PuzzleClient implements ClientModInitializer {
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
if (FabricLoader.getInstance().isModLoaded("puzzle-models") && !PuzzleConfig.disabledIntegrations.contains("puzzle-models")) {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("puzzle.option.unlimited_model_rotations"), (button) -> button.setMessage(PuzzleConfig.unlimitedRotations ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("puzzle.option.unlimited_model_rotations"), (button) -> button.setMessage(PuzzleConfig.unlimitedRotations ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleConfig.unlimitedRotations = !PuzzleConfig.unlimitedRotations;
|
|
|
|
|
PuzzleConfig.write(id);
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("puzzle.option.bigger_custom_models"), (button) -> button.setMessage(PuzzleConfig.biggerModels ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("puzzle.option.bigger_custom_models"), (button) -> button.setMessage(PuzzleConfig.biggerModels ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleConfig.biggerModels = !PuzzleConfig.biggerModels;
|
|
|
|
|
PuzzleConfig.write(id);
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
if (FabricLoader.getInstance().isModLoaded("cullleaves") && !PuzzleConfig.disabledIntegrations.contains("cullleaves")) {
|
|
|
|
|
PuzzleApi.addToPerformanceOptions(new PuzzleWidget(Text.of("CullLeaves")));
|
|
|
|
|
PuzzleApi.addToPerformanceOptions(new PuzzleWidget(Text.translatable("cullleaves.puzzle.option.enabled"), (button) -> button.setMessage(CullLeavesConfig.enabled ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToPerformanceOptions(new PuzzleWidget(new TranslatableText("cullleaves.puzzle.option.enabled"), (button) -> button.setMessage(CullLeavesConfig.enabled ? YES : NO), (button) -> {
|
|
|
|
|
CullLeavesConfig.enabled = !CullLeavesConfig.enabled;
|
|
|
|
|
CullLeavesConfig.write("cullleaves");
|
|
|
|
|
MinecraftClient.getInstance().worldRenderer.reload();
|
|
|
|
|
@@ -82,27 +84,27 @@ public class PuzzleClient implements ClientModInitializer {
|
|
|
|
|
if (FabricLoader.getInstance().isModLoaded("colormatic") && !PuzzleConfig.disabledIntegrations.contains("colormatic")) {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.of("Colormatic")));
|
|
|
|
|
ColormaticConfig colormaticConfig = Colormatic.config();
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("colormatic.config.option.clearSky"), (button) -> button.setMessage(colormaticConfig.clearSky ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("colormatic.config.option.clearSky"), (button) -> button.setMessage(colormaticConfig.clearSky ? YES : NO), (button) -> {
|
|
|
|
|
colormaticConfig.clearSky = !colormaticConfig.clearSky;
|
|
|
|
|
ColormaticConfigController.persist(colormaticConfig);
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("colormatic.config.option.clearVoid"), (button) -> button.setMessage(colormaticConfig.clearVoid ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("colormatic.config.option.clearVoid"), (button) -> button.setMessage(colormaticConfig.clearVoid ? YES : NO), (button) -> {
|
|
|
|
|
colormaticConfig.clearVoid = !colormaticConfig.clearVoid;
|
|
|
|
|
ColormaticConfigController.persist(colormaticConfig);
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("colormatic.config.option.blendSkyLight"), (button) -> button.setMessage(colormaticConfig.blendSkyLight ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("colormatic.config.option.blendSkyLight"), (button) -> button.setMessage(colormaticConfig.blendSkyLight ? YES : NO), (button) -> {
|
|
|
|
|
colormaticConfig.blendSkyLight = !colormaticConfig.blendSkyLight;
|
|
|
|
|
ColormaticConfigController.persist(colormaticConfig);
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("colormatic.config.option.flickerBlockLight"), (button) -> button.setMessage(colormaticConfig.flickerBlockLight ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("colormatic.config.option.flickerBlockLight"), (button) -> button.setMessage(colormaticConfig.flickerBlockLight ? YES : NO), (button) -> {
|
|
|
|
|
colormaticConfig.flickerBlockLight = !colormaticConfig.flickerBlockLight;
|
|
|
|
|
ColormaticConfigController.persist(colormaticConfig);
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(0, 100, Text.translatable("colormatic.config.option.relativeBlockLightIntensity"),
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(0, 100, new TranslatableText("colormatic.config.option.relativeBlockLightIntensity"),
|
|
|
|
|
() -> (int) (100*(1.0 - colormaticConfig.relativeBlockLightIntensityExponent / -16.0)),
|
|
|
|
|
(button) -> button.setMessage(Text.translatable("colormatic.config.option.relativeBlockLightIntensity")
|
|
|
|
|
(button) -> button.setMessage(new TranslatableText("colormatic.config.option.relativeBlockLightIntensity")
|
|
|
|
|
.append(": ")
|
|
|
|
|
.append(Text.literal(String.valueOf((int)(100 * Math.exp(ColormaticConfig.scaled(colormaticConfig.relativeBlockLightIntensityExponent))))).append("%"))),
|
|
|
|
|
.append(new LiteralText(String.valueOf((int)(100 * Math.exp(ColormaticConfig.scaled(colormaticConfig.relativeBlockLightIntensityExponent))))).append("%"))),
|
|
|
|
|
(slider) -> {
|
|
|
|
|
try {
|
|
|
|
|
colormaticConfig.relativeBlockLightIntensityExponent = ((1.00 - ((slider.getInt())/100f)) * -16.0);
|
|
|
|
|
@@ -114,11 +116,11 @@ public class PuzzleClient implements ClientModInitializer {
|
|
|
|
|
if (FabricLoader.getInstance().isModLoaded("dynamicfps") && !PuzzleConfig.disabledIntegrations.contains("dynamicfps")) {
|
|
|
|
|
PuzzleApi.addToPerformanceOptions(new PuzzleWidget(Text.of("Dynamic FPS")));
|
|
|
|
|
DynamicFPSConfig fpsConfig = DynamicFPSMod.config;
|
|
|
|
|
PuzzleApi.addToPerformanceOptions(new PuzzleWidget(Text.translatable("config.dynamicfps.reduce_when_unfocused"), (button) -> button.setMessage(fpsConfig.reduceFPSWhenUnfocused ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToPerformanceOptions(new PuzzleWidget(new TranslatableText("config.dynamicfps.reduce_when_unfocused"), (button) -> button.setMessage(fpsConfig.reduceFPSWhenUnfocused ? YES : NO), (button) -> {
|
|
|
|
|
fpsConfig.reduceFPSWhenUnfocused = !fpsConfig.reduceFPSWhenUnfocused;
|
|
|
|
|
fpsConfig.save();
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToPerformanceOptions(new PuzzleWidget(0, 60,Text.translatable("config.dynamicfps.unfocused_fps"), () -> fpsConfig.unfocusedFPS,
|
|
|
|
|
PuzzleApi.addToPerformanceOptions(new PuzzleWidget(0, 60,new TranslatableText("config.dynamicfps.unfocused_fps"), () -> fpsConfig.unfocusedFPS,
|
|
|
|
|
(button) -> button.setMessage(Text.of(fpsConfig.unfocusedFPS + " FPS")),
|
|
|
|
|
(slider) -> {
|
|
|
|
|
try {
|
|
|
|
|
@@ -127,15 +129,15 @@ public class PuzzleClient implements ClientModInitializer {
|
|
|
|
|
catch (NumberFormatException ignored) {}
|
|
|
|
|
finally {fpsConfig.save();}
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToPerformanceOptions(new PuzzleWidget(Text.translatable("config.dynamicfps.restore_when_hovered"), (button) -> button.setMessage(fpsConfig.restoreFPSWhenHovered ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToPerformanceOptions(new PuzzleWidget(new TranslatableText("config.dynamicfps.restore_when_hovered"), (button) -> button.setMessage(fpsConfig.restoreFPSWhenHovered ? YES : NO), (button) -> {
|
|
|
|
|
fpsConfig.restoreFPSWhenHovered = !fpsConfig.restoreFPSWhenHovered;
|
|
|
|
|
fpsConfig.save();
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToPerformanceOptions(new PuzzleWidget(Text.translatable("config.dynamicfps.run_gc_on_unfocus"), (button) -> button.setMessage(fpsConfig.runGCOnUnfocus ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToPerformanceOptions(new PuzzleWidget(new TranslatableText("config.dynamicfps.run_gc_on_unfocus"), (button) -> button.setMessage(fpsConfig.runGCOnUnfocus ? YES : NO), (button) -> {
|
|
|
|
|
fpsConfig.runGCOnUnfocus = !fpsConfig.runGCOnUnfocus;
|
|
|
|
|
fpsConfig.save();
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToPerformanceOptions(new PuzzleWidget(0, 100,Text.translatable("config.dynamicfps.unfocused_volume"), () -> ((Number)(fpsConfig.unfocusedVolumeMultiplier * 100)).intValue(),
|
|
|
|
|
PuzzleApi.addToPerformanceOptions(new PuzzleWidget(0, 100,new TranslatableText("config.dynamicfps.unfocused_volume"), () -> ((Number)(fpsConfig.unfocusedVolumeMultiplier * 100)).intValue(),
|
|
|
|
|
(button) -> button.setMessage(Text.of(((Number)(fpsConfig.unfocusedVolumeMultiplier * 100)).intValue() + "%")),
|
|
|
|
|
(slider) -> {
|
|
|
|
|
try {
|
|
|
|
|
@@ -144,7 +146,7 @@ public class PuzzleClient implements ClientModInitializer {
|
|
|
|
|
catch (NumberFormatException ignored) {}
|
|
|
|
|
finally {fpsConfig.save();}
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToPerformanceOptions(new PuzzleWidget(0, 100,Text.translatable("config.dynamicfps.hidden_volume"), () -> ((Number)(fpsConfig.hiddenVolumeMultiplier * 100)).intValue(),
|
|
|
|
|
PuzzleApi.addToPerformanceOptions(new PuzzleWidget(0, 100,new TranslatableText("config.dynamicfps.hidden_volume"), () -> ((Number)(fpsConfig.hiddenVolumeMultiplier * 100)).intValue(),
|
|
|
|
|
(button) -> button.setMessage(Text.of(((Number)(fpsConfig.hiddenVolumeMultiplier * 100)).intValue() + "%")),
|
|
|
|
|
(slider) -> {
|
|
|
|
|
try {
|
|
|
|
|
@@ -157,12 +159,12 @@ public class PuzzleClient implements ClientModInitializer {
|
|
|
|
|
if (FabricLoader.getInstance().isModLoaded("borderlessmining") && !PuzzleConfig.disabledIntegrations.contains("borderlessmining")) {
|
|
|
|
|
PuzzleApi.addToMiscOptions(new PuzzleWidget(Text.of("Borderless Mining")));
|
|
|
|
|
ConfigHandler bmConfig = ConfigHandler.getInstance();
|
|
|
|
|
PuzzleApi.addToMiscOptions(new PuzzleWidget(Text.translatable("config.borderlessmining.general.enabled"), (button) -> button.setMessage(bmConfig.isEnabledOrPending() ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToMiscOptions(new PuzzleWidget(new TranslatableText("config.borderlessmining.general.enabled"), (button) -> button.setMessage(bmConfig.isEnabledOrPending() ? YES : NO), (button) -> {
|
|
|
|
|
bmConfig.setEnabledPending(!bmConfig.isEnabledOrPending());
|
|
|
|
|
bmConfig.save();
|
|
|
|
|
}));
|
|
|
|
|
if (MinecraftClient.IS_SYSTEM_MAC) {
|
|
|
|
|
PuzzleApi.addToMiscOptions(new PuzzleWidget(Text.translatable("config.borderlessmining.general.enabledmac"), (button) -> button.setMessage(bmConfig.enableMacOS ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToMiscOptions(new PuzzleWidget(new TranslatableText("config.borderlessmining.general.enabledmac"), (button) -> button.setMessage(bmConfig.enableMacOS ? YES : NO), (button) -> {
|
|
|
|
|
bmConfig.enableMacOS = !bmConfig.enableMacOS;
|
|
|
|
|
bmConfig.setEnabledPending(bmConfig.isEnabled());
|
|
|
|
|
bmConfig.save();
|
|
|
|
|
@@ -179,34 +181,34 @@ public class PuzzleClient implements ClientModInitializer {
|
|
|
|
|
DynamicLightsConfig ldlConfig = LambDynLights.get().config;
|
|
|
|
|
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.of("LambDynamicLights")));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.translatable("lambdynlights.option.mode"), (button) -> button.setMessage(ldlConfig.getDynamicLightsMode().getTranslatedText()), (button) -> ldlConfig.setDynamicLightsMode(ldlConfig.getDynamicLightsMode().next())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.translatable("").append("DynLights: ").append(Text.translatable("lambdynlights.option.light_sources.entities")), (button) -> button.setMessage(ldlConfig.getEntitiesLightSource().get() ? YES : NO), (button) -> ldlConfig.getEntitiesLightSource().set(!ldlConfig.getEntitiesLightSource().get())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.translatable("").append("DynLights: ").append(Text.translatable("lambdynlights.option.light_sources.block_entities")), (button) -> button.setMessage(ldlConfig.getBlockEntitiesLightSource().get() ? YES : NO), (button) -> ldlConfig.getBlockEntitiesLightSource().set(!ldlConfig.getBlockEntitiesLightSource().get())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.translatable("").append("DynLights: ").append(Text.translatable("entity.minecraft.creeper")), (button) -> button.setMessage(ldlConfig.getCreeperLightingMode().getTranslatedText()), (button) -> ldlConfig.setCreeperLightingMode(ldlConfig.getCreeperLightingMode().next())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.translatable("").append("DynLights: ").append(Text.translatable("block.minecraft.tnt")), (button) -> button.setMessage(ldlConfig.getTntLightingMode().getTranslatedText()), (button) -> ldlConfig.setTntLightingMode(ldlConfig.getTntLightingMode().next())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.translatable("").append("DynLights: ").append(Text.translatable("lambdynlights.option.light_sources.water_sensitive_check")), (button) -> button.setMessage(ldlConfig.getWaterSensitiveCheck().get() ? YES : NO), (button) -> ldlConfig.getWaterSensitiveCheck().set(!ldlConfig.getWaterSensitiveCheck().get())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(new TranslatableText("lambdynlights.option.mode"), (button) -> button.setMessage(ldlConfig.getDynamicLightsMode().getTranslatedText()), (button) -> ldlConfig.setDynamicLightsMode(ldlConfig.getDynamicLightsMode().next())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(new TranslatableText("").append("DynLights: ").append(new TranslatableText("lambdynlights.option.light_sources.entities")), (button) -> button.setMessage(ldlConfig.getEntitiesLightSource().get() ? YES : NO), (button) -> ldlConfig.getEntitiesLightSource().set(!ldlConfig.getEntitiesLightSource().get())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(new TranslatableText("").append("DynLights: ").append(new TranslatableText("lambdynlights.option.light_sources.block_entities")), (button) -> button.setMessage(ldlConfig.getBlockEntitiesLightSource().get() ? YES : NO), (button) -> ldlConfig.getBlockEntitiesLightSource().set(!ldlConfig.getBlockEntitiesLightSource().get())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(new TranslatableText("").append("DynLights: ").append(new TranslatableText("entity.minecraft.creeper")), (button) -> button.setMessage(ldlConfig.getCreeperLightingMode().getTranslatedText()), (button) -> ldlConfig.setCreeperLightingMode(ldlConfig.getCreeperLightingMode().next())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(new TranslatableText("").append("DynLights: ").append(new TranslatableText("block.minecraft.tnt")), (button) -> button.setMessage(ldlConfig.getTntLightingMode().getTranslatedText()), (button) -> ldlConfig.setTntLightingMode(ldlConfig.getTntLightingMode().next())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(new TranslatableText("").append("DynLights: ").append(new TranslatableText("lambdynlights.option.light_sources.water_sensitive_check")), (button) -> button.setMessage(ldlConfig.getWaterSensitiveCheck().get() ? YES : NO), (button) -> ldlConfig.getWaterSensitiveCheck().set(!ldlConfig.getWaterSensitiveCheck().get())));
|
|
|
|
|
}
|
|
|
|
|
if (FabricLoader.getInstance().isModLoaded("citresewn") && !PuzzleConfig.disabledIntegrations.contains("citresewn") && CITResewnConfig.INSTANCE != null) {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.of("CIT Resewn")));
|
|
|
|
|
CITResewnConfig citConfig = CITResewnConfig.INSTANCE;
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.citresewn.enabled.title"), (button) -> button.setMessage(citConfig.enabled ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("config.citresewn.enabled.title"), (button) -> button.setMessage(citConfig.enabled ? YES : NO), (button) -> {
|
|
|
|
|
citConfig.enabled = !citConfig.enabled;
|
|
|
|
|
citConfig.write();
|
|
|
|
|
MinecraftClient.getInstance().reloadResources();
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.citresewn.mute_errors.title"), (button) -> button.setMessage(citConfig.mute_errors ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("config.citresewn.mute_errors.title"), (button) -> button.setMessage(citConfig.mute_errors ? YES : NO), (button) -> {
|
|
|
|
|
citConfig.mute_errors = !citConfig.mute_errors;
|
|
|
|
|
citConfig.write();
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.citresewn.mute_warns.title"), (button) -> button.setMessage(citConfig.mute_warns ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("config.citresewn.mute_warns.title"), (button) -> button.setMessage(citConfig.mute_warns ? YES : NO), (button) -> {
|
|
|
|
|
citConfig.mute_warns = !citConfig.mute_warns;
|
|
|
|
|
citConfig.write();
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.citresewn.broken_paths.title"), (button) -> button.setMessage(citConfig.broken_paths ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("config.citresewn.broken_paths.title"), (button) -> button.setMessage(citConfig.broken_paths ? YES : NO), (button) -> {
|
|
|
|
|
citConfig.broken_paths = !citConfig.broken_paths;
|
|
|
|
|
citConfig.write();
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(0, 100,Text.translatable("config.citresewn.cache_ms.title"), () -> citConfig.cache_ms,
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(0, 100,new TranslatableText("config.citresewn.cache_ms.title"), () -> citConfig.cache_ms,
|
|
|
|
|
(button) -> button.setMessage(message(citConfig)),
|
|
|
|
|
(slider) -> {
|
|
|
|
|
try {
|
|
|
|
|
@@ -219,22 +221,22 @@ public class PuzzleClient implements ClientModInitializer {
|
|
|
|
|
if (FabricLoader.getInstance().isModLoaded("lambdabettergrass") && !PuzzleConfig.disabledIntegrations.contains("lambdabettergrass")) {
|
|
|
|
|
LBGConfig lbgConfig = LambdaBetterGrass.get().config;
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.of("LambdaBetterGrass")));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.translatable("lambdabettergrass.option.mode"), (button) -> button.setMessage(lbgConfig.getMode().getTranslatedText()), (button) -> lbgConfig.setMode(lbgConfig.getMode().next())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.translatable("lambdabettergrass.option.better_snow"), (button) -> button.setMessage(lbgConfig.hasBetterLayer() ? YES : NO), (button) -> lbgConfig.setBetterLayer(!lbgConfig.hasBetterLayer())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(new TranslatableText("lambdabettergrass.option.mode"), (button) -> button.setMessage(lbgConfig.getMode().getTranslatedText()), (button) -> lbgConfig.setMode(lbgConfig.getMode().next())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(new TranslatableText("lambdabettergrass.option.better_snow"), (button) -> button.setMessage(lbgConfig.hasBetterLayer() ? YES : NO), (button) -> lbgConfig.setBetterLayer(!lbgConfig.hasBetterLayer())));
|
|
|
|
|
}
|
|
|
|
|
if (FabricLoader.getInstance().isModLoaded("cem") && FabricLoader.getInstance().isModLoaded("completeconfig") && !PuzzleConfig.disabledIntegrations.contains("cem")) {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.of("Custom Entity Models")));
|
|
|
|
|
CemConfig cemConfig = (CemConfig) CemConfigFairy.getConfig();
|
|
|
|
|
CemOptions cemOptions = CemConfigFairy.getConfig();
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.cem.use_optifine_folder"), (button) -> button.setMessage(cemConfig.useOptifineFolder() ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("config.cem.use_optifine_folder"), (button) -> button.setMessage(cemConfig.useOptifineFolder() ? YES : NO), (button) -> {
|
|
|
|
|
((CemConfigAccessor)cemOptions).setUseOptifineFolder(!cemConfig.useOptifineFolder());
|
|
|
|
|
cemConfig.save();
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.cem.use_new_model_creation_fix"), (button) -> button.setMessage(cemConfig.useTransparentParts() ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("config.cem.use_new_model_creation_fix"), (button) -> button.setMessage(cemConfig.useTransparentParts() ? YES : NO), (button) -> {
|
|
|
|
|
((CemConfigAccessor)cemOptions).setUseModelCreationFix(!cemConfig.useTransparentParts());
|
|
|
|
|
cemConfig.save();
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.cem.use_old_animations"), (button) -> button.setMessage(cemConfig.useOldAnimations() ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("config.cem.use_old_animations"), (button) -> button.setMessage(cemConfig.useOldAnimations() ? YES : NO), (button) -> {
|
|
|
|
|
((CemConfigAccessor)cemOptions).setUseOldAnimations(!cemConfig.useOldAnimations());
|
|
|
|
|
cemConfig.save();
|
|
|
|
|
}));
|
|
|
|
|
@@ -246,7 +248,7 @@ public class PuzzleClient implements ClientModInitializer {
|
|
|
|
|
if (s.equals("use_manual_culling")) return;
|
|
|
|
|
try {
|
|
|
|
|
Option.BooleanOption booleanOption = ((Option.BooleanOption)option);
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("options.continuity."+s), (button) -> button.setMessage(booleanOption.get() ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("options.continuity."+s), (button) -> button.setMessage(booleanOption.get() ? YES : NO), (button) -> {
|
|
|
|
|
booleanOption.set(!booleanOption.get());
|
|
|
|
|
contConfig.onChange();
|
|
|
|
|
contConfig.save();
|
|
|
|
|
@@ -255,26 +257,25 @@ public class PuzzleClient implements ClientModInitializer {
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
if (FabricLoader.getInstance().isModLoaded("entity_texture_features") && !PuzzleConfig.disabledIntegrations.contains("entity_texture_features")) {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.entity_texture_features.title")));
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("config.entity_texture_features.title")));
|
|
|
|
|
ETFConfig etfConfig = ETFApi.getETFConfigObject;
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.entity_texture_features.enable_custom_textures.title"), (button) -> button.setMessage(etfConfig.enableCustomTextures ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("config.entity_texture_features.enable_custom_textures.title"), (button) -> button.setMessage(etfConfig.enableCustomTextures ? YES : NO), (button) -> {
|
|
|
|
|
etfConfig.enableCustomTextures = !etfConfig.enableCustomTextures;
|
|
|
|
|
ETFApi.saveETFConfigChangesAndResetETF();
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.entity_texture_features.enable_emissive_textures.title"), (button) -> button.setMessage(etfConfig.enableEmissiveTextures ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("config.entity_texture_features.enable_emissive_textures.title"), (button) -> button.setMessage(etfConfig.enableEmissiveTextures ? YES : NO), (button) -> {
|
|
|
|
|
etfConfig.enableEmissiveTextures = !etfConfig.enableEmissiveTextures;
|
|
|
|
|
ETFApi.saveETFConfigChangesAndResetETF();
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.entity_texture_features.full_bright_emissives.title"), (button) -> button.setMessage(
|
|
|
|
|
etfConfig.fullBrightEmissives ? Text.translatable("entity_texture_features.puzzle.emissive_type.brighter") : Text.translatable("entity_texture_features.puzzle.emissive_type.default")), (button) -> {
|
|
|
|
|
etfConfig.fullBrightEmissives = !etfConfig.fullBrightEmissives ;
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("config.entity_texture_features.full_bright_emissives.title"), (button) -> button.setMessage(etfConfig.fullBrightEmissives ? Text.of("Brighter") : Text.of("Default")), (button) -> {
|
|
|
|
|
etfConfig.fullBrightEmissives = !etfConfig.fullBrightEmissives;
|
|
|
|
|
ETFApi.saveETFConfigChangesAndResetETF();
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.entity_texture_features.blinking_mob_settings.title"), (button) -> button.setMessage(etfConfig.enableBlinking ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("config.entity_texture_features.blinking_mob_settings.title"), (button) -> button.setMessage(etfConfig.enableBlinking ? YES : NO), (button) -> {
|
|
|
|
|
etfConfig.enableBlinking = !etfConfig.enableBlinking;
|
|
|
|
|
ETFApi.saveETFConfigChangesAndResetETF();
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.entity_texture_features.player_skin_features.title"), (button) -> button.setMessage(etfConfig.skinFeaturesEnabled ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("config.entity_texture_features.player_skin_features.title"), (button) -> button.setMessage(etfConfig.skinFeaturesEnabled ? YES : NO), (button) -> {
|
|
|
|
|
etfConfig.skinFeaturesEnabled = !etfConfig.skinFeaturesEnabled;
|
|
|
|
|
ETFApi.saveETFConfigChangesAndResetETF();
|
|
|
|
|
}));
|
|
|
|
|
@@ -284,7 +285,7 @@ public class PuzzleClient implements ClientModInitializer {
|
|
|
|
|
public static Text message(CITResewnConfig config) {
|
|
|
|
|
int ticks = config.cache_ms;
|
|
|
|
|
if (ticks <= 1) {
|
|
|
|
|
return (Text.translatable("config.citresewn.cache_ms.ticks." + ticks)).formatted(Formatting.AQUA);
|
|
|
|
|
return (new TranslatableText("config.citresewn.cache_ms.ticks." + ticks)).formatted(Formatting.AQUA);
|
|
|
|
|
} else {
|
|
|
|
|
Formatting color = Formatting.DARK_RED;
|
|
|
|
|
if (ticks <= 40) {
|
|
|
|
|
@@ -303,7 +304,7 @@ public class PuzzleClient implements ClientModInitializer {
|
|
|
|
|
color = Formatting.GREEN;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (Text.translatable("config.citresewn.cache_ms.ticks.any", ticks)).formatted(color);
|
|
|
|
|
return (new TranslatableText("config.citresewn.cache_ms.ticks.any", ticks)).formatted(color);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|