director.cpp 6.4 KB

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