PocketMine-MP 5.32.2 git-1ebd7d3960d713d56f77f610fe0c15cdee201069
Loading...
Searching...
No Matches
BaseOminousBanner.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;
27use pocketmine\block\utils\DyeColor;
28use pocketmine\block\utils\SupportType;
34use function assert;
35
36abstract class BaseOminousBanner extends Transparent{
37
38 public function writeStateToWorld() : void{
39 parent::writeStateToWorld();
40 $tile = $this->position->getWorld()->getTile($this->position);
41 assert($tile instanceof TileBanner);
42 $tile->setBaseColor(DyeColor::WHITE);
43 $tile->setPatterns([]);
44 $tile->setType(TileBanner::TYPE_OMINOUS);
45 }
46
47 public function isSolid() : bool{
48 return false;
49 }
50
51 public function getMaxStackSize() : int{
52 return 16;
53 }
54
55 public function getFuelTime() : int{
56 return 300;
57 }
58
59 protected function recalculateCollisionBoxes() : array{
60 return [];
61 }
62
63 public function getSupportType(int $facing) : SupportType{
64 return SupportType::NONE;
65 }
66
67 private function canBeSupportedBy(Block $block) : bool{
68 return $block->isSolid();
69 }
70
71 public function place(BlockTransaction $tx, Item $item, Block $blockReplace, Block $blockClicked, int $face, Vector3 $clickVector, ?Player $player = null) : bool{
72 if(!$this->canBeSupportedBy($blockReplace->getSide($this->getSupportingFace()))){
73 return false;
74 }
75
76 return parent::place($tx, $item, $blockReplace, $blockClicked, $face, $clickVector, $player);
77 }
78
79 abstract protected function getSupportingFace() : int;
80
81 public function onNearbyBlockChange() : void{
82 if(!$this->canBeSupportedBy($this->getSide($this->getSupportingFace()))){
83 $this->position->getWorld()->useBreakOn($this->position);
84 }
85 }
86
87 public function asItem() : Item{
88 return VanillaItems::OMINOUS_BANNER();
89 }
90}
place(BlockTransaction $tx, Item $item, Block $blockReplace, Block $blockClicked, int $face, Vector3 $clickVector, ?Player $player=null)