director.cpp 16 KB

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