PocketMine-MP 5.18.2 git-00e39821f06a4b6d728d35053c2621dbb19369ff
ItemSerializerDeserializerRegistrar.php
1<?php
2
3/*
4 *
5 * ____ _ _ __ __ _ __ __ ____
6 * | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
7 * | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
8 * | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
9 * |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
10 *
11 * This program is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License as published by
13 * the Free Software Foundation, either version 3 of the License, or
14 * (at your option) any later version.
15 *
16 * @author PocketMine Team
17 * @link http://www.pocketmine.net/
18 *
19 *
20 */
21
22declare(strict_types=1);
23
24namespace pocketmine\data\bedrock\item;
25
29use pocketmine\block\utils\DyeColor;
47
49
50 public function __construct(
51 private ?ItemDeserializer $deserializer,
52 private ?ItemSerializer $serializer
53 ){
54 $this->register1to1BlockMappings();
55 $this->register1to1ItemMappings();
56 $this->register1to1BlockWithMetaMappings();
57 $this->register1to1ItemWithMetaMappings();
58 $this->register1ToNItemMappings();
59 $this->registerMiscItemMappings();
60 }
61
62 public function map1to1Item(string $id, Item $item) : void{
63 $this->deserializer?->map($id, fn() => clone $item);
64 $this->serializer?->map($item, fn() => new Data($id));
65 }
66
73 public function map1to1ItemWithMeta(string $id, Item $item, \Closure $deserializeMeta, \Closure $serializeMeta) : void{
74 $this->deserializer?->map($id, function(Data $data) use ($item, $deserializeMeta) : Item{
75 $result = clone $item;
76 $deserializeMeta($result, $data->getMeta());
77 return $result;
78 });
79 $this->serializer?->map($item, function(Item $item) use ($id, $serializeMeta) : Data{
81 $meta = $serializeMeta($item);
82 return new Data($id, $meta);
83 });
84 }
85
86 public function map1to1Block(string $id, Block $block) : void{
87 $this->deserializer?->mapBlock($id, fn() => $block);
88 $this->serializer?->mapBlock($block, fn() => new Data($id));
89 }
90
97 public function map1to1BlockWithMeta(string $id, Block $block, \Closure $deserializeMeta, \Closure $serializeMeta) : void{
98 $this->deserializer?->mapBlock($id, function(Data $data) use ($block, $deserializeMeta) : Block{
99 $result = clone $block;
100 $deserializeMeta($result, $data->getMeta());
101 return $result;
102 });
103 $this->serializer?->mapBlock($block, function(Block $block) use ($id, $serializeMeta) : Data{
104 $meta = $serializeMeta($block);
105 return new Data($id, $meta);
106 });
107 }
108
113 public function map1ToNItem(string $id, array $items) : void{
114 $this->deserializer?->map($id, function(Data $data) use ($items) : Item{
115 $result = $items[$data->getMeta()] ?? null;
116 if($result === null){
117 throw new ItemTypeDeserializeException("Unhandled meta value " . $data->getMeta() . " for item ID " . $data->getName());
118 }
119 return clone $result;
120 });
121 foreach($items as $meta => $item){
122 $this->serializer?->map($item, fn() => new Data($id, $meta));
123 }
124 }
125
131 private function register1to1BlockMappings() : void{
132 $this->map1to1Block(Ids::ACACIA_DOOR, Blocks::ACACIA_DOOR());
133 $this->map1to1Block(Ids::BIRCH_DOOR, Blocks::BIRCH_DOOR());
134 $this->map1to1Block(Ids::BREWING_STAND, Blocks::BREWING_STAND());
135 $this->map1to1Block(Ids::CAKE, Blocks::CAKE());
136 $this->map1to1Block(Ids::CAULDRON, Blocks::CAULDRON());
137 $this->map1to1Block(Ids::CHAIN, Blocks::CHAIN());
138 $this->map1to1Block(Ids::CHERRY_DOOR, Blocks::CHERRY_DOOR());
139 $this->map1to1Block(Ids::COMPARATOR, Blocks::REDSTONE_COMPARATOR());
140 $this->map1to1Block(Ids::CRIMSON_DOOR, Blocks::CRIMSON_DOOR());
141 $this->map1to1Block(Ids::DARK_OAK_DOOR, Blocks::DARK_OAK_DOOR());
142 $this->map1to1Block(Ids::FLOWER_POT, Blocks::FLOWER_POT());
143 $this->map1to1Block(Ids::FRAME, Blocks::ITEM_FRAME());
144 $this->map1to1Block(Ids::GLOW_FRAME, Blocks::GLOWING_ITEM_FRAME());
145 $this->map1to1Block(Ids::HOPPER, Blocks::HOPPER());
146 $this->map1to1Block(Ids::IRON_DOOR, Blocks::IRON_DOOR());
147 $this->map1to1Block(Ids::JUNGLE_DOOR, Blocks::JUNGLE_DOOR());
148 $this->map1to1Block(Ids::MANGROVE_DOOR, Blocks::MANGROVE_DOOR());
149 $this->map1to1Block(Ids::NETHER_WART, Blocks::NETHER_WART());
150 $this->map1to1Block(Ids::REPEATER, Blocks::REDSTONE_REPEATER());
151 $this->map1to1Block(Ids::SPRUCE_DOOR, Blocks::SPRUCE_DOOR());
152 $this->map1to1Block(Ids::SUGAR_CANE, Blocks::SUGARCANE());
153 $this->map1to1Block(Ids::WARPED_DOOR, Blocks::WARPED_DOOR());
154 $this->map1to1Block(Ids::WOODEN_DOOR, Blocks::OAK_DOOR());
155 }
156
160 private function register1to1ItemMappings() : void{
161 $this->map1to1Item(Ids::ACACIA_BOAT, Items::ACACIA_BOAT());
162 $this->map1to1Item(Ids::ACACIA_SIGN, Items::ACACIA_SIGN());
163 $this->map1to1Item(Ids::AMETHYST_SHARD, Items::AMETHYST_SHARD());
164 $this->map1to1Item(Ids::APPLE, Items::APPLE());
165 $this->map1to1Item(Ids::BAKED_POTATO, Items::BAKED_POTATO());
166 $this->map1to1Item(Ids::BEEF, Items::RAW_BEEF());
167 $this->map1to1Item(Ids::BEETROOT, Items::BEETROOT());
168 $this->map1to1Item(Ids::BEETROOT_SEEDS, Items::BEETROOT_SEEDS());
169 $this->map1to1Item(Ids::BEETROOT_SOUP, Items::BEETROOT_SOUP());
170 $this->map1to1Item(Ids::BIRCH_BOAT, Items::BIRCH_BOAT());
171 $this->map1to1Item(Ids::BIRCH_SIGN, Items::BIRCH_SIGN());
172 $this->map1to1Item(Ids::BLAZE_POWDER, Items::BLAZE_POWDER());
173 $this->map1to1Item(Ids::BLAZE_ROD, Items::BLAZE_ROD());
174 $this->map1to1Item(Ids::BLEACH, Items::BLEACH());
175 $this->map1to1Item(Ids::BONE, Items::BONE());
176 $this->map1to1Item(Ids::BONE_MEAL, Items::BONE_MEAL());
177 $this->map1to1Item(Ids::BOOK, Items::BOOK());
178 $this->map1to1Item(Ids::BOW, Items::BOW());
179 $this->map1to1Item(Ids::BOWL, Items::BOWL());
180 $this->map1to1Item(Ids::BREAD, Items::BREAD());
181 $this->map1to1Item(Ids::BRICK, Items::BRICK());
182 $this->map1to1Item(Ids::BUCKET, Items::BUCKET());
183 $this->map1to1Item(Ids::CARROT, Items::CARROT());
184 $this->map1to1Item(Ids::CHAINMAIL_BOOTS, Items::CHAINMAIL_BOOTS());
185 $this->map1to1Item(Ids::CHAINMAIL_CHESTPLATE, Items::CHAINMAIL_CHESTPLATE());
186 $this->map1to1Item(Ids::CHAINMAIL_HELMET, Items::CHAINMAIL_HELMET());
187 $this->map1to1Item(Ids::CHAINMAIL_LEGGINGS, Items::CHAINMAIL_LEGGINGS());
188 $this->map1to1Item(Ids::CHARCOAL, Items::CHARCOAL());
189 $this->map1to1Item(Ids::CHERRY_SIGN, Items::CHERRY_SIGN());
190 $this->map1to1Item(Ids::CHICKEN, Items::RAW_CHICKEN());
191 $this->map1to1Item(Ids::CHORUS_FRUIT, Items::CHORUS_FRUIT());
192 $this->map1to1Item(Ids::CLAY_BALL, Items::CLAY());
193 $this->map1to1Item(Ids::CLOCK, Items::CLOCK());
194 $this->map1to1Item(Ids::COAL, Items::COAL());
195 $this->map1to1Item(Ids::COAST_ARMOR_TRIM_SMITHING_TEMPLATE, Items::COAST_ARMOR_TRIM_SMITHING_TEMPLATE());
196 $this->map1to1Item(Ids::COCOA_BEANS, Items::COCOA_BEANS());
197 $this->map1to1Item(Ids::COD, Items::RAW_FISH());
198 $this->map1to1Item(Ids::COMPASS, Items::COMPASS());
199 $this->map1to1Item(Ids::COOKED_BEEF, Items::STEAK());
200 $this->map1to1Item(Ids::COOKED_CHICKEN, Items::COOKED_CHICKEN());
201 $this->map1to1Item(Ids::COOKED_COD, Items::COOKED_FISH());
202 $this->map1to1Item(Ids::COOKED_MUTTON, Items::COOKED_MUTTON());
203 $this->map1to1Item(Ids::COOKED_PORKCHOP, Items::COOKED_PORKCHOP());
204 $this->map1to1Item(Ids::COOKED_RABBIT, Items::COOKED_RABBIT());
205 $this->map1to1Item(Ids::COOKED_SALMON, Items::COOKED_SALMON());
206 $this->map1to1Item(Ids::COOKIE, Items::COOKIE());
207 $this->map1to1Item(Ids::COPPER_INGOT, Items::COPPER_INGOT());
208 $this->map1to1Item(Ids::CRIMSON_SIGN, Items::CRIMSON_SIGN());
209 $this->map1to1Item(Ids::DARK_OAK_BOAT, Items::DARK_OAK_BOAT());
210 $this->map1to1Item(Ids::DARK_OAK_SIGN, Items::DARK_OAK_SIGN());
211 $this->map1to1Item(Ids::DIAMOND, Items::DIAMOND());
212 $this->map1to1Item(Ids::DIAMOND_AXE, Items::DIAMOND_AXE());
213 $this->map1to1Item(Ids::DIAMOND_BOOTS, Items::DIAMOND_BOOTS());
214 $this->map1to1Item(Ids::DIAMOND_CHESTPLATE, Items::DIAMOND_CHESTPLATE());
215 $this->map1to1Item(Ids::DIAMOND_HELMET, Items::DIAMOND_HELMET());
216 $this->map1to1Item(Ids::DIAMOND_HOE, Items::DIAMOND_HOE());
217 $this->map1to1Item(Ids::DIAMOND_LEGGINGS, Items::DIAMOND_LEGGINGS());
218 $this->map1to1Item(Ids::DIAMOND_PICKAXE, Items::DIAMOND_PICKAXE());
219 $this->map1to1Item(Ids::DIAMOND_SHOVEL, Items::DIAMOND_SHOVEL());
220 $this->map1to1Item(Ids::DIAMOND_SWORD, Items::DIAMOND_SWORD());
221 $this->map1to1Item(Ids::DISC_FRAGMENT_5, Items::DISC_FRAGMENT_5());
222 $this->map1to1Item(Ids::DRAGON_BREATH, Items::DRAGON_BREATH());
223 $this->map1to1Item(Ids::DRIED_KELP, Items::DRIED_KELP());
224 $this->map1to1Item(Ids::DUNE_ARMOR_TRIM_SMITHING_TEMPLATE, Items::DUNE_ARMOR_TRIM_SMITHING_TEMPLATE());
225 $this->map1to1Item(Ids::ECHO_SHARD, Items::ECHO_SHARD());
226 $this->map1to1Item(Ids::EGG, Items::EGG());
227 $this->map1to1Item(Ids::EMERALD, Items::EMERALD());
228 $this->map1to1Item(Ids::ENCHANTED_BOOK, Items::ENCHANTED_BOOK());
229 $this->map1to1Item(Ids::ENCHANTED_GOLDEN_APPLE, Items::ENCHANTED_GOLDEN_APPLE());
230 $this->map1to1Item(Ids::ENDER_PEARL, Items::ENDER_PEARL());
231 $this->map1to1Item(Ids::EXPERIENCE_BOTTLE, Items::EXPERIENCE_BOTTLE());
232 $this->map1to1Item(Ids::EYE_ARMOR_TRIM_SMITHING_TEMPLATE, Items::EYE_ARMOR_TRIM_SMITHING_TEMPLATE());
233 $this->map1to1Item(Ids::FEATHER, Items::FEATHER());
234 $this->map1to1Item(Ids::FERMENTED_SPIDER_EYE, Items::FERMENTED_SPIDER_EYE());
235 $this->map1to1Item(Ids::FIRE_CHARGE, Items::FIRE_CHARGE());
236 $this->map1to1Item(Ids::FISHING_ROD, Items::FISHING_ROD());
237 $this->map1to1Item(Ids::FLINT, Items::FLINT());
238 $this->map1to1Item(Ids::FLINT_AND_STEEL, Items::FLINT_AND_STEEL());
239 $this->map1to1Item(Ids::GHAST_TEAR, Items::GHAST_TEAR());
240 $this->map1to1Item(Ids::GLASS_BOTTLE, Items::GLASS_BOTTLE());
241 $this->map1to1Item(Ids::GLISTERING_MELON_SLICE, Items::GLISTERING_MELON());
242 $this->map1to1Item(Ids::GLOW_BERRIES, Items::GLOW_BERRIES());
243 $this->map1to1Item(Ids::GLOW_INK_SAC, Items::GLOW_INK_SAC());
244 $this->map1to1Item(Ids::GLOWSTONE_DUST, Items::GLOWSTONE_DUST());
245 $this->map1to1Item(Ids::GOLD_INGOT, Items::GOLD_INGOT());
246 $this->map1to1Item(Ids::GOLD_NUGGET, Items::GOLD_NUGGET());
247 $this->map1to1Item(Ids::GOLDEN_APPLE, Items::GOLDEN_APPLE());
248 $this->map1to1Item(Ids::GOLDEN_AXE, Items::GOLDEN_AXE());
249 $this->map1to1Item(Ids::GOLDEN_BOOTS, Items::GOLDEN_BOOTS());
250 $this->map1to1Item(Ids::GOLDEN_CARROT, Items::GOLDEN_CARROT());
251 $this->map1to1Item(Ids::GOLDEN_CHESTPLATE, Items::GOLDEN_CHESTPLATE());
252 $this->map1to1Item(Ids::GOLDEN_HELMET, Items::GOLDEN_HELMET());
253 $this->map1to1Item(Ids::GOLDEN_HOE, Items::GOLDEN_HOE());
254 $this->map1to1Item(Ids::GOLDEN_LEGGINGS, Items::GOLDEN_LEGGINGS());
255 $this->map1to1Item(Ids::GOLDEN_PICKAXE, Items::GOLDEN_PICKAXE());
256 $this->map1to1Item(Ids::GOLDEN_SHOVEL, Items::GOLDEN_SHOVEL());
257 $this->map1to1Item(Ids::GOLDEN_SWORD, Items::GOLDEN_SWORD());
258 $this->map1to1Item(Ids::GUNPOWDER, Items::GUNPOWDER());
259 $this->map1to1Item(Ids::HEART_OF_THE_SEA, Items::HEART_OF_THE_SEA());
260 $this->map1to1Item(Ids::HONEY_BOTTLE, Items::HONEY_BOTTLE());
261 $this->map1to1Item(Ids::HONEYCOMB, Items::HONEYCOMB());
262 $this->map1to1Item(Ids::HOST_ARMOR_TRIM_SMITHING_TEMPLATE, Items::HOST_ARMOR_TRIM_SMITHING_TEMPLATE());
263 $this->map1to1Item(Ids::INK_SAC, Items::INK_SAC());
264 $this->map1to1Item(Ids::IRON_AXE, Items::IRON_AXE());
265 $this->map1to1Item(Ids::IRON_BOOTS, Items::IRON_BOOTS());
266 $this->map1to1Item(Ids::IRON_CHESTPLATE, Items::IRON_CHESTPLATE());
267 $this->map1to1Item(Ids::IRON_HELMET, Items::IRON_HELMET());
268 $this->map1to1Item(Ids::IRON_HOE, Items::IRON_HOE());
269 $this->map1to1Item(Ids::IRON_INGOT, Items::IRON_INGOT());
270 $this->map1to1Item(Ids::IRON_LEGGINGS, Items::IRON_LEGGINGS());
271 $this->map1to1Item(Ids::IRON_NUGGET, Items::IRON_NUGGET());
272 $this->map1to1Item(Ids::IRON_PICKAXE, Items::IRON_PICKAXE());
273 $this->map1to1Item(Ids::IRON_SHOVEL, Items::IRON_SHOVEL());
274 $this->map1to1Item(Ids::IRON_SWORD, Items::IRON_SWORD());
275 $this->map1to1Item(Ids::JUNGLE_BOAT, Items::JUNGLE_BOAT());
276 $this->map1to1Item(Ids::JUNGLE_SIGN, Items::JUNGLE_SIGN());
277 $this->map1to1Item(Ids::LAPIS_LAZULI, Items::LAPIS_LAZULI());
278 $this->map1to1Item(Ids::LAVA_BUCKET, Items::LAVA_BUCKET());
279 $this->map1to1Item(Ids::LEATHER, Items::LEATHER());
280 $this->map1to1Item(Ids::LEATHER_BOOTS, Items::LEATHER_BOOTS());
281 $this->map1to1Item(Ids::LEATHER_CHESTPLATE, Items::LEATHER_TUNIC());
282 $this->map1to1Item(Ids::LEATHER_HELMET, Items::LEATHER_CAP());
283 $this->map1to1Item(Ids::LEATHER_LEGGINGS, Items::LEATHER_PANTS());
284 $this->map1to1Item(Ids::MAGMA_CREAM, Items::MAGMA_CREAM());
285 $this->map1to1Item(Ids::MANGROVE_BOAT, Items::MANGROVE_BOAT());
286 $this->map1to1Item(Ids::MANGROVE_SIGN, Items::MANGROVE_SIGN());
287 $this->map1to1Item(Ids::MELON_SEEDS, Items::MELON_SEEDS());
288 $this->map1to1Item(Ids::MELON_SLICE, Items::MELON());
289 $this->map1to1Item(Ids::MILK_BUCKET, Items::MILK_BUCKET());
290 $this->map1to1Item(Ids::MINECART, Items::MINECART());
291 $this->map1to1Item(Ids::MUSHROOM_STEW, Items::MUSHROOM_STEW());
292 $this->map1to1Item(Ids::MUSIC_DISC_11, Items::RECORD_11());
293 $this->map1to1Item(Ids::MUSIC_DISC_13, Items::RECORD_13());
294 $this->map1to1Item(Ids::MUSIC_DISC_5, Items::RECORD_5());
295 $this->map1to1Item(Ids::MUSIC_DISC_BLOCKS, Items::RECORD_BLOCKS());
296 $this->map1to1Item(Ids::MUSIC_DISC_CAT, Items::RECORD_CAT());
297 $this->map1to1Item(Ids::MUSIC_DISC_CHIRP, Items::RECORD_CHIRP());
298 $this->map1to1Item(Ids::MUSIC_DISC_FAR, Items::RECORD_FAR());
299 $this->map1to1Item(Ids::MUSIC_DISC_MALL, Items::RECORD_MALL());
300 $this->map1to1Item(Ids::MUSIC_DISC_MELLOHI, Items::RECORD_MELLOHI());
301 $this->map1to1Item(Ids::MUSIC_DISC_OTHERSIDE, Items::RECORD_OTHERSIDE());
302 $this->map1to1Item(Ids::MUSIC_DISC_PIGSTEP, Items::RECORD_PIGSTEP());
303 $this->map1to1Item(Ids::MUSIC_DISC_STAL, Items::RECORD_STAL());
304 $this->map1to1Item(Ids::MUSIC_DISC_STRAD, Items::RECORD_STRAD());
305 $this->map1to1Item(Ids::MUSIC_DISC_WAIT, Items::RECORD_WAIT());
306 $this->map1to1Item(Ids::MUSIC_DISC_WARD, Items::RECORD_WARD());
307 $this->map1to1Item(Ids::MUTTON, Items::RAW_MUTTON());
308 $this->map1to1Item(Ids::NAME_TAG, Items::NAME_TAG());
309 $this->map1to1Item(Ids::NAUTILUS_SHELL, Items::NAUTILUS_SHELL());
310 $this->map1to1Item(Ids::NETHER_STAR, Items::NETHER_STAR());
311 $this->map1to1Item(Ids::NETHERBRICK, Items::NETHER_BRICK());
312 $this->map1to1Item(Ids::NETHERITE_AXE, Items::NETHERITE_AXE());
313 $this->map1to1Item(Ids::NETHERITE_BOOTS, Items::NETHERITE_BOOTS());
314 $this->map1to1Item(Ids::NETHERITE_CHESTPLATE, Items::NETHERITE_CHESTPLATE());
315 $this->map1to1Item(Ids::NETHERITE_HELMET, Items::NETHERITE_HELMET());
316 $this->map1to1Item(Ids::NETHERITE_HOE, Items::NETHERITE_HOE());
317 $this->map1to1Item(Ids::NETHERITE_INGOT, Items::NETHERITE_INGOT());
318 $this->map1to1Item(Ids::NETHERITE_LEGGINGS, Items::NETHERITE_LEGGINGS());
319 $this->map1to1Item(Ids::NETHERITE_PICKAXE, Items::NETHERITE_PICKAXE());
320 $this->map1to1Item(Ids::NETHERITE_SCRAP, Items::NETHERITE_SCRAP());
321 $this->map1to1Item(Ids::NETHERITE_SHOVEL, Items::NETHERITE_SHOVEL());
322 $this->map1to1Item(Ids::NETHERITE_SWORD, Items::NETHERITE_SWORD());
323 $this->map1to1Item(Ids::NETHERITE_UPGRADE_SMITHING_TEMPLATE, Items::NETHERITE_UPGRADE_SMITHING_TEMPLATE());
324 $this->map1to1Item(Ids::OAK_BOAT, Items::OAK_BOAT());
325 $this->map1to1Item(Ids::OAK_SIGN, Items::OAK_SIGN());
326 $this->map1to1Item(Ids::PAINTING, Items::PAINTING());
327 $this->map1to1Item(Ids::PAPER, Items::PAPER());
328 $this->map1to1Item(Ids::PHANTOM_MEMBRANE, Items::PHANTOM_MEMBRANE());
329 $this->map1to1Item(Ids::PITCHER_POD, Items::PITCHER_POD());
330 $this->map1to1Item(Ids::POISONOUS_POTATO, Items::POISONOUS_POTATO());
331 $this->map1to1Item(Ids::POPPED_CHORUS_FRUIT, Items::POPPED_CHORUS_FRUIT());
332 $this->map1to1Item(Ids::PORKCHOP, Items::RAW_PORKCHOP());
333 $this->map1to1Item(Ids::POTATO, Items::POTATO());
334 $this->map1to1Item(Ids::PRISMARINE_CRYSTALS, Items::PRISMARINE_CRYSTALS());
335 $this->map1to1Item(Ids::PRISMARINE_SHARD, Items::PRISMARINE_SHARD());
336 $this->map1to1Item(Ids::PUFFERFISH, Items::PUFFERFISH());
337 $this->map1to1Item(Ids::PUMPKIN_PIE, Items::PUMPKIN_PIE());
338 $this->map1to1Item(Ids::PUMPKIN_SEEDS, Items::PUMPKIN_SEEDS());
339 $this->map1to1Item(Ids::QUARTZ, Items::NETHER_QUARTZ());
340 $this->map1to1Item(Ids::RABBIT, Items::RAW_RABBIT());
341 $this->map1to1Item(Ids::RABBIT_FOOT, Items::RABBIT_FOOT());
342 $this->map1to1Item(Ids::RABBIT_HIDE, Items::RABBIT_HIDE());
343 $this->map1to1Item(Ids::RABBIT_STEW, Items::RABBIT_STEW());
344 $this->map1to1Item(Ids::RAISER_ARMOR_TRIM_SMITHING_TEMPLATE, Items::RAISER_ARMOR_TRIM_SMITHING_TEMPLATE());
345 $this->map1to1Item(Ids::RAW_COPPER, Items::RAW_COPPER());
346 $this->map1to1Item(Ids::RAW_GOLD, Items::RAW_GOLD());
347 $this->map1to1Item(Ids::RAW_IRON, Items::RAW_IRON());
348 $this->map1to1Item(Ids::REDSTONE, Items::REDSTONE_DUST());
349 $this->map1to1Item(Ids::RIB_ARMOR_TRIM_SMITHING_TEMPLATE, Items::RIB_ARMOR_TRIM_SMITHING_TEMPLATE());
350 $this->map1to1Item(Ids::ROTTEN_FLESH, Items::ROTTEN_FLESH());
351 $this->map1to1Item(Ids::SALMON, Items::RAW_SALMON());
352 $this->map1to1Item(Ids::TURTLE_SCUTE, Items::SCUTE());
353 $this->map1to1Item(Ids::SENTRY_ARMOR_TRIM_SMITHING_TEMPLATE, Items::SENTRY_ARMOR_TRIM_SMITHING_TEMPLATE());
354 $this->map1to1Item(Ids::SHAPER_ARMOR_TRIM_SMITHING_TEMPLATE, Items::SHAPER_ARMOR_TRIM_SMITHING_TEMPLATE());
355 $this->map1to1Item(Ids::SHEARS, Items::SHEARS());
356 $this->map1to1Item(Ids::SHULKER_SHELL, Items::SHULKER_SHELL());
357 $this->map1to1Item(Ids::SILENCE_ARMOR_TRIM_SMITHING_TEMPLATE, Items::SILENCE_ARMOR_TRIM_SMITHING_TEMPLATE());
358 $this->map1to1Item(Ids::SLIME_BALL, Items::SLIMEBALL());
359 $this->map1to1Item(Ids::SNOUT_ARMOR_TRIM_SMITHING_TEMPLATE, Items::SNOUT_ARMOR_TRIM_SMITHING_TEMPLATE());
360 $this->map1to1Item(Ids::SNOWBALL, Items::SNOWBALL());
361 $this->map1to1Item(Ids::SPIDER_EYE, Items::SPIDER_EYE());
362 $this->map1to1Item(Ids::SPIRE_ARMOR_TRIM_SMITHING_TEMPLATE, Items::SPIRE_ARMOR_TRIM_SMITHING_TEMPLATE());
363 $this->map1to1Item(Ids::SPRUCE_BOAT, Items::SPRUCE_BOAT());
364 $this->map1to1Item(Ids::SPRUCE_SIGN, Items::SPRUCE_SIGN());
365 $this->map1to1Item(Ids::SPYGLASS, Items::SPYGLASS());
366 $this->map1to1Item(Ids::SQUID_SPAWN_EGG, Items::SQUID_SPAWN_EGG());
367 $this->map1to1Item(Ids::STICK, Items::STICK());
368 $this->map1to1Item(Ids::STONE_AXE, Items::STONE_AXE());
369 $this->map1to1Item(Ids::STONE_HOE, Items::STONE_HOE());
370 $this->map1to1Item(Ids::STONE_PICKAXE, Items::STONE_PICKAXE());
371 $this->map1to1Item(Ids::STONE_SHOVEL, Items::STONE_SHOVEL());
372 $this->map1to1Item(Ids::STONE_SWORD, Items::STONE_SWORD());
373 $this->map1to1Item(Ids::STRING, Items::STRING());
374 $this->map1to1Item(Ids::SUGAR, Items::SUGAR());
375 $this->map1to1Item(Ids::SWEET_BERRIES, Items::SWEET_BERRIES());
376 $this->map1to1Item(Ids::TORCHFLOWER_SEEDS, Items::TORCHFLOWER_SEEDS());
377 $this->map1to1Item(Ids::TIDE_ARMOR_TRIM_SMITHING_TEMPLATE, Items::TIDE_ARMOR_TRIM_SMITHING_TEMPLATE());
378 $this->map1to1Item(Ids::TOTEM_OF_UNDYING, Items::TOTEM());
379 $this->map1to1Item(Ids::TROPICAL_FISH, Items::CLOWNFISH());
380 $this->map1to1Item(Ids::TURTLE_HELMET, Items::TURTLE_HELMET());
381 $this->map1to1Item(Ids::VEX_ARMOR_TRIM_SMITHING_TEMPLATE, Items::VEX_ARMOR_TRIM_SMITHING_TEMPLATE());
382 $this->map1to1Item(Ids::VILLAGER_SPAWN_EGG, Items::VILLAGER_SPAWN_EGG());
383 $this->map1to1Item(Ids::WARD_ARMOR_TRIM_SMITHING_TEMPLATE, Items::WARD_ARMOR_TRIM_SMITHING_TEMPLATE());
384 $this->map1to1Item(Ids::WARPED_SIGN, Items::WARPED_SIGN());
385 $this->map1to1Item(Ids::WATER_BUCKET, Items::WATER_BUCKET());
386 $this->map1to1Item(Ids::WAYFINDER_ARMOR_TRIM_SMITHING_TEMPLATE, Items::WAYFINDER_ARMOR_TRIM_SMITHING_TEMPLATE());
387 $this->map1to1Item(Ids::WHEAT, Items::WHEAT());
388 $this->map1to1Item(Ids::WHEAT_SEEDS, Items::WHEAT_SEEDS());
389 $this->map1to1Item(Ids::WILD_ARMOR_TRIM_SMITHING_TEMPLATE, Items::WILD_ARMOR_TRIM_SMITHING_TEMPLATE());
390 $this->map1to1Item(Ids::WOODEN_AXE, Items::WOODEN_AXE());
391 $this->map1to1Item(Ids::WOODEN_HOE, Items::WOODEN_HOE());
392 $this->map1to1Item(Ids::WOODEN_PICKAXE, Items::WOODEN_PICKAXE());
393 $this->map1to1Item(Ids::WOODEN_SHOVEL, Items::WOODEN_SHOVEL());
394 $this->map1to1Item(Ids::WOODEN_SWORD, Items::WOODEN_SWORD());
395 $this->map1to1Item(Ids::WRITABLE_BOOK, Items::WRITABLE_BOOK());
396 $this->map1to1Item(Ids::WRITTEN_BOOK, Items::WRITTEN_BOOK());
397 $this->map1to1Item(Ids::ZOMBIE_SPAWN_EGG, Items::ZOMBIE_SPAWN_EGG());
398 }
399
406 private function register1ToNItemMappings() : void{
407 $this->map1ToNItem(Ids::ARROW, [
408 0 => Items::ARROW(),
409 //TODO: tipped arrows
410 ]);
411 $this->map1ToNItem(Ids::COMPOUND, [
412 CompoundTypeIds::SALT => Items::CHEMICAL_SALT(),
413 CompoundTypeIds::SODIUM_OXIDE => Items::CHEMICAL_SODIUM_OXIDE(),
414 CompoundTypeIds::SODIUM_HYDROXIDE => Items::CHEMICAL_SODIUM_HYDROXIDE(),
415 CompoundTypeIds::MAGNESIUM_NITRATE => Items::CHEMICAL_MAGNESIUM_NITRATE(),
416 CompoundTypeIds::IRON_SULPHIDE => Items::CHEMICAL_IRON_SULPHIDE(),
417 CompoundTypeIds::LITHIUM_HYDRIDE => Items::CHEMICAL_LITHIUM_HYDRIDE(),
418 CompoundTypeIds::SODIUM_HYDRIDE => Items::CHEMICAL_SODIUM_HYDRIDE(),
419 CompoundTypeIds::CALCIUM_BROMIDE => Items::CHEMICAL_CALCIUM_BROMIDE(),
420 CompoundTypeIds::MAGNESIUM_OXIDE => Items::CHEMICAL_MAGNESIUM_OXIDE(),
421 CompoundTypeIds::SODIUM_ACETATE => Items::CHEMICAL_SODIUM_ACETATE(),
422 CompoundTypeIds::LUMINOL => Items::CHEMICAL_LUMINOL(),
423 CompoundTypeIds::CHARCOAL => Items::CHEMICAL_CHARCOAL(),
424 CompoundTypeIds::SUGAR => Items::CHEMICAL_SUGAR(),
425 CompoundTypeIds::ALUMINIUM_OXIDE => Items::CHEMICAL_ALUMINIUM_OXIDE(),
426 CompoundTypeIds::BORON_TRIOXIDE => Items::CHEMICAL_BORON_TRIOXIDE(),
427 CompoundTypeIds::SOAP => Items::CHEMICAL_SOAP(),
428 CompoundTypeIds::POLYETHYLENE => Items::CHEMICAL_POLYETHYLENE(),
429 CompoundTypeIds::RUBBISH => Items::CHEMICAL_RUBBISH(),
430 CompoundTypeIds::MAGNESIUM_SALTS => Items::CHEMICAL_MAGNESIUM_SALTS(),
431 CompoundTypeIds::SULPHATE => Items::CHEMICAL_SULPHATE(),
432 CompoundTypeIds::BARIUM_SULPHATE => Items::CHEMICAL_BARIUM_SULPHATE(),
433 CompoundTypeIds::POTASSIUM_CHLORIDE => Items::CHEMICAL_POTASSIUM_CHLORIDE(),
434 CompoundTypeIds::MERCURIC_CHLORIDE => Items::CHEMICAL_MERCURIC_CHLORIDE(),
435 CompoundTypeIds::CERIUM_CHLORIDE => Items::CHEMICAL_CERIUM_CHLORIDE(),
436 CompoundTypeIds::TUNGSTEN_CHLORIDE => Items::CHEMICAL_TUNGSTEN_CHLORIDE(),
437 CompoundTypeIds::CALCIUM_CHLORIDE => Items::CHEMICAL_CALCIUM_CHLORIDE(),
438 CompoundTypeIds::WATER => Items::CHEMICAL_WATER(),
439 CompoundTypeIds::GLUE => Items::CHEMICAL_GLUE(),
440 CompoundTypeIds::HYPOCHLORITE => Items::CHEMICAL_HYPOCHLORITE(),
441 CompoundTypeIds::CRUDE_OIL => Items::CHEMICAL_CRUDE_OIL(),
442 CompoundTypeIds::LATEX => Items::CHEMICAL_LATEX(),
443 CompoundTypeIds::POTASSIUM_IODIDE => Items::CHEMICAL_POTASSIUM_IODIDE(),
444 CompoundTypeIds::SODIUM_FLUORIDE => Items::CHEMICAL_SODIUM_FLUORIDE(),
445 CompoundTypeIds::BENZENE => Items::CHEMICAL_BENZENE(),
446 CompoundTypeIds::INK => Items::CHEMICAL_INK(),
447 CompoundTypeIds::HYDROGEN_PEROXIDE => Items::CHEMICAL_HYDROGEN_PEROXIDE(),
448 CompoundTypeIds::AMMONIA => Items::CHEMICAL_AMMONIA(),
449 CompoundTypeIds::SODIUM_HYPOCHLORITE => Items::CHEMICAL_SODIUM_HYPOCHLORITE(),
450 ]);
451 }
452
458 private function register1to1BlockWithMetaMappings() : void{
459 $this->map1to1BlockWithMeta(
460 Ids::BED,
461 Blocks::BED(),
462 function(Bed $block, int $meta) : void{
463 $block->setColor(DyeColorIdMap::getInstance()->fromId($meta) ?? throw new ItemTypeDeserializeException("Unknown bed color ID $meta"));
464 },
465 fn(Bed $block) => DyeColorIdMap::getInstance()->toId($block->getColor())
466 );
467 $this->map1to1BlockWithMeta(
468 Ids::SKULL,
469 Blocks::MOB_HEAD(),
470 function(MobHead $block, int $meta) : void{
471 $block->setMobHeadType(MobHeadTypeIdMap::getInstance()->fromId($meta) ?? throw new ItemTypeDeserializeException("Unknown mob head type ID $meta"));
472 },
473 fn(MobHead $block) => MobHeadTypeIdMap::getInstance()->toId($block->getMobHeadType())
474 );
475 }
476
482 private function register1to1ItemWithMetaMappings() : void{
483 $this->map1to1ItemWithMeta(
484 Ids::BANNER,
485 Items::BANNER(),
486 function(Banner $item, int $meta) : void{
487 $item->setColor(DyeColorIdMap::getInstance()->fromInvertedId($meta) ?? throw new ItemTypeDeserializeException("Unknown banner meta $meta"));
488 },
489 fn(Banner $item) => DyeColorIdMap::getInstance()->toInvertedId($item->getColor())
490 );
491 $this->map1to1ItemWithMeta(
492 Ids::MEDICINE,
493 Items::MEDICINE(),
494 function(Medicine $item, int $meta) : void{
495 $item->setType(MedicineTypeIdMap::getInstance()->fromId($meta) ?? throw new ItemTypeDeserializeException("Unknown medicine type ID $meta"));
496 },
497 fn(Medicine $item) => MedicineTypeIdMap::getInstance()->toId($item->getType())
498 );
499 $this->map1to1ItemWithMeta(
500 Ids::POTION,
501 Items::POTION(),
502 function(Potion $item, int $meta) : void{
503 $item->setType(PotionTypeIdMap::getInstance()->fromId($meta) ?? throw new ItemTypeDeserializeException("Unknown potion type ID $meta"));
504 },
505 fn(Potion $item) => PotionTypeIdMap::getInstance()->toId($item->getType())
506 );
507 $this->map1to1ItemWithMeta(
508 Ids::SPLASH_POTION,
509 Items::SPLASH_POTION(),
510 function(SplashPotion $item, int $meta) : void{
511 $item->setType(PotionTypeIdMap::getInstance()->fromId($meta) ?? throw new ItemTypeDeserializeException("Unknown potion type ID $meta"));
512 },
513 fn(SplashPotion $item) => PotionTypeIdMap::getInstance()->toId($item->getType())
514 );
515 $this->map1to1ItemWithMeta(
516 Ids::SUSPICIOUS_STEW,
517 Items::SUSPICIOUS_STEW(),
518 function(SuspiciousStew $item, int $meta) : void{
519 $item->setType(SuspiciousStewTypeIdMap::getInstance()->fromId($meta) ?? throw new ItemTypeDeserializeException("Unknown suspicious stew type ID $meta"));
520 },
521 fn(SuspiciousStew $item) => SuspiciousStewTypeIdMap::getInstance()->toId($item->getType())
522 );
523 }
524
532 private function registerMiscItemMappings() : void{
533 foreach(DyeColor::cases() as $color){
534 $id = DyeColorIdMap::getInstance()->toItemId($color);
535 $this->deserializer?->map($id, fn() => Items::DYE()->setColor($color));
536 }
537 $this->serializer?->map(Items::DYE(), fn(Dye $item) => new Data(DyeColorIdMap::getInstance()->toItemId($item->getColor())));
538 }
539}
map1to1BlockWithMeta(string $id, Block $block, \Closure $deserializeMeta, \Closure $serializeMeta)
map1to1ItemWithMeta(string $id, Item $item, \Closure $deserializeMeta, \Closure $serializeMeta)