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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
|
/*
* Copyright (C) 2022-2023 NotEnoughUpdates contributors
*
* This file is part of NotEnoughUpdates.
*
* NotEnoughUpdates is free software: you can redistribute it
* and/or modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation, either
* version 3 of the License, or (at your option) any later version.
*
* NotEnoughUpdates is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with NotEnoughUpdates. If not, see <https://www.gnu.org/licenses/>.
*/
package io.github.moulberry.notenoughupdates.util;
import com.google.common.base.Splitter;
import com.google.gson.JsonArray;
import com.google.gson.JsonObject;
import io.github.moulberry.notenoughupdates.autosubscribe.NEUAutoSubscribe;
import io.github.moulberry.notenoughupdates.core.util.StringUtils;
import io.github.moulberry.notenoughupdates.miscfeatures.tablisttutorial.TablistAPI;
import lombok.var;
import net.minecraftforge.client.event.ClientChatReceivedEvent;
import net.minecraftforge.fml.common.eventhandler.EventPriority;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import net.minecraftforge.fml.common.gameevent.TickEvent;
import org.jetbrains.annotations.Nullable;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Locale;
import java.util.Set;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
@NEUAutoSubscribe
public class XPInformation {
private static final XPInformation INSTANCE = new XPInformation();
public static XPInformation getInstance() {
return INSTANCE;
}
public static class SkillInfo {
public int level;
public double totalXp;
public double currentXp;
public double currentXpMax;
public boolean fromApi = false;
}
private final HashMap<String, SkillInfo> skillInfoMap = new HashMap<>();
public HashMap<String, Float> updateWithPercentage = new HashMap<>();
public HashMap<String, Float> increment = new HashMap<>();
private static final Splitter SPACE_SPLITTER = Splitter.on(" ").omitEmptyStrings().trimResults();
private static final Pattern SKILL_PATTERN = Pattern.compile(
"\\+(\\d+(?:,\\d+)*(?:\\.\\d+)?) (.+) \\((\\d+(?:,\\d+)*(?:\\.\\d+)?)/(\\d+(?:,\\d+)*(?:\\.\\d+)?)\\)");
private static final Pattern SKILL_PATTERN_MULTIPLIER =
Pattern.compile("\\+(\\d+(?:,\\d+)*(?:\\.\\d+)?) (.+) \\((\\d+(?:,\\d+)*(?:\\.\\d+)?)/(\\d+(?:k|m|b))\\)");
private static final Pattern SKILL_PATTERN_PERCENTAGE =
Pattern.compile("\\+(\\d+(?:,\\d+)*(?:\\.\\d+)?) (.+) \\((\\d\\d?(?:\\.\\d\\d?)?)%\\)");
public HashMap<String, SkillInfo> getSkillInfoMap() {
return skillInfoMap;
}
private Set<String> failedSkills = new HashSet<>();
public @Nullable SkillInfo getSkillInfo(String skillName) {
return getSkillInfo(skillName, false);
}
public @Nullable SkillInfo getSkillInfo(String skillName, boolean isHighlyInterested) {
var obj = skillInfoMap.get(skillName.toLowerCase(Locale.ROOT));
if (isHighlyInterested && failedSkills.contains(skillName.toLowerCase(Locale.ROOT))) {
TablistAPI.getWidgetLines(TablistAPI.WidgetNames.SKILLS);
}
return obj;
}
private String lastActionBar = null;
@SubscribeEvent(priority = EventPriority.HIGHEST, receiveCanceled = true)
public void onChatReceived(ClientChatReceivedEvent event) {
if (event.type != 2) {
return;
}
JsonObject leveling = Constants.LEVELING;
if (leveling == null) return;
String actionBar = StringUtils.cleanColour(event.message.getUnformattedText());
if (lastActionBar != null && lastActionBar.equalsIgnoreCase(actionBar)) {
return;
}
lastActionBar = actionBar;
List<String> components = SPACE_SPLITTER.splitToList(actionBar);
for (String component : components) {
Matcher matcher = SKILL_PATTERN.matcher(component);
if (matcher.matches()) {
String skillS = matcher.group(2);
String currentXpS = matcher.group(3).replace(",", "");
String maxXpS = matcher.group(4).replace(",", "");
float currentXp = Float.parseFloat(currentXpS);
float maxXp = Float.parseFloat(maxXpS);
SkillInfo skillInfo = new SkillInfo();
skillInfo.currentXp = currentXp;
skillInfo.currentXpMax = maxXp;
skillInfo.totalXp = currentXp;
JsonArray levelingArray = leveling.getAsJsonArray("leveling_xp");
for (int i = 0; i < levelingArray.size(); i++) {
float cap = levelingArray.get(i).getAsFloat();
if (maxXp > 0 && maxXp <= cap) {
break;
}
skillInfo.totalXp += cap;
skillInfo.level++;
}
skillInfoMap.put(skillS.toLowerCase(Locale.ROOT), skillInfo);
return;
} else {
matcher = SKILL_PATTERN_PERCENTAGE.matcher(component);
if (matcher.matches()) {
String skillS = matcher.group(2);
String xpPercentageS = matcher.group(3).replace(",", "");
float xpPercentage = Float.parseFloat(xpPercentageS);
if (updateWithPercentage.containsKey(skillS.toLowerCase(Locale.ROOT))) {
failedSkills.add(skillS.toLowerCase(Locale.ROOT));
}
updateWithPercentage.put(skillS.toLowerCase(Locale.ROOT), xpPercentage);
increment.put(skillS.toLowerCase(Locale.ROOT), Float.parseFloat(matcher.group(1).replace(",", "")));
} else {
matcher = SKILL_PATTERN_MULTIPLIER.matcher(component);
if (matcher.matches()) {
String skillS = matcher.group(2);
String currentXpS = matcher.group(3).replace(",", "");
String maxXpS = matcher.group(4).replace(",", "");
float maxMult = 1;
if (maxXpS.endsWith("k")) {
maxMult = 1000;
maxXpS = maxXpS.substring(0, maxXpS.length() - 1);
} else if (maxXpS.endsWith("m")) {
maxMult = 1000000;
maxXpS = maxXpS.substring(0, maxXpS.length() - 1);
} else if (maxXpS.endsWith("b")) {
maxMult = 1000000000;
maxXpS = maxXpS.substring(0, maxXpS.length() - 1);
}
float currentXp = Float.parseFloat(currentXpS);
float maxXp = Float.parseFloat(maxXpS) * maxMult;
SkillInfo skillInfo = new SkillInfo();
skillInfo.currentXp = currentXp;
skillInfo.currentXpMax = maxXp;
skillInfo.totalXp = currentXp;
JsonArray levelingArray = leveling.getAsJsonArray("leveling_xp");
for (int i = 0; i < levelingArray.size(); i++) {
float cap = levelingArray.get(i).getAsFloat();
if (maxXp > 0 && maxXp <= cap) {
break;
}
skillInfo.totalXp += cap;
skillInfo.level++;
}
skillInfoMap.put(skillS.toLowerCase(Locale.ROOT), skillInfo);
return;
}
}
}
}
}
private Pattern tablistSkillPattern =
Pattern.compile(
" (?<type>[^ ]+) (?<level>\\d+): (?:(?<percentage>\\d+(\\.\\d+)?)%|(?<amount>[0-9,]+(\\.\\d+)?)/.*|(?<max>MAX))");
// Car Pentry
@SubscribeEvent
public void onTick(TickEvent.ClientTickEvent event) {
if (event.phase != TickEvent.Phase.END) return;
var widgetLines = TablistAPI.getOptionalWidgetLines(TablistAPI.WidgetNames.SKILLS);
for (String widgetLine : widgetLines) {
Matcher matcher = tablistSkillPattern.matcher(Utils.cleanColour(widgetLine));
if (!matcher.matches())
continue;
var type = matcher.group("type");
assert type != null;
var level = Integer.parseInt(matcher.group("level"));
var percentage = matcher.group("percentage");
var percentageAsNumber = percentage != null ? Double.parseDouble(percentage) / 100 : null;
var amount = matcher.group("amount");
var amountAsNumber = amount != null ? Double.parseDouble(amount.replace(",", "")) : null;
var isMax<
|