director.cpp 13 KB

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