PocketMine-MP 5.17.1 git-df4ada81e5d74a14046f27cf44a37dcee69d657e
BaseBanner.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\block;
25
26use pocketmine\block\tile\Banner as TileBanner;
28use pocketmine\block\utils\ColoredTrait;
29use pocketmine\block\utils\SupportType;
30use pocketmine\item\Banner as ItemBanner;
37use function assert;
38use function count;
39
40abstract class BaseBanner extends Transparent{
41 use ColoredTrait;
42
47 protected array $patterns = [];
48
49 public function readStateFromWorld() : Block{
50 parent::readStateFromWorld();
51 $tile = $this->position->getWorld()->getTile($this->position);
52 if($tile instanceof TileBanner){
53 $this->color = $tile->getBaseColor();
54 $this->setPatterns($tile->getPatterns());
55 }
56
57 return $this;
58 }
59
60 public function writeStateToWorld() : void{
61 parent::writeStateToWorld();
62 $tile = $this->position->getWorld()->getTile($this->position);
63 assert($tile instanceof TileBanner);
64 $tile->setBaseColor($this->color);
65 $tile->setPatterns($this->patterns);
66 }
67
68 public function isSolid() : bool{
69 return false;
70 }
71
72 public function getMaxStackSize() : int{
73 return 16;
74 }
75
80 public function getPatterns() : array{
81 return $this->patterns;
82 }
83
90 public function setPatterns(array $patterns) : self{
91 foreach($patterns as $pattern){
92 if(!$pattern instanceof BannerPatternLayer){
93 throw new \TypeError("Array must only contain " . BannerPatternLayer::class . " objects");
94 }
95 }
96 $this->patterns = $patterns;
97 return $this;
98 }
99
103 protected function recalculateCollisionBoxes() : array{
104 return [];
105 }
106
107 public function getSupportType(int $facing) : SupportType{
108 return SupportType::NONE;
109 }
110
111 private function canBeSupportedBy(Block $block) : bool{
112 return $block->isSolid();
113 }
114
115 public function place(BlockTransaction $tx, Item $item, Block $blockReplace, Block $blockClicked, int $face, Vector3 $clickVector, ?Player $player = null) : bool{
116 if(!$this->canBeSupportedBy($blockReplace->getSide($this->getSupportingFace()))){
117 return false;
118 }
119 if($item instanceof ItemBanner){
120 $this->color = $item->getColor();
121 $this->setPatterns($item->getPatterns());
122 }
123
124 return parent::place($tx, $item, $blockReplace, $blockClicked, $face, $clickVector, $player);
125 }
126
127 abstract protected function getSupportingFace() : int;
128
129 public function onNearbyBlockChange() : void{
130 if(!$this->canBeSupportedBy($this->getSide($this->getSupportingFace()))){
131 $this->position->getWorld()->useBreakOn($this->position);
132 }
133 }
134
135 public function getDropsForCompatibleTool(Item $item) : array{
136 $drop = $this->asItem();
137 if($drop instanceof ItemBanner && count($this->patterns) > 0){
138 $drop->setPatterns($this->patterns);
139 }
140
141 return [$drop];
142 }
143
144 public function getPickedItem(bool $addUserData = false) : Item{
145 $result = $this->asItem();
146 if($addUserData && $result instanceof ItemBanner && count($this->patterns) > 0){
147 $result->setPatterns($this->patterns);
148 }
149 return $result;
150 }
151
152 public function asItem() : Item{
153 return VanillaItems::BANNER()->setColor($this->color);
154 }
155}
getDropsForCompatibleTool(Item $item)
Definition: BaseBanner.php:135
setPatterns(array $patterns)
Definition: BaseBanner.php:90
place(BlockTransaction $tx, Item $item, Block $blockReplace, Block $blockClicked, int $face, Vector3 $clickVector, ?Player $player=null)
Definition: BaseBanner.php:115
getPickedItem(bool $addUserData=false)
Definition: BaseBanner.php:144