java.lang.Object
com.pixelmonmod.pixelmon.comm.data.AbstractPixelmonPacket
com.pixelmonmod.pixelmon.comm.packetHandlers.KeyPacket
All Implemented Interfaces:
PixelmonPacket

public class KeyPacket extends AbstractPixelmonPacket
Handles hotkeys being pressed that do actions on the server.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Empty constructor for packet registration.
    KeyPacket(int selectedPixelmon)
    Initializes a packet to send out a Pokémon.
    KeyPacket(int selectedPixelmon, int moveIndex, int entityId)
    Initializes a packet to use an external move on an entity.
    KeyPacket(int selectedPixelmon, int entityId, EnumKeyPacketMode mode)
    Initializes a hotkey action packet.
    KeyPacket(int selectedPixelmon, int moveIndex, net.minecraft.core.BlockPos pos, net.minecraft.core.Direction side)
    Initializes a packet to use an external move on a block.
    KeyPacket(int selectedPixelmon, String moveName, int entityId)
    Initializes a packet to use an external move on an entity.
    KeyPacket(int selectedPixelmon, String moveName, net.minecraft.core.BlockPos pos, net.minecraft.core.Direction side)
    Initializes a packet to use an external move on a block.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    decode(net.minecraft.network.FriendlyByteBuf buffer)
    Decodes the information from the buffer to the packet instance
    void
    encode(net.minecraft.network.FriendlyByteBuf buffer)
    Encodes the buffer with the packet information
    protected void
    handlePacket(net.minecraftforge.event.network.CustomPayloadEvent.Context context)
     

    Methods inherited from class com.pixelmonmod.pixelmon.comm.data.AbstractPixelmonPacket

    handle, reply

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • KeyPacket

      public KeyPacket()
      Empty constructor for packet registration.
    • KeyPacket

      public KeyPacket(int selectedPixelmon)
      Initializes a packet to send out a Pokémon.
      Parameters:
      selectedPixelmon - The slot of the Pokémon to send out.
    • KeyPacket

      public KeyPacket(int selectedPixelmon, int entityId, EnumKeyPacketMode mode)
      Initializes a hotkey action packet.
      Parameters:
      selectedPixelmon - The slot of the selected Pokémon for the action.
      entityId - The ID of the entity targeted by the action.
      mode - The type of action to take.
    • KeyPacket

      public KeyPacket(int selectedPixelmon, int moveIndex, int entityId)
      Initializes a packet to use an external move on an entity.
      Parameters:
      selectedPixelmon - The slot of the selected Pokémon for the move.
      moveIndex - The index of the external move being used.
      entityId - The ID of the entity targeted by the move.
    • KeyPacket

      public KeyPacket(int selectedPixelmon, String moveName, int entityId)
      Initializes a packet to use an external move on an entity.
      Parameters:
      selectedPixelmon - The slot of the selected Pokémon for the move.
      moveName - The index of the external move being used.
      entityId - The ID of the entity targeted by the move.
    • KeyPacket

      public KeyPacket(int selectedPixelmon, int moveIndex, net.minecraft.core.BlockPos pos, net.minecraft.core.Direction side)
      Initializes a packet to use an external move on a block.
      Parameters:
      selectedPixelmon - The slot of the selected Pokémon for the move.
      moveIndex - The index of the external move being used.
      pos - The position of the targeted block.
      side - The targeted side of the block.
    • KeyPacket

      public KeyPacket(int selectedPixelmon, String moveName, net.minecraft.core.BlockPos pos, net.minecraft.core.Direction side)
      Initializes a packet to use an external move on a block.
      Parameters:
      selectedPixelmon - The slot of the selected Pokémon for the move.
      moveName - The index of the external move being used.
      pos - The position of the targeted block.
      side - The targeted side of the block.
  • Method Details

    • decode

      public void decode(net.minecraft.network.FriendlyByteBuf buffer)
      Description copied from interface: PixelmonPacket
      Decodes the information from the buffer to the packet instance
      Specified by:
      decode in interface PixelmonPacket
      Overrides:
      decode in class AbstractPixelmonPacket
      Parameters:
      buffer - The buffer being decoded
    • encode

      public void encode(net.minecraft.network.FriendlyByteBuf buffer)
      Description copied from interface: PixelmonPacket
      Encodes the buffer with the packet information
      Specified by:
      encode in interface PixelmonPacket
      Overrides:
      encode in class AbstractPixelmonPacket
      Parameters:
      buffer - The buffer being encoded
    • handlePacket

      protected void handlePacket(net.minecraftforge.event.network.CustomPayloadEvent.Context context)
      Specified by:
      handlePacket in class AbstractPixelmonPacket