mirror of
https://github.com/TeamMidnightDust/MidnightLib.git
synced 2025-12-18 10:15:08 +01:00
174 lines
11 KiB
Java
174 lines
11 KiB
Java
package eu.midnightdust.test.config;
|
||
|
||
//? if >= 1.21.10 {
|
||
import com.google.common.collect.Lists;
|
||
import eu.midnightdust.lib.config.MidnightConfigListWidget;
|
||
import eu.midnightdust.lib.config.MidnightConfigScreen;
|
||
import eu.midnightdust.test.MidnightLibExtras;
|
||
import eu.midnightdust.lib.config.MidnightConfig;
|
||
import net.minecraft.ChatFormatting;
|
||
import net.minecraft.client.Minecraft;
|
||
import net.minecraft.network.chat.Component;
|
||
import net.minecraft.network.chat.MutableComponent;
|
||
import net.minecraft.resources.Identifier;
|
||
import net.minecraft.util.OptionEnum;
|
||
import org.jetbrains.annotations.NotNull;
|
||
|
||
import javax.swing.*;
|
||
import java.util.ArrayList;
|
||
import java.util.List;
|
||
import java.util.Objects;
|
||
|
||
/** Every option in a MidnightConfig class has to be public and static, so we can access it from other classes.
|
||
* The config class also has to extend MidnightConfig*/
|
||
@SuppressWarnings({"unused", "DefaultAnnotationParam"})
|
||
public class MidnightConfigExample extends MidnightConfig {
|
||
public static final String TEXT = "text";
|
||
public static final String NUMBERS = "numbers";
|
||
public static final String SLIDERS = "sliders";
|
||
public static final String LISTS = "lists";
|
||
public static final String FILES = "files";
|
||
public static final String CONDITIONS = "conditions";
|
||
public static final String EXTRAS = "extras";
|
||
|
||
@Comment(category = TEXT) public static Comment text1; // Comments are rendered like an option without a button and are excluded from the config file
|
||
@Comment(category = TEXT, centered = true) public static Comment text2; // Centered comments are the same as normal ones - just centered!
|
||
@Comment(category = TEXT) public static Comment spacer1; // Comments containing the word "spacer" will just appear as a blank line
|
||
@Entry(category = TEXT) public static boolean showInfo = true; // Example for a boolean option
|
||
@Entry(category = TEXT, name="I am a (non-primitive) Boolean") public static Boolean nonPrimitive = true; // Example for a non-primative boolean option
|
||
@Entry(category = TEXT) public static String name = "Hello World!"; // Example for a string option, which is in a category!
|
||
@Entry(category = TEXT, width = 7, min = 7, isColor = true, name = "I am a color!") public static String titleColor = "#ffffff"; // The isColor property adds a color chooser for a hexadecimal color
|
||
@Entry(category = TEXT, idMode = 0) public static Identifier id = Identifier.withDefaultNamespace("diamond"); // Example for an identifier with matching items displayed next to it!
|
||
@Entry(category = TEXT) public static ModPlatform modPlatform = ModPlatform.FABRIC; // Example for an enum option
|
||
public enum ModPlatform { // Enums allow the user to cycle through predefined options
|
||
QUILT, FABRIC, FORGE, NEOFORGE, VANILLA
|
||
}
|
||
@Entry(category = TEXT) public static GraphicsSteps graphicsSteps = GraphicsSteps.FABULOUS; // Example for an enum option with TranslatableOption
|
||
|
||
@Comment(category = TEXT, name = "§nMidnightLib Wiki", centered = true, url = "https://www.midnightdust.eu/wiki/midnightlib/") public static Comment wiki; // Example for a comment with a url
|
||
|
||
@Entry(category = NUMBERS) public static int fabric = 16777215; // Example for an int option
|
||
@Entry(category = NUMBERS) public static double world = 1.4D; // Example for a double option
|
||
@Entry(category = NUMBERS, min=69,max=420) public static int hello = 420; // - The entered number has to be larger than 69 and smaller than 420
|
||
@Entry(category = SLIDERS, name = "I am an int slider.",isSlider = true, min = 0, max = 100) public static int intSlider = 35; // Int fields can also be displayed as a Slider
|
||
@Entry(category = SLIDERS, name = "I am a float slider!", isSlider = true, min = 0f, max = 1f, precision = 1000) public static float floatSlider = 0.24f; // And so can floats! Precision defines the amount of decimal places
|
||
@Entry(category = SLIDERS, name = "I am a non-primitive double slider!", isSlider = true, min = 0d, max = 4d, precision = 10000) public static Double nonPrimitiveDoubleSlider = 3.76d; // Even works for non-primitive fields
|
||
// The name field can be used to specify a custom translation string or plain text
|
||
@Entry(category = LISTS, name = "I am a string list!") public static List<String> stringList = Lists.newArrayList("String1", "String2"); // Array String Lists are also supported
|
||
@Entry(category = LISTS, isColor = true, name = "I am a color list!") public static List<String> colorList = Lists.newArrayList("#ac5f99", "#11aa44"); // Lists also support colors
|
||
@Entry(category = LISTS, name = "I am an identifier list!", idMode = 1) public static List<Identifier> idList = Lists.newArrayList(Identifier.withDefaultNamespace("dirt")); // A list of block identifiers
|
||
@Entry(category = LISTS, name = "I am an integer list!") public static List<Integer> intList = Lists.newArrayList(69, 420);
|
||
@Entry(category = LISTS, name = "I am a float list!") public static List<Float> floatList = Lists.newArrayList(4.1f, -1.3f, -1f);
|
||
|
||
@Entry(category = FILES,
|
||
selectionMode = JFileChooser.FILES_ONLY,
|
||
fileExtensions = {"json", "txt", "log"}, // Define valid file extensions
|
||
fileChooserType = JFileChooser.SAVE_DIALOG,
|
||
name = "I am a file!")
|
||
public static String myFile = ""; // The isFile property adds a file picker button
|
||
|
||
@Entry(category = FILES,
|
||
selectionMode = JFileChooser.DIRECTORIES_ONLY,
|
||
fileChooserType = JFileChooser.OPEN_DIALOG,
|
||
name = "I am a directory!")
|
||
public static String myDirectory = ""; // The isDirectory property adds a directory picker button
|
||
|
||
@Entry(category = FILES,
|
||
selectionMode = JFileChooser.FILES_AND_DIRECTORIES,
|
||
fileExtensions = {"png", "jpg", "jpeg"},
|
||
fileChooserType = JFileChooser.OPEN_DIALOG,
|
||
name = "I can choose both files & directories!")
|
||
public static String myFileOrDirectory = ""; // The isFileOrDirectory property adds a file or directory picker button
|
||
@Entry(category = FILES,
|
||
selectionMode = JFileChooser.FILES_AND_DIRECTORIES,
|
||
fileExtensions = {"png", "jpg", "jpeg"},
|
||
fileChooserType = JFileChooser.OPEN_DIALOG,
|
||
name = "I am a mf file/directory list!")
|
||
public static List<String> fileOrDirectoryList = new ArrayList<>(); // Yes, that's right – you can even have lists of files/directories
|
||
|
||
@Condition(requiredModId = "midnightlib") // Conditional options are here!
|
||
@Entry(category = CONDITIONS, name="Turn me on!")
|
||
public static boolean turnMeOn = false;
|
||
@Condition(requiredOption = "modid:turnMeOn", visibleButLocked = true)
|
||
@Entry(category = CONDITIONS, name="Turn me off (locked)!")
|
||
public static Boolean turnMeOff = true;
|
||
@Condition(requiredOption = "turnMeOn") // You can also use multiple conditions for the same entry
|
||
@Condition(requiredOption = "modid:turnMeOff", requiredValue = "false")
|
||
@Entry(category = CONDITIONS, name="Which is the best modloader?")
|
||
public static String bestModloader = "";
|
||
@Condition(requiredOption = "turnMeOn")
|
||
@Condition(requiredOption = "turnMeOff", requiredValue = "false")
|
||
@Condition(requiredOption = "bestModloader", requiredValue = "Forge")
|
||
@Comment(category = CONDITIONS, name="❌ You have bad taste :(", centered = true) // Don't take this too seriously btw :)
|
||
public static Comment answerForge; // Comments can also be conditional!
|
||
@Condition(requiredOption = "turnMeOn")
|
||
@Condition(requiredOption = "turnMeOff", requiredValue = "false")
|
||
@Condition(requiredOption = "bestModloader", requiredValue = "NeoForge")
|
||
@Comment(category = CONDITIONS, name="⛏ Not quite, but it's alright!", centered = true)
|
||
public static Comment answerNeoforge;
|
||
@Condition(requiredOption = "turnMeOn")
|
||
@Condition(requiredOption = "turnMeOff", requiredValue = "false")
|
||
@Condition(requiredOption = "bestModloader", requiredValue = "Fabric")
|
||
@Comment(category = CONDITIONS, name="⭐ Correct! Fabric (and Quilt) are the best!", centered = true)
|
||
public static Comment answerFabric;
|
||
@Condition(requiredOption = "turnMeOn")
|
||
@Condition(requiredOption = "turnMeOff", requiredValue = "false")
|
||
@Condition(requiredOption = "bestModloader", requiredValue = "Quilt")
|
||
@Comment(category = CONDITIONS, name="⭐ Correct! Quilt (and Fabric) are the best!", centered = true)
|
||
public static Comment answerQuilt;
|
||
|
||
@Entry(category = CONDITIONS, name="Enter any prime number below 10")
|
||
public static int primeNumber = 0;
|
||
@Comment(category = CONDITIONS, name="Correct!")
|
||
@Condition(requiredOption = "primeNumber", requiredValue = {"2", "3", "5", "7"})
|
||
public static Comment answerPrime;
|
||
|
||
@Condition(requiredOption = "midnightlib:config_screen_list", requiredValue = "FALSE") // Access options of other mods that are also using MidnightLib
|
||
@Comment(category = CONDITIONS) public static Comment spaceracer;
|
||
@Condition(requiredOption = "midnightlib:config_screen_list", requiredValue = "FALSE")
|
||
@Comment(category = CONDITIONS, name="You disabled MidnightLib's config screen list. Why? :(", centered = true) public static Comment why;
|
||
|
||
public static int imposter = 16777215; // - Entries without an @Entry or @Comment annotation are ignored
|
||
|
||
public enum GraphicsSteps implements OptionEnum {
|
||
FAST(0, "options.graphics.fast"),
|
||
FANCY(1, "options.graphics.fancy"),
|
||
FABULOUS(2, "options.graphics.fabulous");
|
||
|
||
private final int id;
|
||
private final String translationKey;
|
||
|
||
GraphicsSteps(int id, String translationKey) {
|
||
this.id = id;
|
||
this.translationKey = translationKey;
|
||
}
|
||
|
||
@Override
|
||
public @NotNull Component getCaption() {
|
||
MutableComponent mutableText = Component.translatable(this.getKey());
|
||
return this == GraphicsSteps.FABULOUS ? mutableText.withStyle(ChatFormatting.ITALIC, ChatFormatting.AQUA) : mutableText;
|
||
}
|
||
|
||
@Override
|
||
public int getId() {
|
||
return this.id;
|
||
}
|
||
|
||
@Override
|
||
public @NotNull String getKey() {
|
||
return this.translationKey;
|
||
}
|
||
}
|
||
|
||
@Condition(requiredModId = "thismoddoesnotexist")
|
||
@Comment(category = EXTRAS) public static Comment iAmJustADummy; // We only have this to initialize an empty tab for the keybinds below
|
||
|
||
@Override
|
||
public void onTabInit(String tabName, MidnightConfigListWidget list, MidnightConfigScreen screen) {
|
||
if (Objects.equals(tabName, EXTRAS)) {
|
||
MidnightLibExtras.KeybindButton.add(Minecraft.getInstance().options.keyAdvancements, list, screen);
|
||
MidnightLibExtras.KeybindButton.add(Minecraft.getInstance().options.keyDrop, list, screen);
|
||
}
|
||
}
|
||
}
|
||
//?} |