Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update PlayServerEntityEquipment to 1.16 format #78

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,93 +18,171 @@
*/
package com.comphenix.packetwrapper;

import org.bukkit.World;
import org.bukkit.entity.Entity;
import org.bukkit.inventory.ItemStack;

import com.comphenix.protocol.PacketType;
import com.comphenix.protocol.events.PacketContainer;
import com.comphenix.protocol.events.PacketEvent;
import com.comphenix.protocol.wrappers.EnumWrappers.ItemSlot;
import com.comphenix.protocol.wrappers.Pair;
import org.bukkit.World;
import org.bukkit.entity.Entity;
import org.bukkit.inventory.ItemStack;

import java.util.List;

public class WrapperPlayServerEntityEquipment extends AbstractPacket {
public static final PacketType TYPE =
PacketType.Play.Server.ENTITY_EQUIPMENT;

public WrapperPlayServerEntityEquipment() {
super(new PacketContainer(TYPE), TYPE);
handle.getModifier().writeDefaults();
}

public WrapperPlayServerEntityEquipment(PacketContainer packet) {
super(packet, TYPE);
}

/**
* Retrieve Entity ID.
* <p>
* Notes: entity's ID
*
* @return The current Entity ID
*/
public int getEntityID() {
return handle.getIntegers().read(0);
}

/**
* Set Entity ID.
*
* @param value - new value.
*/
public void setEntityID(int value) {
handle.getIntegers().write(0, value);
}

/**
* Retrieve the entity of the painting that will be spawned.
*
* @param world - the current world of the entity.
* @return The spawned entity.
*/
public Entity getEntity(World world) {
return handle.getEntityModifier(world).read(0);
}

/**
* Retrieve the entity of the painting that will be spawned.
*
* @param event - the packet event.
* @return The spawned entity.
*/
public Entity getEntity(PacketEvent event) {
return getEntity(event.getPlayer().getWorld());
}

public ItemSlot getSlot() {
return handle.getItemSlots().read(0);
}

public void setSlot(ItemSlot value) {
handle.getItemSlots().write(0, value);
}

/**
* Retrieve Item.
* <p>
* Notes: item in slot format
*
* @return The current Item
*/
public ItemStack getItem() {
return handle.getItemModifier().read(0);
}

/**
* Set Item.
*
* @param value - new value.
*/
public void setItem(ItemStack value) {
handle.getItemModifier().write(0, value);
}
public static final PacketType TYPE =
PacketType.Play.Server.ENTITY_EQUIPMENT;

public WrapperPlayServerEntityEquipment() {
super(new PacketContainer(TYPE), TYPE);
handle.getModifier().writeDefaults();
}

public WrapperPlayServerEntityEquipment(PacketContainer packet) {
super(packet, TYPE);
}

/**
* Retrieve Entity ID.
* <p>
* Notes: entity's ID
*
* @return The current Entity ID
*/
public int getEntityID() {
return handle.getIntegers().read(0);
}

/**
* Set Entity ID.
*
* @param value - new value.
*/
public void setEntityID(int value) {
handle.getIntegers().write(0, value);
}

/**
* Retrieve the entity whose equipment will be changed.
*
* @param world - the current world of the entity.
* @return The affected entity.
*/
public Entity getEntity(World world) {
return handle.getEntityModifier(world).read(0);
}

/**
* Retrieve the entity whose equipment will be changed.
*
* @param event - the packet event.
* @return The affected entity.
*/
public Entity getEntity(PacketEvent event) {
return getEntity(event.getPlayer().getWorld());
}

/**
* Retrieve list of ItemSlot - ItemStack pairs.
*
* @return The current list of ItemSlot - ItemStack pairs.
*/
public List<Pair<ItemSlot, ItemStack>> getSlotStackPairs() {
return handle.getSlotStackPairLists().read(0);
}

/**
* Set a ItemSlot - ItemStack pair.
* @param slot The slot the item will be equipped in. If matches an existing pair, will overwrite the old one
* @param item The item to equip
*
* @return Whether a pair was overwritten.
*/
public boolean setSlotStackPair(ItemSlot slot, ItemStack item) {
List<Pair<ItemSlot, ItemStack>> slotStackPairs = handle.getSlotStackPairLists().read(0);
boolean removed = slotStackPairs.removeIf(pair -> pair.getFirst().equals(slot));
slotStackPairs.add(new Pair<>(slot, item));
handle.getSlotStackPairLists().write(0, slotStackPairs);
return removed;
}

/**
* Removes the ItemSlot ItemStack pair matching the provided slot. If doesn't exist does nothing
* @param slot the slot to remove the pair from
*
* @return Whether a pair was removed.
*/
public boolean removeSlotStackPair(ItemSlot slot) {
List<Pair<ItemSlot, ItemStack>> slotStackPairs = handle.getSlotStackPairLists().read(0);
boolean removed = slotStackPairs.removeIf(pair -> pair.getFirst().equals(slot));
handle.getSlotStackPairLists().write(0, slotStackPairs);
return removed;
}

/**
* Check whether the provided is to be affected
* @param slot the slot to check for
* @return true if is set, false otherwise
*/
public boolean isSlotSet(ItemSlot slot) {
return handle.getSlotStackPairLists().read(0).stream().anyMatch(pair -> pair.getFirst().equals(slot));
}

/**
* Get the item being equipped to the provided slot
* @param slot the slot to retrieve the item from
* @return the equipping item, or null if doesn't exist
*/
public ItemStack getItem(ItemSlot slot) {
for (Pair<ItemSlot, ItemStack> pair : handle.getSlotStackPairLists().read(0)) {
if (pair.getFirst().equals(slot)) { return pair.getSecond(); }
}
return null;
}

/**
* @deprecated This format is no longer supported in Minecraft 1.16+
* For 1.16+ use the SlotStack methods
*/
@Deprecated
public ItemSlot getSlot() {
return handle.getItemSlots().read(0);
}

/**
* @deprecated This format is no longer supported in Minecraft 1.16+
* For 1.16+ use the SlotStack methods
*/
@Deprecated
public void setSlot(ItemSlot value) {
handle.getItemSlots().write(0, value);
}

/**
* @deprecated This format is no longer supported in Minecraft 1.16+
* For 1.16+ use the SlotStack methods
*
* Retrieve Item.
* <p>
* Notes: item in slot format
*
* @return The current Item
*/
@Deprecated
public ItemStack getItem() {
return handle.getItemModifier().read(0);
}

/**
* @deprecated This format is no longer supported in Minecraft 1.16+
* For 1.16+ use the SlotStack methods
*
* Set Item.
*
* @param value - new value.
*/
@Deprecated
public void setItem(ItemStack value) {
handle.getItemModifier().write(0, value);
}
}