scripts.cpp 4.7 KB

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