package net.knarcraft.blacksmith.manager; import net.knarcraft.blacksmith.BlacksmithPlugin; import net.knarcraft.blacksmith.config.GlobalSettings; import net.knarcraft.blacksmith.util.ItemHelper; import net.milkbowl.vault.economy.Economy; import org.bukkit.Material; import org.bukkit.enchantments.Enchantment; import org.bukkit.entity.Player; import org.bukkit.inventory.ItemStack; import org.bukkit.plugin.RegisteredServiceProvider; import org.bukkit.plugin.ServicesManager; import java.util.logging.Level; import java.util.logging.Logger; /** * A class which deals with everything economy */ public class EconomyManager { private static Economy economy; private EconomyManager() { } /** * Sets up Vault economy support * * @param servicesManager
The services manager to use for finding a Vault provider
* @param loggerThe logger to use for logging
* @returnTrue if Vault was successfully set up
*/ public static boolean setUp(ServicesManager servicesManager, Logger logger) { //If already set up, there is nothing to do if (economy != null) { return true; } return setupVault(servicesManager, logger); } /** * Gets whether the given player can pay for re-forging their held item * * @param playerThe player holding an item
* @returnWhether the player can pay for the reforge
*/ public static boolean canPay(Player player) { return economy.getBalance(player) - getHeldItemCost(player) >= 0; } /** * Gets the human-readable cost of the given player's held item * * @param playerThe player holding an item
* @returnThe formatted cost
*/ public static String formatCost(Player player) { double cost = getHeldItemCost(player); return economy.format(cost); } /** * Withdraws the reforging cost from the given player * *The cost is automatically calculated from the item in the player's main hand.
* * @param playerThe player to withdraw from
*/ public static void withdraw(Player player) { economy.withdrawPlayer(player, getHeldItemCost(player)); } /** * Gets the cost of the item in the given player's main hand * * @param playerThe player to calculate the cost for
* @returnThe calculated cost
*/ private static double getHeldItemCost(Player player) { return getCost(player.getInventory().getItemInMainHand()); } /** * Gets the cost of repairing the given item * * @param itemThe item to be repaired
* @returnThe cost of the repair
*/ private static double getCost(ItemStack item) { GlobalSettings globalSettings = BlacksmithPlugin.getInstance().getSettings(); Material material = item.getType(); //Calculate the base price double price = globalSettings.getBasePrice(material); // Adjust price based on durability double pricePerDurabilityPoint = globalSettings.getPricePerDurabilityPoint(material); if (globalSettings.getUseNaturalCost()) { //Cost increases with damage price += ((double) ItemHelper.getDamage(item)) * pricePerDurabilityPoint; } else { //Cost decreases with damage price += ((double) ItemHelper.getDurability(item)) * pricePerDurabilityPoint; } //Increase price for any enchantments price += getEnchantmentCost(item); return price; } /** * Gets the cost resulting from all enchantments on the given item * * @param itemThe item to calculate enchantment cost for
* @returnThe resulting enchantment cost
*/ private static double getEnchantmentCost(ItemStack item) { GlobalSettings settings = BlacksmithPlugin.getInstance().getSettings(); double price = 0; for (Enchantment enchantment : item.getEnchantments().keySet()) { price += settings.getEnchantmentCost(enchantment) * item.getEnchantmentLevel(enchantment); } return price; } /** * Sets up Vault for economy * * @param servicesManagerThe services manager to use for finding a Vault provider
* @param loggerThe logger to use for logging
* @returnTrue if Vault was successfully set up
*/ private static boolean setupVault(ServicesManager servicesManager, Logger logger) { // Setup Vault RegisteredServiceProvider