PocketMine-MP 5.23.3 git-976fc63567edab7a6fb6aeae739f43cf9fe57de4
Loading...
Searching...
No Matches
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\CopperOxidation;
30use pocketmine\block\utils\DyeColor;
49
51
52 public function __construct(
53 private ?ItemDeserializer $deserializer,
54 private ?ItemSerializer $serializer
55 ){
56 $this->register1to1BlockMappings();
57 $this->register1to1ItemMappings();
58 $this->register1to1BlockWithMetaMappings();
59 $this->register1to1ItemWithMetaMappings();
60 $this->register1ToNItemMappings();
61 $this->registerMiscBlockMappings();
62 $this->registerMiscItemMappings();
63 }
64
65 public function map1to1Item(string $id, Item $item) : void{
66 $this->deserializer?->map($id, fn() => clone $item);
67 $this->serializer?->map($item, fn() => new Data($id));
68 }
69
76 public function map1to1ItemWithMeta(string $id, Item $item, \Closure $deserializeMeta, \Closure $serializeMeta) : void{
77 $this->deserializer?->map($id, function(Data $data) use ($item, $deserializeMeta) : Item{
78 $result = clone $item;
79 $deserializeMeta($result, $data->getMeta());
80 return $result;
81 });
82 $this->serializer?->map($item, function(Item $item) use ($id, $serializeMeta) : Data{
84 $meta = $serializeMeta($item);
85 return new Data($id, $meta);
86 });
87 }
88
89 public function map1to1Block(string $id, Block $block) : void{
90 $this->deserializer?->mapBlock($id, fn() => $block);
91 $this->serializer?->mapBlock($block, fn() => new Data($id));
92 }
93
100 public function map1to1BlockWithMeta(string $id, Block $block, \Closure $deserializeMeta, \Closure $serializeMeta) : void{
101 $this->deserializer?->mapBlock($id, function(Data $data) use ($block, $deserializeMeta) : Block{
102 $result = clone $block;
103 $deserializeMeta($result, $data->getMeta());
104 return $result;
105 });
106 $this->serializer?->mapBlock($block, function(Block $block) use ($id, $serializeMeta) : Data{
107 $meta = $serializeMeta($block);
108 return new Data($id, $meta);
109 });
110 }
111
116 public function map1ToNItem(string $id, array $items) : void{
117 $this->deserializer?->map($id, function(Data $data) use ($items) : Item{
118 $result = $items[$data->getMeta()] ?? null;
119 if($result === null){
120 throw new ItemTypeDeserializeException("Unhandled meta value " . $data->getMeta() . " for item ID " . $data->getName());
121 }
122 return clone $result;
123 });
124 foreach($items as $meta => $item){
125 $this->serializer?->map($item, fn() => new Data($id, $meta));
126 }
127 }
128
134 private function register1to1BlockMappings() : void{
135 $this->map1to1Block(Ids::ACACIA_DOOR, Blocks::ACACIA_DOOR());
136 $this->map1to1Block(Ids::BIRCH_DOOR, Blocks::BIRCH_DOOR());
137 $this->map1to1Block(Ids::BREWING_STAND, Blocks::BREWING_STAND());
138 $this->map1to1Block(Ids::CAKE, Blocks::CAKE());
139 $this->map1to1Block(Ids::CAMPFIRE, Blocks::CAMPFIRE());
140 $this->map1to1Block(Ids::CAULDRON, Blocks::CAULDRON());
141 $this->map1to1Block(Ids::CHAIN, Blocks::CHAIN());
142 $this->map1to1Block(Ids::CHERRY_DOOR, Blocks::CHERRY_DOOR());
143 $this->map1to1Block(Ids::COMPARATOR, Blocks::REDSTONE_COMPARATOR());
144 $this->map1to1Block(Ids::CRIMSON_DOOR, Blocks::CRIMSON_DOOR());
145 $this->map1to1Block(Ids::DARK_OAK_DOOR, Blocks::DARK_OAK_DOOR());
146 $this->map1to1Block(Ids::FLOWER_POT, Blocks::FLOWER_POT());
147 $this->map1to1Block(Ids::FRAME, Blocks::ITEM_FRAME());
148 $this->map1to1Block(Ids::GLOW_FRAME, Blocks::GLOWING_ITEM_FRAME());
149 $this->map1to1Block(Ids::HOPPER, Blocks::HOPPER());
150 $this->map1to1Block(Ids::IRON_DOOR, Blocks::IRON_DOOR());
151 $this->map1to1Block(Ids::JUNGLE_DOOR, Blocks::JUNGLE_DOOR());
152 $this->map1to1Block(Ids::MANGROVE_DOOR, Blocks::MANGROVE_DOOR());
153 $this->map1to1Block(Ids::NETHER_WART, Blocks::NETHER_WART());
154 $this->map1to1Block(Ids::PALE_OAK_DOOR, Blocks::PALE_OAK_DOOR());
155 $this->map1to1Block(Ids::REPEATER, Blocks::REDSTONE_REPEATER());
156 $this->map1to1Block(Ids::SOUL_CAMPFIRE, Blocks::SOUL_CAMPFIRE());
157 $this->map1to1Block(Ids::SPRUCE_DOOR, Blocks::SPRUCE_DOOR());
158 $this->map1to1Block(Ids::SUGAR_CANE, Blocks::SUGARCANE());
159 $this->map1to1Block(Ids::WARPED_DOOR, Blocks::WARPED_DOOR());
160 $this->map1to1Block(Ids::WOODEN_DOOR, Blocks::OAK_DOOR());
161 }
162
166 private function register1to1ItemMappings() : void{
167 $this->map1to1Item(Ids::ACACIA_BOAT, Items::ACACIA_BOAT());
168 $this->map1to1Item(Ids::ACACIA_SIGN, Items::ACACIA_SIGN());
169 $this->map1to1Item(Ids::AMETHYST_SHARD, Items::AMETHYST_SHARD());
170 $this->map1to1Item(Ids::APPLE, Items::APPLE());
171 $this->map1to1Item(Ids::BAKED_POTATO, Items::BAKED_POTATO());
172 $this->map1to1Item(Ids::BEEF, Items::RAW_BEEF());
173 $this->map1to1Item(Ids::BEETROOT, Items::BEETROOT());
174 $this->map1to1Item(Ids::BEETROOT_SEEDS, Items::BEETROOT_SEEDS());
175 $this->map1to1Item(Ids::BEETROOT_SOUP, Items::BEETROOT_SOUP());
176 $this->map1to1Item(Ids::BIRCH_BOAT, Items::BIRCH_BOAT());
177 $this->map1to1Item(Ids::BIRCH_SIGN, Items::BIRCH_SIGN());
178 $this->map1to1Item(Ids::BLAZE_POWDER, Items::BLAZE_POWDER());
179 $this->map1to1Item(Ids::BLAZE_ROD, Items::BLAZE_ROD());
180 $this->map1to1Item(Ids::BLEACH, Items::BLEACH());
181 $this->map1to1Item(Ids::BONE, Items::BONE());
182 $this->map1to1Item(Ids::BONE_MEAL, Items::BONE_MEAL());
183 $this->map1to1Item(Ids::BOOK, Items::BOOK());
184 $this->map1to1Item(Ids::BOW, Items::BOW());
185 $this->map1to1Item(Ids::BOWL, Items::BOWL());
186 $this->map1to1Item(Ids::BREAD, Items::BREAD());
187 $this->map1to1Item(Ids::BRICK, Items::BRICK());
188 $this->map1to1Item(Ids::BUCKET, Items::BUCKET());
189 $this->map1to1Item(Ids::CARROT, Items::CARROT());
190 $this->map1to1Item(Ids::CHAINMAIL_BOOTS, Items::CHAINMAIL_BOOTS());
191 $this->map1to1Item(Ids::CHAINMAIL_CHESTPLATE, Items::CHAINMAIL_CHESTPLATE());
192 $this->map1to1Item(Ids::CHAINMAIL_HELMET, Items::CHAINMAIL_HELMET());
193 $this->map1to1Item(Ids::CHAINMAIL_LEGGINGS, Items::CHAINMAIL_LEGGINGS());
194 $this->map1to1Item(Ids::CHARCOAL, Items::CHARCOAL());
195 $this->map1to1Item(Ids::CHERRY_SIGN, Items::CHERRY_SIGN());
196 $this->map1to1Item(Ids::CHICKEN, Items::RAW_CHICKEN());
197 $this->map1to1Item(Ids::CHORUS_FRUIT, Items::CHORUS_FRUIT());
198 $this->map1to1Item(Ids::CLAY_BALL, Items::CLAY());
199 $this->map1to1Item(Ids::CLOCK, Items::CLOCK());
200 $this->map1to1Item(Ids::COAL, Items::COAL());
201 $this->map1to1Item(Ids::COAST_ARMOR_TRIM_SMITHING_TEMPLATE, Items::COAST_ARMOR_TRIM_SMITHING_TEMPLATE());
202 $this->map1to1Item(Ids::COCOA_BEANS, Items::COCOA_BEANS());
203 $this->map1to1Item(Ids::COD, Items::RAW_FISH());
204 $this->map1to1Item(Ids::COMPASS, Items::COMPASS());
205 $this->map1to1Item(Ids::COOKED_BEEF, Items::STEAK());
206 $this->map1to1Item(Ids::COOKED_CHICKEN, Items::COOKED_CHICKEN());
207 $this->map1to1Item(Ids::COOKED_COD, Items::COOKED_FISH());
208 $this->map1to1Item(Ids::COOKED_MUTTON, Items::COOKED_MUTTON());
209 $this->map1to1Item(Ids::COOKED_PORKCHOP, Items::COOKED_PORKCHOP());
210 $this->map1to1Item(Ids::COOKED_RABBIT, Items::COOKED_RABBIT());
211 $this->map1to1Item(Ids::COOKED_SALMON, Items::COOKED_SALMON());
212 $this->map1to1Item(Ids::COOKIE, Items::COOKIE());
213 $this->map1to1Item(Ids::COPPER_INGOT, Items::COPPER_INGOT());
214 $this->map1to1Item(Ids::CRIMSON_SIGN, Items::CRIMSON_SIGN());
215 $this->map1to1Item(Ids::DARK_OAK_BOAT, Items::DARK_OAK_BOAT());
216 $this->map1to1Item(Ids::DARK_OAK_SIGN, Items::DARK_OAK_SIGN());
217 $this->map1to1Item(Ids::DIAMOND, Items::DIAMOND());
218 $this->map1to1Item(Ids::DIAMOND_AXE, Items::DIAMOND_AXE());
219 $this->map1to1Item(Ids::DIAMOND_BOOTS, Items::DIAMOND_BOOTS());
220 $this->map1to1Item(Ids::DIAMOND_CHESTPLATE, Items::DIAMOND_CHESTPLATE());
221 $this->map1to1Item(Ids::DIAMOND_HELMET, Items::DIAMOND_HELMET());
222 $this->map1to1Item(Ids::DIAMOND_HOE, Items::DIAMOND_HOE());
223 $this->map1to1Item(Ids::DIAMOND_LEGGINGS, Items::DIAMOND_LEGGINGS());
224 $this->map1to1Item(Ids::DIAMOND_PICKAXE, Items::DIAMOND_PICKAXE());
225 $this->map1to1Item(Ids::DIAMOND_SHOVEL, Items::DIAMOND_SHOVEL());
226 $this->map1to1Item(Ids::DIAMOND_SWORD, Items::DIAMOND_SWORD());
227 $this->map1to1Item(Ids::DISC_FRAGMENT_5, Items::DISC_FRAGMENT_5());
228 $this->map1to1Item(Ids::DRAGON_BREATH, Items::DRAGON_BREATH());
229 $this->map1to1Item(Ids::DRIED_KELP, Items::DRIED_KELP());
230 $this->map1to1Item(Ids::DUNE_ARMOR_TRIM_SMITHING_TEMPLATE, Items::DUNE_ARMOR_TRIM_SMITHING_TEMPLATE());
231 $this->map1to1Item(Ids::ECHO_SHARD, Items::ECHO_SHARD());
232 $this->map1to1Item(Ids::EGG, Items::EGG());
233 $this->map1to1Item(Ids::EMERALD, Items::EMERALD());
234 $this->map1to1Item(Ids::ENCHANTED_BOOK, Items::ENCHANTED_BOOK());
235 $this->map1to1Item(Ids::ENCHANTED_GOLDEN_APPLE, Items::ENCHANTED_GOLDEN_APPLE());
236 $this->map1to1Item(Ids::END_CRYSTAL, Items::END_CRYSTAL());
237 $this->map1to1Item(Ids::ENDER_PEARL, Items::ENDER_PEARL());
238 $this->map1to1Item(Ids::EXPERIENCE_BOTTLE, Items::EXPERIENCE_BOTTLE());
239 $this->map1to1Item(Ids::EYE_ARMOR_TRIM_SMITHING_TEMPLATE, Items::EYE_ARMOR_TRIM_SMITHING_TEMPLATE());
240 $this->map1to1Item(Ids::FEATHER, Items::FEATHER());
241 $this->map1to1Item(Ids::FERMENTED_SPIDER_EYE, Items::FERMENTED_SPIDER_EYE());
242 $this->map1to1Item(Ids::FIRE_CHARGE, Items::FIRE_CHARGE());
243 $this->map1to1Item(Ids::FISHING_ROD, Items::FISHING_ROD());
244 $this->map1to1Item(Ids::FLINT, Items::FLINT());
245 $this->map1to1Item(Ids::FLINT_AND_STEEL, Items::FLINT_AND_STEEL());
246 $this->map1to1Item(Ids::GHAST_TEAR, Items::GHAST_TEAR());
247 $this->map1to1Item(Ids::GLASS_BOTTLE, Items::GLASS_BOTTLE());
248 $this->map1to1Item(Ids::GLISTERING_MELON_SLICE, Items::GLISTERING_MELON());
249 $this->map1to1Item(Ids::GLOW_BERRIES, Items::GLOW_BERRIES());
250 $this->map1to1Item(Ids::GLOW_INK_SAC, Items::GLOW_INK_SAC());
251 $this->map1to1Item(Ids::GLOWSTONE_DUST, Items::GLOWSTONE_DUST());
252 $this->map1to1Item(Ids::GOLD_INGOT, Items::GOLD_INGOT());
253 $this->map1to1Item(Ids::GOLD_NUGGET, Items::GOLD_NUGGET());
254 $this->map1to1Item(Ids::GOLDEN_APPLE, Items::GOLDEN_APPLE());
255 $this->map1to1Item(Ids::GOLDEN_AXE, Items::GOLDEN_AXE());
256 $this->map1to1Item(Ids::GOLDEN_BOOTS, Items::GOLDEN_BOOTS());
257 $this->map1to1Item(Ids::GOLDEN_CARROT, Items::GOLDEN_CARROT());
258 $this->map1to1Item(Ids::GOLDEN_CHESTPLATE, Items::GOLDEN_CHESTPLATE());
259 $this->map1to1Item(Ids::GOLDEN_HELMET, Items::GOLDEN_HELMET());
260 $this->map1to1Item(Ids::GOLDEN_HOE, Items::GOLDEN_HOE());
261 $this->map1to1Item(Ids::GOLDEN_LEGGINGS, Items::GOLDEN_LEGGINGS());
262 $this->map1to1Item(Ids::GOLDEN_PICKAXE, Items::GOLDEN_PICKAXE());
263 $this->map1to1Item(Ids::GOLDEN_SHOVEL, Items::GOLDEN_SHOVEL());
264 $this->map1to1Item(Ids::GOLDEN_SWORD, Items::GOLDEN_SWORD());
265 $this->map1to1Item(Ids::GUNPOWDER, Items::GUNPOWDER());
266 $this->map1to1Item(Ids::HEART_OF_THE_SEA, Items::HEART_OF_THE_SEA());
267 $this->map1to1Item(Ids::HONEY_BOTTLE, Items::HONEY_BOTTLE());
268 $this->map1to1Item(Ids::HONEYCOMB, Items::HONEYCOMB());
269 $this->map1to1Item(Ids::HOST_ARMOR_TRIM_SMITHING_TEMPLATE, Items::HOST_ARMOR_TRIM_SMITHING_TEMPLATE());
270 $this->map1to1Item(Ids::ICE_BOMB, Items::ICE_BOMB());
271 $this->map1to1Item(Ids::INK_SAC, Items::INK_SAC());
272 $this->map1to1Item(Ids::IRON_AXE, Items::IRON_AXE());
273 $this->map1to1Item(Ids::IRON_BOOTS, Items::IRON_BOOTS());
274 $this->map1to1Item(Ids::IRON_CHESTPLATE, Items::IRON_CHESTPLATE());
275 $this->map1to1Item(Ids::IRON_HELMET, Items::IRON_HELMET());
276 $this->map1to1Item(Ids::IRON_HOE, Items::IRON_HOE());
277 $this->map1to1Item(Ids::IRON_INGOT, Items::IRON_INGOT());
278 $this->map1to1Item(Ids::IRON_LEGGINGS, Items::IRON_LEGGINGS());
279 $this->map1to1Item(Ids::IRON_NUGGET, Items::IRON_NUGGET());
280 $this->map1to1Item(Ids::IRON_PICKAXE, Items::IRON_PICKAXE());
281 $this->map1to1Item(Ids::IRON_SHOVEL, Items::IRON_SHOVEL());
282 $this->map1to1Item(Ids::IRON_SWORD, Items::IRON_SWORD());
283 $this->map1to1Item(Ids::JUNGLE_BOAT, Items::JUNGLE_BOAT());
284 $this->map1to1Item(Ids::JUNGLE_SIGN, Items::JUNGLE_SIGN());
285 $this->map1to1Item(Ids::LAPIS_LAZULI, Items::LAPIS_LAZULI());
286 $this->map1to1Item(Ids::LAVA_BUCKET, Items::LAVA_BUCKET());
287 $this->map1to1Item(Ids::LEATHER, Items::LEATHER());
288 $this->map1to1Item(Ids::LEATHER_BOOTS, Items::LEATHER_BOOTS());
289 $this->map1to1Item(Ids::LEATHER_CHESTPLATE, Items::LEATHER_TUNIC());
290 $this->map1to1Item(Ids::LEATHER_HELMET, Items::LEATHER_CAP());
291 $this->map1to1Item(Ids::LEATHER_LEGGINGS, Items::LEATHER_PANTS());
292 $this->map1to1Item(Ids::MAGMA_CREAM, Items::MAGMA_CREAM());
293 $this->map1to1Item(Ids::MANGROVE_BOAT, Items::MANGROVE_BOAT());
294 $this->map1to1Item(Ids::MANGROVE_SIGN, Items::MANGROVE_SIGN());
295 $this->map1to1Item(Ids::MELON_SEEDS, Items::MELON_SEEDS());
296 $this->map1to1Item(Ids::MELON_SLICE, Items::MELON());
297 $this->map1to1Item(Ids::MILK_BUCKET, Items::MILK_BUCKET());
298 $this->map1to1Item(Ids::MINECART, Items::MINECART());
299 $this->map1to1Item(Ids::MUSHROOM_STEW, Items::MUSHROOM_STEW());
300 $this->map1to1Item(Ids::MUSIC_DISC_11, Items::RECORD_11());
301 $this->map1to1Item(Ids::MUSIC_DISC_13, Items::RECORD_13());
302 $this->map1to1Item(Ids::MUSIC_DISC_5, Items::RECORD_5());
303 $this->map1to1Item(Ids::MUSIC_DISC_BLOCKS, Items::RECORD_BLOCKS());
304 $this->map1to1Item(Ids::MUSIC_DISC_CAT, Items::RECORD_CAT());
305 $this->map1to1Item(Ids::MUSIC_DISC_CHIRP, Items::RECORD_CHIRP());
306 $this->map1to1Item(Ids::MUSIC_DISC_CREATOR, Items::RECORD_CREATOR());
307 $this->map1to1Item(Ids::MUSIC_DISC_CREATOR_MUSIC_BOX, Items::RECORD_CREATOR_MUSIC_BOX());
308 $this->map1to1Item(Ids::MUSIC_DISC_FAR, Items::RECORD_FAR());
309 $this->map1to1Item(Ids::MUSIC_DISC_MALL, Items::RECORD_MALL());
310 $this->map1to1Item(Ids::MUSIC_DISC_MELLOHI, Items::RECORD_MELLOHI());
311 $this->map1to1Item(Ids::MUSIC_DISC_OTHERSIDE, Items::RECORD_OTHERSIDE());
312 $this->map1to1Item(Ids::MUSIC_DISC_PIGSTEP, Items::RECORD_PIGSTEP());
313 $this->map1to1Item(Ids::MUSIC_DISC_PRECIPICE, Items::RECORD_PRECIPICE());
314 $this->map1to1Item(Ids::MUSIC_DISC_RELIC, Items::RECORD_RELIC());
315 $this->map1to1Item(Ids::MUSIC_DISC_STAL, Items::RECORD_STAL());
316 $this->map1to1Item(Ids::MUSIC_DISC_STRAD, Items::RECORD_STRAD());
317 $this->map1to1Item(Ids::MUSIC_DISC_WAIT, Items::RECORD_WAIT());
318 $this->map1to1Item(Ids::MUSIC_DISC_WARD, Items::RECORD_WARD());
319 $this->map1to1Item(Ids::MUTTON, Items::RAW_MUTTON());
320 $this->map1to1Item(Ids::NAME_TAG, Items::NAME_TAG());
321 $this->map1to1Item(Ids::NAUTILUS_SHELL, Items::NAUTILUS_SHELL());
322 $this->map1to1Item(Ids::NETHER_STAR, Items::NETHER_STAR());
323 $this->map1to1Item(Ids::NETHERBRICK, Items::NETHER_BRICK());
324 $this->map1to1Item(Ids::NETHERITE_AXE, Items::NETHERITE_AXE());
325 $this->map1to1Item(Ids::NETHERITE_BOOTS, Items::NETHERITE_BOOTS());
326 $this->map1to1Item(Ids::NETHERITE_CHESTPLATE, Items::NETHERITE_CHESTPLATE());
327 $this->map1to1Item(Ids::NETHERITE_HELMET, Items::NETHERITE_HELMET());
328 $this->map1to1Item(Ids::NETHERITE_HOE, Items::NETHERITE_HOE());
329 $this->map1to1Item(Ids::NETHERITE_INGOT, Items::NETHERITE_INGOT());
330 $this->map1to1Item(Ids::NETHERITE_LEGGINGS, Items::NETHERITE_LEGGINGS());
331 $this->map1to1Item(Ids::NETHERITE_PICKAXE, Items::NETHERITE_PICKAXE());
332 $this->map1to1Item(Ids::NETHERITE_SCRAP, Items::NETHERITE_SCRAP());
333 $this->map1to1Item(Ids::NETHERITE_SHOVEL, Items::NETHERITE_SHOVEL());
334 $this->map1to1Item(Ids::NETHERITE_SWORD, Items::NETHERITE_SWORD());
335 $this->map1to1Item(Ids::NETHERITE_UPGRADE_SMITHING_TEMPLATE, Items::NETHERITE_UPGRADE_SMITHING_TEMPLATE());
336 $this->map1to1Item(Ids::OAK_BOAT, Items::OAK_BOAT());
337 $this->map1to1Item(Ids::OAK_SIGN, Items::OAK_SIGN());
338 $this->map1to1Item(Ids::PAINTING, Items::PAINTING());
339 $this->map1to1Item(Ids::PALE_OAK_SIGN, Items::PALE_OAK_SIGN());
340 $this->map1to1Item(Ids::PAPER, Items::PAPER());
341 $this->map1to1Item(Ids::PHANTOM_MEMBRANE, Items::PHANTOM_MEMBRANE());
342 $this->map1to1Item(Ids::PITCHER_POD, Items::PITCHER_POD());
343 $this->map1to1Item(Ids::POISONOUS_POTATO, Items::POISONOUS_POTATO());
344 $this->map1to1Item(Ids::POPPED_CHORUS_FRUIT, Items::POPPED_CHORUS_FRUIT());
345 $this->map1to1Item(Ids::PORKCHOP, Items::RAW_PORKCHOP());
346 $this->map1to1Item(Ids::POTATO, Items::POTATO());
347 $this->map1to1Item(Ids::PRISMARINE_CRYSTALS, Items::PRISMARINE_CRYSTALS());
348 $this->map1to1Item(Ids::PRISMARINE_SHARD, Items::PRISMARINE_SHARD());
349 $this->map1to1Item(Ids::PUFFERFISH, Items::PUFFERFISH());
350 $this->map1to1Item(Ids::PUMPKIN_PIE, Items::PUMPKIN_PIE());
351 $this->map1to1Item(Ids::PUMPKIN_SEEDS, Items::PUMPKIN_SEEDS());
352 $this->map1to1Item(Ids::QUARTZ, Items::NETHER_QUARTZ());
353 $this->map1to1Item(Ids::RABBIT, Items::RAW_RABBIT());
354 $this->map1to1Item(Ids::RABBIT_FOOT, Items::RABBIT_FOOT());
355 $this->map1to1Item(Ids::RABBIT_HIDE, Items::RABBIT_HIDE());
356 $this->map1to1Item(Ids::RABBIT_STEW, Items::RABBIT_STEW());
357 $this->map1to1Item(Ids::RAISER_ARMOR_TRIM_SMITHING_TEMPLATE, Items::RAISER_ARMOR_TRIM_SMITHING_TEMPLATE());
358 $this->map1to1Item(Ids::RAW_COPPER, Items::RAW_COPPER());
359 $this->map1to1Item(Ids::RAW_GOLD, Items::RAW_GOLD());
360 $this->map1to1Item(Ids::RAW_IRON, Items::RAW_IRON());
361 $this->map1to1Item(Ids::RECOVERY_COMPASS, Items::RECOVERY_COMPASS());
362 $this->map1to1Item(Ids::REDSTONE, Items::REDSTONE_DUST());
363 $this->map1to1Item(Ids::RESIN_BRICK, Items::RESIN_BRICK());
364 $this->map1to1Item(Ids::RIB_ARMOR_TRIM_SMITHING_TEMPLATE, Items::RIB_ARMOR_TRIM_SMITHING_TEMPLATE());
365 $this->map1to1Item(Ids::ROTTEN_FLESH, Items::ROTTEN_FLESH());
366 $this->map1to1Item(Ids::SALMON, Items::RAW_SALMON());
367 $this->map1to1Item(Ids::TURTLE_SCUTE, Items::SCUTE());
368 $this->map1to1Item(Ids::SENTRY_ARMOR_TRIM_SMITHING_TEMPLATE, Items::SENTRY_ARMOR_TRIM_SMITHING_TEMPLATE());
369 $this->map1to1Item(Ids::SHAPER_ARMOR_TRIM_SMITHING_TEMPLATE, Items::SHAPER_ARMOR_TRIM_SMITHING_TEMPLATE());
370 $this->map1to1Item(Ids::SHEARS, Items::SHEARS());
371 $this->map1to1Item(Ids::SHULKER_SHELL, Items::SHULKER_SHELL());
372 $this->map1to1Item(Ids::SILENCE_ARMOR_TRIM_SMITHING_TEMPLATE, Items::SILENCE_ARMOR_TRIM_SMITHING_TEMPLATE());
373 $this->map1to1Item(Ids::SLIME_BALL, Items::SLIMEBALL());
374 $this->map1to1Item(Ids::SNOUT_ARMOR_TRIM_SMITHING_TEMPLATE, Items::SNOUT_ARMOR_TRIM_SMITHING_TEMPLATE());
375 $this->map1to1Item(Ids::SNOWBALL, Items::SNOWBALL());
376 $this->map1to1Item(Ids::SPIDER_EYE, Items::SPIDER_EYE());
377 $this->map1to1Item(Ids::SPIRE_ARMOR_TRIM_SMITHING_TEMPLATE, Items::SPIRE_ARMOR_TRIM_SMITHING_TEMPLATE());
378 $this->map1to1Item(Ids::SPRUCE_BOAT, Items::SPRUCE_BOAT());
379 $this->map1to1Item(Ids::SPRUCE_SIGN, Items::SPRUCE_SIGN());
380 $this->map1to1Item(Ids::SPYGLASS, Items::SPYGLASS());
381 $this->map1to1Item(Ids::SQUID_SPAWN_EGG, Items::SQUID_SPAWN_EGG());
382 $this->map1to1Item(Ids::STICK, Items::STICK());
383 $this->map1to1Item(Ids::STONE_AXE, Items::STONE_AXE());
384 $this->map1to1Item(Ids::STONE_HOE, Items::STONE_HOE());
385 $this->map1to1Item(Ids::STONE_PICKAXE, Items::STONE_PICKAXE());
386 $this->map1to1Item(Ids::STONE_SHOVEL, Items::STONE_SHOVEL());
387 $this->map1to1Item(Ids::STONE_SWORD, Items::STONE_SWORD());
388 $this->map1to1Item(Ids::STRING, Items::STRING());
389 $this->map1to1Item(Ids::SUGAR, Items::SUGAR());
390 $this->map1to1Item(Ids::SWEET_BERRIES, Items::SWEET_BERRIES());
391 $this->map1to1Item(Ids::TORCHFLOWER_SEEDS, Items::TORCHFLOWER_SEEDS());
392 $this->map1to1Item(Ids::TIDE_ARMOR_TRIM_SMITHING_TEMPLATE, Items::TIDE_ARMOR_TRIM_SMITHING_TEMPLATE());
393 $this->map1to1Item(Ids::TOTEM_OF_UNDYING, Items::TOTEM());
394 $this->map1to1Item(Ids::TROPICAL_FISH, Items::CLOWNFISH());
395 $this->map1to1Item(Ids::TURTLE_HELMET, Items::TURTLE_HELMET());
396 $this->map1to1Item(Ids::VEX_ARMOR_TRIM_SMITHING_TEMPLATE, Items::VEX_ARMOR_TRIM_SMITHING_TEMPLATE());
397 $this->map1to1Item(Ids::VILLAGER_SPAWN_EGG, Items::VILLAGER_SPAWN_EGG());
398 $this->map1to1Item(Ids::WARD_ARMOR_TRIM_SMITHING_TEMPLATE, Items::WARD_ARMOR_TRIM_SMITHING_TEMPLATE());
399 $this->map1to1Item(Ids::WARPED_SIGN, Items::WARPED_SIGN());
400 $this->map1to1Item(Ids::WATER_BUCKET, Items::WATER_BUCKET());
401 $this->map1to1Item(Ids::WAYFINDER_ARMOR_TRIM_SMITHING_TEMPLATE, Items::WAYFINDER_ARMOR_TRIM_SMITHING_TEMPLATE());
402 $this->map1to1Item(Ids::WHEAT, Items::WHEAT());
403 $this->map1to1Item(Ids::WHEAT_SEEDS, Items::WHEAT_SEEDS());
404 $this->map1to1Item(Ids::WILD_ARMOR_TRIM_SMITHING_TEMPLATE, Items::WILD_ARMOR_TRIM_SMITHING_TEMPLATE());
405 $this->map1to1Item(Ids::WOODEN_AXE, Items::WOODEN_AXE());
406 $this->map1to1Item(Ids::WOODEN_HOE, Items::WOODEN_HOE());
407 $this->map1to1Item(Ids::WOODEN_PICKAXE, Items::WOODEN_PICKAXE());
408 $this->map1to1Item(Ids::WOODEN_SHOVEL, Items::WOODEN_SHOVEL());
409 $this->map1to1Item(Ids::WOODEN_SWORD, Items::WOODEN_SWORD());
410 $this->map1to1Item(Ids::WRITABLE_BOOK, Items::WRITABLE_BOOK());
411 $this->map1to1Item(Ids::WRITTEN_BOOK, Items::WRITTEN_BOOK());
412 $this->map1to1Item(Ids::ZOMBIE_SPAWN_EGG, Items::ZOMBIE_SPAWN_EGG());
413 }
414
421 private function register1ToNItemMappings() : void{
422 $this->map1ToNItem(Ids::ARROW, [
423 0 => Items::ARROW(),
424 //TODO: tipped arrows
425 ]);
426 $this->map1ToNItem(Ids::COMPOUND, [
427 CompoundTypeIds::SALT => Items::CHEMICAL_SALT(),
428 CompoundTypeIds::SODIUM_OXIDE => Items::CHEMICAL_SODIUM_OXIDE(),
429 CompoundTypeIds::SODIUM_HYDROXIDE => Items::CHEMICAL_SODIUM_HYDROXIDE(),
430 CompoundTypeIds::MAGNESIUM_NITRATE => Items::CHEMICAL_MAGNESIUM_NITRATE(),
431 CompoundTypeIds::IRON_SULPHIDE => Items::CHEMICAL_IRON_SULPHIDE(),
432 CompoundTypeIds::LITHIUM_HYDRIDE => Items::CHEMICAL_LITHIUM_HYDRIDE(),
433 CompoundTypeIds::SODIUM_HYDRIDE => Items::CHEMICAL_SODIUM_HYDRIDE(),
434 CompoundTypeIds::CALCIUM_BROMIDE => Items::CHEMICAL_CALCIUM_BROMIDE(),
435 CompoundTypeIds::MAGNESIUM_OXIDE => Items::CHEMICAL_MAGNESIUM_OXIDE(),
436 CompoundTypeIds::SODIUM_ACETATE => Items::CHEMICAL_SODIUM_ACETATE(),
437 CompoundTypeIds::LUMINOL => Items::CHEMICAL_LUMINOL(),
438 CompoundTypeIds::CHARCOAL => Items::CHEMICAL_CHARCOAL(),
439 CompoundTypeIds::SUGAR => Items::CHEMICAL_SUGAR(),
440 CompoundTypeIds::ALUMINIUM_OXIDE => Items::CHEMICAL_ALUMINIUM_OXIDE(),
441 CompoundTypeIds::BORON_TRIOXIDE => Items::CHEMICAL_BORON_TRIOXIDE(),
442 CompoundTypeIds::SOAP => Items::CHEMICAL_SOAP(),
443 CompoundTypeIds::POLYETHYLENE => Items::CHEMICAL_POLYETHYLENE(),
444 CompoundTypeIds::RUBBISH => Items::CHEMICAL_RUBBISH(),
445 CompoundTypeIds::MAGNESIUM_SALTS => Items::CHEMICAL_MAGNESIUM_SALTS(),
446 CompoundTypeIds::SULPHATE => Items::CHEMICAL_SULPHATE(),
447 CompoundTypeIds::BARIUM_SULPHATE => Items::CHEMICAL_BARIUM_SULPHATE(),
448 CompoundTypeIds::POTASSIUM_CHLORIDE => Items::CHEMICAL_POTASSIUM_CHLORIDE(),
449 CompoundTypeIds::MERCURIC_CHLORIDE => Items::CHEMICAL_MERCURIC_CHLORIDE(),
450 CompoundTypeIds::CERIUM_CHLORIDE => Items::CHEMICAL_CERIUM_CHLORIDE(),
451 CompoundTypeIds::TUNGSTEN_CHLORIDE => Items::CHEMICAL_TUNGSTEN_CHLORIDE(),
452 CompoundTypeIds::CALCIUM_CHLORIDE => Items::CHEMICAL_CALCIUM_CHLORIDE(),
453 CompoundTypeIds::WATER => Items::CHEMICAL_WATER(),
454 CompoundTypeIds::GLUE => Items::CHEMICAL_GLUE(),
455 CompoundTypeIds::HYPOCHLORITE => Items::CHEMICAL_HYPOCHLORITE(),
456 CompoundTypeIds::CRUDE_OIL => Items::CHEMICAL_CRUDE_OIL(),
457 CompoundTypeIds::LATEX => Items::CHEMICAL_LATEX(),
458 CompoundTypeIds::POTASSIUM_IODIDE => Items::CHEMICAL_POTASSIUM_IODIDE(),
459 CompoundTypeIds::SODIUM_FLUORIDE => Items::CHEMICAL_SODIUM_FLUORIDE(),
460 CompoundTypeIds::BENZENE => Items::CHEMICAL_BENZENE(),
461 CompoundTypeIds::INK => Items::CHEMICAL_INK(),
462 CompoundTypeIds::HYDROGEN_PEROXIDE => Items::CHEMICAL_HYDROGEN_PEROXIDE(),
463 CompoundTypeIds::AMMONIA => Items::CHEMICAL_AMMONIA(),
464 CompoundTypeIds::SODIUM_HYPOCHLORITE => Items::CHEMICAL_SODIUM_HYPOCHLORITE(),
465 ]);
466 }
467
473 private function register1to1BlockWithMetaMappings() : void{
474 $this->map1to1BlockWithMeta(
475 Ids::BED,
476 Blocks::BED(),
477 function(Bed $block, int $meta) : void{
478 $block->setColor(DyeColorIdMap::getInstance()->fromId($meta) ?? throw new ItemTypeDeserializeException("Unknown bed color ID $meta"));
479 },
480 fn(Bed $block) => DyeColorIdMap::getInstance()->toId($block->getColor())
481 );
482 }
483
489 private function register1to1ItemWithMetaMappings() : void{
490 $this->map1to1ItemWithMeta(
491 Ids::BANNER,
492 Items::BANNER(),
493 function(Banner $item, int $meta) : void{
494 $item->setColor(DyeColorIdMap::getInstance()->fromInvertedId($meta) ?? throw new ItemTypeDeserializeException("Unknown banner meta $meta"));
495 },
496 fn(Banner $item) => DyeColorIdMap::getInstance()->toInvertedId($item->getColor())
497 );
498 $this->map1to1ItemWithMeta(
499 Ids::GOAT_HORN,
500 Items::GOAT_HORN(),
501 function(GoatHorn $item, int $meta) : void{
502 $item->setHornType(GoatHornTypeIdMap::getInstance()->fromId($meta) ?? throw new ItemTypeDeserializeException("Unknown goat horn type ID $meta"));
503 },
504 fn(GoatHorn $item) => GoatHornTypeIdMap::getInstance()->toId($item->getHornType())
505 );
506 $this->map1to1ItemWithMeta(
507 Ids::MEDICINE,
508 Items::MEDICINE(),
509 function(Medicine $item, int $meta) : void{
510 $item->setType(MedicineTypeIdMap::getInstance()->fromId($meta) ?? throw new ItemTypeDeserializeException("Unknown medicine type ID $meta"));
511 },
512 fn(Medicine $item) => MedicineTypeIdMap::getInstance()->toId($item->getType())
513 );
514 $this->map1to1ItemWithMeta(
515 Ids::POTION,
516 Items::POTION(),
517 function(Potion $item, int $meta) : void{
518 $item->setType(PotionTypeIdMap::getInstance()->fromId($meta) ?? throw new ItemTypeDeserializeException("Unknown potion type ID $meta"));
519 },
520 fn(Potion $item) => PotionTypeIdMap::getInstance()->toId($item->getType())
521 );
522 $this->map1to1ItemWithMeta(
523 Ids::SPLASH_POTION,
524 Items::SPLASH_POTION(),
525 function(SplashPotion $item, int $meta) : void{
526 $item->setType(PotionTypeIdMap::getInstance()->fromId($meta) ?? throw new ItemTypeDeserializeException("Unknown potion type ID $meta"));
527 },
528 fn(SplashPotion $item) => PotionTypeIdMap::getInstance()->toId($item->getType())
529 );
530 $this->map1to1ItemWithMeta(
531 Ids::SUSPICIOUS_STEW,
532 Items::SUSPICIOUS_STEW(),
533 function(SuspiciousStew $item, int $meta) : void{
534 $item->setType(SuspiciousStewTypeIdMap::getInstance()->fromId($meta) ?? throw new ItemTypeDeserializeException("Unknown suspicious stew type ID $meta"));
535 },
536 fn(SuspiciousStew $item) => SuspiciousStewTypeIdMap::getInstance()->toId($item->getType())
537 );
538 }
539
547 private function registerMiscItemMappings() : void{
548 foreach(DyeColor::cases() as $color){
549 $id = DyeColorIdMap::getInstance()->toItemId($color);
550 $this->deserializer?->map($id, fn() => Items::DYE()->setColor($color));
551 }
552 $this->serializer?->map(Items::DYE(), fn(Dye $item) => new Data(DyeColorIdMap::getInstance()->toItemId($item->getColor())));
553 }
554
562 private function registerMiscBlockMappings() : void{
563 $copperDoorStateIdMap = [];
564 foreach ([
565 [Ids::COPPER_DOOR, CopperOxidation::NONE, false],
566 [Ids::EXPOSED_COPPER_DOOR, CopperOxidation::EXPOSED, false],
567 [Ids::WEATHERED_COPPER_DOOR, CopperOxidation::WEATHERED, false],
568 [Ids::OXIDIZED_COPPER_DOOR, CopperOxidation::OXIDIZED, false],
569 [Ids::WAXED_COPPER_DOOR, CopperOxidation::NONE, true],
570 [Ids::WAXED_EXPOSED_COPPER_DOOR, CopperOxidation::EXPOSED, true],
571 [Ids::WAXED_WEATHERED_COPPER_DOOR, CopperOxidation::WEATHERED, true],
572 [Ids::WAXED_OXIDIZED_COPPER_DOOR, CopperOxidation::OXIDIZED, true]
573 ] as [$id, $oxidation, $waxed]) {
574 $copperDoorStateIdMap[$oxidation->value][$waxed ? 1 : 0] = $id;
575 $this->deserializer?->mapBlock($id, fn() => Blocks::COPPER_DOOR()->setOxidation($oxidation)->setWaxed($waxed));
576 }
577 $this->serializer?->mapBlock(Blocks::COPPER_DOOR(), fn(CopperDoor $block) => new Data($copperDoorStateIdMap[$block->getOxidation()->value][$block->isWaxed() ? 1 : 0]));
578 }
579}
map1to1BlockWithMeta(string $id, Block $block, \Closure $deserializeMeta, \Closure $serializeMeta)
map1to1ItemWithMeta(string $id, Item $item, \Closure $deserializeMeta, \Closure $serializeMeta)