Add anvil event

This commit is contained in:
ShockedPlot7560 2024-08-10 23:26:07 +02:00
parent 54f746fc11
commit 726e2cba23
No known key found for this signature in database
GPG Key ID: D7539B420F1FA86E
2 changed files with 106 additions and 0 deletions

View File

@ -0,0 +1,86 @@
<?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\event\player;
use pocketmine\event\Cancellable;
use pocketmine\event\CancellableTrait;
use pocketmine\item\Item;
use pocketmine\player\Player;
/**
* Called when a player uses an anvil (renaming, repairing, combining items).
* This event is called once per action even if multiple tasks are performed at once.
*/
class PlayerUseAnvilEvent extends PlayerEvent implements Cancellable{
use CancellableTrait;
public function __construct(
Player $player,
private Item $baseItem,
private ?Item $materialItem,
private Item $resultItem,
private ?string $customName,
private int $xpCost
){
$this->player = $player;
}
/**
* Returns the item that the player is using as the base item (left slot).
*/
public function getBaseItem() : Item{
return $this->baseItem;
}
/**
* Returns the item that the player is using as the material item (right slot), or null if there is no material item
* (e.g. when renaming an item).
*/
public function getMaterialItem() : ?Item{
return $this->materialItem;
}
/**
* Returns the item that the player will receive as a result of the anvil operation.
*/
public function getResultItem() : Item{
return $this->resultItem;
}
/**
* Returns the custom name that the player is setting on the item, or null if the player is not renaming the item.
*
* This value is defined when the base item is already renamed.
*/
public function getCustomName() : ?string{
return $this->customName;
}
/**
* Returns the amount of XP levels that the player will spend on this anvil operation.
*/
public function getXpCost() : int{
return $this->xpCost;
}
}

View File

@ -25,12 +25,18 @@ namespace pocketmine\inventory\transaction;
use pocketmine\block\utils\AnvilHelper; use pocketmine\block\utils\AnvilHelper;
use pocketmine\block\utils\AnvilResult; use pocketmine\block\utils\AnvilResult;
use pocketmine\event\player\PlayerUseAnvilEvent;
use pocketmine\item\Item; use pocketmine\item\Item;
use pocketmine\item\VanillaItems; use pocketmine\item\VanillaItems;
use pocketmine\player\Player; use pocketmine\player\Player;
use pocketmine\utils\AssumptionFailedError;
use function count; use function count;
class AnvilTransaction extends InventoryTransaction{ class AnvilTransaction extends InventoryTransaction{
private ?Item $baseItem = null;
private ?Item $materialItem = null;
private ?Item $resultItem = null;
public function __construct( public function __construct(
Player $source, Player $source,
private readonly AnvilResult $expectedResult, private readonly AnvilResult $expectedResult,
@ -57,6 +63,10 @@ class AnvilTransaction extends InventoryTransaction{
return null; return null;
} }
$this->baseItem = $base;
$this->materialItem = $material;
$this->resultItem = $expectedOutput;
return $calculAttempt; return $calculAttempt;
} }
@ -104,4 +114,14 @@ class AnvilTransaction extends InventoryTransaction{
$this->source->getXpManager()->subtractXpLevels($this->expectedResult->getRepairCost()); $this->source->getXpManager()->subtractXpLevels($this->expectedResult->getRepairCost());
} }
} }
protected function callExecuteEvent() : bool{
if($this->baseItem === null){
throw new AssumptionFailedError("Expected that baseItem are not null before executing the event");
}
$ev = new PlayerUseAnvilEvent($this->source, $this->baseItem, $this->materialItem, $this->expectedResult->getResult(), $this->customName, $this->expectedResult->getRepairCost());
$ev->call();
return !$ev->isCancelled();
}
} }