2019-09-05 18:26:13 +02:00
|
|
|
package de.steamwar.fightsystem.utils;
|
2019-04-25 20:33:36 +02:00
|
|
|
|
|
|
|
import com.comphenix.protocol.PacketType;
|
|
|
|
import com.comphenix.protocol.ProtocolLibrary;
|
|
|
|
import com.comphenix.protocol.events.PacketAdapter;
|
|
|
|
import com.comphenix.protocol.events.PacketEvent;
|
2019-11-10 22:34:22 +01:00
|
|
|
import de.steamwar.core.Core;
|
2019-11-16 08:37:33 +01:00
|
|
|
import de.steamwar.fightsystem.Config;
|
2019-09-05 18:26:13 +02:00
|
|
|
import de.steamwar.fightsystem.FightSystem;
|
2019-06-08 12:57:58 +02:00
|
|
|
import javafx.util.Pair;
|
2019-06-05 22:14:27 +02:00
|
|
|
import org.bukkit.Bukkit;
|
2019-05-28 06:16:16 +02:00
|
|
|
import org.bukkit.GameMode;
|
2019-04-25 20:33:36 +02:00
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
|
2019-11-23 18:15:45 +01:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.Collections;
|
|
|
|
import java.util.List;
|
2019-04-25 20:33:36 +02:00
|
|
|
|
2019-11-16 08:37:33 +01:00
|
|
|
import static de.steamwar.fightsystem.utils.ITechHider.bypass;
|
|
|
|
|
2019-04-25 20:33:36 +02:00
|
|
|
public class TechHider {
|
2019-06-22 17:11:10 +02:00
|
|
|
private TechHider(){}
|
|
|
|
|
2019-10-07 08:23:24 +02:00
|
|
|
private static boolean running = false;
|
2019-05-28 06:16:16 +02:00
|
|
|
|
2019-04-25 20:33:36 +02:00
|
|
|
public static void init(){
|
2019-09-12 20:46:21 +02:00
|
|
|
if(disabled())
|
|
|
|
return;
|
|
|
|
|
2019-11-10 22:34:22 +01:00
|
|
|
if(Core.getVersion() > 8){
|
|
|
|
ProtocolLibrary.getProtocolManager().addPacketListener(new PacketAdapter(FightSystem.getPlugin(), PacketType.Play.Client.USE_ITEM) {
|
|
|
|
@Override
|
|
|
|
public void onPacketReceiving(PacketEvent e) {
|
|
|
|
Player p = e.getPlayer();
|
2019-10-07 08:23:24 +02:00
|
|
|
|
2019-11-23 18:15:45 +01:00
|
|
|
if(p.getGameMode() == GameMode.SPECTATOR)
|
2019-11-10 22:34:22 +01:00
|
|
|
e.setCancelled(true);
|
2019-10-07 08:23:24 +02:00
|
|
|
}
|
2019-11-10 22:34:22 +01:00
|
|
|
});
|
|
|
|
}
|
2019-11-08 09:32:43 +01:00
|
|
|
ProtocolLibrary.getProtocolManager().addPacketListener(new PacketAdapter(FightSystem.getPlugin(), PacketType.Play.Client.USE_ENTITY) {
|
2019-10-07 08:23:24 +02:00
|
|
|
@Override
|
|
|
|
public void onPacketReceiving(PacketEvent e) {
|
|
|
|
Player p = e.getPlayer();
|
|
|
|
|
2019-11-23 18:15:45 +01:00
|
|
|
if(p.getGameMode() == GameMode.SPECTATOR)
|
2019-10-07 08:23:24 +02:00
|
|
|
e.setCancelled(true);
|
|
|
|
}
|
2019-11-08 09:32:43 +01:00
|
|
|
});
|
2019-10-07 08:23:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public static void start(){
|
|
|
|
if(running)
|
|
|
|
return;
|
|
|
|
running = true;
|
|
|
|
|
2019-11-15 08:22:16 +01:00
|
|
|
if(disabled())
|
2019-10-07 08:23:24 +02:00
|
|
|
return;
|
|
|
|
|
2019-11-15 08:22:16 +01:00
|
|
|
switch(Core.getVersion()){
|
|
|
|
case 8:
|
|
|
|
break;
|
|
|
|
default:
|
2019-11-23 18:15:45 +01:00
|
|
|
TechHider_12.start();
|
2019-11-15 08:22:16 +01:00
|
|
|
}
|
2019-11-10 17:29:59 +01:00
|
|
|
}
|
|
|
|
|
2019-06-08 12:57:58 +02:00
|
|
|
public static List<Pair<Integer, Integer>> prepareChunkReload(Player p){
|
2019-09-12 20:46:21 +02:00
|
|
|
if(disabled())
|
|
|
|
return Collections.emptyList();
|
2019-06-08 12:57:58 +02:00
|
|
|
List<Pair<Integer, Integer>> chunksToReload = new ArrayList<>();
|
2019-11-23 18:15:45 +01:00
|
|
|
for(int x = ITechHider.arenaMinX; x <= ITechHider.arenaMaxX; x++)
|
|
|
|
for(int z = ITechHider.arenaMinZ; z <= ITechHider.arenaMaxZ; z++)
|
2019-06-08 12:57:58 +02:00
|
|
|
if(!bypass(p, x, z))
|
|
|
|
chunksToReload.add(new Pair<>(x, z));
|
|
|
|
return chunksToReload;
|
|
|
|
}
|
2019-06-05 22:14:27 +02:00
|
|
|
|
2019-06-08 12:57:58 +02:00
|
|
|
public static void reloadChunks(Player p, List<Pair<Integer, Integer>> chunksToReload){
|
2019-09-12 20:46:21 +02:00
|
|
|
if(disabled())
|
|
|
|
return;
|
2019-06-08 12:57:58 +02:00
|
|
|
Bukkit.getScheduler().runTaskLater(FightSystem.getPlugin(), () -> {
|
2019-07-01 18:04:46 +02:00
|
|
|
for(Pair<Integer, Integer> chunk : chunksToReload){
|
|
|
|
if(bypass(p, chunk.getKey(), chunk.getValue()))
|
2019-11-10 22:34:22 +01:00
|
|
|
reloadChunk(p, chunk);
|
2019-07-01 18:04:46 +02:00
|
|
|
}
|
2019-06-22 17:11:10 +02:00
|
|
|
}, 40);
|
2019-06-05 22:14:27 +02:00
|
|
|
}
|
|
|
|
|
2019-11-10 22:34:22 +01:00
|
|
|
private static void reloadChunk(Player p, Pair<Integer, Integer> chunk){
|
|
|
|
switch(Core.getVersion()){
|
|
|
|
case 8:
|
2019-11-15 08:22:16 +01:00
|
|
|
TechHider_8.reloadChunk(p, chunk);
|
2019-11-10 22:34:22 +01:00
|
|
|
break;
|
|
|
|
default:
|
2019-11-15 08:22:16 +01:00
|
|
|
TechHider_12.reloadChunk(p, chunk);
|
2019-11-10 22:34:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-12 20:46:21 +02:00
|
|
|
private static boolean disabled(){
|
2019-11-16 08:37:33 +01:00
|
|
|
return Config.OnlyPublicSchematics;
|
2019-04-25 20:33:36 +02:00
|
|
|
}
|
|
|
|
}
|