scripts.cpp 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. #include "scripts.h"
  2. #include <boost/format.hpp>
  3. #include "logging.h"
  4. ScriptTerror::ScriptTerror(Director &d) : Dispatch(d) {
  5. BUGZ_LOG(warning) << "ScriptTerror()";
  6. init();
  7. }
  8. ScriptTerror::~ScriptTerror() { BUGZ_LOG(warning) << "~ScriptTerror()"; }
  9. void ScriptTerror::init(void) {
  10. BUGZ_LOG(fatal) << "ScriptTerror::init()";
  11. move = std::make_shared<MoveDispatch>(director);
  12. md = static_cast<MoveDispatch *>(&(*move));
  13. // setup notify functions for results/completion.
  14. md->setNotify([this]() { this->move_notify(); });
  15. input = std::make_shared<InputDispatch>(director);
  16. id = static_cast<InputDispatch *>(&(*input));
  17. id->prompt = "Number of loops: ";
  18. id->max_length = 4;
  19. id->numeric = true;
  20. id->setNotify([this]() { this->input_notify(); });
  21. trader = std::make_shared<TraderDispatch>(director);
  22. td = static_cast<TraderDispatch *>(&(*trader));
  23. td->setNotify([this]() { this->trade_notify(); });
  24. BUGZ_LOG(fatal) << "ScriptTerror::init() completed.";
  25. }
  26. void ScriptTerror::activate(void) {
  27. BUGZ_LOG(warning) << "ScriptTerror::activate()";
  28. // Need: InputDispatch, MoveDispatch, ScriptTrader
  29. // Save the trade_end_empty setting, and set to Y
  30. if (director.galaxy.config["trade_end_empty"]) {
  31. old_trade_end_empty =
  32. director.galaxy.config["trade_end_empty"].as<std::string>();
  33. } else {
  34. old_trade_end_empty = "Y";
  35. }
  36. director.galaxy.config["trade_end_empty"] = "Y";
  37. // Step 0: Get ship information / # of holds
  38. max_loops = loops = -1;
  39. to_server("I");
  40. // Step 1: Get number of loops of terror
  41. // director.chain = input;
  42. // input->activate();
  43. // Step 2: Look for closest trades, try ScriptTrade until none < some
  44. // level. Step 3: Move on, unless out of loops (or low on turns)
  45. // deactivate();
  46. }
  47. void ScriptTerror::deactivate(void) {
  48. BUGZ_LOG(warning) << "ScriptTerror::deactivate()";
  49. // restore the original value.
  50. director.galaxy.config["trade_end_empty"] = old_trade_end_empty;
  51. notify();
  52. }
  53. void ScriptTerror::input_notify(void) {
  54. if (id->input.empty()) {
  55. deactivate();
  56. return;
  57. }
  58. if (id->aborted) {
  59. deactivate();
  60. return;
  61. }
  62. max_loops = sstoi(id->input, -1);
  63. if (max_loops == -1) {
  64. deactivate();
  65. return;
  66. }
  67. id->input.clear();
  68. BUGZ_LOG(warning) << "Loops of terror: " << max_loops;
  69. loops = max_loops;
  70. // find nearest
  71. int stop_percent;
  72. if (director.galaxy.config["stop_percent"]) {
  73. stop_percent = director.galaxy.config["stop_percent"].as<int>();
  74. } else {
  75. stop_percent = 25;
  76. director.galaxy.config["stop_percent"] = stop_percent;
  77. }
  78. ppt = director.galaxy.find_closest_trade(director.current_sector, 3,
  79. stop_percent);
  80. if (ppt.type == 0) {
  81. to_client("No trades found! You've burnt the galaxy!\n\r");
  82. deactivate();
  83. return;
  84. }
  85. // ok, step 2: move!
  86. // md->setNotify([this]() { this->proxy_deactivate(); });
  87. if (director.current_sector != ppt.s1) {
  88. BUGZ_LOG(fatal) << "Moving to: " << ppt.s1;
  89. md->move_to = ppt.s1;
  90. director.chain = move;
  91. director.chain->activate();
  92. return;
  93. } else {
  94. // We're already there!
  95. to_client("Ok! Get trading!\n\r");
  96. td->port[0] = ppt.s1;
  97. td->port[1] = ppt.s2;
  98. td->trades = ppt.trades;
  99. td->type = ppt.type;
  100. director.chain = trader;
  101. director.chain->activate();
  102. return;
  103. }
  104. }
  105. void ScriptTerror::move_notify(void) {
  106. BUGZ_LOG(fatal) << "move_notify()";
  107. if (md->aborted) {
  108. to_client("Move cancel.\n\r");
  109. deactivate();
  110. return;
  111. }
  112. // Check for success, and start trading!
  113. if (md->success) {
  114. to_client("We're here, get trading!\n\r");
  115. td->port[0] = ppt.s1;
  116. td->port[1] = ppt.s2;
  117. td->trades = ppt.trades;
  118. td->type = ppt.type;
  119. director.chain = trader;
  120. director.chain->activate();
  121. return;
  122. } else {
  123. to_client("Move FAILED.\n\r");
  124. deactivate();
  125. }
  126. }
  127. void ScriptTerror::server_prompt(const std::string &prompt) {
  128. if ((loops == -1) && (max_loops == -1)) {
  129. if (at_command_prompt(prompt)) {
  130. // Step 1: Get number of loops of terror
  131. director.chain = input;
  132. input->activate();
  133. return;
  134. }
  135. }
  136. }
  137. void ScriptTerror::trade_notify(void) {
  138. // Done trading -- maybe! :P
  139. if (td->aborted) {
  140. to_client("Trade cancel.\n\r");
  141. deactivate();
  142. return;
  143. }
  144. if (td->success) {
  145. // success!
  146. // find nearest
  147. int stop_percent;
  148. if (director.galaxy.config["stop_percent"]) {
  149. stop_percent = director.galaxy.config["stop_percent"].as<int>();
  150. } else {
  151. stop_percent = 25;
  152. director.galaxy.config["stop_percent"] = stop_percent;
  153. }
  154. ppt = director.galaxy.find_closest_trade(director.current_sector, 3,
  155. stop_percent);
  156. if (ppt.type == 0) {
  157. to_client("No trades found! You've burnt the galaxy!\n\r");
  158. deactivate();
  159. return;
  160. }
  161. if ((director.current_sector == ppt.s1) ||
  162. (director.current_sector == ppt.s2)) {
  163. // We're still here...
  164. BUGZ_LOG(fatal) << "Trade it again, Sam.";
  165. to_client("Keep trading.\n\r");
  166. td->port[0] = ppt.s1;
  167. td->port[1] = ppt.s2;
  168. td->trades = ppt.trades;
  169. td->type = ppt.type;
  170. director.chain = trader;
  171. director.chain->activate();
  172. return;
  173. }
  174. // Ok, this isn't a local trade.
  175. if (loops == 0) {
  176. to_client("We're done terrorizing, for now...\n\r");
  177. deactivate();
  178. return;
  179. }
  180. --loops;
  181. // Move to our next target
  182. BUGZ_LOG(fatal) << "Moving to: " << ppt.s1;
  183. md->move_to = ppt.s1;
  184. director.chain = move;
  185. director.chain->activate();
  186. return;
  187. }
  188. to_client("Ok, trade is done.\n\r");
  189. deactivate();
  190. }