mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-05-17 19:28:55 +00:00
76 lines
2.4 KiB
PHP
76 lines
2.4 KiB
PHP
<?php
|
|
|
|
/*
|
|
*
|
|
* ____ _ _ __ __ _ __ __ ____
|
|
* | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
|
|
* | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
|
|
* | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
|
|
* |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
|
|
*
|
|
* This program 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.
|
|
*
|
|
* @author PocketMine Team
|
|
* @link http://www.pocketmine.net/
|
|
*
|
|
*
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace pocketmine\crafting;
|
|
|
|
use pocketmine\item\Item;
|
|
use pocketmine\utils\AssumptionFailedError;
|
|
use function array_map;
|
|
use function file_get_contents;
|
|
use function is_array;
|
|
use function json_decode;
|
|
|
|
final class CraftingManagerFromDataHelper{
|
|
|
|
public static function make(string $filePath) : CraftingManager{
|
|
$recipes = json_decode(file_get_contents($filePath), true);
|
|
if(!is_array($recipes)){
|
|
throw new AssumptionFailedError("recipes.json root should contain a map of recipe types");
|
|
}
|
|
$result = new CraftingManager();
|
|
|
|
$itemDeserializerFunc = \Closure::fromCallable([Item::class, 'jsonDeserialize']);
|
|
|
|
foreach($recipes["shapeless"] as $recipe){
|
|
if($recipe["block"] !== "crafting_table"){ //TODO: filter others out for now to avoid breaking economics
|
|
continue;
|
|
}
|
|
$result->registerShapelessRecipe(new ShapelessRecipe(
|
|
array_map($itemDeserializerFunc, $recipe["input"]),
|
|
array_map($itemDeserializerFunc, $recipe["output"])
|
|
));
|
|
}
|
|
foreach($recipes["shaped"] as $recipe){
|
|
if($recipe["block"] !== "crafting_table"){ //TODO: filter others out for now to avoid breaking economics
|
|
continue;
|
|
}
|
|
$result->registerShapedRecipe(new ShapedRecipe(
|
|
$recipe["shape"],
|
|
array_map($itemDeserializerFunc, $recipe["input"]),
|
|
array_map($itemDeserializerFunc, $recipe["output"])
|
|
));
|
|
}
|
|
foreach($recipes["smelting"] as $recipe){
|
|
if($recipe["block"] !== "furnace"){ //TODO: filter others out for now to avoid breaking economics
|
|
continue;
|
|
}
|
|
$result->getFurnaceRecipeManager()->register(new FurnaceRecipe(
|
|
Item::jsonDeserialize($recipe["output"]),
|
|
Item::jsonDeserialize($recipe["input"]))
|
|
);
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
}
|