Class ServerboundContainerClickPacket
java.lang.Object
org.geysermc.mcprotocollib.protocol.packet.ingame.serverbound.inventory.ServerboundContainerClickPacket
- All Implemented Interfaces:
Packet,MinecraftPacket
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionServerboundContainerClickPacket(int containerId, int stateId, int slot, @NonNull ContainerActionType action, @NonNull ContainerAction param, @Nullable HashedStack carriedItem, @NonNull it.unimi.dsi.fastutil.ints.Int2ObjectMap<@Nullable HashedStack> changedSlots) ServerboundContainerClickPacket(int containerId, int stateId, int slot, @NonNull ContainerActionType action, @NonNull ContainerAction param, @Nullable HashedStack carriedItem, @NonNull Map<Integer, @Nullable HashedStack> changedSlots) ServerboundContainerClickPacket(io.netty.buffer.ByteBuf in) -
Method Summary
Modifier and TypeMethodDescriptionprotected booleanboolean@NonNull ContainerActionType@Nullable HashedStack@NonNull it.unimi.dsi.fastutil.ints.Int2ObjectMap<@Nullable HashedStack>int@NonNull ContainerActiongetParam()intgetSlot()intinthashCode()voidserialize(io.netty.buffer.ByteBuf out) booleanGets whether the packet should run on an async game thread rather than blocking the network (Netty) thread.@NonNull StringtoString()@NonNull ServerboundContainerClickPacketwithAction(@NonNull ContainerActionType action) @NonNull ServerboundContainerClickPacketwithCarriedItem(@Nullable HashedStack carriedItem) @NonNull ServerboundContainerClickPacketwithChangedSlots(@NonNull it.unimi.dsi.fastutil.ints.Int2ObjectMap<@Nullable HashedStack> changedSlots) @NonNull ServerboundContainerClickPacketwithContainerId(int containerId) @NonNull ServerboundContainerClickPacketwithParam(@NonNull ContainerAction param) @NonNull ServerboundContainerClickPacketwithSlot(int slot) @NonNull ServerboundContainerClickPacketwithStateId(int stateId) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.geysermc.mcprotocollib.network.packet.Packet
isTerminal
-
Field Details
-
CLICK_OUTSIDE_NOT_HOLDING_SLOT
public static final int CLICK_OUTSIDE_NOT_HOLDING_SLOT- See Also:
-
-
Constructor Details
-
ServerboundContainerClickPacket
public ServerboundContainerClickPacket(int containerId, int stateId, int slot, @NonNull @NonNull ContainerActionType action, @NonNull @NonNull ContainerAction param, @Nullable HashedStack carriedItem, @NonNull @NonNull Map<Integer, @Nullable HashedStack> changedSlots) -
ServerboundContainerClickPacket
public ServerboundContainerClickPacket(int containerId, int stateId, int slot, @NonNull @NonNull ContainerActionType action, @NonNull @NonNull ContainerAction param, @Nullable HashedStack carriedItem, @NonNull @NonNull it.unimi.dsi.fastutil.ints.Int2ObjectMap<@Nullable HashedStack> changedSlots) -
ServerboundContainerClickPacket
public ServerboundContainerClickPacket(io.netty.buffer.ByteBuf in)
-
-
Method Details
-
serialize
public void serialize(io.netty.buffer.ByteBuf out) - Specified by:
serializein interfaceMinecraftPacket
-
shouldRunOnGameThread
public boolean shouldRunOnGameThread()Description copied from interface:PacketGets whether the packet should run on an async game thread rather than blocking the network (Netty) thread. Packets that qualify for this are usually packets with an ensureRunningOnSameThread call at the top of their packet listener method in the Minecraft code. Packets which need extra attention because they aren't "fully" handled async are marked using // GAME THREAD DETAIL comments in the MCProtocolLib code.- Specified by:
shouldRunOnGameThreadin interfacePacket- Returns:
- Whether the packet be handled async from the Netty thread.
-
getContainerId
public int getContainerId() -
getStateId
public int getStateId() -
getSlot
public int getSlot() -
getAction
-
getParam
-
getCarriedItem
-
getChangedSlots
@NonNull public @NonNull it.unimi.dsi.fastutil.ints.Int2ObjectMap<@Nullable HashedStack> getChangedSlots() -
equals
-
canEqual
-
hashCode
public int hashCode() -
toString
-
withContainerId
- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-
withStateId
- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-
withSlot
- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-
withAction
public @NonNull ServerboundContainerClickPacket withAction(@NonNull @NonNull ContainerActionType action) - Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-
withParam
- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-
withCarriedItem
- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-
withChangedSlots
public @NonNull ServerboundContainerClickPacket withChangedSlots(@NonNull @NonNull it.unimi.dsi.fastutil.ints.Int2ObjectMap<@Nullable HashedStack> changedSlots) - Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-