blob: 3d85afec4ede60b1de7a2d6011ae9e1b1ee91ae5 (
plain)
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
|
package dev.isxander.yacl3.gui.controllers.cycling;
import com.mojang.blaze3d.platform.InputConstants;
import dev.isxander.yacl3.api.utils.Dimension;
import dev.isxander.yacl3.gui.YACLScreen;
import dev.isxander.yacl3.gui.controllers.ControllerWidget;
import net.minecraft.client.gui.screens.Screen;
public class CyclingControllerElement extends ControllerWidget<ICyclingController<?>> {
public CyclingControllerElement(ICyclingController<?> control, YACLScreen screen, Dimension<Integer> dim) {
super(control, screen, dim);
}
public void cycleValue(int increment) {
int targetIdx = control.getPendingValue() + increment;
if (targetIdx >= control.getCycleLength()) {
targetIdx -= control.getCycleLength();
} else if (targetIdx < 0) {
targetIdx += control.getCycleLength();
}
control.setPendingValue(targetIdx);
}
@Override
public boolean mouseClicked(double mouseX, double mouseY, int button) {
if (!isMouseOver(mouseX, mouseY) || (button != 0 && button != 1) || !isAvailable())
return false;
playDownSound();
cycleValue(button == 1 || Screen.hasShiftDown() || Screen.hasControlDown() ? -1 : 1);
return true;
}
@Override
public boolean keyPressed(int keyCode, int scanCode, int modifiers) {
if (!focused)
return false;
switch (keyCode) {
case InputConstants.KEY_LEFT ->
cycleValue(-1);
case InputConstants.KEY_RIGHT ->
cycleValue(1);
case InputConstants.KEY_RETURN, InputConstants.KEY_SPACE, InputConstants.KEY_NUMPADENTER ->
cycleValue(Screen.hasControlDown() || Screen.hasShiftDown() ? -1 : 1);
default -> {
return false;
}
}
return true;
}
@Override
protected int getHoveredControlWidth() {
return getUnhoveredControlWidth();
}
}
|