director.cpp 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541
  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"}, {"D", "Display Report"},
  211. {"E", "Export Data/Save"}, {"P", "Port CIM"},
  212. {"W", "Warp CIM"}, {"T", "Trading Report"},
  213. {"S", "Scripts"}, {"X", "eXit"}};
  214. md->setNotify([this]() { this->menu_choice(); });
  215. cim = std::make_shared<CIMDispatch>(*this);
  216. cim->setNotify([this]() { this->cim_done(); });
  217. }
  218. void Director::proxy_activate(void) {
  219. active = true; // yes, set keep-alive timer.
  220. to_server(" "); // start keep-alive timer.
  221. // set other values we need
  222. talk_direct = false;
  223. show_client = false;
  224. /*
  225. Wait a minute .. this might be confusing.
  226. Shouldn't I send them the current prompt?
  227. Just in case we abort in the middle of something?!?
  228. */
  229. old_prompt = current_prompt;
  230. old_raw_prompt = current_raw_prompt;
  231. to_client("\x1b[0m\n\r");
  232. /*
  233. ╔══════════════════════════════╗
  234. ║ TradeWars Proxy Active ║
  235. ╚══════════════════════════════╝
  236. -=>
  237. */
  238. Boxes box(30, 1, true);
  239. box.boxcolor = "\x1b[1;33;44m";
  240. box.textcolor = "\x1b[1;33;44m";
  241. to_client(box.top());
  242. std::string output = " TradeWars Proxy \x1b[5mActive\x1b[0;1;33;44m ";
  243. to_client(box.row(output));
  244. to_client(box.bottom());
  245. chain = main_menu;
  246. main_menu->activate();
  247. /*
  248. // Using InputDispatch -- and see have_input
  249. std::shared_ptr<Dispatch> readline = std::make_shared<InputDispatch>(*this);
  250. chain = readline;
  251. InputDispatch *id = static_cast<InputDispatch *>(&(*readline));
  252. id->prompt = "\x1b[0m \x1b[1;33;44m-=>\x1b[0m \x1b[1;37;44m";
  253. id->max_length = 15;
  254. id->setNotify([this]() { this->have_input(); });
  255. readline->activate();
  256. */
  257. }
  258. void Director::menu_choice(void) {
  259. MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*chain));
  260. if (md) {
  261. if (md->input.empty()) {
  262. to_client("Menu aborted.\n\r");
  263. proxy_deactivate();
  264. return;
  265. } else {
  266. switch (md->input[0]) {
  267. case 'C': // configure
  268. break;
  269. case 'D': // display report
  270. break;
  271. case 'E': // Export Data/Save
  272. to_client("Saving...");
  273. galaxy.save();
  274. to_client("\rSaved....\n\r");
  275. break;
  276. case 'P': // Port CIM
  277. // TO FIX: Save type 0 & 9 ports, and restore!
  278. chain = cim;
  279. to_server("^RQ");
  280. to_client("Port CIM Report\n\r");
  281. chain->activate();
  282. return;
  283. break;
  284. case 'W': // Warp CIM
  285. chain = cim;
  286. to_server("^IQ");
  287. to_client("Warp CIM Report\n\r");
  288. chain->activate();
  289. return;
  290. break;
  291. case 'T': // Trading Report
  292. break;
  293. case 'S': // Scripts
  294. break;
  295. case 'X': // Exit
  296. proxy_deactivate();
  297. return;
  298. }
  299. std::string text = str(
  300. boost::format("Back from Menu [%1%] was selected.\n\r") % md->input);
  301. to_client(text);
  302. md->activate();
  303. }
  304. }
  305. }
  306. void Director::have_input(void) {
  307. ++count;
  308. InputDispatch *id = dynamic_cast<InputDispatch *>(&(*chain));
  309. if (id) {
  310. std::string output =
  311. str(boost::format("Your Input (%2%): [%1%]\n\r") % id->input % count);
  312. to_client("\x1b[0m");
  313. to_client(output);
  314. } else {
  315. proxy_deactivate();
  316. return;
  317. }
  318. if (count > 3) {
  319. proxy_deactivate();
  320. } else {
  321. chain->activate();
  322. }
  323. }
  324. void Director::cim_done(void) {
  325. BUGZ_LOG(info) << "CIM done";
  326. chain = main_menu;
  327. main_menu->activate();
  328. }
  329. void Director::proxy_deactivate(void) {
  330. active = false;
  331. // reset everything back to good state
  332. talk_direct = true;
  333. show_client = true;
  334. chain.reset();
  335. to_client("\n\r");
  336. to_client(current_raw_prompt);
  337. }
  338. /*
  339. Server Line Parsing Routines
  340. */
  341. void Director::SL_cimline(const std::string &line) {
  342. if (line == ": ENDINTERROG") {
  343. SL_parser = nullptr;
  344. return;
  345. }
  346. if (line == ": ") {
  347. // do I need to do anything special here for this?
  348. // Maybe -- We would save special ports that don't show up
  349. // (StarDock/Special) before. We don't know (at this point) if this is warps
  350. // or ports.
  351. return;
  352. }
  353. if (line.empty()) {
  354. SL_parser = nullptr;
  355. return;
  356. }
  357. // parse cimline
  358. // size_t pos = line.find('%');
  359. // std::string work = line;
  360. // if (pos == line.npos) {
  361. if (in(line, "%")) {
  362. // portcim
  363. struct port p = parse_portcim(line);
  364. if (p.sector == 0)
  365. BUGZ_LOG(fatal) << "portcim: FAIL [" << line << "]";
  366. else
  367. BUGZ_LOG(fatal) << "portcim: " << p;
  368. galaxy.add_port(p);
  369. } else {
  370. // warpcim
  371. BUGZ_LOG(fatal) << "warpcim: [" << line << "]";
  372. auto warps = split(line);
  373. sector_warps sw;
  374. for (auto const &w : warps) {
  375. if (sw.sector == 0) {
  376. sw.sector = stoi(w);
  377. } else {
  378. sw.add(stoi(w));
  379. }
  380. }
  381. BUGZ_LOG(fatal) << "warpcim: " << sw;
  382. galaxy.add_warp(sw);
  383. }
  384. }
  385. void Director::SL_thiefline(const std::string &line) {
  386. size_t pos = line.find("Suddenly you're Busted!");
  387. bool busted = pos != line.npos;
  388. if (busted) {
  389. BUGZ_LOG(fatal) << "set bust";
  390. SL_parser = nullptr;
  391. } else {
  392. pos = line.find("(You realize the guards saw you last time!)");
  393. if (pos != line.npos) SL_parser = nullptr;
  394. }
  395. // Are those the two ways to exit from this state?
  396. }
  397. void Director::SL_sectorline(const std::string &line) {
  398. BUGZ_LOG(fatal) << "sectorline: [" << line << "]";
  399. if (line.empty()) {
  400. SL_parser = nullptr;
  401. } else {
  402. /*
  403. sectorline: [Sector : 926 in The Federation.]
  404. sectorline: [Beacon : FedSpace, FedLaw Enforced]
  405. sectorline: [Ports : Stargate Alpha I, Class 9 (Special) (StarDock)]
  406. sectorline: [Traders : Civilian phil, w/ 30 ftrs,]
  407. sectorline: [ in Star Stomper (Sverdlov Merchant Cruiser)]
  408. sectorline: [Warps to Sector(s) : 70 - 441 - 575 - 600 - 629 - 711]
  409. sectorline: [Warps to Sector(s) : 70 - (475) - 569]
  410. */
  411. if (in(line, "Sector :")) {
  412. current_sector = stoi(line.substr(10));
  413. BUGZ_LOG(warning) << "SECTOR: " << current_sector;
  414. }
  415. if (in(line, "Ports :")) {
  416. std::string port_class;
  417. size_t pos = line.find(", Class ");
  418. if (pos != std::string::npos) {
  419. pos += 8;
  420. int class_ = stoi(line.substr(pos));
  421. BUGZ_LOG(fatal) << "PORT: " << class_;
  422. galaxy.add_port(current_sector, class_);
  423. }
  424. }
  425. if (in(line, "Warps to Sector(s) :")) {
  426. std::string temp = line.substr(20);
  427. replace(temp, " - ", " ");
  428. // unexplored sectors ()
  429. // Should I track these?
  430. replace(temp, "(", "");
  431. replace(temp, ")", "");
  432. sector_warps sw;
  433. auto warps = split(temp);
  434. sw.sector = current_sector;
  435. for (auto const &w : warps) {
  436. sw.add(stoi(w));
  437. }
  438. BUGZ_LOG(fatal) << "WARPS: " << sw;
  439. galaxy.add_warp(sw);
  440. }
  441. }
  442. }
  443. void Director::SL_portline(const std::string &line) {
  444. if (line.empty()) {
  445. SL_parser = nullptr;
  446. return;
  447. }
  448. /*
  449. SL: [ Items Status Trading % of max OnBoard]
  450. SL: [ ----- ------ ------- -------- -------]
  451. SL: [Fuel Ore Buying 3000 100% 0]
  452. SL: [Organics Buying 3000 100% 0]
  453. SL: [Equipment Buying 3000 100% 0]
  454. SL: []
  455. SL: [Commerce report for: 03:51:56 PM Mon Oct 24, 2033 You can buy:]
  456. SL: [A Cargo holds : 650 credits / next hold 0]
  457. SL: [B Fighters : 233 credits per fighter 75]
  458. SL: [C Shield Points : 116 credits per point 100]
  459. SL: []
  460. */
  461. BUGZ_LOG(info) << "portline : " << line;
  462. if (in(line, "%")) {
  463. // size_t pos = line.find('%');
  464. // if (pos != line.npos) {
  465. // Ok, this is a valid portline
  466. std::string work = line;
  467. replace(work, "Fuel Ore", "Fuel");
  468. auto parts = split(work);
  469. BUGZ_LOG(fatal) << "portline split:";
  470. for (auto const p : parts) {
  471. BUGZ_LOG(fatal) << p;
  472. }
  473. // BUGZ_LOG(fatal) << "portline split : [" << parts << "]";
  474. }
  475. }
  476. void Director::SL_warpline(const std::string &line) {
  477. if (line.empty()) {
  478. SL_parser = nullptr;
  479. return;
  480. }
  481. // process warp line
  482. BUGZ_LOG(fatal) << "warpline: [" << line << "]";
  483. }