cn.nukkit.inventory.transaction.action.DropItemAction Maven / Gradle / Ivy
package cn.nukkit.inventory.transaction.action;
import cn.nukkit.Player;
import cn.nukkit.event.player.PlayerDropItemEvent;
import cn.nukkit.item.Item;
import lombok.ToString;
/**
* @author CreeperFace
*/
@ToString(callSuper = true)
public class DropItemAction extends InventoryAction {
public DropItemAction(Item source, Item target) {
super(source, target);
}
/**
* Verifies that the source item of a drop-item action must be air. This is not strictly necessary, just a sanity
* check.
*/
@Override
public boolean isValid(Player source) {
return this.sourceItem.isNull();
}
@Override
public boolean onPreExecute(Player source) {
PlayerDropItemEvent ev;
source.getServer().getPluginManager().callEvent(ev = new PlayerDropItemEvent(source, this.targetItem));
if(ev.isCancelled()) {
source.stopAction();
}
return !ev.isCancelled();
}
/**
* Drops the target item in front of the player.
*/
@Override
public boolean execute(Player source) {
return source.dropItem(this.targetItem);
}
@Override
public void onExecuteSuccess(Player source) {
}
@Override
public void onExecuteFail(Player source) {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy