mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-05 17:36:12 +00:00
153 lines
3.6 KiB
PHP
153 lines
3.6 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/
|
|
*
|
|
*
|
|
*/
|
|
|
|
|
|
namespace pocketmine\item;
|
|
|
|
use pocketmine\block\Block;
|
|
use pocketmine\entity\Entity;
|
|
use pocketmine\nbt\tag\ByteTag;
|
|
|
|
abstract class Tool extends Item{
|
|
const TIER_WOODEN = 1;
|
|
const TIER_GOLD = 2;
|
|
const TIER_STONE = 3;
|
|
const TIER_IRON = 4;
|
|
const TIER_DIAMOND = 5;
|
|
|
|
const TYPE_NONE = 0;
|
|
const TYPE_SWORD = 1;
|
|
const TYPE_SHOVEL = 2;
|
|
const TYPE_PICKAXE = 3;
|
|
const TYPE_AXE = 4;
|
|
const TYPE_SHEARS = 5;
|
|
|
|
public function __construct($id, $meta = 0, $count = 1, $name = "Unknown"){
|
|
parent::__construct($id, $meta, $count, $name);
|
|
}
|
|
|
|
public function getMaxStackSize(){
|
|
return 1;
|
|
}
|
|
|
|
/**
|
|
* TODO: Move this to each item
|
|
*
|
|
* @param Entity|Block $object
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function useOn($object){
|
|
if($this->isUnbreakable()){
|
|
return true;
|
|
}
|
|
|
|
if($object instanceof Block){
|
|
if(
|
|
$object->getToolType() === Tool::TYPE_PICKAXE and $this->isPickaxe() or
|
|
$object->getToolType() === Tool::TYPE_SHOVEL and $this->isShovel() or
|
|
$object->getToolType() === Tool::TYPE_AXE and $this->isAxe() or
|
|
$object->getToolType() === Tool::TYPE_SWORD and $this->isSword() or
|
|
$object->getToolType() === Tool::TYPE_SHEARS and $this->isShears()
|
|
){
|
|
$this->meta++;
|
|
}elseif(!$this->isShears() and $object->getBreakTime($this) > 0){
|
|
$this->meta += 2;
|
|
}
|
|
}elseif($this->isHoe()){
|
|
if(($object instanceof Block) and ($object->getId() === self::GRASS or $object->getId() === self::DIRT)){
|
|
$this->meta++;
|
|
}
|
|
}elseif(($object instanceof Entity) and !$this->isSword()){
|
|
$this->meta += 2;
|
|
}else{
|
|
$this->meta++;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* TODO: Move this to each item
|
|
*
|
|
* @return int|bool
|
|
*/
|
|
public function getMaxDurability(){
|
|
|
|
$levels = [
|
|
Tool::TIER_GOLD => 33,
|
|
Tool::TIER_WOODEN => 60,
|
|
Tool::TIER_STONE => 132,
|
|
Tool::TIER_IRON => 251,
|
|
Tool::TIER_DIAMOND => 1562,
|
|
self::FLINT_STEEL => 65,
|
|
self::SHEARS => 239,
|
|
self::BOW => 385,
|
|
];
|
|
|
|
if(($type = $this->isPickaxe()) === false){
|
|
if(($type = $this->isAxe()) === false){
|
|
if(($type = $this->isSword()) === false){
|
|
if(($type = $this->isShovel()) === false){
|
|
if(($type = $this->isHoe()) === false){
|
|
$type = $this->id;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return $levels[$type];
|
|
}
|
|
|
|
public function isUnbreakable(){
|
|
$tag = $this->getNamedTagEntry("Unbreakable");
|
|
return $tag !== null and $tag->getValue() > 0;
|
|
}
|
|
|
|
public function isPickaxe(){
|
|
return false;
|
|
}
|
|
|
|
public function isAxe(){
|
|
return false;
|
|
}
|
|
|
|
public function isSword(){
|
|
return false;
|
|
}
|
|
|
|
public function isShovel(){
|
|
return false;
|
|
}
|
|
|
|
public function isHoe(){
|
|
return false;
|
|
}
|
|
|
|
public function isShears(){
|
|
return ($this->id === self::SHEARS);
|
|
}
|
|
|
|
public function isTool(){
|
|
return ($this->id === self::FLINT_STEEL or $this->id === self::SHEARS or $this->id === self::BOW or $this->isPickaxe() !== false or $this->isAxe() !== false or $this->isShovel() !== false or $this->isSword() !== false);
|
|
}
|
|
} |