Skip to content

Create ItemArgument.php #51

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions src/CortexPE/Commando/args/ItemArgument.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<?php

declare(strict_types=1);

namespace CortexPE\Commando\args;

use CortexPE\Commando\args\StringEnumArgument;

use pocketmine\item\Item;
use pocketmine\item\StringToItemParser;
use pocketmine\command\CommandSender;

final class ItemArgument extends StringEnumArgument {

public function getTypeName() : string {
return "item";
}

public function canParse(string $testString, CommandSender $sender) : bool {
return $this->getValue($testString) instanceof Item;
}

public function parse(string $argument, CommandSender $sender) : ?Item {
return $this->getValue($argument);
}

public function getValue(string $string) : ?Item {
return StringToItemParser::getInstance()->parse($string);
}

public function getEnumValues() : array {
return StringToItemParser::getInstance()->getKnownAliases();
}

}