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

62 lines
1.4 KiB
Java
Raw Normal View History

package com.massivecraft.factions.cmd;
2015-05-06 17:04:35 +02:00
import com.massivecraft.factions.cmd.arg.ARFaction;
import com.massivecraft.factions.entity.MConf;
2015-02-12 12:00:55 +01:00
import com.massivecraft.massivecore.MassiveException;
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-11-19 10:30:44 +01:00
// Super
super(claim);
// Args
2015-05-06 17:04:35 +02:00
this.addArg(ARInteger.get(), "radius", "1");
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);
}
}
// -------------------------------------------- //
// EXTRAS
// -------------------------------------------- //
2015-02-12 12:00:55 +01:00
public Integer getRadius() throws MassiveException
{
2015-05-06 17:04:35 +02:00
int radius = this.readArg(1);
// 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
{
Integer ret = this.getRadius();
if (ret == null) return ret;
return ret - 1;
}
}