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
|
package dev.isxander.yacl3.gui.controllers.string.number;
import dev.isxander.yacl3.api.Option;
import dev.isxander.yacl3.api.controller.ValueFormatter;
import dev.isxander.yacl3.gui.controllers.slider.IntegerSliderController;
import net.minecraft.network.chat.Component;
import org.jetbrains.annotations.ApiStatus;
import java.util.function.Function;
/**
* {@inheritDoc}
*/
public class IntegerFieldController extends NumberFieldController<Integer> {
private final int min, max;
/**
* Constructs a integer field controller
*
* @param option option to bind controller to
* @param min minimum allowed value (clamped on apply)
* @param max maximum allowed value (clamped on apply)
* @param formatter display text, not used whilst editing
*/
public IntegerFieldController(Option<Integer> option, int min, int max, Function<Integer, Component> formatter) {
super(option, formatter);
this.min = min;
this.max = max;
}
/**
* Constructs a integer field controller.
* Uses {@link IntegerSliderController#DEFAULT_FORMATTER} as display text,
* not used whilst editing.
*
* @param option option to bind controller to
* @param min minimum allowed value (clamped on apply)
* @param max maximum allowed value (clamped on apply)
*/
public IntegerFieldController(Option<Integer> option, int min, int max) {
this(option, min, max, IntegerSliderController.DEFAULT_FORMATTER);
}
/**
* Constructs a integer field controller.
* Does not have a minimum or a maximum range.
*
* @param option option to bind controller to
* @param formatter display text, not used whilst editing
*/
public IntegerFieldController(Option<Integer> option, Function<Integer, Component> formatter) {
this(option, -Integer.MAX_VALUE, Integer.MAX_VALUE, formatter);
}
/**
* Constructs a integer field controller.
* Uses {@link IntegerSliderController#DEFAULT_FORMATTER} as display text,
* not used whilst editing.
* Does not have a minimum or a maximum range.
*
* @param option option to bind controller to
*/
public IntegerFieldController(Option<Integer> option) {
this(option, -Integer.MAX_VALUE, Integer.MAX_VALUE, IntegerSliderController.DEFAULT_FORMATTER);
}
@ApiStatus.Internal
public static IntegerFieldController createInternal(Option<Integer> option, int min, int max, ValueFormatter<Integer> formatter) {
return new IntegerFieldController(option, min, max, formatter::format);
}
/**
* {@inheritDoc}
*/
@Override
public double min() {
return this.min;
}
/**
* {@inheritDoc}
*/
@Override
public double max() {
return this.max;
}
/**
* {@inheritDoc}
*/
@Override
public String getString() {
return NUMBER_FORMAT.format(option().pendingValue());
}
/**
* {@inheritDoc}
*/
@Override
public void setPendingValue(double value) {
option().requestSet((int) value);
}
/**
* {@inheritDoc}
*/
@Override
public double pendingValue() {
return option().pendingValue();
}
}
|