use of io.xol.chunkstories.api.events.player.PlayerMoveItemEvent in project chunkstories by Hugobros3.
the class InventoryView method handleClick.
private boolean handleClick(MouseButton mouseButton) {
// We assume a player has to be spawned in order to do items manipulation
Player player = gameWindow.getClient().getPlayer();
if (player == null) {
this.gameWindow.setLayer(parentLayer);
// this.mainScene.changeOverlay(parent);
selectedItem = null;
return true;
}
World world = player.getWorld();
for (int i = 0; i < drawers.length; i++) {
// Close button
if (drawers[i].isOverCloseButton()) {
this.gameWindow.setLayer(parentLayer);
selectedItem = null;
} else {
int[] c = drawers[i].getSelectedSlot();
if (c == null)
continue;
else {
int x = c[0];
int y = c[1];
if (selectedItem == null) {
if (mouseButton.equals("mouse.left")) {
selectedItem = inventories[i].getItemPileAt(x, y);
selectedItemAmount = selectedItem == null ? 0 : selectedItem.getAmount();
} else if (mouseButton.equals("mouse.right")) {
selectedItem = inventories[i].getItemPileAt(x, y);
selectedItemAmount = selectedItem == null ? 0 : 1;
} else if (mouseButton.equals("mouse.middle")) {
selectedItem = inventories[i].getItemPileAt(x, y);
selectedItemAmount = selectedItem == null ? 0 : (selectedItem.getAmount() > 1 ? selectedItem.getAmount() / 2 : 1);
}
// selectedItemInv = inventory;
} else if (mouseButton.equals("mouse.right")) {
if (selectedItem.equals(inventories[i].getItemPileAt(x, y))) {
if (selectedItemAmount < inventories[i].getItemPileAt(x, y).getAmount())
selectedItemAmount++;
}
} else if (mouseButton.equals("mouse.left")) {
// Ignore null-sum games
if (selectedItem.getInventory() == inventories[i] && x == selectedItem.getX() && y == selectedItem.getY()) {
selectedItem = null;
return true;
}
if (world instanceof WorldMaster) {
PlayerMoveItemEvent moveItemEvent = new PlayerMoveItemEvent(player, selectedItem, selectedItem.getInventory(), inventories[i], selectedItem.getX(), selectedItem.getY(), x, y, selectedItemAmount);
player.getContext().getPluginManager().fireEvent(moveItemEvent);
// If move was successfull
if (!moveItemEvent.isCancelled())
selectedItem.moveItemPileTo(inventories[i], x, y, selectedItemAmount);
selectedItem = null;
} else if (world instanceof WorldClientNetworkedRemote) {
// When in a remote MP scenario, send a packet
PacketInventoryMoveItemPile packetMove = new PacketInventoryMoveItemPile(world, selectedItem, selectedItem.getInventory(), inventories[i], selectedItem.getX(), selectedItem.getY(), x, y, selectedItemAmount);
((WorldClientNetworkedRemote) world).getRemoteServer().pushPacket(packetMove);
// And unsellect item
selectedItem = null;
}
}
return true;
}
}
}
// Clicked outside of any other inventory (drop!)
if (selectedItem != null) {
// SP scenario, replicated logic in PacketInventoryMoveItemPile
if (world instanceof WorldMaster) {
// For local item drops, we need to make sure we have a sutiable entity
Entity playerEntity = player.getControlledEntity();
if (playerEntity != null) {
PlayerMoveItemEvent moveItemEvent = new PlayerMoveItemEvent(player, selectedItem, selectedItem.getInventory(), null, selectedItem.getX(), selectedItem.getY(), 0, 0, selectedItemAmount);
player.getContext().getPluginManager().fireEvent(moveItemEvent);
if (!moveItemEvent.isCancelled()) {
// If we're pulling this out of an inventory ( and not /dev/null ), we need to
// remove it from that
Inventory sourceInventory = selectedItem.getInventory();
Location loc = playerEntity.getLocation();
EventItemDroppedToWorld dropItemEvent = new EventItemDroppedToWorld(loc, sourceInventory, selectedItem);
player.getContext().getPluginManager().fireEvent(dropItemEvent);
if (!dropItemEvent.isCancelled()) {
if (sourceInventory != null)
sourceInventory.setItemPileAt(selectedItem.getX(), selectedItem.getY(), null);
if (dropItemEvent.getItemEntity() != null)
loc.getWorld().addEntity(dropItemEvent.getItemEntity());
}
}
}
selectedItem = null;
} else // In MP scenario, move into /dev/null
if (world instanceof WorldClientNetworkedRemote) {
PacketInventoryMoveItemPile packetMove = new PacketInventoryMoveItemPile(world, selectedItem, selectedItem.getInventory(), null, selectedItem.getX(), selectedItem.getY(), 0, 0, selectedItemAmount);
((WorldClientNetworkedRemote) world).getRemoteServer().pushPacket(packetMove);
selectedItem = null;
}
}
return true;
}
use of io.xol.chunkstories.api.events.player.PlayerMoveItemEvent in project chunkstories-api by Hugobros3.
the class PacketInventoryMoveItemPile method process.
public void process(PacketSender sender, DataInputStream in, PacketReceptionContext processor) throws IOException {
if (!(processor instanceof ServerPlayerPacketsProcessor)) {
processor.logger().warn("Received a " + this.getClass().getSimpleName() + " but this GameContext isn't providen with a packet processor made to deal with it");
return;
}
ServerPlayerPacketsProcessor sppc = (ServerPlayerPacketsProcessor) processor;
Player player = sppc.getPlayer();
EntityControllable playerEntity = player.getControlledEntity();
oldX = in.readInt();
oldY = in.readInt();
newX = in.readInt();
newY = in.readInt();
amount = in.readInt();
from = InventoryTranslator.obtainInventoryHandle(in, processor);
to = InventoryTranslator.obtainInventoryHandle(in, processor);
// If this pile is spawned from the void
if (// || from == InventoryTranslator.INVENTORY_CREATIVE_TRASH)
from == null) {
try {
itemPile = ItemPile.obtainItemPileFromStream(player.getWorld().getContentTranslator(), in);
} catch (NullItemException e) {
// This ... isn't supposed to happen
processor.logger().info("User " + sender + " is trying to spawn a null ItemPile for some reason.");
} catch (UndefinedItemTypeException e) {
// This is slightly more problematic
processor.logger().warn(e.getMessage());
// e.printStackTrace(processor.getLogger().getPrintWriter());
}
} else {
itemPile = from.getItemPileAt(oldX, oldY);
}
// Check access
if (to != null && playerEntity != null) {
if (!to.isAccessibleTo(playerEntity)) {
player.sendMessage("You don't have access to this.");
return;
}
}
// Check using event
PlayerMoveItemEvent moveItemEvent = new PlayerMoveItemEvent(player, itemPile, from, to, oldX, oldY, newX, newY, amount);
player.getContext().getPluginManager().fireEvent(moveItemEvent);
if (!moveItemEvent.isCancelled()) {
// Restrict item spawning
if (// || from instanceof InventoryLocalCreativeMenu)
from == null) {
if (player.hasPermission("items.spawn") || (player.getControlledEntity() != null && player.getControlledEntity() instanceof EntityCreative && ((EntityCreative) player.getControlledEntity()).getCreativeModeComponent().get())) {
// Let it happen when in creative mode or owns items.spawn perm
} else {
player.sendMessage("#C00000You are neither in creative mode nor have the items.spawn permission.");
return;
}
}
// If target inventory is null, this means the item was dropped
if (to == null) {
if (playerEntity == null) {
System.out.println("Dropping items isn't possible if the player doesn't control any entity.");
return;
}
// If we're pulling this out of an inventory ( and not /dev/null ), we need to remove it from that
Inventory sourceInventory = itemPile.getInventory();
Location loc = playerEntity.getLocation();
EventItemDroppedToWorld dropItemEvent = new EventItemDroppedToWorld(loc, sourceInventory, itemPile);
player.getContext().getPluginManager().fireEvent(dropItemEvent);
if (!dropItemEvent.isCancelled()) {
if (sourceInventory != null)
sourceInventory.setItemPileAt(itemPile.getX(), itemPile.getY(), null);
if (dropItemEvent.getItemEntity() != null)
loc.getWorld().addEntity(dropItemEvent.getItemEntity());
}
return;
}
itemPile.moveItemPileTo(to, newX, newY, amount);
}
}
Aggregations