/src/net/milkbowl/vault/economy/plugins/Economy_McMoney.java
https://gitlab.com/MineYourMind/Vault · Java · 247 lines · 190 code · 41 blank · 16 comment · 20 complexity · 5fd7b757c6030baf1b9212b5b3654cb3 MD5 · raw file
- /* This file is part of Vault.
- Vault is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- Vault is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public License
- along with Vault. If not, see <http://www.gnu.org/licenses/>.
- */
- package net.milkbowl.vault.economy.plugins;
- import java.util.ArrayList;
- import java.util.List;
- import java.util.logging.Logger;
- import net.milkbowl.vault.economy.AbstractEconomy;
- import net.milkbowl.vault.economy.EconomyResponse;
- import net.milkbowl.vault.economy.EconomyResponse.ResponseType;
- import org.bukkit.Bukkit;
- import org.bukkit.event.EventHandler;
- import org.bukkit.event.EventPriority;
- import org.bukkit.event.Listener;
- import org.bukkit.event.server.PluginDisableEvent;
- import org.bukkit.event.server.PluginEnableEvent;
- import org.bukkit.plugin.Plugin;
- import boardinggamer.mcmoney.McMoneyAPI;
- public class Economy_McMoney extends AbstractEconomy {
- private static final Logger log = Logger.getLogger("Minecraft");
- private final String name = "McMoney";
- private Plugin plugin = null;
- private McMoneyAPI economy = null;
- public Economy_McMoney(Plugin plugin) {
- this.plugin = plugin;
- Bukkit.getServer().getPluginManager().registerEvents(new EconomyServerListener(this), plugin);
- // Load Plugin in case it was loaded before
- if (economy == null) {
- Plugin econ = plugin.getServer().getPluginManager().getPlugin("McMoney");
- if (econ != null && econ.isEnabled()) {
- economy = McMoneyAPI.getInstance();
- log.info(String.format("[%s][Economy] %s hooked.", plugin.getDescription().getName(), name));
- }
- }
- }
- @Override
- public String getName() {
- return name;
- }
- @Override
- public boolean isEnabled() {
- return economy != null;
- }
- @Override
- public double getBalance(String playerName) {
- return economy.getMoney(playerName);
- }
- @Override
- public EconomyResponse withdrawPlayer(String playerName, double amount) {
- double balance = economy.getMoney(playerName);
- if (amount < 0) {
- return new EconomyResponse(0, balance, ResponseType.FAILURE, "Cannot withdraw negative funds");
- } else if (balance - amount < 0) {
- return new EconomyResponse(0, balance, ResponseType.FAILURE, "Insufficient funds");
- }
- economy.removeMoney(playerName, amount);
- return new EconomyResponse(amount, economy.getMoney(playerName), ResponseType.SUCCESS, "");
- }
- @Override
- public EconomyResponse depositPlayer(String playerName, double amount) {
- double balance = economy.getMoney(playerName);
- if (amount < 0) {
- return new EconomyResponse(0, balance, ResponseType.FAILURE, "Cannot deposit negative funds");
- }
- economy.addMoney(playerName, amount);
- return new EconomyResponse(amount, economy.getMoney(playerName), ResponseType.SUCCESS, "");
- }
- @Override
- public String currencyNamePlural() {
- return economy.moneyNamePlural();
- }
- @Override
- public String currencyNameSingular() {
- return economy.moneyNameSingle();
- }
- public class EconomyServerListener implements Listener {
- Economy_McMoney economy = null;
- public EconomyServerListener(Economy_McMoney economy) {
- this.economy = economy;
- }
- @EventHandler(priority = EventPriority.MONITOR)
- public void onPluginEnable(PluginEnableEvent event) {
- if (economy.economy == null) {
- Plugin eco = event.getPlugin();
- if (eco.getDescription().getName().equals("McMoney")) {
- economy.economy = McMoneyAPI.getInstance();
- log.info(String.format("[%s][Economy] %s hooked.", plugin.getDescription().getName(), economy.name));
- }
- }
- }
- @EventHandler(priority = EventPriority.MONITOR)
- public void onPluginDisable(PluginDisableEvent event) {
- if (economy.economy != null) {
- if (event.getPlugin().getDescription().getName().equals("McMoney")) {
- economy.economy = null;
- log.info(String.format("[%s][Economy] %s unhooked.", plugin.getDescription().getName(), economy.name));
- }
- }
- }
- }
- @Override
- public String format(double amount) {
- amount = Math.ceil(amount);
- if (amount == 1) {
- return String.format("%d %s", (int)amount, currencyNameSingular());
- } else {
- return String.format("%d %s", (int)amount, currencyNamePlural());
- }
- }
- @Override
- public EconomyResponse createBank(String name, String player) {
- return new EconomyResponse(0, 0, ResponseType.NOT_IMPLEMENTED, "McMoney does not support bank accounts!");
- }
- @Override
- public EconomyResponse deleteBank(String name) {
- return new EconomyResponse(0, 0, ResponseType.NOT_IMPLEMENTED, "McMoney does not support bank accounts!");
- }
- @Override
- public EconomyResponse bankHas(String name, double amount) {
- return new EconomyResponse(0, 0, ResponseType.NOT_IMPLEMENTED, "McMoney does not support bank accounts!");
- }
- @Override
- public EconomyResponse bankWithdraw(String name, double amount) {
- return new EconomyResponse(0, 0, ResponseType.NOT_IMPLEMENTED, "McMoney does not support bank accounts!");
- }
- @Override
- public EconomyResponse bankDeposit(String name, double amount) {
- return new EconomyResponse(0, 0, ResponseType.NOT_IMPLEMENTED, "McMoney does not support bank accounts!");
- }
- @Override
- public boolean has(String playerName, double amount) {
- return getBalance(playerName) >= amount;
- }
- @Override
- public EconomyResponse isBankOwner(String name, String playerName) {
- return new EconomyResponse(0, 0, ResponseType.NOT_IMPLEMENTED, "McMoney does not support bank accounts!");
- }
- @Override
- public EconomyResponse isBankMember(String name, String playerName) {
- return new EconomyResponse(0, 0, ResponseType.NOT_IMPLEMENTED, "McMoney does not support bank accounts!");
- }
- @Override
- public EconomyResponse bankBalance(String name) {
- return new EconomyResponse(0, 0, ResponseType.NOT_IMPLEMENTED, "McMoney does not support bank accounts!");
- }
- @Override
- public List<String> getBanks() {
- return new ArrayList<String>();
- }
- @Override
- public boolean hasBankSupport() {
- return false;
- }
- @Override
- public boolean hasAccount(String playerName) {
- return economy.playerExists(playerName);
- }
- @Override
- public boolean createPlayerAccount(String playerName) {
- if (!hasAccount(playerName)) {
- economy.setMoney(playerName, 0.0);
- return true;
- }
- return false;
- }
- @Override
- public int fractionalDigits() {
- return -1;
- }
- @Override
- public boolean hasAccount(String playerName, String worldName) {
- return hasAccount(playerName);
- }
- @Override
- public double getBalance(String playerName, String world) {
- return getBalance(playerName);
- }
- @Override
- public boolean has(String playerName, String worldName, double amount) {
- return has(playerName, amount);
- }
- @Override
- public EconomyResponse withdrawPlayer(String playerName, String worldName, double amount) {
- return withdrawPlayer(playerName, amount);
- }
- @Override
- public EconomyResponse depositPlayer(String playerName, String worldName, double amount) {
- return depositPlayer(playerName, amount);
- }
- @Override
- public boolean createPlayerAccount(String playerName, String worldName) {
- return createPlayerAccount(playerName);
- }
- }