Skip to content

Commit 236fd17

Browse files
committedMar 8, 2025·
feat: Boosted Yaml Serializers for ItemStack & Sound objects
1 parent 38049ac commit 236fd17

File tree

4 files changed

+222
-0
lines changed

4 files changed

+222
-0
lines changed
 

‎api/build.gradle.kts

+2
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ dependencies {
8282
implementation(libs.libby)
8383

8484
implementation(project(":folia"))
85+
86+
compileOnly(libs.boosted.yaml)
8587
}
8688

8789
tasks.named<ShadowJar>("shadowJar") {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,162 @@
1+
package me.adrigamer2950.adriapi.api.serializer.boostedyaml;
2+
3+
import dev.dejvokep.boostedyaml.serialization.standard.TypeAdapter;
4+
import net.kyori.adventure.text.Component;
5+
import net.kyori.adventure.text.serializer.legacy.LegacyComponentSerializer;
6+
import org.bukkit.Material;
7+
import org.bukkit.NamespacedKey;
8+
import org.bukkit.attribute.Attribute;
9+
import org.bukkit.attribute.AttributeModifier;
10+
import org.bukkit.enchantments.Enchantment;
11+
import org.bukkit.inventory.ItemFlag;
12+
import org.bukkit.inventory.ItemStack;
13+
import org.bukkit.inventory.meta.ItemMeta;
14+
import org.jetbrains.annotations.NotNull;
15+
16+
import java.util.*;
17+
18+
@SuppressWarnings("unused")
19+
public class ItemStackSerializer implements TypeAdapter<ItemStack> {
20+
21+
@SuppressWarnings("DataFlowIssue")
22+
@Override
23+
public @NotNull Map<Object, Object> serialize(@NotNull ItemStack itemStack) {
24+
Map<Object, Object> map = new LinkedHashMap<>();
25+
26+
map.put("material", itemStack.getType().name());
27+
map.put("count", itemStack.getAmount());
28+
29+
if (itemStack.getItemMeta().hasDisplayName())
30+
map.put("name",
31+
LegacyComponentSerializer.legacyAmpersand().serialize(itemStack.getItemMeta().displayName())
32+
);
33+
34+
if (itemStack.getItemMeta().hasLore())
35+
map.put("lore", itemStack.getItemMeta().lore()
36+
.stream().map(LegacyComponentSerializer.legacyAmpersand()::serialize));
37+
38+
if (itemStack.getItemMeta().hasCustomModelData())
39+
map.put("custom_model_data", itemStack.getItemMeta().getCustomModelData());
40+
41+
if (!itemStack.getEnchantments().isEmpty()) {
42+
Map<Object, Object> enchantments = new LinkedHashMap<>();
43+
44+
for (Enchantment ench : itemStack.getEnchantments().keySet()) {
45+
int level = itemStack.getEnchantments().get(ench);
46+
47+
enchantments.put(ench.getKey().getKey(), level);
48+
}
49+
50+
map.put("enchantments", enchantments);
51+
}
52+
53+
if (!itemStack.getItemFlags().isEmpty()) {
54+
map.put("flags", itemStack.getItemFlags()
55+
.stream().map(ItemFlag::name)
56+
.toList()
57+
);
58+
}
59+
60+
if (itemStack.getItemMeta().hasAttributeModifiers()) {
61+
List<Map<Object, Object>> attributes = new LinkedList<>();
62+
63+
for (Attribute key : itemStack.getItemMeta().getAttributeModifiers().keySet()) {
64+
Map<Object, Object> attribute = new LinkedHashMap<>();
65+
66+
Collection<AttributeModifier> modifiers = itemStack.getItemMeta().getAttributeModifiers().get(key);
67+
68+
for (AttributeModifier modifier : modifiers) {
69+
Map<Object, Object> modifierMap = new LinkedHashMap<>();
70+
71+
modifierMap.put("name", modifier.getName());
72+
modifierMap.put("operation", modifier.getOperation().name());
73+
modifierMap.put("amount", modifier.getAmount());
74+
75+
attribute.put(key.name(), modifierMap);
76+
}
77+
78+
attributes.add(attribute);
79+
}
80+
81+
map.put("attributes", attributes);
82+
}
83+
84+
if (itemStack.getItemMeta().isUnbreakable())
85+
map.put("unbreakable", true);
86+
87+
return map;
88+
}
89+
90+
@SuppressWarnings("unchecked")
91+
@Override
92+
public @NotNull ItemStack deserialize(@NotNull Map<Object, Object> map) {
93+
Material mat = Material.getMaterial((String) map.get("material"));
94+
95+
if (mat == null)
96+
throw new IllegalArgumentException("Material does not exist!");
97+
98+
if (!map.containsKey("count"))
99+
throw new IllegalArgumentException("Count variable isn't set!");
100+
101+
int count = (int) map.get("count");
102+
103+
ItemStack stack = new ItemStack(mat, count);
104+
ItemMeta meta = stack.getItemMeta();
105+
106+
if (map.containsKey("name"))
107+
meta.displayName(
108+
LegacyComponentSerializer.legacyAmpersand().deserialize((String) map.get("name"))
109+
);
110+
111+
if (map.containsKey("lore"))
112+
meta.lore(
113+
((List<String>) map.get("lore")).stream()
114+
.map(s -> (Component) LegacyComponentSerializer.legacyAmpersand().deserialize(s))
115+
.toList()
116+
);
117+
118+
if (map.containsKey("custom_model_data"))
119+
meta.setCustomModelData(Integer.parseInt(map.get("custom_model_data").toString()));
120+
121+
if (map.containsKey("enchantments")) {
122+
Map<String, Integer> enchantments = (Map<String, Integer>) map.get("enchantments");
123+
124+
for (String key : enchantments.keySet()) {
125+
int level = enchantments.get(key);
126+
127+
meta.addEnchant(Objects.requireNonNull(Enchantment.getByKey(NamespacedKey.minecraft(key))), level, true);
128+
}
129+
}
130+
131+
if (map.containsKey("flags"))
132+
for (String key : (List<String>) map.get("flags"))
133+
meta.addItemFlags(ItemFlag.valueOf(key));
134+
135+
if (map.containsKey("attributes")) {
136+
List<Map<String, Map<String, Object>>> attributes = (List<Map<String, Map<String, Object>>>) map.get("attributes");
137+
138+
for (Map<String, Map<String, Object>> attribute : attributes) {
139+
for (String key : attribute.keySet()) {
140+
Map<String, Object> modifierMap = attribute.get(key);
141+
142+
String name = (String) modifierMap.get("name");
143+
AttributeModifier.Operation operation = AttributeModifier.Operation.valueOf((String) modifierMap.get("operation"));
144+
double amount = (Double) modifierMap.get("amount");
145+
146+
AttributeModifier modifier = new AttributeModifier(name, amount, operation);
147+
Attribute attr = Attribute.valueOf(key);
148+
149+
meta.addAttributeModifier(attr, modifier);
150+
}
151+
}
152+
}
153+
154+
if (map.containsKey("unbreakable")) {
155+
meta.setUnbreakable((Boolean) map.get("unbreakable"));
156+
}
157+
158+
stack.setItemMeta(meta);
159+
160+
return stack;
161+
}
162+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
package me.adrigamer2950.adriapi.api.serializer.boostedyaml;
2+
3+
import dev.dejvokep.boostedyaml.serialization.standard.TypeAdapter;
4+
import me.adrigamer2950.adriapi.api.sound.Sound;
5+
import org.bukkit.SoundCategory;
6+
import org.jetbrains.annotations.NotNull;
7+
8+
import java.util.HashMap;
9+
import java.util.Map;
10+
11+
@SuppressWarnings("unused")
12+
public class SoundSerializer implements TypeAdapter<Sound> {
13+
14+
@Override
15+
public @NotNull Map<Object, Object> serialize(@NotNull Sound sound) {
16+
Map<Object, Object> map = new HashMap<>();
17+
18+
map.put("sound", sound.getSound().name());
19+
20+
if (sound.getVolume() != 1.0) {
21+
map.put("volume", sound.getVolume());
22+
}
23+
24+
if (sound.getPitch() != 1.0) {
25+
map.put("pitch", sound.getPitch());
26+
}
27+
28+
map.put("category", sound.getCategory().name());
29+
30+
return map;
31+
}
32+
33+
@Override
34+
public @NotNull Sound deserialize(@NotNull Map<Object, Object> map) {
35+
org.bukkit.Sound sound = org.bukkit.Sound.valueOf((String) map.get("sound"));
36+
37+
float volume = 1.0f;
38+
if (map.containsKey("volume")) {
39+
volume = Float.parseFloat(map.get("volume").toString());
40+
}
41+
42+
float pitch = 1.0f;
43+
if (map.containsKey("pitch")) {
44+
pitch = Float.parseFloat(map.get("pitch").toString());
45+
}
46+
47+
SoundCategory category = SoundCategory.valueOf((String) map.get("category"));
48+
49+
return Sound.builder()
50+
.sound(sound)
51+
.volume(volume)
52+
.pitch(pitch)
53+
.category(category)
54+
.build();
55+
}
56+
}

‎gradle/libs.versions.toml

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ libby = "1.3.1"
1010
shadow = "8.3.6"
1111
paper-api = "1.18.2-R0.1-SNAPSHOT"
1212
hangar-publish-plugin = "0.1.2"
13+
boosted-yaml = "1.3.7"
1314

1415
[libraries]
1516
paper-api = { group = "io.papermc.paper", name = "paper-api", version.ref = "paper-api" }
@@ -18,6 +19,7 @@ lombok = { group = "org.projectlombok", name = "lombok", version.ref = "lombok"
1819
jansi = { group = "org.fusesource.jansi", name = "jansi", version.ref = "jansi" }
1920
jetbrains-annotations = { group = "org.jetbrains", name = "annotations", version.ref = "jetbrains-annotations" }
2021
libby = { group = "net.byteflux", name = "libby-bukkit", version.ref = "libby" }
22+
boosted-yaml = { group = "dev.dejvokep", name = "boosted-yaml", version.ref = "boosted-yaml" }
2123

2224
[plugins]
2325
plugin-yml = { id = "net.minecrell.plugin-yml.bukkit", version.ref = "plugin-yml" }

0 commit comments

Comments
 (0)
Please sign in to comment.