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