blob: f3d1e6bdaba1ebe530e581ee3674b4c4a6488ebc (
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
package dev.isxander.yacl.api;
import dev.isxander.yacl.gui.YACLScreen;
import dev.isxander.yacl.impl.ButtonOptionImpl;
import net.minecraft.text.MutableText;
import net.minecraft.text.Text;
import org.apache.commons.lang3.Validate;
import org.jetbrains.annotations.NotNull;
import java.util.ArrayList;
import java.util.List;
import java.util.function.Consumer;
import java.util.function.Function;
public interface ButtonOption extends Option<Consumer<YACLScreen>> {
Consumer<YACLScreen> action();
static Builder createBuilder() {
return new Builder();
}
class Builder {
private Text name;
private final List<Text> tooltipLines = new ArrayList<>();
private Function<ButtonOption, Controller<Consumer<YACLScreen>>> controlGetter;
private Consumer<YACLScreen> action;
private Builder() {
}
public Builder name(@NotNull Text name) {
Validate.notNull(name, "`name` cannot be null");
this.name = name;
return this;
}
public Builder tooltip(@NotNull Text... tooltips) {
Validate.notEmpty(tooltips, "`tooltips` cannot be empty");
tooltipLines.addAll(List.of(tooltips));
return this;
}
public Builder action(@NotNull Consumer<YACLScreen> action) {
Validate.notNull(action, "`action` cannot be null");
this.action = action;
return this;
}
public Builder controller(@NotNull Function<ButtonOption, Controller<Consumer<YACLScreen>>> control) {
Validate.notNull(control, "`control` cannot be null");
this.controlGetter = control;
return this;
}
public ButtonOption build() {
Validate.notNull(name, "`name` must not be null when building `Option`");
Validate.notNull(controlGetter, "`control` must not be null when building `Option`");
Validate.notNull(action, "`action` must not be null when building `Option`");
MutableText concatenatedTooltip = Text.empty();
boolean first = true;
for (Text line : tooltipLines) {
if (!first) concatenatedTooltip.append("\n");
first = false;
concatenatedTooltip.append(line);
}
return new ButtonOptionImpl(name, concatenatedTooltip, action, controlGetter);
}
}
}
|