2011-05-02 18:22:17 +00:00
|
|
|
package com.earth2me.essentials.api;
|
2011-05-02 03:56:51 +00:00
|
|
|
|
2013-07-13 17:40:46 +00:00
|
|
|
import com.earth2me.essentials.EssentialsConf;
|
2014-04-14 23:06:29 +00:00
|
|
|
import com.earth2me.essentials.EssentialsUserConf;
|
2014-03-20 15:54:07 +00:00
|
|
|
import static com.earth2me.essentials.I18n.tl;
|
2014-05-31 19:37:44 +00:00
|
|
|
import com.earth2me.essentials.Trade;
|
2013-07-13 17:40:46 +00:00
|
|
|
import com.earth2me.essentials.User;
|
2013-10-11 02:44:41 +00:00
|
|
|
import static com.earth2me.essentials.api.Economy.add;
|
|
|
|
import static com.earth2me.essentials.api.Economy.divide;
|
|
|
|
import static com.earth2me.essentials.api.Economy.format;
|
|
|
|
import static com.earth2me.essentials.api.Economy.getMoneyExact;
|
|
|
|
import static com.earth2me.essentials.api.Economy.hasEnough;
|
|
|
|
import static com.earth2me.essentials.api.Economy.hasLess;
|
|
|
|
import static com.earth2me.essentials.api.Economy.hasMore;
|
|
|
|
import static com.earth2me.essentials.api.Economy.multiply;
|
|
|
|
import static com.earth2me.essentials.api.Economy.setMoney;
|
|
|
|
import static com.earth2me.essentials.api.Economy.substract;
|
2013-07-13 17:40:46 +00:00
|
|
|
import com.earth2me.essentials.utils.NumberUtil;
|
2013-10-11 02:44:41 +00:00
|
|
|
import com.earth2me.essentials.utils.StringUtil;
|
2014-04-19 01:03:39 +00:00
|
|
|
import com.google.common.base.Charsets;
|
2013-07-13 17:40:46 +00:00
|
|
|
import java.io.File;
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
import java.math.MathContext;
|
2014-04-19 01:03:39 +00:00
|
|
|
import java.util.UUID;
|
2013-07-13 17:40:46 +00:00
|
|
|
import java.util.logging.Level;
|
|
|
|
import java.util.logging.Logger;
|
2013-10-11 02:44:41 +00:00
|
|
|
import net.ess3.api.IEssentials;
|
2014-02-02 16:07:32 +00:00
|
|
|
import net.ess3.api.MaxMoneyException;
|
2011-05-02 03:56:51 +00:00
|
|
|
|
2013-07-13 17:40:46 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Instead of using this api directly, we recommend to use the register plugin: http://bit.ly/RegisterMethod
|
|
|
|
*/
|
|
|
|
public class Economy
|
2011-05-02 09:55:22 +00:00
|
|
|
{
|
2013-07-13 17:40:46 +00:00
|
|
|
public Economy()
|
|
|
|
{
|
|
|
|
}
|
2013-12-07 20:03:05 +00:00
|
|
|
private static final Logger logger = Logger.getLogger("Essentials");
|
2013-07-13 17:40:46 +00:00
|
|
|
private static IEssentials ess;
|
|
|
|
private static final String noCallBeforeLoad = "Essentials API is called before Essentials is loaded.";
|
|
|
|
public static final MathContext MATH_CONTEXT = MathContext.DECIMAL128;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param aEss the ess to set
|
|
|
|
*/
|
|
|
|
public static void setEss(IEssentials aEss)
|
|
|
|
{
|
|
|
|
ess = aEss;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void createNPCFile(String name)
|
|
|
|
{
|
|
|
|
File folder = new File(ess.getDataFolder(), "userdata");
|
2014-05-05 21:36:16 +00:00
|
|
|
name = StringUtil.safeString(name);
|
2013-07-13 17:40:46 +00:00
|
|
|
if (!folder.exists())
|
|
|
|
{
|
|
|
|
folder.mkdirs();
|
|
|
|
}
|
2014-04-19 01:03:39 +00:00
|
|
|
UUID npcUUID = UUID.nameUUIDFromBytes(("NPC:" + name).getBytes(Charsets.UTF_8));
|
|
|
|
EssentialsUserConf npcConfig = new EssentialsUserConf(name, npcUUID, new File(folder, npcUUID.toString() + ".yml"));
|
2013-07-13 17:40:46 +00:00
|
|
|
npcConfig.load();
|
|
|
|
npcConfig.setProperty("npc", true);
|
2014-04-19 01:03:39 +00:00
|
|
|
npcConfig.setProperty("lastAccountName", name);
|
2013-07-13 17:40:46 +00:00
|
|
|
npcConfig.setProperty("money", ess.getSettings().getStartingBalance());
|
|
|
|
npcConfig.forceSave();
|
2014-04-19 01:03:39 +00:00
|
|
|
ess.getUserMap().trackUUID(npcUUID, name);
|
2013-07-13 17:40:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private static void deleteNPC(String name)
|
|
|
|
{
|
2014-04-14 23:06:29 +00:00
|
|
|
User user = ess.getUser(name);
|
|
|
|
user.reset();
|
2013-07-13 17:40:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private static User getUserByName(String name)
|
|
|
|
{
|
|
|
|
if (ess == null)
|
|
|
|
{
|
|
|
|
throw new RuntimeException(noCallBeforeLoad);
|
|
|
|
}
|
|
|
|
return ess.getUser(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the balance of a user
|
|
|
|
*
|
|
|
|
* @param name Name of the user
|
|
|
|
* @return balance
|
|
|
|
* @throws UserDoesNotExistException
|
|
|
|
*/
|
|
|
|
@Deprecated
|
2013-07-25 23:07:56 +00:00
|
|
|
public static double getMoney(String name) throws UserDoesNotExistException
|
2013-07-13 17:40:46 +00:00
|
|
|
{
|
|
|
|
return getMoneyExact(name).doubleValue();
|
|
|
|
}
|
|
|
|
|
2013-07-25 23:07:56 +00:00
|
|
|
public static BigDecimal getMoneyExact(String name) throws UserDoesNotExistException
|
2013-07-13 17:40:46 +00:00
|
|
|
{
|
|
|
|
User user = getUserByName(name);
|
|
|
|
if (user == null)
|
|
|
|
{
|
2013-07-25 23:07:56 +00:00
|
|
|
throw new UserDoesNotExistException(name);
|
2013-07-13 17:40:46 +00:00
|
|
|
}
|
|
|
|
return user.getMoney();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the balance of a user
|
|
|
|
*
|
|
|
|
* @param name Name of the user
|
|
|
|
* @param balance The balance you want to set
|
|
|
|
* @throws UserDoesNotExistException If a user by that name does not exists
|
|
|
|
* @throws NoLoanPermittedException If the user is not allowed to have a negative balance
|
|
|
|
*/
|
|
|
|
@Deprecated
|
2013-07-25 23:07:56 +00:00
|
|
|
public static void setMoney(String name, double balance) throws UserDoesNotExistException, NoLoanPermittedException
|
2013-07-13 17:40:46 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
setMoney(name, BigDecimal.valueOf(balance));
|
|
|
|
}
|
|
|
|
catch (ArithmeticException e)
|
|
|
|
{
|
|
|
|
logger.log(Level.WARNING, "Failed to set balance of " + name + " to " + balance + ": " + e.getMessage(), e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-25 23:07:56 +00:00
|
|
|
public static void setMoney(String name, BigDecimal balance) throws UserDoesNotExistException, NoLoanPermittedException
|
2013-07-13 17:40:46 +00:00
|
|
|
{
|
|
|
|
User user = getUserByName(name);
|
|
|
|
if (user == null)
|
|
|
|
{
|
2013-07-25 23:07:56 +00:00
|
|
|
throw new UserDoesNotExistException(name);
|
2013-07-13 17:40:46 +00:00
|
|
|
}
|
|
|
|
if (balance.compareTo(ess.getSettings().getMinMoney()) < 0)
|
|
|
|
{
|
2013-07-25 23:07:56 +00:00
|
|
|
throw new NoLoanPermittedException();
|
2013-07-13 17:40:46 +00:00
|
|
|
}
|
|
|
|
if (balance.signum() < 0 && !user.isAuthorized("essentials.eco.loan"))
|
|
|
|
{
|
2013-07-25 23:07:56 +00:00
|
|
|
throw new NoLoanPermittedException();
|
2013-07-13 17:40:46 +00:00
|
|
|
}
|
2014-02-02 16:07:32 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
user.setMoney(balance);
|
|
|
|
}
|
|
|
|
catch (MaxMoneyException ex)
|
|
|
|
{
|
|
|
|
//TODO: Update API to show max balance errors
|
|
|
|
}
|
2014-05-31 19:37:44 +00:00
|
|
|
Trade.log("API", "Set", "API", name, new Trade(balance, ess), null, null, null, ess);
|
2013-07-13 17:40:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds money to the balance of a user
|
|
|
|
*
|
|
|
|
* @param name Name of the user
|
|
|
|
* @param amount The money you want to add
|
|
|
|
* @throws UserDoesNotExistException If a user by that name does not exists
|
|
|
|
* @throws NoLoanPermittedException If the user is not allowed to have a negative balance
|
|
|
|
*/
|
|
|
|
@Deprecated
|
2013-07-25 23:07:56 +00:00
|
|
|
public static void add(String name, double amount) throws UserDoesNotExistException, NoLoanPermittedException
|
2013-07-13 17:40:46 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
add(name, BigDecimal.valueOf(amount));
|
|
|
|
}
|
|
|
|
catch (ArithmeticException e)
|
|
|
|
{
|
|
|
|
logger.log(Level.WARNING, "Failed to add " + amount + " to balance of " + name + ": " + e.getMessage(), e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-25 23:07:56 +00:00
|
|
|
public static void add(String name, BigDecimal amount) throws UserDoesNotExistException, NoLoanPermittedException, ArithmeticException
|
2013-07-13 17:40:46 +00:00
|
|
|
{
|
|
|
|
BigDecimal result = getMoneyExact(name).add(amount, MATH_CONTEXT);
|
|
|
|
setMoney(name, result);
|
2014-05-31 19:37:44 +00:00
|
|
|
Trade.log("API", "Add", "API", name, new Trade(amount, ess), null, null, null, ess);
|
2013-07-13 17:40:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Substracts money from the balance of a user
|
|
|
|
*
|
|
|
|
* @param name Name of the user
|
|
|
|
* @param amount The money you want to substract
|
|
|
|
* @throws UserDoesNotExistException If a user by that name does not exists
|
|
|
|
* @throws NoLoanPermittedException If the user is not allowed to have a negative balance
|
|
|
|
*/
|
|
|
|
@Deprecated
|
2013-07-25 23:07:56 +00:00
|
|
|
public static void subtract(String name, double amount) throws UserDoesNotExistException, NoLoanPermittedException
|
2013-07-13 17:40:46 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
substract(name, BigDecimal.valueOf(amount));
|
|
|
|
}
|
|
|
|
catch (ArithmeticException e)
|
|
|
|
{
|
|
|
|
logger.log(Level.WARNING, "Failed to substract " + amount + " of balance of " + name + ": " + e.getMessage(), e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-25 23:07:56 +00:00
|
|
|
public static void substract(String name, BigDecimal amount) throws UserDoesNotExistException, NoLoanPermittedException, ArithmeticException
|
2013-07-13 17:40:46 +00:00
|
|
|
{
|
|
|
|
BigDecimal result = getMoneyExact(name).subtract(amount, MATH_CONTEXT);
|
|
|
|
setMoney(name, result);
|
2014-05-31 19:37:44 +00:00
|
|
|
Trade.log("API", "Subtract", "API", name, new Trade(amount, ess), null, null, null, ess);
|
2013-07-13 17:40:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Divides the balance of a user by a value
|
|
|
|
*
|
|
|
|
* @param name Name of the user
|
|
|
|
* @param value The balance is divided by this value
|
|
|
|
* @throws UserDoesNotExistException If a user by that name does not exists
|
|
|
|
* @throws NoLoanPermittedException If the user is not allowed to have a negative balance
|
|
|
|
*/
|
|
|
|
@Deprecated
|
2013-07-25 23:07:56 +00:00
|
|
|
public static void divide(String name, double amount) throws UserDoesNotExistException, NoLoanPermittedException
|
2013-07-13 17:40:46 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
divide(name, BigDecimal.valueOf(amount));
|
|
|
|
}
|
|
|
|
catch (ArithmeticException e)
|
|
|
|
{
|
|
|
|
logger.log(Level.WARNING, "Failed to divide balance of " + name + " by " + amount + ": " + e.getMessage(), e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-25 23:07:56 +00:00
|
|
|
public static void divide(String name, BigDecimal amount) throws UserDoesNotExistException, NoLoanPermittedException, ArithmeticException
|
2013-07-13 17:40:46 +00:00
|
|
|
{
|
|
|
|
BigDecimal result = getMoneyExact(name).divide(amount, MATH_CONTEXT);
|
|
|
|
setMoney(name, result);
|
2014-05-31 19:37:44 +00:00
|
|
|
Trade.log("API", "Divide", "API", name, new Trade(amount, ess), null, null, null, ess);
|
2013-07-13 17:40:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Multiplies the balance of a user by a value
|
|
|
|
*
|
|
|
|
* @param name Name of the user
|
|
|
|
* @param value The balance is multiplied by this value
|
|
|
|
* @throws UserDoesNotExistException If a user by that name does not exists
|
|
|
|
* @throws NoLoanPermittedException If the user is not allowed to have a negative balance
|
|
|
|
*/
|
|
|
|
@Deprecated
|
2013-07-25 23:07:56 +00:00
|
|
|
public static void multiply(String name, double amount) throws UserDoesNotExistException, NoLoanPermittedException
|
2013-07-13 17:40:46 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
multiply(name, BigDecimal.valueOf(amount));
|
|
|
|
}
|
|
|
|
catch (ArithmeticException e)
|
|
|
|
{
|
|
|
|
logger.log(Level.WARNING, "Failed to multiply balance of " + name + " by " + amount + ": " + e.getMessage(), e);
|
|
|
|
}
|
|
|
|
}
|
2011-05-02 03:56:51 +00:00
|
|
|
|
2013-07-25 23:07:56 +00:00
|
|
|
public static void multiply(String name, BigDecimal amount) throws UserDoesNotExistException, NoLoanPermittedException, ArithmeticException
|
2013-07-13 17:40:46 +00:00
|
|
|
{
|
|
|
|
BigDecimal result = getMoneyExact(name).multiply(amount, MATH_CONTEXT);
|
|
|
|
setMoney(name, result);
|
2014-05-31 19:37:44 +00:00
|
|
|
Trade.log("API", "Multiply", "API", name, new Trade(amount, ess), null, null, null, ess);
|
2013-07-13 17:40:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Resets the balance of a user to the starting balance
|
|
|
|
*
|
|
|
|
* @param name Name of the user
|
|
|
|
* @throws UserDoesNotExistException If a user by that name does not exists
|
|
|
|
* @throws NoLoanPermittedException If the user is not allowed to have a negative balance
|
|
|
|
*/
|
2013-07-25 23:07:56 +00:00
|
|
|
public static void resetBalance(String name) throws UserDoesNotExistException, NoLoanPermittedException
|
2013-07-13 17:40:46 +00:00
|
|
|
{
|
|
|
|
if (ess == null)
|
|
|
|
{
|
|
|
|
throw new RuntimeException(noCallBeforeLoad);
|
|
|
|
}
|
|
|
|
setMoney(name, ess.getSettings().getStartingBalance());
|
2014-05-31 19:37:44 +00:00
|
|
|
Trade.log("API", "Reset", "API", name, new Trade(BigDecimal.ZERO, ess), null, null, null, ess);
|
2013-07-13 17:40:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param name Name of the user
|
|
|
|
* @param amount The amount of money the user should have
|
|
|
|
* @return true, if the user has more or an equal amount of money
|
|
|
|
* @throws UserDoesNotExistException If a user by that name does not exists
|
|
|
|
*/
|
|
|
|
@Deprecated
|
2013-07-25 23:07:56 +00:00
|
|
|
public static boolean hasEnough(String name, double amount) throws UserDoesNotExistException
|
2013-07-13 17:40:46 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
return hasEnough(name, BigDecimal.valueOf(amount));
|
|
|
|
}
|
|
|
|
catch (ArithmeticException e)
|
|
|
|
{
|
|
|
|
logger.log(Level.WARNING, "Failed to compare balance of " + name + " with " + amount + ": " + e.getMessage(), e);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-25 23:07:56 +00:00
|
|
|
public static boolean hasEnough(String name, BigDecimal amount) throws UserDoesNotExistException, ArithmeticException
|
2013-07-13 17:40:46 +00:00
|
|
|
{
|
|
|
|
return amount.compareTo(getMoneyExact(name)) <= 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param name Name of the user
|
|
|
|
* @param amount The amount of money the user should have
|
|
|
|
* @return true, if the user has more money
|
|
|
|
* @throws UserDoesNotExistException If a user by that name does not exists
|
|
|
|
*/
|
|
|
|
@Deprecated
|
2013-07-25 23:07:56 +00:00
|
|
|
public static boolean hasMore(String name, double amount) throws UserDoesNotExistException
|
2013-07-13 17:40:46 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
return hasMore(name, BigDecimal.valueOf(amount));
|
|
|
|
}
|
|
|
|
catch (ArithmeticException e)
|
|
|
|
{
|
|
|
|
logger.log(Level.WARNING, "Failed to compare balance of " + name + " with " + amount + ": " + e.getMessage(), e);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-25 23:07:56 +00:00
|
|
|
public static boolean hasMore(String name, BigDecimal amount) throws UserDoesNotExistException, ArithmeticException
|
2013-07-13 17:40:46 +00:00
|
|
|
{
|
|
|
|
return amount.compareTo(getMoneyExact(name)) < 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param name Name of the user
|
|
|
|
* @param amount The amount of money the user should not have
|
|
|
|
* @return true, if the user has less money
|
|
|
|
* @throws UserDoesNotExistException If a user by that name does not exists
|
|
|
|
*/
|
|
|
|
@Deprecated
|
2013-07-25 23:07:56 +00:00
|
|
|
public static boolean hasLess(String name, double amount) throws UserDoesNotExistException
|
2013-07-13 17:40:46 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
return hasLess(name, BigDecimal.valueOf(amount));
|
|
|
|
}
|
|
|
|
catch (ArithmeticException e)
|
|
|
|
{
|
|
|
|
logger.log(Level.WARNING, "Failed to compare balance of " + name + " with " + amount + ": " + e.getMessage(), e);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-25 23:07:56 +00:00
|
|
|
public static boolean hasLess(String name, BigDecimal amount) throws UserDoesNotExistException, ArithmeticException
|
2013-07-13 17:40:46 +00:00
|
|
|
{
|
|
|
|
return amount.compareTo(getMoneyExact(name)) > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test if the user has a negative balance
|
|
|
|
*
|
|
|
|
* @param name Name of the user
|
|
|
|
* @return true, if the user has a negative balance
|
|
|
|
* @throws UserDoesNotExistException If a user by that name does not exists
|
|
|
|
*/
|
2013-07-25 23:07:56 +00:00
|
|
|
public static boolean isNegative(String name) throws UserDoesNotExistException
|
2013-07-13 17:40:46 +00:00
|
|
|
{
|
|
|
|
return getMoneyExact(name).signum() < 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Formats the amount of money like all other Essentials functions. Example: $100000 or $12345.67
|
|
|
|
*
|
|
|
|
* @param amount The amount of money
|
|
|
|
* @return Formatted money
|
|
|
|
*/
|
|
|
|
@Deprecated
|
|
|
|
public static String format(double amount)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
return format(BigDecimal.valueOf(amount));
|
|
|
|
}
|
|
|
|
catch (NumberFormatException e)
|
|
|
|
{
|
|
|
|
logger.log(Level.WARNING, "Failed to display " + amount + ": " + e.getMessage(), e);
|
|
|
|
return "NaN";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String format(BigDecimal amount)
|
|
|
|
{
|
|
|
|
if (ess == null)
|
|
|
|
{
|
|
|
|
throw new RuntimeException(noCallBeforeLoad);
|
|
|
|
}
|
|
|
|
return NumberUtil.displayCurrency(amount, ess);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test if a player exists to avoid the UserDoesNotExistException
|
|
|
|
*
|
|
|
|
* @param name Name of the user
|
|
|
|
* @return true, if the user exists
|
|
|
|
*/
|
|
|
|
public static boolean playerExists(String name)
|
|
|
|
{
|
|
|
|
return getUserByName(name) != null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test if a player is a npc
|
|
|
|
*
|
|
|
|
* @param name Name of the player
|
|
|
|
* @return true, if it's a npc
|
|
|
|
* @throws UserDoesNotExistException
|
|
|
|
*/
|
2013-07-25 23:07:56 +00:00
|
|
|
public static boolean isNPC(String name) throws UserDoesNotExistException
|
2013-07-13 17:40:46 +00:00
|
|
|
{
|
|
|
|
User user = getUserByName(name);
|
|
|
|
if (user == null)
|
|
|
|
{
|
2013-07-25 23:07:56 +00:00
|
|
|
throw new UserDoesNotExistException(name);
|
2013-07-13 17:40:46 +00:00
|
|
|
}
|
|
|
|
return user.isNPC();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates dummy files for a npc, if there is no player yet with that name.
|
|
|
|
*
|
|
|
|
* @param name Name of the player
|
|
|
|
* @return true, if a new npc was created
|
|
|
|
*/
|
|
|
|
public static boolean createNPC(String name)
|
|
|
|
{
|
|
|
|
User user = getUserByName(name);
|
|
|
|
if (user == null)
|
|
|
|
{
|
|
|
|
createNPCFile(name);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Deletes a user, if it is marked as npc.
|
|
|
|
*
|
|
|
|
* @param name Name of the player
|
|
|
|
* @throws UserDoesNotExistException
|
|
|
|
*/
|
2013-07-25 23:07:56 +00:00
|
|
|
public static void removeNPC(String name) throws UserDoesNotExistException
|
2013-07-13 17:40:46 +00:00
|
|
|
{
|
|
|
|
User user = getUserByName(name);
|
|
|
|
if (user == null)
|
|
|
|
{
|
2013-07-25 23:07:56 +00:00
|
|
|
throw new UserDoesNotExistException(name);
|
2013-07-13 17:40:46 +00:00
|
|
|
}
|
|
|
|
deleteNPC(name);
|
|
|
|
}
|
2011-05-02 03:56:51 +00:00
|
|
|
}
|