blob: a5fb4d3289ba8bf8149801478830d08abe41226d (
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
|
package de.hysky.skyblocker.skyblock.tabhud.widget;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import de.hysky.skyblocker.skyblock.tabhud.util.Colors;
import de.hysky.skyblocker.skyblock.tabhud.util.Ico;
import de.hysky.skyblocker.skyblock.tabhud.util.PlayerListMgr;
import de.hysky.skyblocker.skyblock.tabhud.widget.component.IcoTextComponent;
import de.hysky.skyblocker.skyblock.tabhud.widget.component.ProgressComponent;
import net.minecraft.text.MutableText;
import net.minecraft.text.Text;
import net.minecraft.util.Formatting;
// this widget shows the status of the king's commissions.
// (dwarven mines and crystal hollows)
public class CommsWidget extends Widget {
private static final MutableText TITLE = Text.literal("Commissions").formatted(Formatting.DARK_AQUA,
Formatting.BOLD);
// match a comm
// group 1: comm name
// group 2: comm progress (without "%" for comms that show a percentage)
private static final Pattern COMM_PATTERN = Pattern.compile("(?<name>.*): (?<progress>.*)%?");
public CommsWidget() {
super(TITLE, Formatting.DARK_AQUA.getColorValue());
}
@Override
public void updateContent() {
for (int i = 50; i <= 53; i++) {
Matcher m = PlayerListMgr.regexAt(i, COMM_PATTERN);
// end of comms found?
if (m == null) {
if (i == 50) {
this.addComponent(new IcoTextComponent());
}
break;
}
ProgressComponent pc;
String name = m.group("name");
String progress = m.group("progress");
if (progress.equals("DONE")) {
pc = new ProgressComponent(Ico.BOOK, Text.of(name), Text.of(progress), 100f, Colors.pcntToCol(100));
} else {
float pcnt = Float.parseFloat(progress.substring(0, progress.length() - 1));
pc = new ProgressComponent(Ico.BOOK, Text.of(name), pcnt, Colors.pcntToCol(pcnt));
}
this.addComponent(pc);
}
}
}
|