scripts.cpp 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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 1: Get number of loops of terror
  38. director.chain = input;
  39. input->activate();
  40. // Step 2: Look for closest trades, try ScriptTrade until none < some
  41. // level. Step 3: Move on, unless out of loops (or low on turns)
  42. // deactivate();
  43. }
  44. void ScriptTerror::deactivate(void) {
  45. BUGZ_LOG(warning) << "ScriptTerror::deactivate()";
  46. // restore the original value.
  47. director.galaxy.config["trade_end_empty"] = old_trade_end_empty;
  48. notify();
  49. }
  50. void ScriptTerror::input_notify(void) {
  51. if (id->input.empty()) {
  52. deactivate();
  53. return;
  54. }
  55. if (id->aborted) {
  56. deactivate();
  57. return;
  58. }
  59. max_loops = sstoi(id->input, -1);
  60. if (max_loops == -1) {
  61. deactivate();
  62. return;
  63. }
  64. id->input.clear();
  65. BUGZ_LOG(warning) << "Loops of terror: " << max_loops;
  66. loops = max_loops;
  67. // find nearest
  68. ppt = director.galaxy.find_closest_trade(director.current_sector, 3);
  69. if (ppt.type == 0) {
  70. to_client("No trades found! You've burnt the galaxy!\n\r");
  71. deactivate();
  72. return;
  73. }
  74. // ok, step 2: move!
  75. // md->setNotify([this]() { this->proxy_deactivate(); });
  76. BUGZ_LOG(fatal) << "Moving to: " << ppt.s1;
  77. md->move_to = ppt.s1;
  78. director.chain = move;
  79. director.chain->activate();
  80. return;
  81. }
  82. void ScriptTerror::move_notify(void) {
  83. BUGZ_LOG(fatal) << "move_notify()";
  84. if (md->aborted) {
  85. deactivate();
  86. return;
  87. }
  88. // Check for success, and start trading!
  89. if (md->success) {
  90. to_client("We're here, get trading!\n\r");
  91. td->port[0] = ppt.s1;
  92. td->port[1] = ppt.s2;
  93. td->trades = ppt.trades;
  94. td->type = ppt.type;
  95. director.chain = trader;
  96. director.chain->activate();
  97. return;
  98. } else {
  99. to_client("Move FAILED.\n\r");
  100. deactivate();
  101. }
  102. }
  103. void ScriptTerror::trade_notify(void) {
  104. // Done trading -- maybe! :P
  105. if (td->aborted) {
  106. deactivate();
  107. return;
  108. }
  109. if (td->success) {
  110. // success!
  111. ppt = director.galaxy.find_closest_trade(director.current_sector, 3);
  112. if (ppt.type == 0) {
  113. to_client("No trades found! You've burnt the galaxy!\n\r");
  114. deactivate();
  115. return;
  116. }
  117. if ((director.current_sector == ppt.s1) ||
  118. (director.current_sector == ppt.s2)) {
  119. // We're still here...
  120. BUGZ_LOG(fatal) << "Trade it again, Sam.";
  121. to_client("Keep trading.\n\r");
  122. td->port[0] = ppt.s1;
  123. td->port[1] = ppt.s2;
  124. td->trades = ppt.trades;
  125. td->type = ppt.type;
  126. director.chain = trader;
  127. director.chain->activate();
  128. return;
  129. }
  130. // Ok, this isn't a local trade.
  131. if (loops == 0) {
  132. to_client("We're done terrorizing, for now...\n\r");
  133. deactivate();
  134. return;
  135. }
  136. --loops;
  137. // Move to our next target
  138. BUGZ_LOG(fatal) << "Moving to: " << ppt.s1;
  139. md->move_to = ppt.s1;
  140. director.chain = move;
  141. director.chain->activate();
  142. return;
  143. }
  144. to_client("Ok, trade is done.\n\r");
  145. deactivate();
  146. }