2011-10-09 21:57:43 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
2011-10-08 23:22:02 +02:00
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
|
|
|
|
import com.massivecraft.factions.Conf;
|
|
|
|
import com.massivecraft.factions.integration.Econ;
|
|
|
|
import com.massivecraft.factions.FPlayer;
|
|
|
|
import com.massivecraft.factions.FPlayers;
|
|
|
|
import com.massivecraft.factions.Faction;
|
|
|
|
import com.massivecraft.factions.Factions;
|
|
|
|
import com.massivecraft.factions.P;
|
|
|
|
import com.massivecraft.factions.struct.Role;
|
|
|
|
import com.massivecraft.factions.zcore.MCommand;
|
|
|
|
|
|
|
|
|
|
|
|
public abstract class FCommand extends MCommand<P>
|
|
|
|
{
|
2011-10-09 21:57:43 +02:00
|
|
|
public boolean disableOnLock;
|
2011-10-08 23:22:02 +02:00
|
|
|
|
|
|
|
public FPlayer fme;
|
2011-10-09 18:35:39 +02:00
|
|
|
public Faction myFaction;
|
2011-10-08 23:22:02 +02:00
|
|
|
public boolean senderMustBeMember;
|
|
|
|
public boolean senderMustBeModerator;
|
|
|
|
public boolean senderMustBeAdmin;
|
|
|
|
|
2011-10-13 14:41:07 +02:00
|
|
|
public boolean isMoneyCommand;
|
|
|
|
public boolean isBankCommand;
|
|
|
|
|
2011-10-08 23:22:02 +02:00
|
|
|
public FCommand()
|
|
|
|
{
|
|
|
|
super(P.p);
|
2011-10-09 21:57:43 +02:00
|
|
|
|
|
|
|
// Due to safety reasons it defaults to disable on lock.
|
|
|
|
disableOnLock = true;
|
|
|
|
|
2011-10-13 14:41:07 +02:00
|
|
|
// The money commands must be disabled if money should not be used.
|
|
|
|
isMoneyCommand = false;
|
|
|
|
isBankCommand = false;
|
|
|
|
|
2011-10-08 23:22:02 +02:00
|
|
|
senderMustBeMember = false;
|
|
|
|
senderMustBeModerator = false;
|
|
|
|
senderMustBeAdmin = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void execute(CommandSender sender, List<String> args, List<MCommand<?>> commandChain)
|
|
|
|
{
|
|
|
|
if (sender instanceof Player)
|
|
|
|
{
|
|
|
|
this.fme = FPlayers.i.get((Player)sender);
|
2011-10-09 18:35:39 +02:00
|
|
|
this.myFaction = this.fme.getFaction();
|
2011-10-08 23:22:02 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.fme = null;
|
2011-10-09 18:35:39 +02:00
|
|
|
this.myFaction = null;
|
2011-10-08 23:22:02 +02:00
|
|
|
}
|
|
|
|
super.execute(sender, args, commandChain);
|
|
|
|
}
|
|
|
|
|
2011-10-09 21:57:43 +02:00
|
|
|
@Override
|
|
|
|
public boolean isEnabled()
|
|
|
|
{
|
|
|
|
if (p.getLocked() && this.disableOnLock)
|
|
|
|
{
|
2011-10-10 13:40:24 +02:00
|
|
|
msg("<b>Factions was locked by an admin. Please try again later.");
|
2011-10-09 21:57:43 +02:00
|
|
|
return false;
|
|
|
|
}
|
2011-10-13 14:41:07 +02:00
|
|
|
|
|
|
|
if (this.isMoneyCommand && ! Conf.econEnabled)
|
|
|
|
{
|
|
|
|
msg("<b>Faction economy features are diabled on this server.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.isBankCommand && ! Conf.bankEnabled)
|
|
|
|
{
|
|
|
|
msg("<b>The faction bank system is diabled on this server.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-10-09 21:57:43 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-10-08 23:22:02 +02:00
|
|
|
@Override
|
|
|
|
public boolean validSenderType(CommandSender sender, boolean informSenderIfNot)
|
|
|
|
{
|
|
|
|
boolean superValid = super.validSenderType(sender, informSenderIfNot);
|
|
|
|
if ( ! superValid) return false;
|
|
|
|
|
|
|
|
if ( ! (this.senderMustBeMember || this.senderMustBeModerator || this.senderMustBeAdmin)) return true;
|
|
|
|
|
|
|
|
if ( ! (sender instanceof Player)) return false;
|
|
|
|
|
|
|
|
FPlayer fplayer = FPlayers.i.get((Player)sender);
|
|
|
|
|
|
|
|
if ( ! fplayer.hasFaction())
|
|
|
|
{
|
|
|
|
sender.sendMessage(p.txt.parse("<b>You are not member of any faction."));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.senderMustBeModerator && ! fplayer.getRole().isAtLeast(Role.MODERATOR))
|
|
|
|
{
|
2011-10-09 14:53:38 +02:00
|
|
|
sender.sendMessage(p.txt.parse("<b>Only faction moderators can %s.", this.getHelpShort()));
|
2011-10-08 23:22:02 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.senderMustBeAdmin && ! fplayer.getRole().isAtLeast(Role.ADMIN))
|
|
|
|
{
|
2011-10-09 14:53:38 +02:00
|
|
|
sender.sendMessage(p.txt.parse("<b>Only faction admins can %s.", this.getHelpShort()));
|
2011-10-08 23:22:02 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-10-09 14:53:38 +02:00
|
|
|
// -------------------------------------------- //
|
|
|
|
// Assertions
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
|
|
|
public boolean assertHasFaction()
|
|
|
|
{
|
|
|
|
if (me == null) return true;
|
|
|
|
|
|
|
|
if ( ! fme.hasFaction())
|
|
|
|
{
|
|
|
|
sendMessage("You are not member of any faction.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean assertMinRole(Role role)
|
|
|
|
{
|
|
|
|
if (me == null) return true;
|
|
|
|
|
|
|
|
if (fme.getRole().value < role.value)
|
|
|
|
{
|
2011-10-10 13:40:24 +02:00
|
|
|
msg("<b>You <h>must be "+role+"<b> to "+this.getHelpShort()+".");
|
2011-10-09 14:53:38 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-10-08 23:22:02 +02:00
|
|
|
// -------------------------------------------- //
|
|
|
|
// Argument Readers
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
|
|
|
// ARG AS FPLAYER
|
|
|
|
public FPlayer argAsFPlayer(int idx, FPlayer def, boolean msg)
|
|
|
|
{
|
|
|
|
FPlayer ret = def;
|
|
|
|
|
|
|
|
String name = this.argAsString(idx);
|
|
|
|
if (name != null)
|
|
|
|
{
|
|
|
|
FPlayer fplayer = FPlayers.i.get(name);
|
|
|
|
if (fplayer != null)
|
|
|
|
{
|
|
|
|
ret = fplayer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (msg && ret == null)
|
|
|
|
{
|
|
|
|
this.sendMessage(p.txt.parse("<b>The player \"<p>%s<b>\" could not be found.", name));
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
public FPlayer argAsFPlayer(int idx, FPlayer def)
|
|
|
|
{
|
|
|
|
return this.argAsFPlayer(idx, def, true);
|
|
|
|
}
|
|
|
|
public FPlayer argAsFPlayer(int idx)
|
|
|
|
{
|
|
|
|
return this.argAsFPlayer(idx, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ARG AS BEST FPLAYER MATCH
|
|
|
|
public FPlayer argAsBestFPlayerMatch(int idx, FPlayer def, boolean msg)
|
|
|
|
{
|
|
|
|
FPlayer ret = def;
|
|
|
|
|
|
|
|
String name = this.argAsString(idx);
|
|
|
|
if (name != null)
|
|
|
|
{
|
|
|
|
FPlayer fplayer = FPlayers.i.find(name);
|
|
|
|
if (fplayer != null)
|
|
|
|
{
|
|
|
|
ret = fplayer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (msg && ret == null)
|
|
|
|
{
|
|
|
|
this.sendMessage(p.txt.parse("<b>The player \"<p>%s<b>\" could not be found.", name));
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
public FPlayer argAsBestFPlayerMatch(int idx, FPlayer def)
|
|
|
|
{
|
|
|
|
return this.argAsBestFPlayerMatch(idx, def, true);
|
|
|
|
}
|
|
|
|
public FPlayer argAsBestFPlayerMatch(int idx)
|
|
|
|
{
|
|
|
|
return this.argAsBestFPlayerMatch(idx, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ARG AS FACTION
|
|
|
|
public Faction argAsFaction(int idx, Faction def, boolean msg)
|
|
|
|
{
|
|
|
|
Faction ret = def;
|
|
|
|
|
|
|
|
String name = this.argAsString(idx);
|
|
|
|
if (name != null)
|
|
|
|
{
|
|
|
|
// First we search faction names
|
|
|
|
Faction faction = Factions.i.findByTag(name);
|
|
|
|
if (faction != null)
|
|
|
|
{
|
|
|
|
ret = faction;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Next we search player names
|
|
|
|
FPlayer fplayer = FPlayers.i.find(name);
|
|
|
|
if (fplayer != null)
|
|
|
|
{
|
|
|
|
ret = fplayer.getFaction();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (msg && ret == null)
|
|
|
|
{
|
|
|
|
this.sendMessage(p.txt.parse("<b>The faction or player \"<p>%s<b>\" could not be found.", name));
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
public Faction argAsFaction(int idx, Faction def)
|
|
|
|
{
|
|
|
|
return this.argAsFaction(idx, def, true);
|
|
|
|
}
|
|
|
|
public Faction argAsFaction(int idx)
|
|
|
|
{
|
|
|
|
return this.argAsFaction(idx, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// Commonly used logic
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
|
|
|
public boolean canIAdministerYou(FPlayer i, FPlayer you)
|
|
|
|
{
|
|
|
|
if ( ! i.getFaction().equals(you.getFaction()))
|
|
|
|
{
|
|
|
|
i.sendMessage(p.txt.parse("%s <b>is not in the same faction as you.",you.getNameAndRelevant(i)));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i.getRole().value > you.getRole().value || i.getRole().equals(Role.ADMIN) )
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (you.getRole().equals(Role.ADMIN))
|
|
|
|
{
|
|
|
|
i.sendMessage(p.txt.parse("<b>Only the faction admin can do that."));
|
|
|
|
}
|
|
|
|
else if (i.getRole().equals(Role.MODERATOR))
|
|
|
|
{
|
|
|
|
if ( i == you )
|
|
|
|
{
|
|
|
|
return true; //Moderators can control themselves
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
i.sendMessage(p.txt.parse("<b>Moderators can't control each other..."));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
i.sendMessage(p.txt.parse("<b>You must be a faction moderator to do that."));
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if economy is enabled and they're not on the bypass list, make 'em pay; returns true unless person can't afford the cost
|
2011-10-12 18:48:47 +02:00
|
|
|
public boolean payForCommand(double cost, String toDoThis, String forDoingThis)
|
2011-10-08 23:22:02 +02:00
|
|
|
{
|
2011-10-12 18:48:47 +02:00
|
|
|
if ( ! Econ.shouldBeUsed() || this.fme == null || cost == 0.0 || fme.isAdminBypassing()) return true;
|
2011-10-08 23:22:02 +02:00
|
|
|
|
2011-10-12 17:25:01 +02:00
|
|
|
if(Conf.bankFactionPaysLandCosts && fme.hasFaction())
|
|
|
|
{
|
2011-10-12 18:48:47 +02:00
|
|
|
if ( ! Econ.modifyMoney(myFaction, -cost, toDoThis, forDoingThis)) return false;
|
2011-10-12 17:25:01 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-10-12 18:48:47 +02:00
|
|
|
if ( ! Econ.modifyMoney(fme, -cost, toDoThis, forDoingThis)) return false;
|
2011-10-12 17:25:01 +02:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
/*
|
|
|
|
|
|
|
|
|
2011-10-08 23:22:02 +02:00
|
|
|
|
|
|
|
// pay up
|
|
|
|
if (cost > 0.0)
|
|
|
|
{
|
|
|
|
String costString = Econ.moneyString(cost);
|
|
|
|
if(Conf.bankFactionPaysCosts && fme.hasFaction() )
|
|
|
|
{
|
2011-10-12 17:25:01 +02:00
|
|
|
if( ! faction.getAccount().subtract(cost))
|
2011-10-08 23:22:02 +02:00
|
|
|
{
|
|
|
|
sendMessage("It costs "+costString+" to "+desc+", which your faction can't currently afford.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sendMessage(faction.getTag()+" has paid "+costString+" to "+desc+".");
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-10-12 17:25:01 +02:00
|
|
|
if ( ! Econ.deductMoney(fme.getName(), cost))
|
2011-10-08 23:22:02 +02:00
|
|
|
{
|
|
|
|
sendMessage("It costs "+costString+" to "+desc+", which you can't currently afford.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
sendMessage("You have paid "+costString+" to "+desc+".");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// wait... we pay you to use this command?
|
|
|
|
else
|
|
|
|
{
|
|
|
|
String costString = Econ.moneyString(-cost);
|
|
|
|
|
|
|
|
if(Conf.bankFactionPaysCosts && fme.hasFaction() )
|
|
|
|
{
|
2011-10-12 17:25:01 +02:00
|
|
|
faction.getAccount().add(-cost);
|
2011-10-08 23:22:02 +02:00
|
|
|
sendMessage(faction.getTag()+" has been paid "+costString+" to "+desc+".");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-10-09 14:53:38 +02:00
|
|
|
Econ.addMoney(fme.getName(), -cost);
|
2011-10-08 23:22:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
sendMessage("You have been paid "+costString+" to "+desc+".");
|
|
|
|
}
|
2011-10-12 17:25:01 +02:00
|
|
|
return true;*/
|
2011-10-08 23:22:02 +02:00
|
|
|
}
|
|
|
|
}
|