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
266
267
268
|
package com.anthonyhilyard.iceberg.util;
import net.minecraft.world.item.ItemStack;
import java.util.HashMap;
import java.util.Map;
import java.util.function.BiPredicate;
import java.util.List;
import net.minecraft.client.Minecraft;
import net.minecraft.nbt.CompoundTag;
import net.minecraft.nbt.NumericTag;
import net.minecraft.nbt.Tag;
import net.minecraft.network.chat.Component;
import net.minecraft.network.chat.TextColor;
import net.minecraft.resources.ResourceLocation;
import net.minecraft.tags.ItemTags;
import net.minecraft.world.item.Rarity;
import net.minecraft.world.item.TooltipFlag;
public class Selectors
{
private static Map<String, Rarity> rarities = new HashMap<String, Rarity>() {{
put("common", Rarity.COMMON);
put("uncommon", Rarity.UNCOMMON);
put("rare", Rarity.RARE);
put("epic", Rarity.EPIC);
}};
private static Map<String, BiPredicate<Tag, String>> nbtComparators = new HashMap<String, BiPredicate<Tag, String>>() {{
put("=", (tag, value) -> tag.getAsString().contentEquals(value));
put("!=", (tag, value) -> !tag.getAsString().contentEquals(value));
put(">", (tag, value) -> {
try
{
double parsedValue = Double.valueOf(value);
if (tag instanceof NumericTag)
{
return ((NumericTag)tag).getAsDouble() > parsedValue;
}
else
{
return false;
}
}
catch (Exception e)
{
return false;
}
});
put("<", (tag, value) -> {
try
{
double parsedValue = Double.valueOf(value);
if (tag instanceof NumericTag)
{
return ((NumericTag)tag).getAsDouble() < parsedValue;
}
else
{
return false;
}
}
catch (Exception e)
{
return false;
}
});
}};
/**
* Returns true if this selector is syntactically valid.
* @param value The selector.
* @return True if the selector syntax is valid, false otherwise.
*/
public static boolean validateSelector(String value)
{
// This is a tag, which should be a resource location.
if (value.startsWith("$"))
{
return ResourceLocation.isValidResourceLocation(value.substring(1));
}
// Mod IDs need to conform to this regex: ^[a-z][a-z0-9_-]{1,63}$
else if (value.startsWith("@"))
{
return value.substring(1).matches("^[a-z][a-z0-9_-]{1,63}$");
}
// If this is a rarity, make sure it's a valid one.
else if (value.startsWith("!"))
{
return rarities.keySet().contains(value.substring(1).toLowerCase());
}
// If this is a hex color, ensure it's in a valid format.
else if (value.startsWith("#"))
{
return TextColor.parseColor(value) != null;
}
// Text matches are always considered valid.
else if (value.startsWith("%") || value.startsWith("^"))
{
return true;
}
// Any text is valid for NBT tag selectors.
else if (value.startsWith("&"))
{
return true;
}
// Otherwise it's an item, so just make sure it's a value resource location.
else
{
return value == null || value == "" || ResourceLocation.isValidResourceLocation(value);
}
}
/**
* Returns true if the given item is matched by the given selector.
* @param item An ItemStack instance of an item to check.
* @param selector A selector string to check against.
* @return True if the item matches, false otherwise.
*/
public static boolean itemMatches(ItemStack item, String selector)
{
String itemResourceLocation = item.getItem().getRegistryName().toString();
// Item ID
if (selector.equals(itemResourceLocation) || selector.equals(itemResourceLocation.replace("minecraft:", "")))
{
return true;
}
// Item name color
else if (selector.startsWith("#"))
{
TextColor entryColor = TextColor.parseColor(selector);
if (entryColor != null && entryColor.equals(ItemColor.getColorForItem(item, TextColor.fromRgb(0xFFFFFF))))
{
return true;
}
}
// Vanilla rarity
else if (selector.startsWith("!"))
{
if (item.getRarity() == rarities.get(selector.substring(1)))
{
return true;
}
}
// Mod ID
else if (selector.startsWith("@"))
{
if (itemResourceLocation.startsWith(selector.substring(1) + ":"))
{
return true;
}
}
// Item tag
else if (selector.startsWith("$"))
{
if (ItemTags.getAllTags().getTagOrEmpty(new ResourceLocation(selector.substring(1))).getValues().contains(item.getItem()))
{
return true;
}
}
// Item display name
else if (selector.startsWith("%"))
{
if (item.getDisplayName().getString().contains(selector.substring(1)))
{
return true;
}
}
// Tooltip text
else if (selector.startsWith("^"))
{
Minecraft mc = Minecraft.getInstance();
List<Component> lines = item.getTooltipLines(mc.player, TooltipFlag.Default.ADVANCED);
String tooltipText = "";
// Skip title line.
for (int n = 1; n < lines.size(); n++)
{
tooltipText += lines.get(n).getString() + '\n';
}
if (tooltipText.contains(selector.substring(1)))
{
return true;
}
}
// NBT tag
else if (selector.startsWith("&"))
{
String tagName = selector.substring(1);
String tagValue = null;
BiPredicate<Tag, String> valueChecker = null;
// This implementation means tag names containing and comparator strings can't be compared.
// Hopefully this isn't common.
for (String comparator : nbtComparators.keySet())
{
if (tagName.contains(comparator))
{
valueChecker = nbtComparators.get(comparator);
String[] components = tagName.split(comparator);
tagName = components[0];
if (components.length > 1)
{
tagValue = components[1];
}
break;
}
}
// Look for a tag matching the given name.
Tag matchedTag = getSubtag(item.getTag(), tagName);
if (matchedTag != null)
{
// A tag value of null means that we are just looking for the presence of this tag.
if (tagValue == null)
{
return true;
}
// Otherwise, we will use the provided comparator.
else
{
if (valueChecker != null)
{
return valueChecker.test(matchedTag, tagValue);
}
}
}
}
return false;
}
/**
* Retrieves the first inner tag with the given key, or null if there is no match.
*/
private static Tag getSubtag(CompoundTag tag, String key)
{
if (tag == null)
{
return null;
}
if (tag.contains(key))
{
return tag.get(key);
}
else
{
for (String innerKey : tag.getAllKeys())
{
if (tag.getTagType(innerKey) == Tag.TAG_COMPOUND)
{
Tag innerTag = getSubtag(tag.getCompound(innerKey), key);
if (innerTag != null)
{
return innerTag;
}
}
}
return null;
}
}
}
|