2011-10-09 21:57:43 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2013-04-09 13:15:25 +02:00
|
|
|
import com.massivecraft.factions.ConfServer;
|
2013-04-09 12:56:29 +02:00
|
|
|
import com.massivecraft.factions.Perm;
|
2013-04-16 11:05:49 +02:00
|
|
|
import com.massivecraft.factions.cmd.arg.ARFaction;
|
2013-04-22 09:37:53 +02:00
|
|
|
import com.massivecraft.factions.entity.Faction;
|
2013-04-18 12:29:56 +02:00
|
|
|
import com.massivecraft.factions.task.SpiralTask;
|
2013-04-16 11:05:49 +02:00
|
|
|
import com.massivecraft.mcore.cmd.arg.ARInteger;
|
2013-04-16 10:11:59 +02:00
|
|
|
import com.massivecraft.mcore.cmd.req.ReqHasPerm;
|
2013-04-16 09:48:57 +02:00
|
|
|
import com.massivecraft.mcore.cmd.req.ReqIsPlayer;
|
2013-04-11 11:18:04 +02:00
|
|
|
import com.massivecraft.mcore.ps.PS;
|
2012-03-13 11:54:48 +01:00
|
|
|
|
2011-10-09 14:53:38 +02:00
|
|
|
|
2013-04-10 13:12:22 +02:00
|
|
|
public class CmdFactionsClaim extends FCommand
|
2011-10-09 14:53:38 +02:00
|
|
|
{
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2013-04-10 13:12:22 +02:00
|
|
|
public CmdFactionsClaim()
|
2011-10-09 14:53:38 +02:00
|
|
|
{
|
2013-04-16 10:11:59 +02:00
|
|
|
this.addAliases("claim");
|
2011-10-09 14:53:38 +02:00
|
|
|
|
2013-04-16 10:30:21 +02:00
|
|
|
this.addOptionalArg("faction", "you");
|
|
|
|
this.addOptionalArg("radius", "1");
|
2011-10-09 14:53:38 +02:00
|
|
|
|
2013-04-16 10:11:59 +02:00
|
|
|
this.addRequirements(ReqHasPerm.get(Perm.CLAIM.node));
|
2013-04-16 09:48:57 +02:00
|
|
|
this.addRequirements(ReqIsPlayer.get());
|
2011-03-22 15:45:41 +01:00
|
|
|
}
|
|
|
|
|
2011-06-21 07:38:31 +02:00
|
|
|
@Override
|
2011-10-09 14:53:38 +02:00
|
|
|
public void perform()
|
|
|
|
{
|
2013-04-16 11:27:03 +02:00
|
|
|
final Faction forFaction = this.arg(0, ARFaction.get());
|
2013-04-16 11:05:49 +02:00
|
|
|
if (forFaction == null) return;
|
|
|
|
|
|
|
|
Integer radius = this.arg(1, ARInteger.get(), 1);
|
|
|
|
if (radius == null) return;
|
|
|
|
|
2012-01-31 17:58:22 +01:00
|
|
|
|
2012-03-13 11:54:48 +01:00
|
|
|
if (radius < 1)
|
2012-01-31 17:58:22 +01:00
|
|
|
{
|
2012-03-13 11:54:48 +01:00
|
|
|
msg("<b>If you specify a radius, it must be at least 1.");
|
2012-01-31 17:58:22 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-03-13 11:54:48 +01:00
|
|
|
if (radius < 2)
|
2011-11-27 22:47:40 +01:00
|
|
|
{
|
2012-03-13 11:54:48 +01:00
|
|
|
// single chunk
|
2013-04-19 14:24:35 +02:00
|
|
|
fme.attemptClaim(forFaction, PS.valueOf(me), true);
|
2013-04-16 11:05:49 +02:00
|
|
|
return;
|
2011-11-27 22:47:40 +01:00
|
|
|
}
|
2013-04-16 11:05:49 +02:00
|
|
|
|
|
|
|
// radius claim
|
|
|
|
if (! Perm.CLAIM_RADIUS.has(sender, false))
|
2012-01-31 17:58:22 +01:00
|
|
|
{
|
2013-04-16 11:05:49 +02:00
|
|
|
msg("<b>You do not have permission to claim in a radius.");
|
|
|
|
return;
|
|
|
|
}
|
2013-01-30 02:21:33 +01:00
|
|
|
|
2013-04-16 11:05:49 +02:00
|
|
|
// TODO: I do not beleive in the spiral-task. Get rid of this. The failcount can be precalculated.
|
|
|
|
new SpiralTask(PS.valueOf(me), radius)
|
|
|
|
{
|
|
|
|
private int failCount = 0;
|
|
|
|
private final int limit = ConfServer.radiusClaimFailureLimit - 1;
|
2012-03-13 11:54:48 +01:00
|
|
|
|
2013-04-16 11:05:49 +02:00
|
|
|
@Override
|
|
|
|
public boolean work()
|
|
|
|
{
|
2013-04-19 14:24:35 +02:00
|
|
|
boolean success = fme.attemptClaim(forFaction, PS.valueOf(this.currentLocation()), true);
|
2013-04-16 11:05:49 +02:00
|
|
|
if (success)
|
|
|
|
failCount = 0;
|
|
|
|
else if ( ! success && failCount++ >= limit)
|
2012-03-13 11:54:48 +01:00
|
|
|
{
|
2013-04-16 11:05:49 +02:00
|
|
|
this.stop();
|
|
|
|
return false;
|
2012-03-13 11:54:48 +01:00
|
|
|
}
|
2013-04-16 11:05:49 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-03-22 15:45:41 +01:00
|
|
|
}
|
|
|
|
}
|