2018-03-04 23:13:32 +01:00
|
|
|
package com.massivecraft.factions.cmd;
|
|
|
|
|
2018-03-31 18:46:37 +02:00
|
|
|
|
2018-03-26 23:43:15 +02:00
|
|
|
import com.massivecraft.factions.*;
|
2018-03-04 23:13:32 +01:00
|
|
|
import com.massivecraft.factions.struct.Permission;
|
2018-03-26 23:43:15 +02:00
|
|
|
import com.massivecraft.factions.struct.Relation;
|
2018-04-01 16:13:23 +02:00
|
|
|
import com.massivecraft.factions.util.Particles.ParticleEffect;
|
2018-04-04 05:20:30 +02:00
|
|
|
import com.massivecraft.factions.util.WarmUpUtil;
|
2018-04-07 23:29:24 +02:00
|
|
|
import com.massivecraft.factions.zcore.fperms.Access;
|
|
|
|
import com.massivecraft.factions.zcore.fperms.PermissableAction;
|
2018-03-04 23:13:32 +01:00
|
|
|
import com.massivecraft.factions.zcore.util.TL;
|
2018-03-26 23:43:15 +02:00
|
|
|
import org.bukkit.Bukkit;
|
|
|
|
import org.bukkit.GameMode;
|
2018-07-29 21:34:40 +02:00
|
|
|
import org.bukkit.Particle;
|
2018-03-26 23:43:15 +02:00
|
|
|
import org.bukkit.entity.Entity;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
|
2018-04-09 05:13:41 +02:00
|
|
|
import java.util.ConcurrentModificationException;
|
2018-03-27 15:17:55 +02:00
|
|
|
import java.util.List;
|
2018-05-03 16:03:16 +02:00
|
|
|
import java.util.concurrent.ConcurrentHashMap;
|
2018-03-04 23:13:32 +01:00
|
|
|
|
|
|
|
public class CmdFly extends FCommand {
|
|
|
|
|
2018-03-26 23:43:15 +02:00
|
|
|
|
2019-03-03 04:51:21 +01:00
|
|
|
public static ConcurrentHashMap<String, Boolean> flyMap = new ConcurrentHashMap<String, Boolean>();
|
|
|
|
public static int id = -1;
|
|
|
|
public static int flyid = -1;
|
|
|
|
|
|
|
|
public CmdFly() {
|
|
|
|
super();
|
|
|
|
this.aliases.add("fly");
|
|
|
|
|
|
|
|
this.optionalArgs.put("on/off", "flip");
|
|
|
|
|
|
|
|
|
|
|
|
this.permission = Permission.FLY.node;
|
|
|
|
this.senderMustBeMember = true;
|
|
|
|
this.senderMustBeModerator = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void startParticles() {
|
|
|
|
// Just a secondary check.
|
|
|
|
if (!SavageFactions.plugin.getConfig().getBoolean("ffly.Particles.Enabled")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-03-27 15:54:32 +01:00
|
|
|
id = Bukkit.getScheduler().scheduleSyncRepeatingTask(SavageFactions.plugin, () -> {
|
|
|
|
for (String name : flyMap.keySet()) {
|
|
|
|
Player player = Bukkit.getPlayer(name);
|
|
|
|
if (player == null) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!player.isFlying()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!SavageFactions.plugin.mc17) {
|
|
|
|
if (player.getGameMode() == GameMode.SPECTATOR) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (FPlayers.getInstance().getByPlayer(player).isVanished()) {
|
|
|
|
// Actually, vanished players (such as admins) should not display particles to prevent others from knowing their vanished assistance for moderation.
|
|
|
|
// But we can keep it as a config.
|
|
|
|
if (SavageFactions.plugin.getConfig().getBoolean("ffly.Particles.Enable-While-Vanished")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (SavageFactions.plugin.useNonPacketParticles) {
|
|
|
|
// 1.9+ based servers will use the built in particleAPI instead of packet based.
|
|
|
|
// any particle amount higher than 0 made them go everywhere, and the offset at 0 was not working.
|
|
|
|
// So setting the amount to 0 spawns 1 in the precise location
|
|
|
|
player.getWorld().spawnParticle(Particle.CLOUD, player.getLocation().add(0, -0.35, 0), 0);
|
|
|
|
} else {
|
|
|
|
ParticleEffect.CLOUD.display((float) 0, (float) 0, (float) 0, (float) 0, 3, player.getLocation().add(0, -0.35, 0), 16);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
if (flyMap.keySet().size() == 0) {
|
|
|
|
Bukkit.getScheduler().cancelTask(id);
|
|
|
|
id = -1;
|
|
|
|
}
|
|
|
|
}, 10L, 3L);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void startFlyCheck() {
|
|
|
|
flyid = Bukkit.getScheduler().scheduleSyncRepeatingTask(SavageFactions.plugin, () -> { //threw the exception for now, until I recode fly :( Cringe.
|
|
|
|
checkTaskState();
|
|
|
|
if (flyMap.keySet().size() != 0) {
|
2019-03-03 04:51:21 +01:00
|
|
|
for (String name : flyMap.keySet()) {
|
2019-03-27 15:54:32 +01:00
|
|
|
if (name == null) {
|
|
|
|
continue;
|
|
|
|
}
|
2019-03-03 04:51:21 +01:00
|
|
|
Player player = Bukkit.getPlayer(name);
|
|
|
|
if (player == null) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!player.isFlying()) {
|
|
|
|
continue;
|
|
|
|
}
|
2019-03-27 15:54:32 +01:00
|
|
|
FPlayer fPlayer = FPlayers.getInstance().getByPlayer(player);
|
|
|
|
if (fPlayer == null) {
|
|
|
|
continue;
|
2019-03-03 04:51:21 +01:00
|
|
|
}
|
2019-03-27 15:54:32 +01:00
|
|
|
if (player.getGameMode() == GameMode.CREATIVE) {
|
2019-03-03 04:51:21 +01:00
|
|
|
continue;
|
|
|
|
}
|
2019-03-27 15:54:32 +01:00
|
|
|
if (!SavageFactions.plugin.mc17 && player.getGameMode() == GameMode.SPECTATOR) {
|
|
|
|
continue;
|
2019-03-03 04:51:21 +01:00
|
|
|
}
|
2019-03-27 15:54:32 +01:00
|
|
|
Faction myFaction = fPlayer.getFaction();
|
|
|
|
if (myFaction.isWilderness()) {
|
|
|
|
fPlayer.setFlying(false);
|
|
|
|
flyMap.remove(name);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (fPlayer.checkIfNearbyEnemies()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
FLocation myFloc = new FLocation(player.getLocation());
|
|
|
|
Faction toFac = Board.getInstance().getFactionAt(myFloc);
|
|
|
|
if (Board.getInstance().getFactionAt(myFloc) != myFaction) {
|
|
|
|
if (!checkBypassPerms(fPlayer, player, toFac)) {
|
2019-03-03 04:51:21 +01:00
|
|
|
fPlayer.setFlying(false);
|
|
|
|
flyMap.remove(name);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-27 15:54:32 +01:00
|
|
|
}
|
2019-03-03 04:51:21 +01:00
|
|
|
}
|
2019-03-27 15:54:32 +01:00
|
|
|
|
2019-03-03 04:51:21 +01:00
|
|
|
}, 20L, 20L);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static boolean checkBypassPerms(FPlayer fme, Player me, Faction toFac) {
|
|
|
|
if (toFac != fme.getFaction()) {
|
|
|
|
if (!me.hasPermission("factions.fly.wilderness") && toFac.isWilderness() || !me.hasPermission("factions.fly.safezone") && toFac.isSafeZone() || !me.hasPermission("factions.fly.warzone") && toFac.isWarZone()) {
|
|
|
|
fme.msg(TL.COMMAND_FLY_NO_ACCESS, toFac.getTag(fme));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
Access access = toFac.getAccess(fme, PermissableAction.FLY);
|
|
|
|
if ((!(me.hasPermission("factions.fly.enemy") || access == Access.ALLOW)) && toFac.getRelationTo(fme.getFaction()) == Relation.ENEMY) {
|
|
|
|
fme.msg(TL.COMMAND_FLY_NO_ACCESS, toFac.getTag(fme));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!(me.hasPermission("factions.fly.ally") || access == Access.ALLOW) && toFac.getRelationTo(fme.getFaction()) == Relation.ALLY) {
|
|
|
|
fme.msg(TL.COMMAND_FLY_NO_ACCESS, toFac.getTag(fme));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!(me.hasPermission("factions.fly.truce") || access == Access.ALLOW) && toFac.getRelationTo(fme.getFaction()) == Relation.TRUCE) {
|
|
|
|
fme.msg(TL.COMMAND_FLY_NO_ACCESS, toFac.getTag(fme));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(me.hasPermission("factions.fly.neutral") || access == Access.ALLOW) && toFac.getRelationTo(fme.getFaction()) == Relation.NEUTRAL && !isSystemFaction(toFac)) {
|
|
|
|
fme.msg(TL.COMMAND_FLY_NO_ACCESS, toFac.getTag(fme));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return me.hasPermission("factions.fly") && access != Access.DENY;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Boolean isSystemFaction(Faction faction) {
|
|
|
|
return faction.isSafeZone() ||
|
|
|
|
faction.isWarZone() ||
|
|
|
|
faction.isWilderness();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void checkTaskState() {
|
|
|
|
if (flyMap.keySet().size() == 0) {
|
|
|
|
Bukkit.getScheduler().cancelTask(flyid);
|
|
|
|
flyid = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isInFlightChecker(Player player) {
|
|
|
|
return flyMap.containsKey(player.getName());
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void perform() {
|
|
|
|
// Disabled by default.
|
|
|
|
if (!SavageFactions.plugin.getConfig().getBoolean("enable-faction-flight", false)) {
|
|
|
|
fme.msg(TL.COMMAND_FLY_DISABLED);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
FLocation myfloc = new FLocation(me.getLocation());
|
|
|
|
Faction toFac = Board.getInstance().getFactionAt(myfloc);
|
|
|
|
if (!checkBypassPerms(fme, me, toFac)) return;
|
|
|
|
List<Entity> entities = this.me.getNearbyEntities(16.0D, 256.0D, 16.0D);
|
|
|
|
|
|
|
|
for (int i = 0; i <= entities.size() - 1; ++i) {
|
|
|
|
if (entities.get(i) instanceof Player) {
|
|
|
|
Player eplayer = (Player) entities.get(i);
|
|
|
|
FPlayer efplayer = FPlayers.getInstance().getByPlayer(eplayer);
|
|
|
|
if (efplayer.getRelationTo(this.fme) == Relation.ENEMY && !efplayer.isStealthEnabled()) {
|
|
|
|
this.fme.msg(TL.COMMAND_FLY_CHECK_ENEMY);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (args.size() == 0) {
|
|
|
|
toggleFlight(!fme.isFlying(), me);
|
|
|
|
} else if (args.size() == 1) {
|
|
|
|
toggleFlight(argAsBool(0), me);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void toggleFlight(final boolean toggle, final Player player) {
|
|
|
|
if (!toggle) {
|
|
|
|
fme.setFlying(false);
|
|
|
|
flyMap.remove(player.getName());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fme.canFlyAtLocation())
|
|
|
|
|
2019-03-27 15:54:32 +01:00
|
|
|
this.doWarmUp(WarmUpUtil.Warmup.FLIGHT, TL.WARMUPS_NOTIFY_FLIGHT, "Fly", () -> {
|
|
|
|
fme.setFlying(true);
|
|
|
|
flyMap.put(player.getName(), true);
|
|
|
|
if (id == -1) {
|
|
|
|
if (SavageFactions.plugin.getConfig().getBoolean("ffly.Particles.Enabled")) {
|
|
|
|
startParticles();
|
2019-03-03 04:51:21 +01:00
|
|
|
}
|
|
|
|
}
|
2019-03-27 15:54:32 +01:00
|
|
|
if (flyid == -1) {
|
|
|
|
startFlyCheck();
|
|
|
|
}
|
2019-03-03 04:51:21 +01:00
|
|
|
}, this.p.getConfig().getLong("warmups.f-fly", 0));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public TL getUsageTranslation() {
|
|
|
|
return TL.COMMAND_FLY_DESCRIPTION;
|
|
|
|
}
|
2018-03-04 23:13:32 +01:00
|
|
|
|
|
|
|
}
|