Saber-Factions/src/com/massivecraft/factions/commands/FCommandUnclaim.java

148 lines
3.5 KiB
Java
Raw Normal View History

2011-07-18 22:06:02 +02:00
package com.massivecraft.factions.commands;
2011-07-18 22:06:02 +02:00
import com.massivecraft.factions.Board;
import com.massivecraft.factions.Conf;
import com.massivecraft.factions.integration.Econ;
2011-07-18 22:06:02 +02:00
import com.massivecraft.factions.FLocation;
import com.massivecraft.factions.Faction;
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 18:35:39 +02:00
public class FCommandUnclaim extends FCommand
{
public FCommandUnclaim()
{
this.aliases.add("unclaim");
this.aliases.add("declaim");
//this.requiredArgs.add("");
//this.optionalArgs.put("", "");
this.permission = Permission.COMMAND_UNCLAIM.node;
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()
{
if( isLocked() )
{
sendLockMessage();
return;
}
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);
2011-10-09 18:35:39 +02:00
sendMessageParsed("<i>Safe zone was unclaimed.");
}
else
{
sendMessageParsed("<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);
2011-10-09 18:35:39 +02:00
sendMessageParsed("<i>War zone was unclaimed.");
}
else
{
sendMessageParsed("<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);
2011-10-09 18:35:39 +02:00
otherFaction.sendMessageParsed("%s<i> unclaimed some of your land.", fme.getNameAndRelevant(otherFaction));
sendMessageParsed("<i>You unclaimed this land.");
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)
{
sendMessageParsed("<b>You don't own this land.");
return;
}
2011-10-09 18:35:39 +02:00
String moneyBack = "<i>";
if (Econ.enabled())
{
double refund = Econ.calculateClaimRefund(myFaction.getLandRounded());
// 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))
{
sendMessageParsed("<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))
{
sendMessageParsed("<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 = "";
}
}
Board.removeAt(flocation);
2011-10-09 18:35:39 +02:00
myFaction.sendMessageParsed("%s<i> unclaimed some land."+moneyBack, fme.getNameAndRelevant(myFaction));
}
}