/src/com/lostaris/bukkit/ItemRepair/Repair.java

https://github.com/lostaris/AutoRepair · Java · 310 lines · 257 code · 21 blank · 32 comment · 108 complexity · 359d0f0bc938ff4b73cf62cf7298df55 MD5 · raw file

  1. package com.lostaris.bukkit.ItemRepair;
  2. import java.util.ArrayList;
  3. import java.util.HashMap;
  4. import java.util.logging.Logger;
  5. import org.bukkit.Material;
  6. import org.bukkit.entity.Player;
  7. import org.bukkit.inventory.ItemStack;
  8. import org.bukkit.inventory.PlayerInventory;
  9. import com.iConomy.iConomy;
  10. public class Repair extends AutoRepairSupport{
  11. public static final Logger log = Logger.getLogger("Minecraft");
  12. public Repair(AutoRepairPlugin instance, Player player, ItemStack tool) {
  13. super(instance, player, tool);
  14. }
  15. /**
  16. * Method to check affordability of a repair
  17. * @return true if it can be, false if it cant
  18. */
  19. public boolean canAfford() {
  20. // free repair
  21. if (!AutoRepairPlugin.isRepairCosts()) {
  22. return true;
  23. }
  24. // Just items
  25. else if (AutoRepairPlugin.getiSICon().compareToIgnoreCase("false") == 0) {
  26. if(isEnough(tool.getType().toString())) {
  27. return true;
  28. }
  29. }
  30. // just iCon
  31. else if (AutoRepairPlugin.getiSICon().compareToIgnoreCase("true") == 0) {
  32. if (getPlugin().getiConCosts().containsKey(tool.getType().toString())) {
  33. double balance = getHolding(player).balance();
  34. double cost = costICon(tool);
  35. if (cost <= balance) {
  36. return true;
  37. }
  38. }
  39. }
  40. // both items and iCon
  41. else if (AutoRepairPlugin.getiSICon().compareToIgnoreCase("both") == 0) {
  42. HashMap<String, ArrayList<ItemStack> > recipies = plugin.getRepairRecipies();
  43. ArrayList<ItemStack> req = recipies.get(tool.getType().toString());
  44. if (getPlugin().getiConCosts().containsKey(tool.getType().toString())
  45. && plugin.getRepairRecipies().containsKey(tool.getType().toString())) {
  46. double balance = getHolding(player).balance();
  47. double cost = costICon(tool);
  48. ArrayList<ItemStack> newReq = partialReq(req, tool);
  49. if (cost <= balance && isEnoughItems(newReq)) {
  50. return true;
  51. }
  52. }
  53. }
  54. //this player cannot afford this repair
  55. return false;
  56. }
  57. public boolean repair(ItemStack tool) {
  58. if (canAfford()) {
  59. super.setTool(tool);
  60. HashMap<String, ArrayList<ItemStack> > recipies = plugin.getRepairRecipies();
  61. String itemName = Material.getMaterial(tool.getTypeId()).toString();
  62. ArrayList<ItemStack> req = recipies.get(itemName);
  63. if (!AutoRepairPlugin.isRepairCosts()) {
  64. getPlayer().sendMessage("§3Repaired " + printItem(tool));
  65. return true;
  66. } else if (AutoRepairPlugin.getiSICon().compareToIgnoreCase("false") == 0) {
  67. ArrayList<ItemStack> newReq = partialReq(req, tool);
  68. if (!zeroItems(newReq)) {
  69. player.sendMessage("§3Using " + printFormatReqs(newReq) + "§3 to repair " + printItem(tool));
  70. } else {
  71. getPlayer().sendMessage("§3Repaired " + printItem(tool));
  72. }
  73. deduct(newReq);
  74. return true;
  75. } else if (AutoRepairPlugin.getiSICon().compareToIgnoreCase("true") == 0) {
  76. double cost = costICon(tool);
  77. getHolding(player).subtract(cost);
  78. if (cost > 0.00) {
  79. player.sendMessage("§3Using §7" + iConomy.format(cost) + "§3 to repair " + printItem(tool));
  80. } else {
  81. getPlayer().sendMessage("§3Repaired " + printItem(tool));
  82. }
  83. return true;
  84. } else if (AutoRepairPlugin.getiSICon().compareToIgnoreCase("both") == 0) {
  85. double cost = costICon(tool);
  86. ArrayList<ItemStack> newReq = partialReq(req, tool);
  87. getHolding(player).subtract(cost);
  88. deduct(newReq);
  89. if (cost > 0.00 && zeroItems(newReq)) {
  90. player.sendMessage("§3Using §7" + iConomy.format(cost) + "§3 and");
  91. player.sendMessage("§3" + printFormatReqs(newReq) + "§3 to repair " + printItem(tool));
  92. } else {
  93. getPlayer().sendMessage("§3Repaired " + printItem(tool));
  94. }
  95. return true;
  96. }
  97. }
  98. return false;
  99. }
  100. /**
  101. * iterate through and repair all item in a players inventory
  102. */
  103. public boolean repairAll(){
  104. if (!AutoRepairPlugin.isAllowed(getPlayer(), "repair.all")) {
  105. getPlayer().sendMessage("§cYou dont have permission to do the repair all command.");
  106. return false;
  107. }
  108. player.sendMessage("§3Repairing all items");
  109. //Get player inventory
  110. PlayerInventory inven = getPlayer().getInventory();
  111. ItemStack[] inventoryItems = inven.getContents();
  112. for(int i = 0; i < 9; i++){
  113. if (inventoryItems[i] != null) {
  114. if (super.getPlugin().durability.containsKey(inventoryItems[i].getTypeId())) {
  115. super.setTool(inven.getItem(i));
  116. if (repair(inven.getItem(i))) {
  117. inven.setItem(i, repItem(tool));
  118. } else {
  119. player.sendMessage("§cYou cannot afford to repair all the items in your quickbar");
  120. return false;
  121. }
  122. }
  123. }
  124. }
  125. repairArmour();
  126. for(int i = 9; i < 36; i++) {
  127. if (inventoryItems[i] != null) {
  128. if (super.getPlugin().durability.containsKey(inventoryItems[i].getTypeId())) {
  129. super.setTool(inven.getItem(i));
  130. if (repair(inven.getItem(i))) {
  131. inven.setItem(i, repItem(tool));
  132. } else {
  133. player.sendMessage("§cYou cannot afford to repair all the items in your backpack");
  134. return false;
  135. }
  136. }
  137. }
  138. }
  139. return true;
  140. }
  141. /**
  142. * Method to manually repair a players tool
  143. * @param slot - inventory slot this tool is in
  144. * @return
  145. */
  146. public boolean manualRepair(int slot) {
  147. PlayerInventory inven = getPlayer().getInventory();
  148. super.tool = inven.getItem(slot);
  149. //player.sendMessage("repair.manual." + itemType(tool));
  150. if (!AutoRepairPlugin.isAllowed(getPlayer(), ("repair.manual." + itemType(tool)))) {
  151. getPlayer().sendMessage("§cYou dont have permission to repair §2" + itemType(tool));
  152. return false;
  153. }
  154. if (!super.getPlugin().getRepairRecipies().containsKey(tool.getType().name())) {
  155. getPlayer().sendMessage("§cThis item cannot be repaired.");
  156. return true;
  157. }
  158. if (repair(tool)) {
  159. inven.setItem(slot, repItem(tool));
  160. return true;
  161. } else {
  162. ArrayList<ItemStack> req = plugin.getRepairRecipies().get(tool.getType().toString());
  163. ArrayList<ItemStack> newReq = partialReq(req, tool);
  164. if (AutoRepairPlugin.getiSICon().compareToIgnoreCase("false") == 0) {
  165. justItemsWarn(tool.getType().toString(), newReq);
  166. } else if (AutoRepairPlugin.getiSICon().compareToIgnoreCase("true") == 0) {
  167. iConWarn(tool.getType().toString(), costICon(tool));
  168. } else if (AutoRepairPlugin.getiSICon().compareToIgnoreCase("both") == 0) {
  169. bothWarn(tool.getType().toString(), costICon(tool), newReq);
  170. }
  171. return false;
  172. }
  173. }
  174. /** Method dealing with automatic repairing of tools
  175. * @param tool the item to repair
  176. * @param slot the inventory slot this tool is in
  177. */
  178. public boolean autoRepairTool(int slot) {
  179. PlayerInventory inven = getPlayer().getInventory();
  180. super.tool = inven.getItem(slot);
  181. if (!AutoRepairPlugin.isAllowed(player, ("repair.auto." + itemType(tool))) || !AutoRepairPlugin.isAutoRepair()) {
  182. return false;
  183. }
  184. if (repair(tool)) {
  185. inven.setItem(slot, repItem(tool));
  186. return true;
  187. } else {
  188. ArrayList<ItemStack> req = plugin.getRepairRecipies().get(tool.getType().toString());
  189. if (AutoRepairPlugin.getiSICon().compareToIgnoreCase("false") == 0) {
  190. if (!getLastWarning()) {
  191. if (AutoRepairPlugin.isAllowed(player, "warn")) {
  192. justItemsWarn(tool.getType().name(), req);
  193. }
  194. setLastWarning(true);
  195. }
  196. } else if (AutoRepairPlugin.getiSICon().compareToIgnoreCase("true") == 0) {
  197. if (!getLastWarning()) {
  198. if (AutoRepairPlugin.isAllowed(player, "warn")) {
  199. iConWarn(tool.getType().name(), costICon(tool));
  200. }
  201. setLastWarning(true);
  202. }
  203. } else if (AutoRepairPlugin.getiSICon().compareToIgnoreCase("both") == 0) {
  204. if (!getLastWarning()) {
  205. if (AutoRepairPlugin.isAllowed(player, "warn")) {
  206. bothWarn(tool.getType().name(), costICon(tool), req);
  207. }
  208. setLastWarning(true);
  209. }
  210. }
  211. return false;
  212. }
  213. }
  214. /**
  215. * Method to repair all the worn armour of a player
  216. */
  217. public void repairArmour() {
  218. if (!AutoRepairPlugin.isAllowed(player, ("repair.manual.armour"))) {
  219. player.sendMessage("§cYou dont have permission to repair §2armour");
  220. return;
  221. }
  222. PlayerInventory inven = player.getInventory();
  223. if(inven.getBoots().getTypeId() == 0 && inven.getChestplate().getTypeId() == 0 &&
  224. inven.getHelmet().getTypeId() == 0 && inven.getLeggings().getTypeId() == 0) {
  225. player.sendMessage("§cYou are not wearing any armour");
  226. return;
  227. }
  228. if (inven.getHelmet().getType() != Material.AIR) {
  229. super.tool = inven.getHelmet();
  230. if (repair(tool)) {
  231. inven.setHelmet(repItem(inven.getHelmet()));
  232. } else {
  233. player.sendMessage("§cYou cannot afford to repair your " + printItem(inven.getHelmet()));
  234. }
  235. }
  236. if (inven.getChestplate().getType() != Material.AIR) {
  237. super.tool = inven.getChestplate();
  238. if (repair(tool)) {
  239. inven.setChestplate(repItem(inven.getChestplate()));
  240. } else {
  241. player.sendMessage("§cYou cannot afford to repair your " + printItem(inven.getHelmet()));
  242. }
  243. }
  244. if (inven.getLeggings().getType() != Material.AIR) {
  245. super.tool = inven.getLeggings();
  246. if (repair(tool)) {
  247. inven.setLeggings(repItem(inven.getLeggings()));
  248. } else {
  249. player.sendMessage("§cYou cannot afford to repair your " + printItem(inven.getHelmet()));
  250. }
  251. }
  252. if (inven.getBoots().getType() != Material.AIR) {
  253. super.tool = inven.getBoots();
  254. if (repair(tool)) {
  255. inven.setBoots(repItem(inven.getBoots()));
  256. } else {
  257. player.sendMessage("§cYou cannot afford to repair your " + printItem(inven.getHelmet()));
  258. }
  259. }
  260. }
  261. /**
  262. * Deducts the items needed from a player to do a repair
  263. */
  264. public void deduct(ArrayList<ItemStack> req) {
  265. PlayerInventory inven = player.getInventory();
  266. for (int i =0; i < req.size(); i++) {
  267. ItemStack currItem = new ItemStack(req.get(i).getTypeId(), req.get(i).getAmount());
  268. int neededAmount = req.get(i).getAmount();
  269. int smallestSlot = findSmallest(currItem);
  270. if (smallestSlot != -1) {
  271. // until we have removed all the required materials
  272. while (neededAmount > 0) {
  273. smallestSlot = findSmallest(currItem);
  274. ItemStack smallestItem = inven.getItem(smallestSlot);
  275. if (neededAmount < smallestItem.getAmount()) {
  276. // got enough in smallest stack deal and done
  277. ItemStack newSize = new ItemStack(currItem.getType(), smallestItem.getAmount() - neededAmount);
  278. inven.setItem(smallestSlot, newSize);
  279. neededAmount = 0;
  280. } else {
  281. // need to remove from more than one stack, deal and continue
  282. neededAmount -= smallestItem.getAmount();
  283. inven.clear(smallestSlot);
  284. }
  285. }
  286. }
  287. }
  288. }
  289. }