2019-01-03 03:13:03 +01:00
|
|
|
package me.libraryaddict.disguise.utilities.packets;
|
|
|
|
|
|
|
|
import com.comphenix.protocol.PacketType;
|
|
|
|
import com.comphenix.protocol.ProtocolLibrary;
|
|
|
|
import com.comphenix.protocol.events.PacketContainer;
|
|
|
|
import me.libraryaddict.disguise.LibsDisguises;
|
|
|
|
import me.libraryaddict.disguise.disguisetypes.Disguise;
|
|
|
|
import org.bukkit.Bukkit;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
|
|
|
|
import java.lang.reflect.InvocationTargetException;
|
2019-02-17 14:02:10 +01:00
|
|
|
import java.util.*;
|
2019-01-03 03:13:03 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Created by libraryaddict on 3/01/2019.
|
|
|
|
*/
|
|
|
|
public class LibsPackets {
|
|
|
|
private ArrayList<PacketContainer> packets = new ArrayList<>();
|
|
|
|
private HashMap<Integer, ArrayList<PacketContainer>> delayedPackets = new HashMap<>();
|
|
|
|
private boolean isSpawnPacket;
|
|
|
|
private Disguise disguise;
|
|
|
|
private boolean doNothing;
|
|
|
|
|
|
|
|
public LibsPackets(Disguise disguise) {
|
|
|
|
this.disguise = disguise;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setUnhandled() {
|
|
|
|
doNothing = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isUnhandled() {
|
|
|
|
return doNothing;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Disguise getDisguise() {
|
|
|
|
return disguise;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSpawnPacketCheck(PacketType type) {
|
|
|
|
isSpawnPacket = type.name().contains("SPAWN") && type.name().contains("ENTITY");
|
|
|
|
}
|
|
|
|
|
|
|
|
public void addPacket(PacketContainer packet) {
|
|
|
|
packets.add(packet);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void addDelayedPacket(PacketContainer packet) {
|
|
|
|
addDelayedPacket(packet, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void clear() {
|
|
|
|
getPackets().clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void addDelayedPacket(PacketContainer packet, int ticksDelayed) {
|
|
|
|
if (!delayedPackets.containsKey(ticksDelayed))
|
|
|
|
delayedPackets.put(ticksDelayed, new ArrayList<>());
|
|
|
|
|
|
|
|
delayedPackets.get(ticksDelayed).add(packet);
|
|
|
|
}
|
|
|
|
|
|
|
|
public ArrayList<PacketContainer> getPackets() {
|
|
|
|
return packets;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Collection<ArrayList<PacketContainer>> getDelayedPackets() {
|
|
|
|
return delayedPackets.values();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void sendDelayed(final Player observer) {
|
2019-02-17 14:02:10 +01:00
|
|
|
Iterator<Map.Entry<Integer, ArrayList<PacketContainer>>> itel = delayedPackets.entrySet().iterator();
|
|
|
|
Optional<Integer> largestTick = delayedPackets.keySet().stream().max(Integer::compare);
|
|
|
|
|
|
|
|
if (!largestTick.isPresent()) {
|
|
|
|
return;
|
|
|
|
}
|
2019-01-03 03:13:03 +01:00
|
|
|
|
2019-02-17 14:02:10 +01:00
|
|
|
while (itel.hasNext()) {
|
|
|
|
Map.Entry<Integer, ArrayList<PacketContainer>> entry = itel.next();
|
|
|
|
// If this is the last delayed packet
|
|
|
|
final boolean isRemoveCancel = isSpawnPacket && largestTick.get().equals(entry.getKey());
|
|
|
|
|
|
|
|
Bukkit.getScheduler().scheduleSyncDelayedTask(LibsDisguises.getInstance(), () -> {
|
|
|
|
try {
|
|
|
|
for (PacketContainer packet : entry.getValue()) {
|
|
|
|
ProtocolLibrary.getProtocolManager().sendServerPacket(observer, packet, false);
|
2019-01-03 03:13:03 +01:00
|
|
|
}
|
|
|
|
}
|
2019-02-17 14:02:10 +01:00
|
|
|
catch (InvocationTargetException e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isRemoveCancel) {
|
|
|
|
PacketsManager.getPacketsHandler().removeCancel(disguise, observer);
|
|
|
|
}
|
2019-01-03 03:13:03 +01:00
|
|
|
}, entry.getKey());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|