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
118
119
|
package dev.isxander.yacl3.gui.controllers;
import com.mojang.blaze3d.platform.InputConstants;
import dev.isxander.yacl3.api.Controller;
import dev.isxander.yacl3.api.Option;
import dev.isxander.yacl3.api.utils.Dimension;
import dev.isxander.yacl3.gui.AbstractWidget;
import dev.isxander.yacl3.gui.YACLScreen;
import net.minecraft.client.gui.GuiGraphics;
import net.minecraft.network.chat.Component;
/**
* 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 Component formatValue() {
return Component.empty();
}
/**
* {@inheritDoc}
*/
@Override
public AbstractWidget provideWidget(YACLScreen screen, Dimension<Integer> widgetDimension) {
return new TickBoxControllerElement(this, screen, widgetDimension);
}
public static class TickBoxControllerElement extends ControllerWidget<TickBoxController> {
public TickBoxControllerElement(TickBoxController control, YACLScreen screen, Dimension<Integer> dim) {
super(control, screen, dim);
}
@Override
protected void drawHoveredControl(GuiGraphics graphics, int mouseX, int mouseY, float delta) {
int outlineSize = 10;
int outlineX1 = getDimension().xLimit() - getXPadding() - outlineSize;
int outlineY1 = getDimension().centerY() - outlineSize / 2;
int outlineX2 = getDimension().xLimit() - getXPadding();
int outlineY2 = getDimension().centerY() + outlineSize / 2;
int color = getValueColor();
int shadowColor = multiplyColor(color, 0.25f);
drawOutline(graphics, outlineX1 + 1, outlineY1 + 1, outlineX2 + 1, outlineY2 + 1, 1, shadowColor);
drawOutline(graphics, outlineX1, outlineY1, outlineX2, outlineY2, 1, color);
if (control.option().pendingValue()) {
graphics.fill(outlineX1 + 3, outlineY1 + 3, outlineX2 - 1, outlineY2 - 1, shadowColor);
graphics.fill(outlineX1 + 2, outlineY1 + 2, outlineX2 - 2, outlineY2 - 2, color);
}
}
@Override
protected void drawValueText(GuiGraphics graphics, int mouseX, int mouseY, float delta) {
if (!isHovered())
drawHoveredControl(graphics, 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;
}
@Override
protected int getUnhoveredControlWidth() {
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 == InputConstants.KEY_RETURN || keyCode == InputConstants.KEY_SPACE || keyCode == InputConstants.KEY_NUMPADENTER) {
toggleSetting();
return true;
}
return false;
}
}
}
|