director.cpp 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. #include "director.h"
  2. #include "galaxy.h"
  3. #include "logging.h"
  4. #include "utils.h"
  5. Director::Director() {
  6. BUGZ_LOG(warning) << "Director::Director()";
  7. // active = false;
  8. game = 0; // not in a game
  9. proxy_deactivate();
  10. }
  11. Director::~Director() { BUGZ_LOG(warning) << "Director::~Director()"; }
  12. void Director::client_input(const std::string &input) {
  13. // If we're already active, don't try to activate.
  14. if (!active && (input == "\x1b" || input == "~")) {
  15. std::string &prompt = current_prompt;
  16. BUGZ_LOG(trace) << "CI: ACTIVATE prompt shows: [" << prompt << "]";
  17. if (prompt == "Selection (? for menu): ") {
  18. to_client(
  19. "\n\rThere's not much we can do here. Activate in-game at a "
  20. "Command prompt.\n\r");
  21. to_client(current_raw_prompt);
  22. return;
  23. }
  24. // easter-eggs:
  25. if (prompt == "Enter your choice: ") {
  26. to_client(
  27. "\n\r\x1b[1;36mI'd choose \x1b[1;37m`T`\x1b[1;36m, but "
  28. "that's how I was coded.\n\r");
  29. to_client(current_raw_prompt);
  30. return;
  31. }
  32. // easter-egg
  33. if (prompt == "[Pause]") {
  34. to_client(" \x1b[1;36mPAWS\x1b[0m\n\r");
  35. to_client(current_raw_prompt);
  36. return;
  37. }
  38. if (prompt == "Planet command (?=help) [D] ") {
  39. // future: Activate at planet menu ?
  40. return;
  41. }
  42. //
  43. // The command prompt that we're looking for:
  44. //
  45. // "Command [TL=00:00:00]:[242] (?=Help)? : "
  46. // the time, and the sector number vary...
  47. if (prompt.substr(0, 9) == "Command [") {
  48. int len = prompt.length();
  49. if (prompt.substr(len - 14) == "] (?=Help)? : ") {
  50. proxy_activate();
  51. /*
  52. to_client("\n\r\x1b[1;34mWELCOME! This is where the proxy would "
  53. "activate.\n\r");
  54. // active = true;
  55. // show_client = true; // because if something comes (unexpected)
  56. // from the server? talk_direct = false;
  57. // but we aren't activating (NNY)
  58. to_client(get_prompt());
  59. */
  60. return;
  61. }
  62. }
  63. }
  64. // Ok...
  65. if (talk_direct) to_server(input);
  66. /*
  67. if (emit_client_input)
  68. emit_client_input(line);
  69. */
  70. }
  71. void Director::server_line(const std::string &line) {
  72. // check for if we entered game/left game
  73. if (line.find("TradeWars Game Server ") != std::string::npos) {
  74. to_client("\rTradeWars Proxy v2++ READY (~ or ESC to activate)\n\r");
  75. game = 0;
  76. // reset "active game" -- we're back at the menu
  77. }
  78. if (line.find("Selection (? for menu): ") != std::string::npos) {
  79. char ch = line[line.length() - 1];
  80. if (ch >= 'A' && ch < 'Q') {
  81. game = ch;
  82. BUGZ_LOG(warning) << "GAME " << game << " activated!";
  83. }
  84. // not needed (handled by above Game Server check).
  85. if (ch == 'Q') game = 0;
  86. }
  87. if (game) {
  88. // in-game parsing here.
  89. }
  90. /*
  91. if (emit_server_line) {
  92. emit_server_line(line);
  93. }
  94. */
  95. }
  96. void Director::server_prompt(const std::string &prompt, const std::string &raw_prompt) {
  97. current_prompt = prompt;
  98. current_raw_prompt = raw_prompt;
  99. /*
  100. if (emit_server_prompt)
  101. emit_server_prompt(prompt);
  102. */
  103. }
  104. void Director::proxy_activate(void) {
  105. active = true; // sets Session keep-alive timer.
  106. // set other values we need
  107. talk_direct = false;
  108. show_client = false;
  109. }
  110. void Director::proxy_deactivate(void) {
  111. active = false;
  112. // reset everything back to good state
  113. talk_direct = true;
  114. show_client = true;
  115. }
  116. void Director::SL_cimline(const std::string &line) {
  117. if (line == ": ENDINTERROG") {
  118. SL_parser = nullptr;
  119. return;
  120. }
  121. if (line == ": ") {
  122. // do I need to do anything special here for this?
  123. return;
  124. }
  125. if (line.empty()) {
  126. SL_parser = nullptr;
  127. return;
  128. }
  129. // parse cimline
  130. size_t pos = line.find('%');
  131. std::string work = line;
  132. if (pos == line.npos) {
  133. // warpcim
  134. BUGZ_LOG(fatal) << "warpcim: [" << line << "]";
  135. auto warps = split(line);
  136. sector_warps sw;
  137. for (auto const &w : warps) {
  138. if (sw.sector == 0) {
  139. sw.sector = stoi(w);
  140. } else {
  141. sw.add(stoi(w));
  142. }
  143. }
  144. BUGZ_LOG(fatal) << "warpcim: " << sw;
  145. } else {
  146. // portcim
  147. struct port p = parse_portcim(line);
  148. if (p.sector == 0)
  149. BUGZ_LOG(fatal) << "portcim: [" << line << "]";
  150. else
  151. BUGZ_LOG(fatal) << "portcim: " << p;
  152. }
  153. }
  154. void Director::SL_thiefline(const std::string &line) {
  155. size_t pos = line.find("Suddenly you're Busted!");
  156. bool busted = pos != line.npos;
  157. if (busted) {
  158. BUGZ_LOG(fatal) << "set bust";
  159. SL_parser = nullptr;
  160. } else {
  161. pos = line.find("(You realize the guards saw you last time!)");
  162. if (pos != line.npos) SL_parser = nullptr;
  163. }
  164. // Are those the two ways to exit from this state?
  165. }
  166. void Director::SL_sectorline(const std::string &line) {
  167. BUGZ_LOG(fatal) << "sectorline: [" << line << "]";
  168. }
  169. void Director::SL_portline(const std::string &line) {
  170. if (line.empty()) {
  171. SL_parser = nullptr;
  172. return;
  173. }
  174. BUGZ_LOG(info) << "portline : " << line;
  175. size_t pos = line.find('%');
  176. if (pos != line.npos) {
  177. // Ok, this is a valid portline
  178. std::string work = line;
  179. replace(work, "Fuel Ore", "Fuel");
  180. BUGZ_LOG(fatal) << "re.split? : [" << work << "]";
  181. }
  182. }
  183. void Director::SL_warpline(const std::string &line) {
  184. if (line.empty()) {
  185. SL_parser = nullptr;
  186. return;
  187. }
  188. // process warp line
  189. BUGZ_LOG(fatal) << "warpline: [" << line << "]";
  190. }