PocketMine-MP 5.15.1 git-5ef247620a7c6301a849b54e5ef1009217729fc8
EnchantCommand.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\command\defaults;
25
33use function count;
34
36
37 public function __construct(){
38 parent::__construct(
39 "enchant",
40 KnownTranslationFactory::pocketmine_command_enchant_description(),
41 KnownTranslationFactory::commands_enchant_usage()
42 );
43 $this->setPermissions([
44 DefaultPermissionNames::COMMAND_ENCHANT_SELF,
45 DefaultPermissionNames::COMMAND_ENCHANT_OTHER
46 ]);
47 }
48
49 public function execute(CommandSender $sender, string $commandLabel, array $args){
50 if(count($args) < 2){
52 }
53
54 $player = $this->fetchPermittedPlayerTarget($sender, $args[0], DefaultPermissionNames::COMMAND_ENCHANT_SELF, DefaultPermissionNames::COMMAND_ENCHANT_OTHER);
55 if($player === null){
56 return true;
57 }
58
59 $item = $player->getInventory()->getItemInHand();
60
61 if($item->isNull()){
62 $sender->sendMessage(KnownTranslationFactory::commands_enchant_noItem());
63 return true;
64 }
65
66 $enchantment = StringToEnchantmentParser::getInstance()->parse($args[1]);
67 if($enchantment === null){
68 $sender->sendMessage(KnownTranslationFactory::commands_enchant_notFound($args[1]));
69 return true;
70 }
71
72 $level = 1;
73 if(isset($args[2])){
74 $level = $this->getBoundedInt($sender, $args[2], 1, $enchantment->getMaxLevel());
75 if($level === null){
76 return false;
77 }
78 }
79
80 //this is necessary to deal with enchanted books, which are a different item type than regular books
81 $enchantedItem = EnchantingHelper::enchantItem($item, [new EnchantmentInstance($enchantment, $level)]);
82 $player->getInventory()->setItemInHand($enchantedItem);
83
84 self::broadcastCommandMessage($sender, KnownTranslationFactory::commands_enchant_success($player->getName()));
85 return true;
86 }
87}
setPermissions(array $permissions)
Definition: Command.php:96
execute(CommandSender $sender, string $commandLabel, array $args)
static enchantItem(Item $item, array $enchantments)