summaryrefslogtreewikicommitdiff
path: root/src/main/java/net/tylermurphy/hideAndSeek/util/protocollib/AbstractPacket.java
diff options
context:
space:
mode:
authorTyler Murphy <tylermurphy534@gmail.com>2022-04-11 17:23:50 -0400
committerTyler Murphy <tylermurphy534@gmail.com>2022-04-11 17:23:50 -0400
commitec2bf9d35d96ecb85a4d836d17f01cf6922c3f4c (patch)
tree1572c71007566d730c6d581492ee13ca16f9f799 /src/main/java/net/tylermurphy/hideAndSeek/util/protocollib/AbstractPacket.java
parentpotions work in 1.8, fixed death catch system (diff)
downloadkenshinshideandseek-ec2bf9d35d96ecb85a4d836d17f01cf6922c3f4c.tar.gz
kenshinshideandseek-ec2bf9d35d96ecb85a4d836d17f01cf6922c3f4c.tar.bz2
kenshinshideandseek-ec2bf9d35d96ecb85a4d836d17f01cf6922c3f4c.zip
1.4.0 rc1
Diffstat (limited to 'src/main/java/net/tylermurphy/hideAndSeek/util/protocollib/AbstractPacket.java')
-rw-r--r--src/main/java/net/tylermurphy/hideAndSeek/util/protocollib/AbstractPacket.java115
1 files changed, 0 insertions, 115 deletions
diff --git a/src/main/java/net/tylermurphy/hideAndSeek/util/protocollib/AbstractPacket.java b/src/main/java/net/tylermurphy/hideAndSeek/util/protocollib/AbstractPacket.java
deleted file mode 100644
index f6bd15a..0000000
--- a/src/main/java/net/tylermurphy/hideAndSeek/util/protocollib/AbstractPacket.java
+++ /dev/null
@@ -1,115 +0,0 @@
-/**
- * PacketWrapper - ProtocolLib wrappers for Minecraft packets
- * Copyright (C) dmulloy2 <http://dmulloy2.net>
- * Copyright (C) Kristian S. Strangeland
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-package net.tylermurphy.hideAndSeek.util.protocollib;
-
-import java.lang.reflect.InvocationTargetException;
-
-import org.bukkit.entity.Player;
-
-import com.comphenix.protocol.PacketType;
-import com.comphenix.protocol.ProtocolLibrary;
-import com.comphenix.protocol.events.PacketContainer;
-import com.google.common.base.Objects;
-
-public abstract class AbstractPacket {
- // The packet we will be modifying
- protected PacketContainer handle;
-
- /**
- * Constructs a new strongly typed wrapper for the given packet.
- *
- * @param handle - handle to the raw packet data.
- * @param type - the packet type.
- */
- protected AbstractPacket(PacketContainer handle, PacketType type) {
- // Make sure we're given a valid packet
- if (handle == null)
- throw new IllegalArgumentException("Packet handle cannot be NULL.");
- if (!Objects.equal(handle.getType(), type))
- throw new IllegalArgumentException(handle.getHandle()
- + " is not a packet of type " + type);
-
- this.handle = handle;
- }
-
- /**
- * Retrieve a handle to the raw packet data.
- *
- * @return Raw packet data.
- */
- public PacketContainer getHandle() {
- return handle;
- }
-
- /**
- * Send the current packet to the given receiver.
- *
- * @param receiver - the receiver.
- * @throws RuntimeException If the packet cannot be sent.
- */
- public void sendPacket(Player receiver) {
- try {
- ProtocolLibrary.getProtocolManager().sendServerPacket(receiver,
- getHandle());
- } catch (InvocationTargetException e) {
- throw new RuntimeException("Cannot send packet.", e);
- }
- }
-
- /**
- * Send the current packet to all online players.
- */
- public void broadcastPacket() {
- ProtocolLibrary.getProtocolManager().broadcastServerPacket(getHandle());
- }
-
- /**
- * Simulate receiving the current packet from the given sender.
- *
- * @param sender - the sender.
- * @throws RuntimeException If the packet cannot be received.
- * @deprecated Misspelled. recieve to receive
- * @see #receivePacket(Player)
- */
- @Deprecated
- public void recievePacket(Player sender) {
- try {
- ProtocolLibrary.getProtocolManager().recieveClientPacket(sender,
- getHandle());
- } catch (Exception e) {
- throw new RuntimeException("Cannot recieve packet.", e);
- }
- }
-
- /**
- * Simulate receiving the current packet from the given sender.
- *
- * @param sender - the sender.
- * @throws RuntimeException if the packet cannot be received.
- */
- public void receivePacket(Player sender) {
- try {
- ProtocolLibrary.getProtocolManager().recieveClientPacket(sender,
- getHandle());
- } catch (Exception e) {
- throw new RuntimeException("Cannot receive packet.", e);
- }
- }
-}