1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
package dev.isxander.yacl.gui.controllers;
import dev.isxander.yacl.api.Controller;
import dev.isxander.yacl.api.Option;
import dev.isxander.yacl.api.utils.Dimension;
import dev.isxander.yacl.gui.AbstractWidget;
import dev.isxander.yacl.gui.YACLScreen;
import net.minecraft.client.gui.DrawableHelper;
import net.minecraft.client.util.math.MatrixStack;
import net.minecraft.text.Text;
import org.jetbrains.annotations.ApiStatus;
import org.lwjgl.glfw.GLFW;
/**
* This controller renders a tickbox
*/
public class TickBoxController implements Controller<Boolean> {
private final Option<Boolean> option;
/**
* Constructs a tickbox controller
*
* @param option bound option
*/
public TickBoxController(Option<Boolean> option) {
this.option = option;
}
/**
* {@inheritDoc}
*/
@Override
public Option<Boolean> option() {
return option;
}
/**
* {@inheritDoc}
*/
@Override
public Text formatValue() {
return Text.empty();
}
/**
* {@inheritDoc}
*/
@Override
public AbstractWidget provideWidget(YACLScreen screen, Dimension<Integer> widgetDimension) {
return new TickBoxControllerElement(this, screen, widgetDimension);
}
@ApiStatus.Internal
public static class TickBoxControllerElement extends ControllerWidget<TickBoxController> {
private TickBoxControllerElement(TickBoxController control, YACLScreen screen, Dimension<Integer> dim) {
super(control, screen, dim);
}
@Override
protected void drawHoveredControl(MatrixStack matrices, int mouseX, int mouseY, float delta) {
int outlineSize = 10;
int outlineX1 = dim.xLimit() - getXPadding() - outlineSize;
int outlineY1 = dim.centerY() - outlineSize / 2;
int outlineX2 = dim.xLimit() - getXPadding();
int outlineY2 = dim.centerY() + outlineSize / 2;
int color = getValueColor();
int shadowColor = multiplyColor(color, 0.25f);
drawOutline(matrices, outlineX1 + 1, outlineY1 + 1, outlineX2 + 1, outlineY2 + 1, 1, shadowColor);
drawOutline(matrices, outlineX1, outlineY1, outlineX2, outlineY2, 1, color);
if (control.option().pendingValue()) {
DrawableHelper.fill(matrices, outlineX1 + 3, outlineY1 + 3, outlineX2 - 1, outlineY2 - 1, shadowColor);
DrawableHelper.fill(matrices, outlineX1 + 2, outlineY1 + 2, outlineX2 - 2, outlineY2 - 2, color);
}
}
@Override
protected void drawValueText(MatrixStack matrices, int mouseX, int mouseY, float delta) {
if (!isHovered())
drawHoveredControl(matrices, mouseX, mouseY, delta);
}
@Override
public boolean mouseClicked(double mouseX, double mouseY, int button) {
if (!isMouseOver(mouseX, mouseY) || !isAvailable())
return false;
toggleSetting();
return true;
}
@Override
protected int getHoveredControlWidth() {
return 10;
}
public void toggleSetting() {
control.option().requestSet(!control.option().pendingValue());
playDownSound();
}
@Override
public boolean keyPressed(int keyCode, int scanCode, int modifiers) {
if (!focused) {
return false;
}
if (keyCode == GLFW.GLFW_KEY_ENTER || keyCode == GLFW.GLFW_KEY_SPACE || keyCode == GLFW.GLFW_KEY_KP_ENTER) {
toggleSetting();
return true;
}
return false;
}
}
}
|