Essentials/Essentials/src/com/earth2me/essentials/commands/Commandeco.java

114 lines
2.9 KiB
Java
Raw Normal View History

package com.earth2me.essentials.commands;
2013-09-28 18:21:16 +02:00
import com.earth2me.essentials.ChargeException;
import com.earth2me.essentials.CommandSource;
import static com.earth2me.essentials.I18n._;
2011-11-18 18:42:26 +01:00
import com.earth2me.essentials.User;
2013-06-08 23:31:19 +02:00
import com.earth2me.essentials.utils.NumberUtil;
2013-05-05 05:13:17 +02:00
import java.math.BigDecimal;
2011-11-27 06:23:07 +01:00
import java.util.Locale;
import org.bukkit.Server;
2013-09-28 18:21:16 +02:00
public class Commandeco extends EssentialsLoopCommand
{
2013-09-28 18:21:16 +02:00
Commandeco.EcoCommands cmd;
BigDecimal amount;
public Commandeco()
{
super("eco");
}
@Override
public void run(final Server server, final CommandSource sender, final String commandLabel, final String[] args) throws Exception
{
if (args.length < 2)
{
throw new NotEnoughArgumentsException();
}
2013-04-30 01:03:59 +02:00
2013-05-05 11:41:19 +02:00
BigDecimal startingBalance = ess.getSettings().getStartingBalance();
2013-09-28 18:21:16 +02:00
try
{
cmd = Commandeco.EcoCommands.valueOf(args[0].toUpperCase(Locale.ENGLISH));
2013-05-05 05:13:17 +02:00
amount = (cmd == Commandeco.EcoCommands.RESET) ? startingBalance : new BigDecimal(args[2].replaceAll("[^0-9\\.]", ""));
}
catch (Exception ex)
{
throw new NotEnoughArgumentsException(ex);
}
2013-09-28 18:21:16 +02:00
loopOfflinePlayers(server, sender, false, args[1], args);
if (cmd == Commandeco.EcoCommands.RESET || cmd == Commandeco.EcoCommands.SET)
{
2013-09-28 18:21:16 +02:00
if (args[1].contentEquals("**"))
{
2013-09-28 18:21:16 +02:00
server.broadcastMessage(_("resetBalAll", NumberUtil.displayCurrency(amount, ess)));
}
2013-09-28 18:21:16 +02:00
else if (args[1].contentEquals("*"))
{
2013-09-28 18:21:16 +02:00
server.broadcastMessage(_("resetBal", NumberUtil.displayCurrency(amount, ess)));
}
}
2013-09-28 18:21:16 +02:00
}
2013-01-20 02:19:52 +01:00
2013-09-28 18:21:16 +02:00
@Override
protected void updatePlayer(final Server server, final CommandSource sender, final User player, final String[] args) throws NotEnoughArgumentsException, ChargeException
2013-09-28 18:21:16 +02:00
{
switch (cmd)
2013-01-20 00:58:12 +01:00
{
2013-09-28 18:21:16 +02:00
case GIVE:
player.giveMoney(amount, sender);
break;
case TAKE:
take(amount, player, sender);
break;
case RESET:
case SET:
set(amount, player, sender);
break;
2013-01-20 00:58:12 +01:00
}
}
private void take(BigDecimal amount, final User player, final CommandSource sender) throws ChargeException
{
2013-05-05 05:13:17 +02:00
BigDecimal money = player.getMoney();
BigDecimal minBalance = ess.getSettings().getMinMoney();
if (money.subtract(amount).compareTo(minBalance) > 0)
{
player.takeMoney(amount, sender);
}
2013-04-30 01:03:59 +02:00
else if (sender == null)
{
player.setMoney(minBalance);
2013-06-08 23:31:19 +02:00
player.sendMessage(_("takenFromAccount", NumberUtil.displayCurrency(player.getMoney(), ess)));
2013-04-30 01:03:59 +02:00
}
else
{
2013-09-28 18:21:16 +02:00
throw new ChargeException(_("insufficientFunds"));
}
}
private void set(BigDecimal amount, final User player, final CommandSource sender)
{
2013-05-05 05:13:17 +02:00
BigDecimal minBalance = ess.getSettings().getMinMoney();
boolean underMinimum = (amount.compareTo(minBalance) < 0);
player.setMoney(underMinimum ? minBalance : amount);
2013-06-08 23:31:19 +02:00
player.sendMessage(_("setBal", NumberUtil.displayCurrency(player.getMoney(), ess)));
if (sender != null)
{
2013-06-08 23:31:19 +02:00
sender.sendMessage(_("setBalOthers", player.getDisplayName(), NumberUtil.displayCurrency(player.getMoney(), ess)));
}
}
2011-11-18 13:06:59 +01:00
private enum EcoCommands
{
GIVE, TAKE, SET, RESET
}
}