/src/main/java/me/ksafin/DynamicEconomy/EnderEngine.java

https://bitbucket.org/ZackRuybal/dynamiceconomy · Java · 212 lines · 175 code · 37 blank · 0 comment · 12 complexity · f3e3312c5a390c7bf9c8094b75b8f535 MD5 · raw file

  1. package me.ksafin.DynamicEconomy;
  2. import java.io.IOException;
  3. import java.text.DecimalFormat;
  4. import java.text.NumberFormat;
  5. import java.util.Calendar;
  6. import java.util.Iterator;
  7. import java.util.Locale;
  8. import java.util.Set;
  9. import java.util.logging.Logger;
  10. public class EnderEngine {
  11. private String item;
  12. private double price;
  13. private double floor;
  14. private double ceiling;
  15. private double span;
  16. private int stock;
  17. private long id;
  18. private long buyTime;
  19. private long sellTime;
  20. private static NumberFormat f;
  21. private static DecimalFormat decFormat;
  22. private static Logger log;
  23. static {
  24. f = NumberFormat.getNumberInstance(Locale.US);
  25. decFormat = (DecimalFormat)f;
  26. log = Logger.getLogger("Minecraft");
  27. }
  28. public EnderEngine(String[] itemProperties) {
  29. this.item = itemProperties[0];
  30. this.price = Double.parseDouble(itemProperties[1]);
  31. this.floor = Double.parseDouble(itemProperties[2]);
  32. this.ceiling = Double.parseDouble(itemProperties[3]);
  33. this.span = Double.parseDouble(itemProperties[4]);
  34. this.stock = Integer.parseInt(itemProperties[5]);
  35. this.id = Long.parseLong(itemProperties[6]);
  36. decFormat.applyPattern("#.##");
  37. }
  38. public double getCost(int amount) {
  39. double totalcost = 0.0D;
  40. for(int x = 0; x < amount; ++x) {
  41. this.price = this.calcPrice((double)this.stock, this.ceiling, this.floor, this.span);
  42. totalcost += this.price;
  43. --this.stock;
  44. }
  45. return totalcost;
  46. }
  47. public void diagnose(double total) {
  48. log.info("[EnderEngine] Item Diagnostics");
  49. log.info("[EnderEngine] Item: " + this.item);
  50. log.info("[EnderEngine] Price: " + this.price);
  51. log.info("[EnderEngine] Floor: " + this.floor);
  52. log.info("[EnderEngine] Ceiling: " + this.ceiling);
  53. log.info("[EnderEngine] Span: " + this.span);
  54. log.info("[EnderEngine] Stock:" + this.stock);
  55. log.info("[EnderEngine] ID: " + this.id);
  56. log.info("[EnderEngine] ------------------");
  57. if (total != 0.0D) {
  58. log.info("[EnderEngine] Cost: " + total);
  59. }
  60. }
  61. public void reCalculatePrices() {
  62. Set items = DynamicEconomy.itemConfig.getKeys(false);
  63. Iterator i = items.iterator();
  64. while(i.hasNext()) {
  65. String curItem = (String)i.next();
  66. String[] curItemInfo = Item.getAllInfo(curItem);
  67. this.item = curItemInfo[0];
  68. if (!this.item.equals("")) {
  69. this.floor = Double.parseDouble(curItemInfo[2]);
  70. this.ceiling = Double.parseDouble(curItemInfo[3]);
  71. this.span = Double.parseDouble(curItemInfo[4]);
  72. this.stock = Integer.parseInt(curItemInfo[5]);
  73. this.price = this.calcPrice((double)this.stock, this.ceiling, this.floor, this.span);
  74. this.updateConfig();
  75. }
  76. }
  77. }
  78. public double getSale(int amount) {
  79. double totalsale = 0.0D;
  80. for(int x = 0; x < amount; ++x) {
  81. ++this.stock;
  82. this.price = this.calcPrice((double)this.stock, this.ceiling, this.floor, this.span);
  83. totalsale += this.price;
  84. }
  85. return totalsale;
  86. }
  87. public double getPrice() {
  88. return this.price;
  89. }
  90. public int getStock() {
  91. return this.stock;
  92. }
  93. public double getFloor() {
  94. return this.floor;
  95. }
  96. public double getCeiling() {
  97. return this.ceiling;
  98. }
  99. public void setFloor(double newFloor) {
  100. this.floor = newFloor;
  101. }
  102. public void setCeiling(double newCeiling) {
  103. this.ceiling = newCeiling;
  104. }
  105. public void decrementStock(int amt) {
  106. this.stock -= amt;
  107. this.price = this.calcPrice((double)this.stock, this.ceiling, this.floor, this.span);
  108. }
  109. public void incrementStock(int amt) {
  110. this.stock += amt;
  111. this.price = this.calcPrice((double)this.stock, this.ceiling, this.floor, this.span);
  112. }
  113. public void updateConfig() {
  114. String node = this.item + ".";
  115. DynamicEconomy.itemConfig.set(node + "price", this.price);
  116. DynamicEconomy.itemConfig.set(node + "stock", this.stock);
  117. DynamicEconomy.itemConfig.set(node + "ceiling", this.ceiling);
  118. DynamicEconomy.itemConfig.set(node + "floor", this.floor);
  119. this.saveConfig();
  120. }
  121. public void updatePrice() {
  122. this.price = this.calcPrice((double)this.stock, this.ceiling, this.floor, this.span);
  123. }
  124. public void setBuyTime() {
  125. this.buyTime = Calendar.getInstance().getTimeInMillis();
  126. DynamicEconomy.itemConfig.set(this.item + ".buytime", this.buyTime);
  127. }
  128. public void setSellTime() {
  129. this.sellTime = Calendar.getInstance().getTimeInMillis();
  130. DynamicEconomy.itemConfig.set(this.item + ".selltime", this.sellTime);
  131. }
  132. private void saveConfig() {
  133. try {
  134. DynamicEconomy.itemConfig.save(DynamicEconomy.itemsFile);
  135. } catch (IOException var2) {
  136. Utility.writeToLog("[EnderEngine] Error saving new Item info for " + this.item);
  137. var2.printStackTrace();
  138. }
  139. }
  140. public boolean isEnchantment() {
  141. return this.id >= 2500L && this.id < 2600L;
  142. }
  143. public void inflate() {
  144. boolean inflated = false;
  145. double origPrice = this.price;
  146. while(!inflated && this.stock != 0) {
  147. --this.stock;
  148. this.updatePrice();
  149. if (Math.abs(origPrice - this.price) / origPrice >= DynamicEconomy.overTimePriceInflationPercent) {
  150. this.updateConfig();
  151. break;
  152. }
  153. }
  154. }
  155. public void decay() {
  156. boolean inflated = false;
  157. double origPrice = this.price;
  158. while(!inflated && this.stock != 0) {
  159. ++this.stock;
  160. this.updatePrice();
  161. if ((origPrice - this.price) / origPrice >= DynamicEconomy.overTimePriceDecayPercent) {
  162. this.updateConfig();
  163. break;
  164. }
  165. }
  166. }
  167. private double calcPrice(double s, double c, double f, double sp) {
  168. double numerator = (c - f) * Math.sqrt(s / sp);
  169. double denominator = -1.0D * Math.sqrt(s / sp) - 1.0D;
  170. double frac = numerator / denominator;
  171. double price = frac + c;
  172. price = Double.valueOf(decFormat.format(price));
  173. return price;
  174. }
  175. }