@EventHandler(priority = EventPriority.HIGH) public void onBlockIgniteEvent(BlockIgniteEvent event) { if (event.isCancelled()) { return; } if (event.getPlayer() == null) { return; } Player player = event.getPlayer(); if (vanishNoPacket.isPlayerInvisible(player)) { return; } Block block = event.getBlock(); Set<Snitch> snitches = snitchManager.findSnitches(block.getWorld(), block.getLocation()); for (Snitch snitch : snitches) { if (!snitch.shouldLog()) { continue; } if (!isOnSnitch(snitch, player.getName()) || isDebugging()) { if (checkProximity(snitch, player.getName())) { plugin.getJaLogger().logSnitchIgnite(snitch, player, block); } } } }
@EventHandler(priority = EventPriority.HIGH) public void playerKillEntity(EntityDeathEvent event) { LivingEntity entity = event.getEntity(); LivingEntity killer = entity.getKiller(); // TODO: This should never be true, bug? if (entity instanceof Player) { return; } if (!(killer instanceof Player)) { return; } if (vanishNoPacket.isPlayerInvisible((Player) killer)) { return; } Player player = (Player) killer; Set<Snitch> snitches = snitchManager.findSnitches(player.getWorld(), player.getLocation()); for (Snitch snitch : snitches) { if (!snitch.shouldLog()) { continue; } if (!isOnSnitch(snitch, player.getName()) || isDebugging()) { if (checkProximity(snitch, player.getName())) { plugin.getJaLogger().logSnitchEntityKill(snitch, player, entity); } } } }
@EventHandler(priority = EventPriority.HIGH) public void enterSnitchProximity(PlayerMoveEvent event) { Location from = event.getFrom(); Location to = event.getTo(); if (from.getBlockX() == to.getBlockX() && from.getBlockY() == to.getBlockY() && from.getBlockZ() == to.getBlockZ() && from.getWorld().equals(to.getWorld())) { // Player didn't move by at least one block. return; } Player player = event.getPlayer(); if (vanishNoPacket.isPlayerInvisible(player)) { return; } String playerName = player.getName(); Location location = player.getLocation(); World world = location.getWorld(); Set<Snitch> inList = playersInSnitches.get(playerName); if (inList == null) { inList = new TreeSet<Snitch>(); playersInSnitches.put(player.getName(), inList); } Set<Snitch> snitches = snitchManager.findSnitches(world, location); for (Snitch snitch : snitches) { if (!isOnSnitch(snitch, playerName) && doesSnitchExist(snitch, true) || isDebugging()) { if (!inList.contains(snitch)) { inList.add(snitch); for (Player remoteplayer : playerManager.getPlayers()) { String remoteName = remoteplayer.getName(); if (isOnSnitch(snitch, remoteName)) { remoteplayer.sendMessage( ChatColor.AQUA + " * " + playerName + " entered snitch at " + snitch.getName() + " [" + snitch.getX() + " " + snitch.getY() + " " + snitch.getZ() + "]"); } } plugin.getJaLogger().logSnitchEntry(snitch, location, player); } } } Set<Snitch> rmList = new TreeSet<Snitch>(); for (Snitch snitch : inList) { if (snitches.contains(snitch)) { continue; } rmList.add(snitch); } inList.removeAll(rmList); }
@Override public boolean execute(CommandSender sender, String[] args) { if (sender instanceof Player) { Player player = (Player) sender; World world = player.getWorld(); int offset = 1; if (args.length > 0) { offset = Integer.parseInt(args[0]); } if (offset < 1) { offset = 1; } List<Snitch> snitches = plugin.getSnitchManager().getSnitchesByWorld(world); for (Snitch snitch : snitches) { // Get only first snitch in cuboid if (JukeAlert.isOnSnitch(snitch, player.getName())) { if (snitch.isWithinCuboid(player.getLocation())) { sendLog(sender, snitch, offset); break; } } } } else { sender.sendMessage(ChatColor.RED + "You do not own any snitches nearby!"); return false; } return false; }
@EventHandler(priority = EventPriority.HIGH) public void onBlockBurnEvent(BlockBurnEvent event) { if (event.isCancelled()) { return; } Block block = event.getBlock(); Set<Snitch> snitches = snitchManager.findSnitches(block.getWorld(), block.getLocation()); for (Snitch snitch : snitches) { if (snitch.getGroup() != null) { continue; } plugin.getJaLogger().logSnitchBlockBurn(snitch, block); } }
public static boolean doesSnitchExist(Snitch snitch, boolean shouldCleanup) { Location loc = snitch.getLoc(); World world = loc.getWorld(); int x = loc.getBlockX(); int y = loc.getBlockY(); int z = loc.getBlockZ(); int type_id = world.getBlockAt(x, y, z).getType().getId(); boolean exists = (type_id == 84 || type_id == 25); if (!exists && shouldCleanup) { System.out.println( "Removing ghost snitch '" + snitch.getName() + "' at x:" + x + " y:" + y + " z:" + z); JukeAlert.getInstance().getSnitchManager().removeSnitch(snitch); JukeAlert.getInstance().getJaLogger().logSnitchBreak(world.getName(), x, y, z); } return exists; }
public static boolean isOnSnitch(Snitch snitch, String playerName) { Faction faction = snitch.getGroup(); if (faction == null) return false; return faction.isMember(playerName) || faction.isModerator(playerName) || faction.isFounder(playerName); }
private void sendLog(CommandSender sender, Snitch snitch, int offset) { Player player = (Player) sender; GetSnitchInfoPlayerTask task = new GetSnitchInfoPlayerTask(plugin, snitch.getId(), offset, player); Bukkit.getScheduler().scheduleAsyncDelayedTask(plugin, task); // List<String> info = task.getInfo(); }
public static Snitch findClosestOwnedSnitch(Player player) { Snitch closestSnitch = null; double closestDistance = Double.MAX_VALUE; Location playerLoc = player.getLocation(); Set<Snitch> snitches = JukeAlert.getInstance() .getSnitchManager() .findSnitches(player.getWorld(), player.getLocation()); for (final Snitch snitch : snitches) { if (doesSnitchExist(snitch, true) && isOnSnitch(snitch, player.getName())) { double distance = snitch.getLoc().distanceSquared(playerLoc); if (distance < closestDistance) { closestDistance = distance; closestSnitch = snitch; } } } return closestSnitch; }
@EventHandler(ignoreCancelled = true) public void onGroupDeletion(GroupChangeEvent event) { if (event.getType() != GroupChangeType.DELETE) { return; } String groupName = event.getFactionName(); Set<Snitch> removeSet = new TreeSet<Snitch>(); for (Snitch snitch : snitchManager.getAllSnitches()) { if (snitch.getGroup().getName().equalsIgnoreCase(groupName)) { removeSet.add(snitch); } } for (Snitch snitch : removeSet) { Location loc = snitch.getLoc(); plugin .getJaLogger() .logSnitchBreak( loc.getWorld().getName(), loc.getBlockX(), loc.getBlockY(), loc.getBlockZ()); snitchManager.removeSnitch(snitch); } }
@EventHandler(priority = EventPriority.HIGH) public void playerKillPlayer(PlayerDeathEvent event) { if (!(event.getEntity().getKiller() instanceof Player)) { return; } Player killed = event.getEntity(); Player killer = killed.getKiller(); if (vanishNoPacket.isPlayerInvisible(killer)) { return; } Set<Snitch> snitches = snitchManager.findSnitches(killed.getWorld(), killed.getLocation()); for (Snitch snitch : snitches) { if (!snitch.shouldLog()) { continue; } if (!isOnSnitch(snitch, killer.getName()) || isDebugging()) { if (checkProximity(snitch, killed.getName()) || checkProximity(snitch, killer.getName())) { plugin.getJaLogger().logSnitchPlayerKill(snitch, killer, killed); } } } }
@EventHandler(priority = EventPriority.HIGHEST) public void playerJoinEvent(PlayerJoinEvent event) { Player player = event.getPlayer(); if (vanishNoPacket.isPlayerInvisible(player)) { return; } String playerName = player.getName(); Set<Snitch> inList = new TreeSet<Snitch>(); playersInSnitches.put(player.getName(), inList); Location location = player.getLocation(); World world = location.getWorld(); Set<Snitch> snitches = snitchManager.findSnitches(world, location); for (Snitch snitch : snitches) { if (!isOnSnitch(snitch, playerName)) { inList.add(snitch); for (Player remoteplayer : playerManager.getPlayers()) { String remoteName = remoteplayer.getName(); if (isOnSnitch(snitch, remoteName)) { remoteplayer.sendMessage( ChatColor.AQUA + " * " + playerName + " logged in to snitch at " + snitch.getName() + " [" + snitch.getX() + " " + snitch.getY() + " " + snitch.getZ() + "]"); } } plugin.getJaLogger().logSnitchLogin(snitch, location, player); } } }
public void handlePlayerExit(PlayerEvent event) { Player player = event.getPlayer(); if (vanishNoPacket.isPlayerInvisible(player)) { return; } String playerName = player.getName(); playersInSnitches.remove(playerName); Location location = player.getLocation(); World world = location.getWorld(); Set<Snitch> snitches = snitchManager.findSnitches(world, location); for (Snitch snitch : snitches) { if (!isOnSnitch(snitch, playerName)) { for (Player remoteplayer : playerManager.getPlayers()) { if (snitch.getGroup().isMember(remoteplayer.getName()) || snitch.getGroup().isFounder(remoteplayer.getName()) || snitch.getGroup().isModerator(remoteplayer.getName())) { remoteplayer.sendMessage( ChatColor.AQUA + " * " + playerName + " logged out in snitch at " + snitch.getName() + " [" + snitch.getX() + " " + snitch.getY() + " " + snitch.getZ() + "]"); } } plugin.getJaLogger().logSnitchLogout(snitch, location, player); } } }
@EventHandler(priority = EventPriority.HIGHEST) public void reinforceSnitchBlock(CreateReinforcementEvent event) { if (event.isCancelled()) { return; } Block block = event.getBlock(); if (block.getType().equals(Material.JUKEBOX)) { Player player = event.getPlayer(); Location loc = block.getLocation(); AccessDelegate access = AccessDelegate.getDelegate(block); IReinforcement rei = event.getReinforcement(); if (rei instanceof PlayerReinforcement) { PlayerReinforcement reinforcement = (PlayerReinforcement) rei; Faction owner = reinforcement.getOwner(); if (reinforcement.getSecurityLevel().equals(SecurityLevel.GROUP)) { Snitch snitch; if (snitchManager.getSnitch(loc.getWorld(), loc) != null) { snitch = snitchManager.getSnitch(loc.getWorld(), loc); plugin .getJaLogger() .updateSnitchGroup(snitchManager.getSnitch(loc.getWorld(), loc), owner.getName()); snitchManager.removeSnitch(snitch); snitch.setGroup(owner); } else { snitch = new Snitch(loc, owner, true); plugin .getJaLogger() .logSnitchPlace( player.getWorld().getName(), owner.getName(), "", loc.getBlockX(), loc.getBlockY(), loc.getBlockZ(), true); snitch.setId(plugin.getJaLogger().getLastSnitchID()); plugin.getJaLogger().increaseLastSnitchID(); } snitchManager.addSnitch(snitch); player.sendMessage( ChatColor.AQUA + "You've created a snitch block registered to the group " + owner.getName() + ". To name your snitch, type /janame."); } else { Snitch snitch; if (snitchManager.getSnitch(loc.getWorld(), loc) != null) { snitch = snitchManager.getSnitch(loc.getWorld(), loc); plugin .getJaLogger() .updateSnitchGroup( snitchManager.getSnitch(loc.getWorld(), loc), owner.getFounder()); snitchManager.removeSnitch(snitch); snitch.setGroup(owner); } else { snitch = new Snitch(loc, owner, true); plugin .getJaLogger() .logSnitchPlace( player.getWorld().getName(), owner.getFounder(), "", loc.getBlockX(), loc.getBlockY(), loc.getBlockZ(), true); snitch.setId(plugin.getJaLogger().getLastSnitchID()); plugin.getJaLogger().increaseLastSnitchID(); } snitchManager.addSnitch(snitch); player.sendMessage( ChatColor.AQUA + "You've created a private snitch block; reinforce it with a group to register members. To name your snitch, type /janame."); } } } else if (block.getType().equals(Material.NOTE_BLOCK)) { Player player = event.getPlayer(); Location loc = block.getLocation(); AccessDelegate access = AccessDelegate.getDelegate(block); IReinforcement rei = event.getReinforcement(); if (rei instanceof PlayerReinforcement) { PlayerReinforcement reinforcement = (PlayerReinforcement) rei; Faction owner = reinforcement.getOwner(); if (reinforcement.getSecurityLevel().equals(SecurityLevel.GROUP)) { Snitch snitch; if (snitchManager.getSnitch(loc.getWorld(), loc) != null) { snitch = snitchManager.getSnitch(loc.getWorld(), loc); plugin .getJaLogger() .updateSnitchGroup(snitchManager.getSnitch(loc.getWorld(), loc), owner.getName()); snitchManager.removeSnitch(snitch); snitch.setGroup(owner); } else { snitch = new Snitch(loc, owner, false); plugin .getJaLogger() .logSnitchPlace( player.getWorld().getName(), owner.getName(), "", loc.getBlockX(), loc.getBlockY(), loc.getBlockZ(), false); snitch.setId(plugin.getJaLogger().getLastSnitchID()); plugin.getJaLogger().increaseLastSnitchID(); } snitchManager.addSnitch(snitch); player.sendMessage( ChatColor.AQUA + "You've created an entry snitch registered to the group " + owner.getName() + ". To name your entry snitch, type /janame."); } else { Snitch snitch; if (snitchManager.getSnitch(loc.getWorld(), loc) != null) { snitch = snitchManager.getSnitch(loc.getWorld(), loc); plugin .getJaLogger() .updateSnitchGroup( snitchManager.getSnitch(loc.getWorld(), loc), owner.getFounder()); snitchManager.removeSnitch(snitch); snitch.setGroup(owner); } else { snitch = new Snitch(loc, owner, false); plugin .getJaLogger() .logSnitchPlace( player.getWorld().getName(), owner.getFounder(), "", loc.getBlockX(), loc.getBlockY(), loc.getBlockZ(), false); snitch.setId(plugin.getJaLogger().getLastSnitchID()); plugin.getJaLogger().increaseLastSnitchID(); } snitchManager.addSnitch(snitch); player.sendMessage( ChatColor.AQUA + "You've created a private entry snitch; reinforce it with a group to register members. To name your entry snitch, type /janame."); } } } }