package dev.isxander.yacl.api; import dev.isxander.yacl.impl.GenericBindingImpl; import dev.isxander.yacl.mixin.client.OptionInstanceAccessor; import net.minecraft.client.OptionInstance; import org.apache.commons.lang3.Validate; import java.util.function.Consumer; import java.util.function.Supplier; /** * Controls modifying the bound option. * Provides the default value, a setter and a getter. */ public interface Binding { void setValue(T value); T getValue(); T defaultValue(); /** * Creates a generic binding. * * @param def default value of the option, used to reset * @param getter should return the current value of the option * @param setter should set the option to the supplied value */ static Binding generic(T def, Supplier getter, Consumer setter) { Validate.notNull(def, "`def` must not be null"); Validate.notNull(getter, "`getter` must not be null"); Validate.notNull(setter, "`setter` must not be null"); return new GenericBindingImpl<>(def, getter, setter); } /** * Creates a {@link Binding} for Minecraft's {@link OptionInstance} */ static Binding minecraft(OptionInstance minecraftOption) { Validate.notNull(minecraftOption, "`minecraftOption` must not be null"); return new GenericBindingImpl<>( ((OptionInstanceAccessor) (Object) minecraftOption).getInitialValue(), minecraftOption::get, minecraftOption::set ); } /** * Creates an immutable binding that has no default and cannot be modified. * * @param value the value for the binding */ static Binding immutable(T value) { Validate.notNull(value, "`value` must not be null"); return new GenericBindingImpl<>( value, () -> value, changed -> {} ); } }