mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-07-14 05:45:12 +00:00
Implemented pink petals (#5940)
This commit is contained in:
parent
baefbce863
commit
77dfbc4e23
@ -736,8 +736,9 @@ final class BlockTypeIds{
|
|||||||
public const SMALL_DRIPLEAF = 10706;
|
public const SMALL_DRIPLEAF = 10706;
|
||||||
public const BIG_DRIPLEAF_HEAD = 10707;
|
public const BIG_DRIPLEAF_HEAD = 10707;
|
||||||
public const BIG_DRIPLEAF_STEM = 10708;
|
public const BIG_DRIPLEAF_STEM = 10708;
|
||||||
|
public const PINK_PETALS = 10709;
|
||||||
|
|
||||||
public const FIRST_UNUSED_BLOCK_ID = 10709;
|
public const FIRST_UNUSED_BLOCK_ID = 10710;
|
||||||
|
|
||||||
private static int $nextDynamicId = self::FIRST_UNUSED_BLOCK_ID;
|
private static int $nextDynamicId = self::FIRST_UNUSED_BLOCK_ID;
|
||||||
|
|
||||||
|
119
src/block/PinkPetals.php
Normal file
119
src/block/PinkPetals.php
Normal file
@ -0,0 +1,119 @@
|
|||||||
|
<?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\block\utils\BlockEventHelper;
|
||||||
|
use pocketmine\block\utils\HorizontalFacingTrait;
|
||||||
|
use pocketmine\data\runtime\RuntimeDataDescriber;
|
||||||
|
use pocketmine\item\Fertilizer;
|
||||||
|
use pocketmine\item\Item;
|
||||||
|
use pocketmine\math\Facing;
|
||||||
|
use pocketmine\math\Vector3;
|
||||||
|
use pocketmine\player\Player;
|
||||||
|
use pocketmine\world\BlockTransaction;
|
||||||
|
|
||||||
|
class PinkPetals extends Flowable{
|
||||||
|
use HorizontalFacingTrait;
|
||||||
|
|
||||||
|
public const MIN_COUNT = 1;
|
||||||
|
public const MAX_COUNT = 4;
|
||||||
|
|
||||||
|
protected int $count = self::MIN_COUNT;
|
||||||
|
|
||||||
|
protected function describeBlockOnlyState(RuntimeDataDescriber $w) : void{
|
||||||
|
$w->horizontalFacing($this->facing);
|
||||||
|
$w->boundedInt(2, self::MIN_COUNT, self::MAX_COUNT, $this->count);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getCount() : int{
|
||||||
|
return $this->count;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** @return $this */
|
||||||
|
public function setCount(int $count) : self{
|
||||||
|
if($count < self::MIN_COUNT || $count > self::MAX_COUNT){
|
||||||
|
throw new \InvalidArgumentException("Count must be in range " . self::MIN_COUNT . " ... " . self::MAX_COUNT);
|
||||||
|
}
|
||||||
|
$this->count = $count;
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
private function canBeSupportedAt(Block $block) : bool{
|
||||||
|
$supportBlock = $block->getSide(Facing::DOWN);
|
||||||
|
//TODO: Moss block
|
||||||
|
return $supportBlock->hasTypeTag(BlockTypeTags::DIRT) || $supportBlock->hasTypeTag(BlockTypeTags::MUD);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function onNearbyBlockChange() : void{
|
||||||
|
if(!$this->canBeSupportedAt($this)){
|
||||||
|
$this->position->getWorld()->useBreakOn($this->position);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function canBePlacedAt(Block $blockReplace, Vector3 $clickVector, int $face, bool $isClickedBlock) : bool{
|
||||||
|
return ($blockReplace instanceof PinkPetals && $blockReplace->getCount() < self::MAX_COUNT) || parent::canBePlacedAt($blockReplace, $clickVector, $face, $isClickedBlock);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function place(BlockTransaction $tx, Item $item, Block $blockReplace, Block $blockClicked, int $face, Vector3 $clickVector, ?Player $player = null) : bool{
|
||||||
|
if(!$this->canBeSupportedAt($this)){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if($blockReplace instanceof PinkPetals && $blockReplace->getCount() < self::MAX_COUNT){
|
||||||
|
$this->count = $blockReplace->getCount() + 1;
|
||||||
|
$this->facing = $blockReplace->getFacing();
|
||||||
|
}elseif($player !== null){
|
||||||
|
$this->facing = Facing::opposite($player->getHorizontalFacing());
|
||||||
|
}
|
||||||
|
return parent::place($tx, $item, $blockReplace, $blockClicked, $face, $clickVector, $player);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function onInteract(Item $item, int $face, Vector3 $clickVector, ?Player $player = null, array &$returnedItems = []) : bool{
|
||||||
|
if($item instanceof Fertilizer){
|
||||||
|
$grew = false;
|
||||||
|
if($this->count < self::MAX_COUNT){
|
||||||
|
$grew = BlockEventHelper::grow($this, (clone $this)->setCount($this->count + 1), $player);
|
||||||
|
}else{
|
||||||
|
$this->position->getWorld()->dropItem($this->position->add(0, 0.5, 0), $this->asItem());
|
||||||
|
$grew = true;
|
||||||
|
}
|
||||||
|
if($grew){
|
||||||
|
$item->pop();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getFlameEncouragement() : int{
|
||||||
|
return 60;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getFlammability() : int{
|
||||||
|
return 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getDropsForCompatibleTool(Item $item) : array{
|
||||||
|
return [$this->asItem()->setCount($this->count)];
|
||||||
|
}
|
||||||
|
}
|
@ -573,6 +573,7 @@ use function mb_strtolower;
|
|||||||
* @method static PackedIce PACKED_ICE()
|
* @method static PackedIce PACKED_ICE()
|
||||||
* @method static Opaque PACKED_MUD()
|
* @method static Opaque PACKED_MUD()
|
||||||
* @method static DoublePlant PEONY()
|
* @method static DoublePlant PEONY()
|
||||||
|
* @method static PinkPetals PINK_PETALS()
|
||||||
* @method static Flower PINK_TULIP()
|
* @method static Flower PINK_TULIP()
|
||||||
* @method static Podzol PODZOL()
|
* @method static Podzol PODZOL()
|
||||||
* @method static Opaque POLISHED_ANDESITE()
|
* @method static Opaque POLISHED_ANDESITE()
|
||||||
@ -840,6 +841,7 @@ final class VanillaBlocks{
|
|||||||
self::register("lilac", new DoublePlant(new BID(Ids::LILAC), "Lilac", new Info(BreakInfo::instant())));
|
self::register("lilac", new DoublePlant(new BID(Ids::LILAC), "Lilac", new Info(BreakInfo::instant())));
|
||||||
self::register("rose_bush", new DoublePlant(new BID(Ids::ROSE_BUSH), "Rose Bush", new Info(BreakInfo::instant())));
|
self::register("rose_bush", new DoublePlant(new BID(Ids::ROSE_BUSH), "Rose Bush", new Info(BreakInfo::instant())));
|
||||||
self::register("peony", new DoublePlant(new BID(Ids::PEONY), "Peony", new Info(BreakInfo::instant())));
|
self::register("peony", new DoublePlant(new BID(Ids::PEONY), "Peony", new Info(BreakInfo::instant())));
|
||||||
|
self::register("pink_petals", new PinkPetals(new BID(Ids::PINK_PETALS), "Pink Petals", new Info(BreakInfo::instant())));
|
||||||
self::register("double_tallgrass", new DoubleTallGrass(new BID(Ids::DOUBLE_TALLGRASS), "Double Tallgrass", new Info(BreakInfo::instant(ToolType::SHEARS, 1))));
|
self::register("double_tallgrass", new DoubleTallGrass(new BID(Ids::DOUBLE_TALLGRASS), "Double Tallgrass", new Info(BreakInfo::instant(ToolType::SHEARS, 1))));
|
||||||
self::register("large_fern", new DoubleTallGrass(new BID(Ids::LARGE_FERN), "Large Fern", new Info(BreakInfo::instant(ToolType::SHEARS, 1))));
|
self::register("large_fern", new DoubleTallGrass(new BID(Ids::LARGE_FERN), "Large Fern", new Info(BreakInfo::instant(ToolType::SHEARS, 1))));
|
||||||
self::register("dragon_egg", new DragonEgg(new BID(Ids::DRAGON_EGG), "Dragon Egg", new Info(BreakInfo::pickaxe(3.0, ToolTier::WOOD()))));
|
self::register("dragon_egg", new DragonEgg(new BID(Ids::DRAGON_EGG), "Dragon Egg", new Info(BreakInfo::pickaxe(3.0, ToolTier::WOOD()))));
|
||||||
|
@ -100,6 +100,7 @@ use pocketmine\block\MobHead;
|
|||||||
use pocketmine\block\NetherPortal;
|
use pocketmine\block\NetherPortal;
|
||||||
use pocketmine\block\NetherVines;
|
use pocketmine\block\NetherVines;
|
||||||
use pocketmine\block\NetherWartPlant;
|
use pocketmine\block\NetherWartPlant;
|
||||||
|
use pocketmine\block\PinkPetals;
|
||||||
use pocketmine\block\Potato;
|
use pocketmine\block\Potato;
|
||||||
use pocketmine\block\PoweredRail;
|
use pocketmine\block\PoweredRail;
|
||||||
use pocketmine\block\PumpkinStem;
|
use pocketmine\block\PumpkinStem;
|
||||||
@ -1364,6 +1365,11 @@ final class BlockObjectToStateSerializer implements BlockStateSerializer{
|
|||||||
$this->map(Blocks::ORANGE_TULIP(), fn() => Helper::encodeRedFlower(StringValues::FLOWER_TYPE_TULIP_ORANGE));
|
$this->map(Blocks::ORANGE_TULIP(), fn() => Helper::encodeRedFlower(StringValues::FLOWER_TYPE_TULIP_ORANGE));
|
||||||
$this->map(Blocks::OXEYE_DAISY(), fn() => Helper::encodeRedFlower(StringValues::FLOWER_TYPE_OXEYE));
|
$this->map(Blocks::OXEYE_DAISY(), fn() => Helper::encodeRedFlower(StringValues::FLOWER_TYPE_OXEYE));
|
||||||
$this->map(Blocks::PEONY(), fn(DoublePlant $block) => Helper::encodeDoublePlant($block, StringValues::DOUBLE_PLANT_TYPE_PAEONIA, Writer::create(Ids::DOUBLE_PLANT)));
|
$this->map(Blocks::PEONY(), fn(DoublePlant $block) => Helper::encodeDoublePlant($block, StringValues::DOUBLE_PLANT_TYPE_PAEONIA, Writer::create(Ids::DOUBLE_PLANT)));
|
||||||
|
$this->map(Blocks::PINK_PETALS(), function(PinkPetals $block) : Writer{
|
||||||
|
return Writer::create(Ids::PINK_PETALS)
|
||||||
|
->writeLegacyHorizontalFacing($block->getFacing())
|
||||||
|
->writeInt(StateNames::GROWTH, $block->getCount() - 1);
|
||||||
|
});
|
||||||
$this->map(Blocks::PINK_TULIP(), fn() => Helper::encodeRedFlower(StringValues::FLOWER_TYPE_TULIP_PINK));
|
$this->map(Blocks::PINK_TULIP(), fn() => Helper::encodeRedFlower(StringValues::FLOWER_TYPE_TULIP_PINK));
|
||||||
$this->map(Blocks::POLISHED_ANDESITE(), fn() => Helper::encodeStone(StringValues::STONE_TYPE_ANDESITE_SMOOTH));
|
$this->map(Blocks::POLISHED_ANDESITE(), fn() => Helper::encodeStone(StringValues::STONE_TYPE_ANDESITE_SMOOTH));
|
||||||
$this->map(Blocks::POLISHED_ANDESITE_SLAB(), fn(Slab $block) => Helper::encodeStoneSlab3($block, StringValues::STONE_SLAB_TYPE_3_POLISHED_ANDESITE));
|
$this->map(Blocks::POLISHED_ANDESITE_SLAB(), fn(Slab $block) => Helper::encodeStoneSlab3($block, StringValues::STONE_SLAB_TYPE_3_POLISHED_ANDESITE));
|
||||||
|
@ -28,6 +28,7 @@ use pocketmine\block\Block;
|
|||||||
use pocketmine\block\CaveVines;
|
use pocketmine\block\CaveVines;
|
||||||
use pocketmine\block\ChorusFlower;
|
use pocketmine\block\ChorusFlower;
|
||||||
use pocketmine\block\Light;
|
use pocketmine\block\Light;
|
||||||
|
use pocketmine\block\PinkPetals;
|
||||||
use pocketmine\block\Slab;
|
use pocketmine\block\Slab;
|
||||||
use pocketmine\block\Stair;
|
use pocketmine\block\Stair;
|
||||||
use pocketmine\block\SweetBerryBush;
|
use pocketmine\block\SweetBerryBush;
|
||||||
@ -1175,6 +1176,13 @@ final class BlockStateToObjectDeserializer implements BlockStateDeserializer{
|
|||||||
$this->mapSlab(Ids::OXIDIZED_CUT_COPPER_SLAB, Ids::OXIDIZED_DOUBLE_CUT_COPPER_SLAB, fn() => Helper::decodeCopper(Blocks::CUT_COPPER_SLAB(), CopperOxidation::OXIDIZED()));
|
$this->mapSlab(Ids::OXIDIZED_CUT_COPPER_SLAB, Ids::OXIDIZED_DOUBLE_CUT_COPPER_SLAB, fn() => Helper::decodeCopper(Blocks::CUT_COPPER_SLAB(), CopperOxidation::OXIDIZED()));
|
||||||
$this->mapStairs(Ids::OXIDIZED_CUT_COPPER_STAIRS, fn() => Helper::decodeCopper(Blocks::CUT_COPPER_STAIRS(), CopperOxidation::OXIDIZED()));
|
$this->mapStairs(Ids::OXIDIZED_CUT_COPPER_STAIRS, fn() => Helper::decodeCopper(Blocks::CUT_COPPER_STAIRS(), CopperOxidation::OXIDIZED()));
|
||||||
$this->map(Ids::PEARLESCENT_FROGLIGHT, fn(Reader $in) => Blocks::FROGLIGHT()->setFroglightType(FroglightType::PEARLESCENT())->setAxis($in->readPillarAxis()));
|
$this->map(Ids::PEARLESCENT_FROGLIGHT, fn(Reader $in) => Blocks::FROGLIGHT()->setFroglightType(FroglightType::PEARLESCENT())->setAxis($in->readPillarAxis()));
|
||||||
|
$this->map(Ids::PINK_PETALS, function(Reader $in) : Block{
|
||||||
|
//Pink petals only uses 0-3, but GROWTH state can go up to 7
|
||||||
|
$growth = $in->readBoundedInt(StateNames::GROWTH, 0, 7);
|
||||||
|
return Blocks::PINK_PETALS()
|
||||||
|
->setFacing($in->readLegacyHorizontalFacing())
|
||||||
|
->setCount(min($growth + 1, PinkPetals::MAX_COUNT));
|
||||||
|
});
|
||||||
$this->mapStairs(Ids::POLISHED_ANDESITE_STAIRS, fn() => Blocks::POLISHED_ANDESITE_STAIRS());
|
$this->mapStairs(Ids::POLISHED_ANDESITE_STAIRS, fn() => Blocks::POLISHED_ANDESITE_STAIRS());
|
||||||
$this->map(Ids::POLISHED_BASALT, function(Reader $in) : Block{
|
$this->map(Ids::POLISHED_BASALT, function(Reader $in) : Block{
|
||||||
return Blocks::POLISHED_BASALT()
|
return Blocks::POLISHED_BASALT()
|
||||||
|
@ -856,6 +856,7 @@ final class StringToItemParser extends StringToTParser{
|
|||||||
$result->registerBlock("packed_ice", fn() => Blocks::PACKED_ICE());
|
$result->registerBlock("packed_ice", fn() => Blocks::PACKED_ICE());
|
||||||
$result->registerBlock("packed_mud", fn() => Blocks::PACKED_MUD());
|
$result->registerBlock("packed_mud", fn() => Blocks::PACKED_MUD());
|
||||||
$result->registerBlock("peony", fn() => Blocks::PEONY());
|
$result->registerBlock("peony", fn() => Blocks::PEONY());
|
||||||
|
$result->registerBlock("pink_petals", fn() => Blocks::PINK_PETALS());
|
||||||
$result->registerBlock("pink_tulip", fn() => Blocks::PINK_TULIP());
|
$result->registerBlock("pink_tulip", fn() => Blocks::PINK_TULIP());
|
||||||
$result->registerBlock("piglin_head", fn() => Blocks::MOB_HEAD()->setMobHeadType(MobHeadType::PIGLIN()));
|
$result->registerBlock("piglin_head", fn() => Blocks::MOB_HEAD()->setMobHeadType(MobHeadType::PIGLIN()));
|
||||||
$result->registerBlock("plank", fn() => Blocks::OAK_PLANKS());
|
$result->registerBlock("plank", fn() => Blocks::OAK_PLANKS());
|
||||||
|
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user