scripts.cpp 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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. ppt = director.galaxy.find_closest_trade(director.current_sector, 3);
  72. if (ppt.type == 0) {
  73. to_client("No trades found! You've burnt the galaxy!\n\r");
  74. deactivate();
  75. return;
  76. }
  77. // ok, step 2: move!
  78. // md->setNotify([this]() { this->proxy_deactivate(); });
  79. if (director.current_sector != ppt.s1) {
  80. BUGZ_LOG(fatal) << "Moving to: " << ppt.s1;
  81. md->move_to = ppt.s1;
  82. director.chain = move;
  83. director.chain->activate();
  84. return;
  85. } else {
  86. // We're already there!
  87. to_client("Ok! Get trading!\n\r");
  88. td->port[0] = ppt.s1;
  89. td->port[1] = ppt.s2;
  90. td->trades = ppt.trades;
  91. td->type = ppt.type;
  92. director.chain = trader;
  93. director.chain->activate();
  94. return;
  95. }
  96. }
  97. void ScriptTerror::move_notify(void) {
  98. BUGZ_LOG(fatal) << "move_notify()";
  99. if (md->aborted) {
  100. to_client("Move cancel.\n\r");
  101. deactivate();
  102. return;
  103. }
  104. // Check for success, and start trading!
  105. if (md->success) {
  106. to_client("We're here, get trading!\n\r");
  107. td->port[0] = ppt.s1;
  108. td->port[1] = ppt.s2;
  109. td->trades = ppt.trades;
  110. td->type = ppt.type;
  111. director.chain = trader;
  112. director.chain->activate();
  113. return;
  114. } else {
  115. to_client("Move FAILED.\n\r");
  116. deactivate();
  117. }
  118. }
  119. void ScriptTerror::server_prompt(const std::string &prompt) {
  120. if ((loops == -1) && (max_loops == -1)) {
  121. if (at_command_prompt(prompt)) {
  122. // Step 1: Get number of loops of terror
  123. director.chain = input;
  124. input->activate();
  125. return;
  126. }
  127. }
  128. }
  129. void ScriptTerror::trade_notify(void) {
  130. // Done trading -- maybe! :P
  131. if (td->aborted) {
  132. to_client("Trade cancel.\n\r");
  133. deactivate();
  134. return;
  135. }
  136. if (td->success) {
  137. // success!
  138. ppt = director.galaxy.find_closest_trade(director.current_sector, 3);
  139. if (ppt.type == 0) {
  140. to_client("No trades found! You've burnt the galaxy!\n\r");
  141. deactivate();
  142. return;
  143. }
  144. if ((director.current_sector == ppt.s1) ||
  145. (director.current_sector == ppt.s2)) {
  146. // We're still here...
  147. BUGZ_LOG(fatal) << "Trade it again, Sam.";
  148. to_client("Keep trading.\n\r");
  149. td->port[0] = ppt.s1;
  150. td->port[1] = ppt.s2;
  151. td->trades = ppt.trades;
  152. td->type = ppt.type;
  153. director.chain = trader;
  154. director.chain->activate();
  155. return;
  156. }
  157. // Ok, this isn't a local trade.
  158. if (loops == 0) {
  159. to_client("We're done terrorizing, for now...\n\r");
  160. deactivate();
  161. return;
  162. }
  163. --loops;
  164. // Move to our next target
  165. BUGZ_LOG(fatal) << "Moving to: " << ppt.s1;
  166. md->move_to = ppt.s1;
  167. director.chain = move;
  168. director.chain->activate();
  169. return;
  170. }
  171. to_client("Ok, trade is done.\n\r");
  172. deactivate();
  173. }