diff --git a/lib/MiConomy.jar b/lib/MiConomy.jar new file mode 100644 index 0000000..2b946cf Binary files /dev/null and b/lib/MiConomy.jar differ diff --git a/pom.xml b/pom.xml index b66bb78..0c13a9f 100644 --- a/pom.xml +++ b/pom.xml @@ -13,6 +13,13 @@ bukkit 1.6.1-R0.1-SNAPSHOT + + com.gmail.bleedobsidian.miconomy + MiConomy + 1.0 + system + ${project.basedir}/lib/MiConomy.jar + de.hydrox.bukkit.DroxPerms DroxPerms @@ -75,12 +82,12 @@ ${project.basedir}/lib/bpermissions.jar - com.github.sebc722 - xPerms - 1.1 - system - ${project.basedir}/lib/Xperms.jar - + com.github.sebc722 + xPerms + 1.1 + system + ${project.basedir}/lib/Xperms.jar + ca.agnate.EconXP.EconXP EconXP @@ -273,7 +280,7 @@ SDFEconomy 0.1.0-SNAPSHOT - + net.ae97 TotalPermissions 0.2.1 diff --git a/src/net/milkbowl/vault/Vault.java b/src/net/milkbowl/vault/Vault.java index bb32447..2b2873c 100644 --- a/src/net/milkbowl/vault/Vault.java +++ b/src/net/milkbowl/vault/Vault.java @@ -97,6 +97,7 @@ import org.w3c.dom.Node; import org.w3c.dom.NodeList; import com.nijikokun.register.payment.Methods; +import net.milkbowl.vault.economy.plugins.Economy_MiConomy; public class Vault extends JavaPlugin { @@ -199,6 +200,9 @@ public class Vault extends JavaPlugin { * Attempts to load Economy Addons */ private void loadEconomy() { + // Try to load MiConomy + hookEconomy("MiConomy", Economy_MiConomy.class, ServicePriority.Normal, "com.gmail.bleedobsidian.miconomy.Main"); + // Try to load MultiCurrency hookEconomy("MultiCurrency", Economy_MultiCurrency.class, ServicePriority.Normal, "me.ashtheking.currency.Currency", "me.ashtheking.currency.CurrencyList"); diff --git a/src/net/milkbowl/vault/economy/plugins/Economy_MiConomy.java b/src/net/milkbowl/vault/economy/plugins/Economy_MiConomy.java new file mode 100644 index 0000000..bc56f86 --- /dev/null +++ b/src/net/milkbowl/vault/economy/plugins/Economy_MiConomy.java @@ -0,0 +1,366 @@ +/* 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 . + */ +package net.milkbowl.vault.economy.plugins; + +import com.gmail.bleedobsidian.miconomy.Main; +import com.gmail.bleedobsidian.miconomy.MiConomy; +import java.util.ArrayList; +import java.util.List; +import java.util.logging.Logger; +import net.milkbowl.vault.economy.Economy; +import net.milkbowl.vault.economy.EconomyResponse; +import org.bukkit.Bukkit; +import org.bukkit.OfflinePlayer; +import org.bukkit.World; +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; + +public class Economy_MiConomy implements Economy { + private static final Logger log = Logger.getLogger("Minecraft"); + + private final String name = "MiConomy"; + + private Plugin plugin; + private MiConomy economy; + private Main miConomy; + + public Economy_MiConomy(Plugin plugin) { + this.plugin = plugin; + Bukkit.getServer().getPluginManager().registerEvents(new EconomyServerListener(this), plugin); + + // Load Plugin in case it was loaded before + if (miConomy == null) { + Plugin miConomyPlugin = plugin.getServer().getPluginManager().getPlugin("MiConomy"); + + if (miConomy != null) { + miConomy = (Main) miConomyPlugin; + economy = miConomy.getInstance(); + log.info(String.format("[%s][Economy] %s hooked.", plugin.getDescription().getName(), name)); + } + } + } + + @Override + public boolean isEnabled() { + if(miConomy == null) { + return false; + } else { + return miConomy.isEnabled(); + } + } + + @Override + public String getName() { + return name; + } + + @Override + public boolean hasBankSupport() { + return true; + } + + @Override + public int fractionalDigits() { + return 2; + } + + @Override + public String format(double amount) { + return economy.getFormattedValue(amount); + } + + @Override + public String currencyNamePlural() { + return miConomy.getPluginConfig().MoneyNamePlural; + } + + @Override + public String currencyNameSingular() { + return miConomy.getPluginConfig().MoneyName; + } + + @Override + public boolean hasAccount(String playerName) { + List worlds = plugin.getServer().getWorlds(); + + return hasAccount(playerName, worlds.get(0).getName()); + } + + @Override + public boolean hasAccount(String playerName, String worldName) { + OfflinePlayer player = plugin.getServer().getOfflinePlayer(playerName); + World world = plugin.getServer().getWorld(worldName); + + return economy.isAccountCreated(player, world); + } + + @Override + public double getBalance(String playerName) { + List worlds = plugin.getServer().getWorlds(); + + return getBalance(playerName, worlds.get(0).getName()); + } + + @Override + public double getBalance(String playerName, String worldName) { + OfflinePlayer player = plugin.getServer().getOfflinePlayer(playerName); + World world = plugin.getServer().getWorld(worldName); + + return economy.getAccountBalance(player, world); + } + + @Override + public boolean has(String playerName, double amount) { + List worlds = plugin.getServer().getWorlds(); + + return has(playerName, worlds.get(0).getName(), amount); + } + + @Override + public boolean has(String playerName, String worldName, double amount) { + OfflinePlayer player = plugin.getServer().getOfflinePlayer(playerName); + World world = plugin.getServer().getWorld(worldName); + + double playerBalance = economy.getAccountBalance(player, world); + + if(playerBalance >= amount) { + return true; + } else { + return false; + } + } + + @Override + public EconomyResponse withdrawPlayer(String playerName, double amount) { + List worlds = plugin.getServer().getWorlds(); + + return withdrawPlayer(playerName, worlds.get(0).getName(), amount); + } + + @Override + public EconomyResponse withdrawPlayer(String playerName, String worldName, double amount) { + OfflinePlayer player = plugin.getServer().getOfflinePlayer(playerName); + World world = plugin.getServer().getWorld(worldName); + + double balance = economy.getAccountBalance(player, world); + + if(getBalance(playerName, worldName) < amount) { + return new EconomyResponse(0, balance, EconomyResponse.ResponseType.FAILURE, "Insufficient funds"); + } else { + if(economy.removeAccountBalance(player, amount, world)) { + balance = economy.getAccountBalance(player, world); + + return new EconomyResponse(amount, balance, EconomyResponse.ResponseType.SUCCESS, ""); + } else { + return new EconomyResponse(0, balance, EconomyResponse.ResponseType.FAILURE, "Failed to remove funds from account"); + } + } + } + + @Override + public EconomyResponse depositPlayer(String playerName, double amount) { + List worlds = plugin.getServer().getWorlds(); + + return depositPlayer(playerName, worlds.get(0).getName(), amount); + } + + @Override + public EconomyResponse depositPlayer(String playerName, String worldName, double amount) { + OfflinePlayer player = plugin.getServer().getOfflinePlayer(playerName); + World world = plugin.getServer().getWorld(worldName); + + double balance = economy.getAccountBalance(player, world); + + if(economy.addAccountBalance(player, amount, world)) { + balance = economy.getAccountBalance(player, world); + + return new EconomyResponse(amount, balance, EconomyResponse.ResponseType.SUCCESS, ""); + } else { + return new EconomyResponse(0, balance, EconomyResponse.ResponseType.FAILURE, "Failed to add funds to account"); + } + } + + @Override + public EconomyResponse createBank(String name, String player) { + OfflinePlayer owner = plugin.getServer().getOfflinePlayer(player); + + ArrayList owners = new ArrayList(); + owners.add(owner); + + if(!economy.isBankCreated(name)) { + economy.createBank(name, owners, new ArrayList(), false); + return new EconomyResponse(0, 0, EconomyResponse.ResponseType.SUCCESS, ""); + } else { + return new EconomyResponse(0, 0, EconomyResponse.ResponseType.FAILURE, "A bank with this name already exists"); + } + } + + @Override + public EconomyResponse deleteBank(String name) { + if(economy.isBankCreated(name)) { + economy.deleteBank(name); + return new EconomyResponse(0, 0, EconomyResponse.ResponseType.SUCCESS, ""); + } else { + return new EconomyResponse(0, 0, EconomyResponse.ResponseType.FAILURE, "Bank doesn't exist"); + } + } + + @Override + public EconomyResponse bankBalance(String name) { + if(economy.isBankCreated(name)) { + double balance = economy.getBankBalance(name); + return new EconomyResponse(0, balance, EconomyResponse.ResponseType.SUCCESS, ""); + } else { + return new EconomyResponse(0, 0, EconomyResponse.ResponseType.FAILURE, "Bank doesn't exist"); + } + } + + @Override + public EconomyResponse bankHas(String name, double amount) { + if(economy.isBankCreated(name)) { + double balance = economy.getBankBalance(name); + + if(balance >= amount) { + return new EconomyResponse(0, balance, EconomyResponse.ResponseType.SUCCESS, ""); + } else { + return new EconomyResponse(0, balance, EconomyResponse.ResponseType.FAILURE, "The bank does not have enough money!"); + } + } else { + return new EconomyResponse(0, 0, EconomyResponse.ResponseType.FAILURE, "Bank doesn't exist"); + } + } + + @Override + public EconomyResponse bankWithdraw(String name, double amount) { + if(economy.isBankCreated(name)) { + economy.removeBankBalance(name, amount); + + double balance = economy.getBankBalance(name); + + return new EconomyResponse(amount, balance, EconomyResponse.ResponseType.SUCCESS, ""); + } else { + return new EconomyResponse(0, 0, EconomyResponse.ResponseType.FAILURE, "Bank doesn't exist"); + } + } + + @Override + public EconomyResponse bankDeposit(String name, double amount) { + if(economy.isBankCreated(name)) { + economy.addBankBalance(name, amount); + + double balance = economy.getBankBalance(name); + + return new EconomyResponse(amount, balance, EconomyResponse.ResponseType.SUCCESS, ""); + } else { + return new EconomyResponse(0, 0, EconomyResponse.ResponseType.FAILURE, "Bank doesn't exist"); + } + } + + @Override + public EconomyResponse isBankOwner(String name, String playerName) { + OfflinePlayer owner = plugin.getServer().getOfflinePlayer(playerName); + + if(economy.isBankCreated(name)) { + if(economy.isPlayerBankOwner(name, owner)) { + return new EconomyResponse(0, 0, EconomyResponse.ResponseType.SUCCESS, ""); + } else { + return new EconomyResponse(0, 0, EconomyResponse.ResponseType.FAILURE, "The player is not a bank owner"); + } + } else { + return new EconomyResponse(0, 0, EconomyResponse.ResponseType.FAILURE, "Bank doesn't exist"); + } + } + + @Override + public EconomyResponse isBankMember(String name, String playerName) { + OfflinePlayer owner = plugin.getServer().getOfflinePlayer(playerName); + + if(economy.isBankCreated(name)) { + if(economy.isPlayerBankMember(name, owner)) { + return new EconomyResponse(0, 0, EconomyResponse.ResponseType.SUCCESS, ""); + } else { + return new EconomyResponse(0, 0, EconomyResponse.ResponseType.FAILURE, "The player is not a bank member"); + } + } else { + return new EconomyResponse(0, 0, EconomyResponse.ResponseType.FAILURE, "Bank doesn't exist"); + } + } + + @Override + public List getBanks() { + return economy.getBanks(); + } + + @Override + public boolean createPlayerAccount(String playerName) { + List worlds = plugin.getServer().getWorlds(); + + return createPlayerAccount(playerName, worlds.get(0).getName()); + } + + @Override + public boolean createPlayerAccount(String playerName, String worldName) { + OfflinePlayer player = plugin.getServer().getOfflinePlayer(playerName); + World world = plugin.getServer().getWorld(worldName); + + if(!economy.isAccountCreated(player, world)) { + economy.createAccount(player, 0, world); + + return true; + } else { + return false; + } + } + + public class EconomyServerListener implements Listener { + Economy_MiConomy economy = null; + + public EconomyServerListener(Economy_MiConomy economy) { + this.economy = economy; + } + + @EventHandler(priority = EventPriority.MONITOR) + public void onPluginEnable(PluginEnableEvent event) { + if (economy.economy == null) { + Plugin miConomyPlugin = plugin.getServer().getPluginManager().getPlugin("MiConomy"); + + if (miConomyPlugin != null) { + economy.miConomy = (Main) miConomyPlugin; + + economy.economy = miConomy.getInstance(); + + log.info(String.format("[%s][Economy] %s hooked.", plugin.getDescription().getName(), name)); + } + } + } + + @EventHandler(priority = EventPriority.MONITOR) + public void onPluginDisable(PluginDisableEvent event) { + if (economy.economy != null) { + if (event.getPlugin().getDescription().getName().equals("MiConomy")) { + economy.miConomy = null; + economy.economy = null; + + log.info(String.format("[%s][Economy] %s unhooked.", plugin.getDescription().getName(), economy.name)); + } + } + } + } +}