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

65 lines
1.6 KiB
Java
Raw Normal View History

2011-10-23 20:50:49 +02:00
package com.massivecraft.factions.cmd;
import com.massivecraft.factions.FFlag;
2011-10-23 20:50:49 +02:00
import com.massivecraft.factions.Faction;
import com.massivecraft.factions.Perm;
2013-04-16 10:11:59 +02:00
import com.massivecraft.mcore.cmd.req.ReqHasPerm;
2013-04-10 10:32:04 +02:00
import com.massivecraft.mcore.util.Txt;
2011-10-23 20:50:49 +02:00
2013-04-10 13:12:22 +02:00
public class CmdFactionsFlag extends FCommand
2011-10-23 20:50:49 +02:00
{
2013-04-10 13:12:22 +02:00
public CmdFactionsFlag()
2011-10-23 20:50:49 +02:00
{
2013-04-16 10:11:59 +02:00
this.addAliases("flag");
2011-10-23 20:50:49 +02:00
this.addOptionalArg("faction", "you");
this.addOptionalArg("flag", "all");
this.addOptionalArg("yes/no", "read");
2011-10-23 20:50:49 +02:00
2013-04-16 10:11:59 +02:00
this.addRequirements(ReqHasPerm.get(Perm.FLAG.node));
2011-10-23 20:50:49 +02:00
}
@Override
public void perform()
{
Faction faction = myFaction;
if (this.argIsSet(0))
{
faction = this.argAsFaction(0);
}
if (faction == null) return;
if ( ! this.argIsSet(1))
{
2013-04-10 10:32:04 +02:00
msg(Txt.titleize("Flags for " + faction.describeTo(fme, true)));
for (FFlag flag : FFlag.values())
2011-10-23 20:50:49 +02:00
{
msg(flag.getStateInfo(faction.getFlag(flag), true));
}
return;
}
FFlag flag = this.argAsFactionFlag(1);
2011-10-23 20:50:49 +02:00
if (flag == null) return;
if ( ! this.argIsSet(2))
{
2013-04-10 10:32:04 +02:00
msg(Txt.titleize("Flag for " + faction.describeTo(fme, true)));
2011-10-23 20:50:49 +02:00
msg(flag.getStateInfo(faction.getFlag(flag), true));
return;
}
Boolean targetValue = this.argAsBool(2);
if (targetValue == null) return;
// Do the sender have the right to change flags?
if ( ! Perm.FLAG_SET.has(sender, true)) return;
2011-10-23 20:50:49 +02:00
// Do the change
2013-04-10 10:32:04 +02:00
msg(Txt.titleize("Flag for " + faction.describeTo(fme, true)));
2011-10-23 20:50:49 +02:00
faction.setFlag(flag, targetValue);
msg(flag.getStateInfo(faction.getFlag(flag), true));
}
}