2018-12-21 22:46:10 +01:00
|
|
|
package com.massivecraft.factions.cmd;
|
|
|
|
|
2019-02-09 19:33:02 +01:00
|
|
|
import com.massivecraft.factions.FPlayer;
|
|
|
|
import com.massivecraft.factions.FPlayers;
|
2018-12-21 22:46:10 +01:00
|
|
|
import com.massivecraft.factions.Faction;
|
|
|
|
import com.massivecraft.factions.SavageFactions;
|
|
|
|
import com.massivecraft.factions.event.FactionDisbandEvent.PlayerDisbandReason;
|
|
|
|
import com.massivecraft.factions.struct.Permission;
|
|
|
|
import com.massivecraft.factions.struct.Role;
|
|
|
|
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 java.util.HashMap;
|
|
|
|
|
|
|
|
|
|
|
|
public class CmdDisband extends FCommand {
|
|
|
|
|
|
|
|
|
|
|
|
private static HashMap<String, String> disbandMap = new HashMap<>();
|
|
|
|
|
|
|
|
|
|
|
|
public CmdDisband() {
|
|
|
|
super();
|
|
|
|
this.aliases.add("disband");
|
|
|
|
|
|
|
|
//this.requiredArgs.add("");
|
|
|
|
this.optionalArgs.put("faction tag", "yours");
|
|
|
|
|
|
|
|
this.permission = Permission.DISBAND.node;
|
|
|
|
this.disableOnLock = true;
|
|
|
|
|
|
|
|
|
2018-12-29 08:50:44 +01:00
|
|
|
senderMustBePlayer = false;
|
2018-12-21 22:46:10 +01:00
|
|
|
senderMustBeMember = false;
|
|
|
|
senderMustBeModerator = false;
|
|
|
|
senderMustBeColeader = false;
|
|
|
|
senderMustBeAdmin = false;
|
2018-12-27 02:22:06 +01:00
|
|
|
|
2018-12-21 22:46:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void perform() {
|
|
|
|
// The faction, default to your own.. but null if console sender.
|
|
|
|
Faction faction = this.argAsFaction(0, fme == null ? null : myFaction);
|
|
|
|
if (faction == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-12-29 08:50:44 +01:00
|
|
|
boolean isMyFaction = fme != null && faction == myFaction;
|
|
|
|
|
|
|
|
if (isMyFaction) {
|
|
|
|
if (!assertMinRole(Role.LEADER)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!Permission.DISBAND_ANY.has(sender, true)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-12-21 22:46:10 +01:00
|
|
|
if (!fme.isAdminBypassing()) {
|
|
|
|
Access access = faction.getAccess(fme, PermissableAction.DISBAND);
|
2018-12-24 01:20:54 +01:00
|
|
|
if (fme.getRole() != Role.LEADER && faction.getFPlayerLeader() != fme && access != Access.ALLOW) {
|
2018-12-21 22:46:10 +01:00
|
|
|
fme.msg(TL.GENERIC_FPERM_NOPERMISSION, "disband " + faction.getTag());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!faction.isNormal()) {
|
|
|
|
msg(TL.COMMAND_DISBAND_IMMUTABLE.toString());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (faction.isPermanent()) {
|
|
|
|
msg(TL.COMMAND_DISBAND_MARKEDPERMANENT.toString());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// check for tnt before disbanding.
|
|
|
|
|
|
|
|
if (!disbandMap.containsKey(me.getUniqueId().toString()) && faction.getTnt() > 0) {
|
|
|
|
msg(TL.COMMAND_DISBAND_CONFIRM.toString().replace("{tnt}", faction.getTnt() + ""));
|
|
|
|
disbandMap.put(me.getUniqueId().toString(), faction.getId());
|
|
|
|
Bukkit.getScheduler().scheduleSyncDelayedTask(SavageFactions.plugin, new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
disbandMap.remove(me.getUniqueId().toString());
|
|
|
|
}
|
|
|
|
}, 200L);
|
2019-02-09 19:33:02 +01:00
|
|
|
} else if (faction.getId().equals(disbandMap.get(me.getUniqueId().toString())) || faction.getTnt() == 0) {
|
|
|
|
if (SavageFactions.plugin.getConfig().getBoolean("faction-disband-broadcast", true)) {
|
|
|
|
for (FPlayer follower : FPlayers.getInstance().getOnlinePlayers()) {
|
|
|
|
String amountString = senderIsConsole ? TL.GENERIC_SERVERADMIN.toString() : fme.describeTo(follower);
|
|
|
|
if (follower.getFaction() == faction) {
|
|
|
|
follower.msg(TL.COMMAND_DISBAND_BROADCAST_YOURS, amountString);
|
|
|
|
} else {
|
|
|
|
follower.msg(TL.COMMAND_DISBAND_BROADCAST_NOTYOURS, amountString, faction.getTag(follower));
|
|
|
|
}
|
|
|
|
}
|
2018-12-21 22:46:10 +01:00
|
|
|
faction.disband(me, PlayerDisbandReason.COMMAND);
|
2019-02-09 19:33:02 +01:00
|
|
|
} else {
|
|
|
|
faction.disband(me, PlayerDisbandReason.COMMAND);
|
|
|
|
me.sendMessage(String.valueOf(TL.COMMAND_DISBAND_PLAYER));
|
2018-12-21 22:46:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-09 19:33:02 +01:00
|
|
|
|
2018-12-21 22:46:10 +01:00
|
|
|
@Override
|
|
|
|
public TL getUsageTranslation() {
|
|
|
|
return TL.COMMAND_DISBAND_DESCRIPTION;
|
|
|
|
}
|
|
|
|
}
|