Factions/src/com/massivecraft/factions/cmd/CmdFactionsClaim.java

100 lines
2.4 KiB
Java
Raw Normal View History

2011-10-09 21:57:43 +02:00
package com.massivecraft.factions.cmd;
import com.massivecraft.factions.FPerm;
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;
import com.massivecraft.factions.entity.MConf;
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;
import com.massivecraft.mcore.cmd.req.ReqIsPlayer;
2013-04-11 11:18:04 +02:00
import com.massivecraft.mcore.ps.PS;
2013-04-10 13:12:22 +02:00
public class CmdFactionsClaim extends FCommand
{
2013-04-10 13:12:22 +02:00
public CmdFactionsClaim()
{
2013-04-16 10:11:59 +02:00
this.addAliases("claim");
this.addOptionalArg("radius", "1");
this.addOptionalArg("faction", "you");
2013-04-16 10:11:59 +02:00
this.addRequirements(ReqHasPerm.get(Perm.CLAIM.node));
this.addRequirements(ReqIsPlayer.get());
}
@Override
public void perform()
{
// Args
Integer radius = this.arg(0, ARInteger.get(), 1);
2013-04-16 11:05:49 +02:00
if (radius == null) return;
final Faction forFaction = this.arg(1, ARFaction.get(me), usenderFaction);
if (forFaction == null) return;
// FPerm
if (!FPerm.TERRITORY.has(sender, forFaction, true)) return;
// Validate
if (radius < 1)
{
msg("<b>If you specify a radius, it must be at least 1.");
return;
}
if (radius > MConf.get().radiusClaimRadiusLimit && !usender.isUsingAdminMode())
{
msg("<b>The maximum radius allowed is <h>%s<b>.", MConf.get().radiusClaimRadiusLimit);
return;
}
// Apply
// single chunk
if (radius < 2)
2011-11-27 22:47:40 +01:00
{
usender.tryClaim(forFaction, PS.valueOf(me), true, 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))
{
2013-04-16 11:05:49 +02:00
msg("<b>You do not have permission to claim in a radius.");
return;
}
// TODO: There must be a better way than using a spiral task.
// TODO: Do some research to allow for claming sets of chunks in a batch with atomicity.
// This will probably result in an alteration to the owner change event.
// It would possibly contain a set of chunks instead of a single chunk.
2013-04-16 11:05:49 +02:00
new SpiralTask(PS.valueOf(me), radius)
{
private int failCount = 0;
private final int limit = MConf.get().radiusClaimFailureLimit - 1;
2013-04-16 11:05:49 +02:00
@Override
public boolean work()
{
boolean success = usender.tryClaim(forFaction, PS.valueOf(this.currentLocation()), true, true);
2013-04-16 11:05:49 +02:00
if (success)
{
this.failCount = 0;
}
else if (this.failCount++ >= this.limit)
{
2013-04-16 11:05:49 +02:00
this.stop();
return false;
}
2013-04-16 11:05:49 +02:00
return true;
}
};
}
}