efee66071b
configurable enemy check radius for fly, option added in conf.json Added a system faction check to neutral Added a enderpearl disable while flying option to conf.json Added my own repository to maven along with coreprotect for shading. --Factions Inspect Added--
252 lines
10 KiB
Java
252 lines
10 KiB
Java
package com.massivecraft.factions.cmd;
|
|
|
|
|
|
import com.massivecraft.factions.*;
|
|
import com.massivecraft.factions.struct.Permission;
|
|
import com.massivecraft.factions.struct.Relation;
|
|
import com.massivecraft.factions.util.Particles.ParticleEffect;
|
|
import com.massivecraft.factions.util.WarmUpUtil;
|
|
import com.massivecraft.factions.zcore.fperms.Access;
|
|
import com.massivecraft.factions.zcore.fperms.PermissableAction;
|
|
import com.massivecraft.factions.zcore.util.TL;
|
|
import org.bukkit.Bukkit;
|
|
import org.bukkit.GameMode;
|
|
import org.bukkit.entity.Entity;
|
|
import org.bukkit.entity.Player;
|
|
|
|
import java.util.ConcurrentModificationException;
|
|
import java.util.HashMap;
|
|
import java.util.List;
|
|
|
|
public class CmdFly extends FCommand {
|
|
|
|
|
|
public static HashMap<String,Boolean> flyMap = new HashMap<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() {
|
|
id = Bukkit.getScheduler().scheduleSyncRepeatingTask(P.p, new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
for (String name : flyMap.keySet()) {
|
|
Player player = Bukkit.getPlayer(name);
|
|
if (player == null) {
|
|
continue;
|
|
}
|
|
if (!player.isFlying()) {
|
|
continue;
|
|
}
|
|
|
|
ParticleEffect.CLOUD.display(0, 0, 0, 0, 1, player.getLocation().add(0, -0.35, 0), 16);
|
|
}
|
|
if (flyMap.keySet().size() == 0) {
|
|
Bukkit.getScheduler().cancelTask(id);
|
|
id = -1;
|
|
}
|
|
}
|
|
}, 10L, 10L);
|
|
}
|
|
|
|
public static void startFlyCheck() {
|
|
flyid = Bukkit.getScheduler().scheduleSyncRepeatingTask(P.p, new Runnable() {
|
|
@Override
|
|
public void run() throws ConcurrentModificationException { //threw the exception for now, until I recode fly :( Cringe.
|
|
checkTaskState();
|
|
if (flyMap.keySet().size() != 0) {
|
|
for (String name : flyMap.keySet()) {
|
|
if (name == null) {
|
|
continue;
|
|
}
|
|
Player player = Bukkit.getPlayer(name);
|
|
if (player == null) {
|
|
continue;
|
|
}
|
|
if (!player.isFlying()) {
|
|
continue;
|
|
}
|
|
FPlayer fPlayer = FPlayers.getInstance().getByPlayer(player);
|
|
|
|
if (fPlayer == null) {
|
|
continue;
|
|
}
|
|
if (player.getGameMode() == GameMode.CREATIVE || player.getGameMode() == GameMode.SPECTATOR) {
|
|
continue;
|
|
}
|
|
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)) {
|
|
fPlayer.setFlying(false);
|
|
flyMap.remove(name);
|
|
continue;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
}
|
|
}, 20L, 20L);
|
|
}
|
|
|
|
private static boolean checkBypassPerms(FPlayer fplayer, Player player, Faction toFac) {
|
|
if (player.hasPermission("factions.fly.wilderness") && toFac.isWilderness()) {
|
|
return true;
|
|
}
|
|
if (player.hasPermission("factions.fly.warzone") && toFac.isWarZone()) {
|
|
return true;
|
|
}
|
|
if (player.hasPermission("factions.fly.safezone") && toFac.isSafeZone()) {
|
|
return true;
|
|
}
|
|
Access access = toFac.getAccess(fplayer, PermissableAction.FLY);
|
|
if ((player.hasPermission("factions.fly.enemy") || access == Access.ALLOW) && toFac.getRelationTo(fplayer.getFaction()) == Relation.ENEMY) {
|
|
return true;
|
|
}
|
|
if ((player.hasPermission("factions.fly.ally") || access == Access.ALLOW) && toFac.getRelationTo(fplayer.getFaction()) == Relation.ALLY) {
|
|
return true;
|
|
}
|
|
if ((player.hasPermission("factions.fly.truce") || access == Access.ALLOW) && toFac.getRelationTo(fplayer.getFaction()) == Relation.TRUCE) {
|
|
return true;
|
|
}
|
|
return ((player.hasPermission("factions.fly.neutral") || access == Access.ALLOW) && toFac.getRelationTo(fplayer.getFaction()) == Relation.NEUTRAL && !isSystemFaction(toFac));
|
|
}
|
|
|
|
public boolean isInFlightChecker(Player player) {
|
|
return flyMap.containsKey(player.getName());
|
|
}
|
|
|
|
public static Boolean isSystemFaction(Faction faction) {
|
|
return faction.isSafeZone() ||
|
|
faction.isWarZone() ||
|
|
faction.isWilderness();
|
|
}
|
|
|
|
@Override
|
|
public void perform() {
|
|
// Disabled by default.
|
|
if (!P.p.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 (Board.getInstance().getFactionAt(myfloc) != fme.getFaction()){
|
|
if (!me.hasPermission("factions.fly.wilderness") && toFac.isWilderness()) {
|
|
fme.msg(TL.COMMAND_FLY_NO_ACCESS, Board.getInstance().getFactionAt(myfloc).getTag(fme));
|
|
return;
|
|
}
|
|
if (!me.hasPermission("factions.fly.safezone") && toFac.isSafeZone()) {
|
|
fme.msg(TL.COMMAND_FLY_NO_ACCESS, Board.getInstance().getFactionAt(myfloc).getTag(fme));
|
|
return;
|
|
}
|
|
if (!me.hasPermission("factions.fly.warzone") && toFac.isWarZone()) {
|
|
fme.msg(TL.COMMAND_FLY_NO_ACCESS, Board.getInstance().getFactionAt(myfloc).getTag(fme));
|
|
return;
|
|
}
|
|
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, Board.getInstance().getFactionAt(myfloc).getTag(fme));
|
|
return;
|
|
}
|
|
if (!(me.hasPermission("factions.fly.ally") || access == Access.ALLOW) && toFac.getRelationTo(fme.getFaction()) == Relation.ALLY) {
|
|
fme.msg(TL.COMMAND_FLY_NO_ACCESS, Board.getInstance().getFactionAt(myfloc).getTag(fme));
|
|
return;
|
|
}
|
|
if (!(me.hasPermission("factions.fly.truce") || access == Access.ALLOW) && toFac.getRelationTo(fme.getFaction()) == Relation.TRUCE) {
|
|
fme.msg(TL.COMMAND_FLY_NO_ACCESS, Board.getInstance().getFactionAt(myfloc).getTag(fme));
|
|
return;
|
|
}
|
|
|
|
if (!(me.hasPermission("factions.fly.neutral") || access == Access.ALLOW) && toFac.getRelationTo(fme.getFaction()) == Relation.NEUTRAL && !isSystemFaction(toFac)) {
|
|
fme.msg(TL.COMMAND_FLY_NO_ACCESS, Board.getInstance().getFactionAt(myfloc).getTag(fme));
|
|
return;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
List<Entity> entities = me.getNearbyEntities(16,256,16);
|
|
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(fme) == Relation.ENEMY)
|
|
{
|
|
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);
|
|
}
|
|
}
|
|
|
|
public static void checkTaskState() {
|
|
if (flyMap.keySet().size() == 0) {
|
|
Bukkit.getScheduler().cancelTask(flyid);
|
|
flyid = -1;
|
|
}
|
|
}
|
|
|
|
private void toggleFlight(final boolean toggle, final Player player) {
|
|
if (!toggle) {
|
|
fme.setFlying(false);
|
|
flyMap.remove(player.getName());
|
|
return;
|
|
}
|
|
|
|
if (fme.canFlyAtLocation())
|
|
|
|
this.doWarmUp(WarmUpUtil.Warmup.FLIGHT, TL.WARMUPS_NOTIFY_FLIGHT, "Fly", new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
fme.setFlying(true);
|
|
flyMap.put(player.getName(),true);
|
|
if (id == -1){
|
|
if (P.p.getConfig().getBoolean("ffly.Particles.Enabled")){
|
|
startParticles();
|
|
}
|
|
}
|
|
if (flyid == -1){
|
|
startFlyCheck();
|
|
}
|
|
}
|
|
}, this.p.getConfig().getLong("warmups.f-fly", 0));
|
|
}
|
|
|
|
@Override
|
|
public TL getUsageTranslation() {
|
|
return TL.COMMAND_FLY_DESCRIPTION;
|
|
}
|
|
|
|
}
|