cn.nukkit.inventory.transaction.action.DropItemAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powernukkit Show documentation
Show all versions of powernukkit Show documentation
A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.
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.
*/
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));
return !ev.isCancelled();
}
/**
* Drops the target item in front of the player.
*/
public boolean execute(Player source) {
return source.dropItem(this.targetItem);
}
public void onExecuteSuccess(Player source) {
}
public void onExecuteFail(Player source) {
}
}