2014-10-13 15:14:34 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
|
|
|
|
2015-05-06 17:04:35 +02:00
|
|
|
import com.massivecraft.factions.cmd.arg.ARFaction;
|
2014-10-13 15:14:34 +02:00
|
|
|
import com.massivecraft.factions.entity.MConf;
|
2015-02-12 12:00:55 +01:00
|
|
|
import com.massivecraft.massivecore.MassiveException;
|
2014-10-13 15:14:34 +02:00
|
|
|
import com.massivecraft.massivecore.cmd.arg.ARInteger;
|
|
|
|
|
|
|
|
|
|
|
|
public abstract class CmdFactionsSetXRadius extends CmdFactionsSetX
|
|
|
|
{
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// CONSTRUCT
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
2014-11-19 10:30:44 +01:00
|
|
|
public CmdFactionsSetXRadius(boolean claim)
|
2014-10-13 15:14:34 +02:00
|
|
|
{
|
2014-11-19 10:30:44 +01:00
|
|
|
// Super
|
|
|
|
super(claim);
|
|
|
|
|
2014-10-13 15:14:34 +02:00
|
|
|
// Args
|
2015-05-13 23:00:53 +02:00
|
|
|
this.addArg(1, ARInteger.get(), "radius");
|
2014-11-19 10:30:44 +01:00
|
|
|
if (claim)
|
|
|
|
{
|
2015-05-06 17:04:35 +02:00
|
|
|
this.addArg(ARFaction.get(), "faction", "you");
|
2014-11-19 10:30:44 +01:00
|
|
|
this.setFactionArgIndex(1);
|
|
|
|
}
|
2014-10-13 15:14:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// EXTRAS
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
2015-02-12 12:00:55 +01:00
|
|
|
public Integer getRadius() throws MassiveException
|
2014-10-13 15:14:34 +02:00
|
|
|
{
|
2015-05-22 10:21:35 +02:00
|
|
|
int radius = this.readArgAt(0);
|
2014-10-13 15:14:34 +02:00
|
|
|
|
|
|
|
// Radius Claim Min
|
|
|
|
if (radius < 1)
|
|
|
|
{
|
|
|
|
msg("<b>If you specify a radius, it must be at least 1.");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Radius Claim Max
|
|
|
|
if (radius > MConf.get().setRadiusMax && ! msender.isUsingAdminMode())
|
|
|
|
{
|
|
|
|
msg("<b>The maximum radius allowed is <h>%s<b>.", MConf.get().setRadiusMax);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return radius;
|
|
|
|
}
|
|
|
|
|
2015-02-12 12:00:55 +01:00
|
|
|
public Integer getRadiusZero() throws MassiveException
|
2014-10-13 15:14:34 +02:00
|
|
|
{
|
|
|
|
Integer ret = this.getRadius();
|
|
|
|
if (ret == null) return ret;
|
|
|
|
return ret - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|