PocketMine-MP 5.33.2 git-1133d49c924b4358c79d44eeb97dcbf56cb4d1eb
Loading...
Searching...
No Matches
LiquidBucket.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\item;
25
33
34class LiquidBucket extends Item{
35 private Liquid $liquid;
36
37 public function __construct(ItemIdentifier $identifier, string $name, Liquid $liquid){
38 parent::__construct($identifier, $name);
39 $this->liquid = $liquid;
40 }
41
42 public function getMaxStackSize() : int{
43 return 1;
44 }
45
46 public function getFuelTime() : int{
47 if($this->liquid instanceof Lava){
48 return 20000;
49 }
50
51 return 0;
52 }
53
54 public function getFuelResidue() : Item{
55 return VanillaItems::BUCKET();
56 }
57
58 public function onInteractBlock(Player $player, Block $blockReplace, Block $blockClicked, Facing $face, Vector3 $clickVector, array &$returnedItems) : ItemUseResult{
59 if(!$blockReplace->canBeReplaced()){
60 return ItemUseResult::NONE;
61 }
62
63 //TODO: move this to generic placement logic
64 $resultBlock = clone $this->liquid;
65
66 $ev = new PlayerBucketEmptyEvent($player, $blockReplace, $face, $this, VanillaItems::BUCKET());
67 $ev->call();
68 if(!$ev->isCancelled()){
69 $player->getWorld()->setBlock($blockReplace->getPosition(), $resultBlock->getFlowingForm());
70 $player->getWorld()->addSound($blockReplace->getPosition()->add(0.5, 0.5, 0.5), $resultBlock->getBucketEmptySound());
71
72 $this->pop();
73 $returnedItems[] = $ev->getItem();
74 return ItemUseResult::SUCCESS;
75 }
76
77 return ItemUseResult::FAIL;
78 }
79
80 public function getLiquid() : Liquid{
81 return $this->liquid;
82 }
83}
onInteractBlock(Player $player, Block $blockReplace, Block $blockClicked, Facing $face, Vector3 $clickVector, array &$returnedItems)