Saber-Factions/src/main/java/com/massivecraft/factions/cmd/CmdUnclaim.java

115 lines
3.8 KiB
Java
Raw Normal View History

2011-10-09 21:57:43 +02:00
package com.massivecraft.factions.cmd;
2014-04-04 20:55:21 +02:00
import com.massivecraft.factions.*;
import com.massivecraft.factions.event.LandUnclaimEvent;
import com.massivecraft.factions.integration.Econ;
2011-10-09 18:35:39 +02:00
import com.massivecraft.factions.struct.Permission;
2011-07-18 22:06:02 +02:00
import com.massivecraft.factions.struct.Role;
2014-04-04 20:55:21 +02:00
import org.bukkit.Bukkit;
public class CmdUnclaim extends FCommand {
2014-04-04 20:55:21 +02:00
public CmdUnclaim() {
2014-07-01 22:10:18 +02:00
this.aliases.add("unclaim");
this.aliases.add("declaim");
2014-04-04 20:55:21 +02:00
//this.requiredArgs.add("");
//this.optionalArgs.put("", "");
2014-07-01 22:10:18 +02:00
this.permission = Permission.UNCLAIM.node;
this.disableOnLock = true;
2014-04-04 20:55:21 +02:00
2014-07-01 22:10:18 +02:00
senderMustBePlayer = true;
senderMustBeMember = false;
senderMustBeModerator = false;
senderMustBeAdmin = false;
2014-04-04 20:55:21 +02:00
}
@Override
public void perform() {
2014-07-01 22:10:18 +02:00
FLocation flocation = new FLocation(fme);
Faction otherFaction = Board.getInstance().getFactionAt(flocation);
2014-04-04 20:55:21 +02:00
if (otherFaction.isSafeZone()) {
if (Permission.MANAGE_SAFE_ZONE.has(sender)) {
Board.getInstance().removeAt(flocation);
2014-07-01 22:10:18 +02:00
msg("<i>Safe zone was unclaimed.");
2014-04-04 20:55:21 +02:00
2014-07-01 21:49:42 +02:00
if (Conf.logLandUnclaims) {
2014-04-04 20:55:21 +02:00
P.p.log(fme.getName() + " unclaimed land at (" + flocation.getCoordString() + ") from the faction: " + otherFaction.getTag());
2014-07-01 21:49:42 +02:00
}
2014-07-01 21:52:40 +02:00
} else {
2014-04-04 20:55:21 +02:00
msg("<b>This is a safe zone. You lack permissions to unclaim.");
2014-07-01 22:10:18 +02:00
}
return;
2014-07-01 21:52:40 +02:00
} else if (otherFaction.isWarZone()) {
2014-04-04 20:55:21 +02:00
if (Permission.MANAGE_WAR_ZONE.has(sender)) {
Board.getInstance().removeAt(flocation);
2014-07-01 22:10:18 +02:00
msg("<i>War zone was unclaimed.");
2014-04-04 20:55:21 +02:00
2014-07-01 21:49:42 +02:00
if (Conf.logLandUnclaims) {
2014-04-04 20:55:21 +02:00
P.p.log(fme.getName() + " unclaimed land at (" + flocation.getCoordString() + ") from the faction: " + otherFaction.getTag());
2014-07-01 21:49:42 +02:00
}
2014-07-01 21:52:40 +02:00
} else {
2014-04-04 20:55:21 +02:00
msg("<b>This is a war zone. You lack permissions to unclaim.");
2014-07-01 22:10:18 +02:00
}
return;
2014-04-04 20:55:21 +02:00
}
if (fme.isAdminBypassing()) {
Board.getInstance().removeAt(flocation);
2014-04-04 20:55:21 +02:00
otherFaction.msg("%s<i> unclaimed some of your land.", fme.describeTo(otherFaction, true));
msg("<i>You unclaimed this land.");
2014-07-01 21:49:42 +02:00
if (Conf.logLandUnclaims) {
2014-04-04 20:55:21 +02:00
P.p.log(fme.getName() + " unclaimed land at (" + flocation.getCoordString() + ") from the faction: " + otherFaction.getTag());
2014-07-01 21:49:42 +02:00
}
2014-04-04 20:55:21 +02:00
return;
}
if (!assertHasFaction()) {
return;
}
if (!assertMinRole(Role.MODERATOR)) {
return;
}
if (myFaction != otherFaction) {
2014-07-01 22:10:18 +02:00
msg("<b>You don't own this land.");
return;
2014-04-04 20:55:21 +02:00
}
LandUnclaimEvent unclaimEvent = new LandUnclaimEvent(flocation, otherFaction, fme);
2014-07-01 22:10:18 +02:00
Bukkit.getServer().getPluginManager().callEvent(unclaimEvent);
if (unclaimEvent.isCancelled()) {
return;
}
2014-04-04 20:55:21 +02:00
if (Econ.shouldBeUsed()) {
double refund = Econ.calculateClaimRefund(myFaction.getLandRounded());
if (Conf.bankEnabled && Conf.bankFactionPaysLandCosts) {
2014-07-01 21:49:42 +02:00
if (!Econ.modifyMoney(myFaction, refund, "to unclaim this land", "for unclaiming this land")) {
return;
}
2014-07-01 21:52:40 +02:00
} else {
2014-07-01 22:10:18 +02:00
if (!Econ.modifyMoney(fme, refund, "to unclaim this land", "for unclaiming this land")) {
return;
}
2014-04-04 20:55:21 +02:00
}
}
Board.getInstance().removeAt(flocation);
2014-07-01 22:10:18 +02:00
myFaction.msg("%s<i> unclaimed some land.", fme.describeTo(myFaction, true));
2014-04-04 20:55:21 +02:00
2014-07-01 21:49:42 +02:00
if (Conf.logLandUnclaims) {
2014-04-04 20:55:21 +02:00
P.p.log(fme.getName() + " unclaimed land at (" + flocation.getCoordString() + ") from the faction: " + otherFaction.getTag());
2014-07-01 21:49:42 +02:00
}
2014-04-04 20:55:21 +02:00
}
}