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

174 lines
4.5 KiB
Java
Raw Normal View History

2011-10-09 21:57:43 +02:00
package com.massivecraft.factions.cmd;
2011-07-18 22:06:02 +02:00
import com.massivecraft.factions.Board;
import com.massivecraft.factions.Conf;
import com.massivecraft.factions.integration.Econ;
import com.massivecraft.factions.integration.SpoutFeatures;
2011-07-18 22:06:02 +02:00
import com.massivecraft.factions.FLocation;
import com.massivecraft.factions.Faction;
import com.massivecraft.factions.P;
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;
2011-10-09 20:10:19 +02:00
public class CmdUnclaim extends FCommand
2011-10-09 18:35:39 +02:00
{
2011-10-09 20:10:19 +02:00
public CmdUnclaim()
2011-10-09 18:35:39 +02:00
{
this.aliases.add("unclaim");
this.aliases.add("declaim");
//this.requiredArgs.add("");
//this.optionalArgs.put("", "");
2011-10-09 21:57:43 +02:00
this.permission = Permission.UNCLAIM.node;
this.disableOnLock = true;
2011-10-09 18:35:39 +02:00
senderMustBePlayer = true;
senderMustBeMember = false;
senderMustBeModerator = false;
senderMustBeAdmin = false;
}
@Override
2011-10-09 18:35:39 +02:00
public void perform()
{
FLocation flocation = new FLocation(fme);
2011-03-23 17:39:56 +01:00
Faction otherFaction = Board.getFactionAt(flocation);
2011-10-09 18:35:39 +02:00
if (otherFaction.isSafeZone())
{
if (Permission.MANAGE_SAFE_ZONE.has(sender))
{
2011-03-23 17:39:56 +01:00
Board.removeAt(flocation);
SpoutFeatures.updateTerritoryDisplayLoc(flocation);
2011-10-10 13:40:24 +02:00
msg("<i>Safe zone was unclaimed.");
if (Conf.logLandUnclaims)
P.p.log(fme.getName()+" unclaimed land at ("+flocation.getCoordString()+") from the faction: "+otherFaction.getTag());
2011-10-09 18:35:39 +02:00
}
else
{
2011-10-10 13:40:24 +02:00
msg("<b>This is a safe zone. You lack permissions to unclaim.");
2011-03-23 17:39:56 +01:00
}
return;
}
2011-10-09 18:35:39 +02:00
else if (otherFaction.isWarZone())
{
if (Permission.MANAGE_WAR_ZONE.has(sender))
{
Board.removeAt(flocation);
SpoutFeatures.updateTerritoryDisplayLoc(flocation);
2011-10-10 13:40:24 +02:00
msg("<i>War zone was unclaimed.");
if (Conf.logLandUnclaims)
P.p.log(fme.getName()+" unclaimed land at ("+flocation.getCoordString()+") from the faction: "+otherFaction.getTag());
2011-10-09 18:35:39 +02:00
}
else
{
2011-10-10 13:40:24 +02:00
msg("<b>This is a war zone. You lack permissions to unclaim.");
}
return;
}
2011-10-09 18:35:39 +02:00
if (fme.isAdminBypassing())
{
Board.removeAt(flocation);
SpoutFeatures.updateTerritoryDisplayLoc(flocation);
2011-10-21 19:20:33 +02:00
otherFaction.msg("%s<i> unclaimed some of your land.", fme.describeTo(otherFaction, true));
2011-10-10 13:40:24 +02:00
msg("<i>You unclaimed this land.");
if (Conf.logLandUnclaims)
P.p.log(fme.getName()+" unclaimed land at ("+flocation.getCoordString()+") from the faction: "+otherFaction.getTag());
return;
}
2011-03-23 17:39:56 +01:00
2011-10-09 18:35:39 +02:00
if ( ! assertHasFaction())
{
return;
}
2011-10-09 18:35:39 +02:00
if ( ! assertMinRole(Role.MODERATOR))
{
return;
}
2011-10-09 18:35:39 +02:00
if ( myFaction != otherFaction)
{
2011-10-10 13:40:24 +02:00
msg("<b>You don't own this land.");
return;
}
2011-10-12 18:48:47 +02:00
//String moneyBack = "<i>";
if (Econ.shouldBeUsed())
2011-10-09 18:35:39 +02:00
{
double refund = Econ.calculateClaimRefund(myFaction.getLandRounded());
2011-10-12 18:48:47 +02:00
if(Conf.bankEnabled && Conf.bankFactionPaysLandCosts)
2011-10-12 18:48:47 +02:00
{
if ( ! Econ.modifyMoney(myFaction, refund, "to unclaim this land", "for unclaiming this land")) return;
}
else
{
if ( ! Econ.modifyMoney(fme , refund, "to unclaim this land", "for unclaiming this land")) return;
}
/*
// a real refund
2011-10-09 18:35:39 +02:00
if (refund > 0.0)
{
if(Conf.bankFactionPaysLandCosts)
{
Faction faction = myFaction;
2011-09-24 03:22:53 +02:00
faction.addMoney(refund);
2011-10-09 18:35:39 +02:00
moneyBack = " "+faction.getTag()+"<i> received a refund of <h>"+Econ.moneyString(refund)+"<i>.";
}
else
{
Econ.addMoney(fme.getName(), refund);
2011-10-09 18:35:39 +02:00
moneyBack = " They received a refund of <h>"+Econ.moneyString(refund)+"<i>.";
2011-09-24 03:22:53 +02:00
}
}
// wait, you're charging people to unclaim land? outrageous
2011-10-09 18:35:39 +02:00
else if (refund < 0.0)
{
if(Conf.bankFactionPaysLandCosts)
{
Faction faction = myFaction;
if(!faction.removeMoney(-refund))
{
2011-10-10 13:40:24 +02:00
msg("<b>Unclaiming this land will cost <h>%s<b> which your faction can't currently afford.", Econ.moneyString(-refund));
2011-09-24 03:22:53 +02:00
return;
}
2011-10-09 18:35:39 +02:00
moneyBack = " It cost "+faction.getTag()+" <h>"+Econ.moneyString(refund)+"<i>.";
}
else
{
if (!Econ.deductMoney(fme.getName(), -refund))
{
2011-10-10 13:40:24 +02:00
msg("<b>Unclaiming this land will cost <h>%s<b> which you can't currently afford.", Econ.moneyString(-refund));
2011-09-24 03:22:53 +02:00
return;
}
2011-10-09 18:35:39 +02:00
moneyBack = " It cost them <h>"+Econ.moneyString(refund)+"<i>.";
}
}
// no refund
2011-10-09 18:35:39 +02:00
else
{
moneyBack = "";
}
2011-10-12 18:48:47 +02:00
*/
}
Board.removeAt(flocation);
SpoutFeatures.updateTerritoryDisplayLoc(flocation);
2011-10-21 19:20:33 +02:00
myFaction.msg("%s<i> unclaimed some land.", fme.describeTo(myFaction, true));
if (Conf.logLandUnclaims)
P.p.log(fme.getName()+" unclaimed land at ("+flocation.getCoordString()+") from the faction: "+otherFaction.getTag());
}
}