mirror of
https://github.com/TeamMidnightDust/MidnightControls.git
synced 2025-12-13 23:25:10 +01:00
Changes from LambdaControls: - Support for Steam Deck and Dualsense - Support for L4, L5, R4, R5 buttons - Updated Libraries - New Logo and Name - Lots of Bugfixes - MidnightConfig backend
106 lines
3.1 KiB
Java
106 lines
3.1 KiB
Java
/*
|
|
* Copyright © 2021 LambdAurora <aurora42lambda@gmail.com>
|
|
*
|
|
* This file is part of midnightcontrols.
|
|
*
|
|
* Licensed under the MIT license. For more information,
|
|
* see the LICENSE file.
|
|
*/
|
|
|
|
package eu.midnightdust.midnightcontrols.client.ring;
|
|
|
|
import com.electronwill.nightconfig.core.Config;
|
|
import net.minecraft.client.font.TextRenderer;
|
|
import net.minecraft.client.gui.DrawableHelper;
|
|
import net.minecraft.client.util.math.MatrixStack;
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
import java.util.List;
|
|
import java.util.Optional;
|
|
|
|
/**
|
|
* Represents a ring page.
|
|
*
|
|
* @author LambdAurora
|
|
* @version 1.5.0
|
|
* @since 1.4.0
|
|
*/
|
|
public class RingPage extends DrawableHelper {
|
|
public static final RingPage DEFAULT = new RingPage("Default");
|
|
|
|
public final String name;
|
|
private RingAction[] actions = new RingAction[8];
|
|
|
|
public RingPage(@NotNull String name) {
|
|
this.name = name;
|
|
for (int i = 0; i < 8; i++) {
|
|
this.actions[i] = null;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Renders the ring page.
|
|
*
|
|
* @param matrices the matrices
|
|
* @param width the screen width
|
|
* @param height the screen height
|
|
* @param mouseX the mouse X-coordinate
|
|
* @param mouseY the mouse Y-coordinate
|
|
* @param tickDelta the tick delta
|
|
*/
|
|
public void render(@NotNull MatrixStack matrices, @NotNull TextRenderer textRenderer, int width, int height, int mouseX, int mouseY, float tickDelta) {
|
|
int centerX = width / 2;
|
|
int centerY = height / 2;
|
|
|
|
int offset = MidnightRing.ELEMENT_SIZE + (MidnightRing.ELEMENT_SIZE / 2) + 5;
|
|
|
|
int y = centerY - offset;
|
|
int x = centerX - offset;
|
|
for (int i = 0; i < 3; i++) {
|
|
var ringAction = this.actions[i];
|
|
if (ringAction != null)
|
|
ringAction.render(matrices, textRenderer, x, y, isHovered(x, y, mouseX, mouseY));
|
|
x += 55;
|
|
}
|
|
y += 55;
|
|
x = centerX - offset;
|
|
for (int i = 3; i < 5; i++) {
|
|
var ringAction = this.actions[i];
|
|
if (ringAction != null)
|
|
ringAction.render(matrices, textRenderer, x, y, isHovered(x, y, mouseX, mouseY));
|
|
x += 55 * 2;
|
|
}
|
|
y += 55;
|
|
x = centerX - offset;
|
|
for (int i = 5; i < 8; i++) {
|
|
var ringAction = this.actions[i];
|
|
if (ringAction != null)
|
|
ringAction.render(matrices, textRenderer, x, y, isHovered(x, y, mouseX, mouseY));
|
|
x += 55;
|
|
}
|
|
}
|
|
|
|
private static boolean isHovered(int x, int y, int mouseX, int mouseY) {
|
|
return mouseX >= x && mouseY >= y && mouseX <= x + MidnightRing.ELEMENT_SIZE && mouseY <= y + MidnightRing.ELEMENT_SIZE;
|
|
}
|
|
|
|
/**
|
|
* Tries to parse a ring page configuration.
|
|
*
|
|
* @param config the configuration
|
|
* @return an optional ring page
|
|
*/
|
|
public static @NotNull Optional<RingPage> parseRingPage(@NotNull Config config) {
|
|
String name = config.get("name");
|
|
if (name == null)
|
|
return Optional.empty();
|
|
|
|
var page = new RingPage(name);
|
|
|
|
List<Config> actionConfigs = config.get("actions");
|
|
|
|
|
|
return Optional.of(page);
|
|
}
|
|
}
|