director.cpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479
  1. #include "director.h"
  2. #include <boost/format.hpp>
  3. #include "boxes.h"
  4. #include "galaxy.h"
  5. #include "logging.h"
  6. #include "utils.h"
  7. Director::Director() {
  8. BUGZ_LOG(warning) << "Director::Director()";
  9. // active = false;
  10. game = 0; // not in a game
  11. // do everything proxy_deactivate does ...
  12. // proxy_deactivate();
  13. active = false;
  14. // reset everything back to good state
  15. talk_direct = true;
  16. show_client = true;
  17. count = 0;
  18. /*
  19. Setup StringFunc for SL_parser:
  20. Construct these once, rather then every single time we need them.
  21. */
  22. SF_cimline = [this](const std::string &s) { this->SL_cimline(s); };
  23. SF_sectorline = [this](const std::string &s) { this->SL_sectorline(s); };
  24. SF_portline = [this](const std::string &s) { this->SL_portline(s); };
  25. SF_warpline = [this](const std::string &s) { this->SL_warpline(s); };
  26. }
  27. Director::~Director() { BUGZ_LOG(warning) << "Director::~Director()"; }
  28. void Director::client_input(const std::string &input) {
  29. // If we're already active, don't try to activate.
  30. if (chain) {
  31. chain->client_input(input);
  32. return;
  33. }
  34. if (active) {
  35. if (input == "Q" || input == "q") proxy_deactivate();
  36. return;
  37. } else if (input == "\x1b" || input == "~") {
  38. std::string &prompt = current_prompt;
  39. BUGZ_LOG(trace) << "CI: ACTIVATE prompt shows: [" << prompt << "]";
  40. if (prompt == "Selection (? for menu): ") {
  41. to_client(
  42. "\n\rThere's not much we can do here. Activate in-game at a "
  43. "Command prompt.\n\r");
  44. to_client(current_raw_prompt);
  45. return;
  46. }
  47. // easter-eggs:
  48. if (prompt == "Enter your choice: ") {
  49. to_client(
  50. "\n\r\x1b[1;36mI'd choose \x1b[1;37m`T`\x1b[1;36m, but "
  51. "that's how I was coded.\n\r");
  52. to_client(current_raw_prompt);
  53. return;
  54. }
  55. // easter-egg
  56. if (prompt == "[Pause]") {
  57. to_client(" \x1b[1;36mPAWS\x1b[0m\n\r");
  58. to_client(current_raw_prompt);
  59. return;
  60. }
  61. if (prompt == "Planet command (?=help) [D] ") {
  62. // future: Activate at planet menu ?
  63. return;
  64. }
  65. //
  66. // The command prompt that we're looking for:
  67. //
  68. // "Command [TL=00:00:00]:[242] (?=Help)? : "
  69. // the time, and the sector number vary...
  70. if (startswith(prompt, "Command [")) {
  71. // if (prompt.substr(0, 9) == "Command [") {
  72. // int len = prompt.length();
  73. if (endswith(prompt, "] (?=Help)? : ")) {
  74. // if (prompt.substr(len - 14) == "] (?=Help)? : ") {
  75. proxy_activate();
  76. return;
  77. }
  78. }
  79. }
  80. // Ok...
  81. if (talk_direct) to_server(input);
  82. /*
  83. if (emit_client_input)
  84. emit_client_input(line);
  85. */
  86. }
  87. void Director::server_line(const std::string &line,
  88. const std::string &raw_line) {
  89. // check for if we entered game/left game
  90. if (line.find("TradeWars Game Server ") != std::string::npos) {
  91. to_client("\rTradeWars Proxy v2++ READY (~ or ESC to activate)\n\r");
  92. if (game) {
  93. // TODO: Save galaxy data
  94. galaxy.save();
  95. }
  96. game = 0;
  97. // reset "active game" -- we're at the TWGS main menu
  98. }
  99. if (line.find("Selection (? for menu): ") != std::string::npos) {
  100. char ch = line[line.length() - 1];
  101. if (ch >= 'A' && ch < 'Q') {
  102. game = ch;
  103. BUGZ_LOG(warning) << "GAME " << game << " activated!";
  104. // TODO: Load game data
  105. galaxy.game = game;
  106. galaxy.username = username;
  107. galaxy.load();
  108. }
  109. // not needed (handled by above Game Server check).
  110. if (ch == 'Q') {
  111. if (game) {
  112. // TODO: Save galaxy data
  113. galaxy.save();
  114. }
  115. game = 0;
  116. }
  117. }
  118. if (game) {
  119. // in-game parsing here.
  120. /*
  121. ____ _ _
  122. / ___| ___ _ ____ _____ _ __ | | (_)_ __ ___
  123. \___ \ / _ \ '__\ \ / / _ \ '__| | | | | '_ \ / _ \
  124. ___) | __/ | \ V / __/ | | |___| | | | | __/
  125. |____/ \___|_| \_/ \___|_| |_____|_|_| |_|\___|
  126. ____ _
  127. | _ \ __ _ _ __ ___(_)_ __ __ _
  128. | |_) / _` | '__/ __| | '_ \ / _` |
  129. | __/ (_| | | \__ \ | | | | (_| |
  130. |_| \__,_|_| |___/_|_| |_|\__, |
  131. |___/
  132. This is where all of the server lines are gleaned for all the
  133. information that we can get out of them.
  134. // When activating the computer
  135. SP: [Command [TL=00:00:00]:[926] (?=Help)? : ]
  136. Sector: 926
  137. CI: [c]
  138. SL: [Command [TL=00:00:00]:[926] (?=Help)? : C]
  139. SL: [<Computer>]
  140. SL: []
  141. SL: [<Computer activated>]
  142. SL: []
  143. SP: [Computer command [TL=00:00:00]:[926] (?=Help)? ]
  144. // deactivating the computer
  145. SL: [Computer command [TL=00:00:00]:[926] (?=Help)? Q]
  146. SL: []
  147. SL: [<Computer deactivated>]
  148. SL: []
  149. */
  150. if (startswith(line, " Items Status Trading % of max OnBoard"))
  151. SL_parser = SF_portline;
  152. if (startswith(line, "Sector : ")) SL_parser = SF_sectorline;
  153. if (line == ": ") SL_parser = SF_cimline;
  154. }
  155. if (SL_parser) {
  156. SL_parser(line);
  157. }
  158. /*
  159. if (emit_server_line) {
  160. emit_server_line(line);
  161. }
  162. */
  163. if (chain) {
  164. chain->server_line(line, raw_line);
  165. }
  166. }
  167. void Director::server_prompt(const std::string &prompt,
  168. const std::string &raw_prompt) {
  169. current_prompt = prompt;
  170. current_raw_prompt = raw_prompt;
  171. if (game) {
  172. // in-game parsing here.
  173. if (startswith(prompt, "Command [") && endswith(prompt, "] (?=Help)? : ")) {
  174. std::string sector_text;
  175. size_t before, after;
  176. before = prompt.find("]:[") + 3;
  177. after = prompt.find("] (?=Help)");
  178. sector_text = prompt.substr(before, after - before);
  179. current_sector = stoi(sector_text);
  180. BUGZ_LOG(fatal) << "Sector: " << sector_text;
  181. }
  182. }
  183. /*
  184. if (emit_server_prompt)
  185. emit_server_prompt(prompt);
  186. */
  187. if (chain) chain->server_prompt(prompt);
  188. }
  189. void Director::proxy_activate(void) {
  190. active = true; // yes, set keep-alive timer.
  191. to_server(" "); // start keep-alive timer.
  192. // set other values we need
  193. talk_direct = false;
  194. show_client = false;
  195. /*
  196. Wait a minute .. this might be confusing.
  197. Shouldn't I send them the current prompt?
  198. Just in case we abort in the middle of something?!?
  199. */
  200. old_prompt = current_prompt;
  201. old_raw_prompt = current_raw_prompt;
  202. to_client("\x1b[0m\n\r");
  203. /*
  204. ╔══════════════════════════════╗
  205. ║ TradeWars Proxy Active ║
  206. ╚══════════════════════════════╝
  207. -=>
  208. */
  209. Boxes box(30, 1, true);
  210. box.boxcolor = "\x1b[1;33;44m";
  211. box.textcolor = "\x1b[1;33;44m";
  212. to_client(box.top());
  213. std::string output = " TradeWars Proxy \x1b[5mActive\x1b[0;1;33;44m ";
  214. to_client(box.row(output));
  215. to_client(box.bottom());
  216. std::shared_ptr<Dispatch> menu = std::make_shared<MenuDispatch>(*this);
  217. chain = menu;
  218. MenuDispatch *md = static_cast<MenuDispatch *>(&(*menu));
  219. md->menu_box_color = "\x1b[1;33;44m";
  220. md->menu_text_color = "\x1b[1;37;44m";
  221. md->menu_title = "Proxy Menu";
  222. md->menu_options_color = "\x1b[1;36;40m";
  223. md->menu_prompt =
  224. "\x1b[0;31;40m\xdb\xb2\xb1\xb0 \x1b[31;40mRED "
  225. "\x1b[32;40mGREEN\x1b[30;42m\xdb\xb2\xb1\xb0 \x1b[0m : ";
  226. md->lazy = true;
  227. md->menu = {{"A", "Apple"}, {"B", "Blue"}, {"R", "Rabbit"}, {"Z", "ZOOO!"}};
  228. md->setNotify([this]() { this->menu_choice(); });
  229. menu->activate();
  230. /*
  231. // Using InputDispatch -- and see have_input
  232. std::shared_ptr<Dispatch> readline = std::make_shared<InputDispatch>(*this);
  233. chain = readline;
  234. InputDispatch *id = static_cast<InputDispatch *>(&(*readline));
  235. id->prompt = "\x1b[0m \x1b[1;33;44m-=>\x1b[0m \x1b[1;37;44m";
  236. id->max_length = 15;
  237. id->setNotify([this]() { this->have_input(); });
  238. readline->activate();
  239. */
  240. }
  241. void Director::menu_choice(void) {
  242. MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*chain));
  243. if (md) {
  244. if (md->input.empty()) {
  245. to_client("Menu aborted.\n\r");
  246. proxy_deactivate();
  247. return;
  248. } else {
  249. std::string text = str(
  250. boost::format("Back from Menu [%1%] was selected.\n\r") % md->input);
  251. to_client(text);
  252. md->activate();
  253. }
  254. }
  255. }
  256. void Director::have_input(void) {
  257. ++count;
  258. InputDispatch *id = dynamic_cast<InputDispatch *>(&(*chain));
  259. if (id) {
  260. std::string output =
  261. str(boost::format("Your Input (%2%): [%1%]\n\r") % id->input % count);
  262. to_client("\x1b[0m");
  263. to_client(output);
  264. } else {
  265. proxy_deactivate();
  266. return;
  267. }
  268. if (count > 3) {
  269. proxy_deactivate();
  270. } else {
  271. chain->activate();
  272. }
  273. }
  274. void Director::proxy_deactivate(void) {
  275. active = false;
  276. // reset everything back to good state
  277. talk_direct = true;
  278. show_client = true;
  279. chain.reset();
  280. to_client("\n\r");
  281. to_client(current_raw_prompt);
  282. }
  283. /*
  284. Server Line Parsing Routines
  285. */
  286. void Director::SL_cimline(const std::string &line) {
  287. if (line == ": ENDINTERROG") {
  288. SL_parser = nullptr;
  289. return;
  290. }
  291. if (line == ": ") {
  292. // do I need to do anything special here for this?
  293. // Maybe -- We would save special ports that don't show up (StarDock/Special) before.
  294. // We don't know (at this point) if this is warps or ports.
  295. return;
  296. }
  297. if (line.empty()) {
  298. SL_parser = nullptr;
  299. return;
  300. }
  301. // parse cimline
  302. // size_t pos = line.find('%');
  303. // std::string work = line;
  304. // if (pos == line.npos) {
  305. if (in(line, "%")) {
  306. // warpcim
  307. BUGZ_LOG(fatal) << "warpcim: [" << line << "]";
  308. auto warps = split(line);
  309. sector_warps sw;
  310. for (auto const &w : warps) {
  311. if (sw.sector == 0) {
  312. sw.sector = stoi(w);
  313. } else {
  314. sw.add(stoi(w));
  315. }
  316. }
  317. BUGZ_LOG(fatal) << "warpcim: " << sw;
  318. galaxy.add_warp(sw);
  319. } else {
  320. // portcim
  321. struct port p = parse_portcim(line);
  322. if (p.sector == 0)
  323. BUGZ_LOG(fatal) << "portcim: FAIL [" << line << "]";
  324. else
  325. BUGZ_LOG(fatal) << "portcim: " << p;
  326. galaxy.add_port(p);
  327. }
  328. }
  329. void Director::SL_thiefline(const std::string &line) {
  330. size_t pos = line.find("Suddenly you're Busted!");
  331. bool busted = pos != line.npos;
  332. if (busted) {
  333. BUGZ_LOG(fatal) << "set bust";
  334. SL_parser = nullptr;
  335. } else {
  336. pos = line.find("(You realize the guards saw you last time!)");
  337. if (pos != line.npos) SL_parser = nullptr;
  338. }
  339. // Are those the two ways to exit from this state?
  340. }
  341. void Director::SL_sectorline(const std::string &line) {
  342. BUGZ_LOG(fatal) << "sectorline: [" << line << "]";
  343. if (line.empty()) {
  344. SL_parser = nullptr;
  345. } else {
  346. /*
  347. sectorline: [Sector : 926 in The Federation.]
  348. sectorline: [Beacon : FedSpace, FedLaw Enforced]
  349. sectorline: [Ports : Stargate Alpha I, Class 9 (Special) (StarDock)]
  350. sectorline: [Traders : Civilian phil, w/ 30 ftrs,]
  351. sectorline: [ in Star Stomper (Sverdlov Merchant Cruiser)]
  352. sectorline: [Warps to Sector(s) : 70 - 441 - 575 - 600 - 629 - 711]
  353. sectorline: [Warps to Sector(s) : 70 - (475) - 569]
  354. */
  355. if (in(line, "Sector :")) {
  356. current_sector = stoi(line.substr(10));
  357. BUGZ_LOG(warning) << "SECTOR: " << current_sector;
  358. }
  359. if (in(line, "Ports :")) {
  360. std::string port_class;
  361. size_t pos = line.find(", Class ");
  362. if (pos != std::string::npos) {
  363. pos += 8;
  364. int class_ = stoi(line.substr(pos));
  365. BUGZ_LOG(fatal) << "PORT: " << class_;
  366. }
  367. }
  368. if (in(line, "Warps to Sector(s) :")) {
  369. std::string temp = line.substr( 20 );
  370. replace(temp, " - ", " ");
  371. // unexplored sectors ()
  372. // Should I track these?
  373. replace(temp, "(", "");
  374. replace(temp, ")", "");
  375. sector_warps sw;
  376. auto warps = split(temp);
  377. sw.sector = current_sector;
  378. for( auto const &w : warps) {
  379. sw.add(stoi(w));
  380. }
  381. BUGZ_LOG(fatal) << "WARPS: " << sw;
  382. galaxy.add_warp(sw);
  383. }
  384. }
  385. }
  386. void Director::SL_portline(const std::string &line) {
  387. if (line.empty()) {
  388. SL_parser = nullptr;
  389. return;
  390. }
  391. /*
  392. SL: [ Items Status Trading % of max OnBoard]
  393. SL: [ ----- ------ ------- -------- -------]
  394. SL: [Fuel Ore Buying 3000 100% 0]
  395. SL: [Organics Buying 3000 100% 0]
  396. SL: [Equipment Buying 3000 100% 0]
  397. SL: []
  398. SL: [Commerce report for: 03:51:56 PM Mon Oct 24, 2033 You can buy:]
  399. SL: [A Cargo holds : 650 credits / next hold 0]
  400. SL: [B Fighters : 233 credits per fighter 75]
  401. SL: [C Shield Points : 116 credits per point 100]
  402. SL: []
  403. */
  404. BUGZ_LOG(info) << "portline : " << line;
  405. if (in(line, "%")) {
  406. // size_t pos = line.find('%');
  407. // if (pos != line.npos) {
  408. // Ok, this is a valid portline
  409. std::string work = line;
  410. replace(work, "Fuel Ore", "Fuel");
  411. auto parts = split(work);
  412. BUGZ_LOG(fatal) << "portline split:";
  413. for( auto const p : parts) {
  414. BUGZ_LOG(fatal) << p;
  415. }
  416. // BUGZ_LOG(fatal) << "portline split : [" << parts << "]";
  417. }
  418. }
  419. void Director::SL_warpline(const std::string &line) {
  420. if (line.empty()) {
  421. SL_parser = nullptr;
  422. return;
  423. }
  424. // process warp line
  425. BUGZ_LOG(fatal) << "warpline: [" << line << "]";
  426. }