forked from Clones/Controlify
78 lines
2.5 KiB
Java
78 lines
2.5 KiB
Java
package dev.isxander.controlify.bindings;
|
|
|
|
import com.google.gson.JsonObject;
|
|
import com.mojang.blaze3d.systems.RenderSystem;
|
|
import com.mojang.blaze3d.vertex.PoseStack;
|
|
import dev.isxander.controlify.controller.Controller;
|
|
import dev.isxander.controlify.controller.joystick.JoystickController;
|
|
import dev.isxander.controlify.controller.joystick.JoystickState;
|
|
import dev.isxander.controlify.gui.DrawSize;
|
|
import net.minecraft.client.gui.GuiComponent;
|
|
import net.minecraft.resources.ResourceLocation;
|
|
|
|
import java.util.Objects;
|
|
|
|
public class JoystickButtonBind implements IBind<JoystickState> {
|
|
public static final String BIND_ID = "joystick_button";
|
|
|
|
private final JoystickController<?> joystick;
|
|
private final int buttonIndex;
|
|
|
|
public JoystickButtonBind(JoystickController<?> joystick, int buttonIndex) {
|
|
this.joystick = joystick;
|
|
this.buttonIndex = buttonIndex;
|
|
}
|
|
|
|
@Override
|
|
public float state(JoystickState state) {
|
|
return state.buttons().get(buttonIndex) ? 1 : 0;
|
|
}
|
|
|
|
@Override
|
|
public void draw(PoseStack matrices, int x, int centerY) {
|
|
String type = joystick.type().themeId();
|
|
String button = joystick.mapping().buttons()[buttonIndex].identifier();
|
|
var texture = new ResourceLocation("controlify", "textures/gui/joystick/" + type + "/button_" + button + ".png");
|
|
|
|
RenderSystem.setShaderTexture(0, texture);
|
|
RenderSystem.setShaderColor(1, 1, 1, 1);
|
|
GuiComponent.blit(matrices, x, centerY - 11, 0, 0, 22, 22, 22, 22);
|
|
}
|
|
|
|
@Override
|
|
public DrawSize drawSize() {
|
|
return new DrawSize(22, 22);
|
|
}
|
|
|
|
@Override
|
|
public JsonObject toJson() {
|
|
JsonObject object = new JsonObject();
|
|
object.addProperty("type", BIND_ID);
|
|
object.addProperty("button", buttonIndex);
|
|
return object;
|
|
}
|
|
|
|
@Override
|
|
public Controller<JoystickState, ?> controller() {
|
|
return joystick;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object o) {
|
|
if (this == o) return true;
|
|
if (o == null || getClass() != o.getClass()) return false;
|
|
JoystickButtonBind that = (JoystickButtonBind) o;
|
|
return buttonIndex == that.buttonIndex && joystick.uid().equals(that.joystick.uid());
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
return Objects.hash(buttonIndex, joystick.uid());
|
|
}
|
|
|
|
public static JoystickButtonBind fromJson(JsonObject object, JoystickController<?> joystick) {
|
|
var buttonIndex = object.get("button").getAsInt();
|
|
return new JoystickButtonBind(joystick, buttonIndex);
|
|
}
|
|
}
|