mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-07-14 22:01:59 +00:00
Abstracted Fence code away from wooden fences
This commit is contained in:
parent
15d6fd86e2
commit
3eb73ab468
@ -154,7 +154,7 @@ class BlockFactory{
|
|||||||
self::registerBlock(new Clay());
|
self::registerBlock(new Clay());
|
||||||
self::registerBlock(new Sugarcane());
|
self::registerBlock(new Sugarcane());
|
||||||
//TODO: JUKEBOX
|
//TODO: JUKEBOX
|
||||||
self::registerBlock(new Fence());
|
self::registerBlock(new WoodenFence());
|
||||||
self::registerBlock(new Pumpkin());
|
self::registerBlock(new Pumpkin());
|
||||||
self::registerBlock(new Netherrack());
|
self::registerBlock(new Netherrack());
|
||||||
self::registerBlock(new SoulSand());
|
self::registerBlock(new SoulSand());
|
||||||
|
@ -23,72 +23,30 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace pocketmine\block;
|
namespace pocketmine\block;
|
||||||
|
|
||||||
use pocketmine\item\Tool;
|
|
||||||
use pocketmine\math\AxisAlignedBB;
|
use pocketmine\math\AxisAlignedBB;
|
||||||
use pocketmine\math\Vector3;
|
use pocketmine\math\Vector3;
|
||||||
|
|
||||||
class Fence extends Transparent{
|
abstract class Fence extends Transparent{
|
||||||
const FENCE_OAK = 0;
|
|
||||||
const FENCE_SPRUCE = 1;
|
|
||||||
const FENCE_BIRCH = 2;
|
|
||||||
const FENCE_JUNGLE = 3;
|
|
||||||
const FENCE_ACACIA = 4;
|
|
||||||
const FENCE_DARKOAK = 5;
|
|
||||||
|
|
||||||
protected $id = self::FENCE;
|
|
||||||
|
|
||||||
public function __construct(int $meta = 0){
|
public function __construct(int $meta = 0){
|
||||||
$this->meta = $meta;
|
$this->meta = $meta;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getHardness() : float{
|
|
||||||
return 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getToolType() : int{
|
|
||||||
return Tool::TYPE_AXE;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public function getName() : string{
|
|
||||||
static $names = [
|
|
||||||
self::FENCE_OAK => "Oak Fence",
|
|
||||||
self::FENCE_SPRUCE => "Spruce Fence",
|
|
||||||
self::FENCE_BIRCH => "Birch Fence",
|
|
||||||
self::FENCE_JUNGLE => "Jungle Fence",
|
|
||||||
self::FENCE_ACACIA => "Acacia Fence",
|
|
||||||
self::FENCE_DARKOAK => "Dark Oak Fence"
|
|
||||||
];
|
|
||||||
return $names[$this->meta & 0x07] ?? "Unknown";
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function recalculateBoundingBox() : ?AxisAlignedBB{
|
protected function recalculateBoundingBox() : ?AxisAlignedBB{
|
||||||
|
$width = 0.375;
|
||||||
$north = $this->canConnect($this->getSide(Vector3::SIDE_NORTH));
|
|
||||||
$south = $this->canConnect($this->getSide(Vector3::SIDE_SOUTH));
|
|
||||||
$west = $this->canConnect($this->getSide(Vector3::SIDE_WEST));
|
|
||||||
$east = $this->canConnect($this->getSide(Vector3::SIDE_EAST));
|
|
||||||
|
|
||||||
$n = $north ? 0 : 0.375;
|
|
||||||
$s = $south ? 1 : 0.625;
|
|
||||||
$w = $west ? 0 : 0.375;
|
|
||||||
$e = $east ? 1 : 0.625;
|
|
||||||
|
|
||||||
return new AxisAlignedBB(
|
return new AxisAlignedBB(
|
||||||
$this->x + $w,
|
$this->x + ($this->canConnect($this->getSide(Vector3::SIDE_WEST)) ? 0 : $width),
|
||||||
$this->y,
|
$this->y,
|
||||||
$this->z + $n,
|
$this->z + ($this->canConnect($this->getSide(Vector3::SIDE_NORTH)) ? 0 : $width),
|
||||||
$this->x + $e,
|
$this->x + 1 - ($this->canConnect($this->getSide(Vector3::SIDE_EAST)) ? 0 : $width),
|
||||||
$this->y + 1.5,
|
$this->y + 1.5,
|
||||||
$this->z + $s
|
$this->z + 1 - ($this->canConnect($this->getSide(Vector3::SIDE_SOUTH)) ? 0 : $width)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function canConnect(Block $block){
|
public function canConnect(Block $block){
|
||||||
return $block instanceof Fence or $block instanceof FenceGate or ($block->isSolid() and !$block->isTransparent());
|
return $block instanceof static or $block instanceof FenceGate or ($block->isSolid() and !$block->isTransparent());
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getFuelTime() : int{
|
|
||||||
return 300;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -25,17 +25,11 @@ namespace pocketmine\block;
|
|||||||
|
|
||||||
use pocketmine\item\Item;
|
use pocketmine\item\Item;
|
||||||
use pocketmine\item\Tool;
|
use pocketmine\item\Tool;
|
||||||
use pocketmine\math\AxisAlignedBB;
|
|
||||||
use pocketmine\math\Vector3;
|
|
||||||
|
|
||||||
class NetherBrickFence extends Transparent{
|
class NetherBrickFence extends Fence{
|
||||||
|
|
||||||
protected $id = self::NETHER_BRICK_FENCE;
|
protected $id = self::NETHER_BRICK_FENCE;
|
||||||
|
|
||||||
public function __construct(int $meta = 0){
|
|
||||||
$this->meta = $meta;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getHardness() : float{
|
public function getHardness() : float{
|
||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
@ -48,23 +42,6 @@ class NetherBrickFence extends Transparent{
|
|||||||
return "Nether Brick Fence";
|
return "Nether Brick Fence";
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function recalculateBoundingBox() : ?AxisAlignedBB{
|
|
||||||
$width = 0.375;
|
|
||||||
|
|
||||||
return new AxisAlignedBB(
|
|
||||||
$this->x + ($this->canConnect($this->getSide(Vector3::SIDE_WEST)) ? 0 : $width),
|
|
||||||
$this->y,
|
|
||||||
$this->z + ($this->canConnect($this->getSide(Vector3::SIDE_NORTH)) ? 0 : $width),
|
|
||||||
$this->x + 1 - ($this->canConnect($this->getSide(Vector3::SIDE_EAST)) ? 0 : $width),
|
|
||||||
$this->y + 1.5,
|
|
||||||
$this->z + 1 - ($this->canConnect($this->getSide(Vector3::SIDE_SOUTH)) ? 0 : $width)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function canConnect(Block $block){
|
|
||||||
return $block instanceof NetherBrickFence or $block instanceof FenceGate or ($block->isSolid() and !$block->isTransparent());
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getDrops(Item $item) : array{
|
public function getDrops(Item $item) : array{
|
||||||
if($item->isPickaxe() >= Tool::TIER_WOODEN){
|
if($item->isPickaxe() >= Tool::TIER_WOODEN){
|
||||||
return parent::getDrops($item);
|
return parent::getDrops($item);
|
||||||
|
61
src/pocketmine/block/WoodenFence.php
Normal file
61
src/pocketmine/block/WoodenFence.php
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
<?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\block;
|
||||||
|
|
||||||
|
use pocketmine\item\Tool;
|
||||||
|
|
||||||
|
class WoodenFence extends Fence{
|
||||||
|
const FENCE_OAK = 0;
|
||||||
|
const FENCE_SPRUCE = 1;
|
||||||
|
const FENCE_BIRCH = 2;
|
||||||
|
const FENCE_JUNGLE = 3;
|
||||||
|
const FENCE_ACACIA = 4;
|
||||||
|
const FENCE_DARKOAK = 5;
|
||||||
|
|
||||||
|
protected $id = self::FENCE;
|
||||||
|
|
||||||
|
public function getHardness() : float{
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getToolType() : int{
|
||||||
|
return Tool::TYPE_AXE;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getName() : string{
|
||||||
|
static $names = [
|
||||||
|
self::FENCE_OAK => "Oak Fence",
|
||||||
|
self::FENCE_SPRUCE => "Spruce Fence",
|
||||||
|
self::FENCE_BIRCH => "Birch Fence",
|
||||||
|
self::FENCE_JUNGLE => "Jungle Fence",
|
||||||
|
self::FENCE_ACACIA => "Acacia Fence",
|
||||||
|
self::FENCE_DARKOAK => "Dark Oak Fence"
|
||||||
|
];
|
||||||
|
return $names[$this->meta & 0x07] ?? "Unknown";
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getFuelTime() : int{
|
||||||
|
return 300;
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user