director.cpp 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326
  1. #include "director.h"
  2. #include <boost/format.hpp>
  3. #include <cctype>
  4. #include "ansicolor.h"
  5. #include "boxes.h"
  6. #include "galaxy.h"
  7. #include "logging.h"
  8. #include "scripts.h"
  9. #include "utils.h"
  10. Director::Director() {
  11. BUGZ_LOG(warning) << "Director::Director()";
  12. // active = false;
  13. game = 0; // not in a game
  14. galaxy.reset();
  15. // do everything proxy_deactivate does ...
  16. // proxy_deactivate();
  17. active = false;
  18. // reset everything back to good state
  19. talk_direct = true;
  20. show_client = true;
  21. count = 0;
  22. /*
  23. Setup StringFunc for SL_parser:
  24. Construct these once, rather then every single time we need them.
  25. */
  26. SF_cimline = [this](const std::string &s) { this->SL_cimline(s); };
  27. SF_sectorline = [this](const std::string &s) { this->SL_sectorline(s); };
  28. SF_portline = [this](const std::string &s) { this->SL_portline(s); };
  29. SF_warpline = [this](const std::string &s) { this->SL_warpline(s); };
  30. SF_infoline = [this](const std::string &s) { this->SL_infoline(s); };
  31. SF_densityline = [this](const std::string &s) { this->SL_densityline(s); };
  32. SF_computer_portline = [this](const std::string &s) {
  33. this->SL_computer_portline(s);
  34. };
  35. SF_planetline = [this](const std::string &s) { this->SL_planetline(s); };
  36. build_menu();
  37. }
  38. Director::~Director() { BUGZ_LOG(warning) << "Director::~Director()"; }
  39. void Director::client_input(const std::string &input) {
  40. // If we're already active, don't try to activate.
  41. if (chain) {
  42. chain->client_input(input);
  43. return;
  44. }
  45. if (active) {
  46. if (input == "Q" || input == "q") proxy_deactivate();
  47. return;
  48. } else if (input == "\x1b" || input == "~") {
  49. std::string &prompt = current_prompt;
  50. BUGZ_LOG(trace) << "ACTIVATE prompt shows: [" << prompt << "]";
  51. if (prompt == "Selection (? for menu): ") {
  52. to_client(
  53. "\n\rThere's not much we can do here. Activate in-game at a "
  54. "Command prompt.\n\r");
  55. to_client(current_raw_prompt);
  56. return;
  57. }
  58. // easter-eggs:
  59. if (prompt == "Enter your choice: ") {
  60. ANSIColor c1(COLOR::CYAN, ATTR::BOLD);
  61. ANSIColor c2(COLOR::WHITE, ATTR::BOLD);
  62. to_client(std::string("\n\r") + c1() + "I'd choose " + c2() + "`T`" +
  63. c1() + ", but that's how I was coded.\n\r");
  64. // "\n\r\x1b[1;36mI'd choose \x1b[1;37m`T`\x1b[1;36m, but "
  65. // "that's how I was coded.\n\r");
  66. to_client(current_raw_prompt);
  67. return;
  68. }
  69. // easter-egg
  70. if (prompt == "[Pause]") {
  71. ANSIColor c1(COLOR::CYAN, ATTR::BOLD);
  72. to_client(std::string(" ") + c1() + "PAWS" + reset() + "\n\r");
  73. to_client(current_raw_prompt);
  74. return;
  75. }
  76. if (at_planet_prompt(prompt)) {
  77. // future: If activated at planet menu, activate the planet upgrade
  78. // script! (Maybe). If I can figure out what planet it is/and where.
  79. to_client("\n\r\x1b[0mFUTURE: Activate the planet upgrade script.\n\r");
  80. to_client(current_raw_prompt);
  81. return;
  82. }
  83. if (at_command_prompt(prompt)) {
  84. proxy_activate();
  85. return;
  86. }
  87. }
  88. // Ok...
  89. if (talk_direct) to_server(input);
  90. }
  91. void Director::server_line(const std::string &line,
  92. const std::string &raw_line) {
  93. // check for if we entered game/left game
  94. if (line.find("TradeWars Game Server ") != std::string::npos) {
  95. // Inject our proxy activation message
  96. to_client("\rTradeWars Proxy v2++ READY (~ or ESC to activate)\n\r");
  97. /*
  98. There's a delay here when I save the game data.
  99. I've moved it futher down. Hide it at a prompt, so it isn't so
  100. noticeable.
  101. */
  102. // reset "active game" -- we're at the TWGS main menu
  103. }
  104. if (line.find("Selection (? for menu): ") != std::string::npos) {
  105. char ch = line[line.length() - 1];
  106. if (ch >= 'A' && ch < 'Q') {
  107. if ((game) && (game != ch)) {
  108. galaxy.save();
  109. }
  110. game = ch;
  111. BUGZ_LOG(warning) << "GAME " << game << " activated!";
  112. // TODO: Load game data
  113. galaxy.game = game;
  114. galaxy.username = username;
  115. galaxy.load();
  116. // YAML loaded, set sensible default config values (if missing).
  117. if (!galaxy.config.contains("display_lines")) {
  118. galaxy.config["display_lines"] = 20;
  119. }
  120. galaxy.meta["help"]["display_lines"] =
  121. "Number of report lines to display";
  122. if (!galaxy.config.contains("burnt_percent")) {
  123. galaxy.config["burnt_percent"] = 40;
  124. }
  125. galaxy.meta["help"]["burnt_percent"] =
  126. "Don't display ports in report below this percent";
  127. }
  128. // not needed (handled by above Game Server check).
  129. if (ch == 'Q') {
  130. if (game) {
  131. // TODO: Save galaxy data
  132. galaxy.save();
  133. }
  134. game = 0;
  135. galaxy.reset();
  136. }
  137. }
  138. if (game) {
  139. // in-game parsing here.
  140. /*
  141. ____ _ _
  142. / ___| ___ _ ____ _____ _ __ | | (_)_ __ ___
  143. \___ \ / _ \ '__\ \ / / _ \ '__| | | | | '_ \ / _ \
  144. ___) | __/ | \ V / __/ | | |___| | | | | __/
  145. |____/ \___|_| \_/ \___|_| |_____|_|_| |_|\___|
  146. ____ _
  147. | _ \ __ _ _ __ ___(_)_ __ __ _
  148. | |_) / _` | '__/ __| | '_ \ / _` |
  149. | __/ (_| | | \__ \ | | | | (_| |
  150. |_| \__,_|_| |___/_|_| |_|\__, |
  151. |___/
  152. This is where all of the server lines are gleaned for all the
  153. information that we can get out of them.
  154. // When activating the computer
  155. SP: [Command [TL=00:00:00]:[926] (?=Help)? : ]
  156. Sector: 926
  157. CI: [c]
  158. SL: [Command [TL=00:00:00]:[926] (?=Help)? : C]
  159. SL: [<Computer>]
  160. SL: []
  161. SL: [<Computer activated>]
  162. SL: []
  163. SP: [Computer command [TL=00:00:00]:[926] (?=Help)? ]
  164. // deactivating the computer
  165. SL: [Computer command [TL=00:00:00]:[926] (?=Help)? Q]
  166. SL: []
  167. SL: [<Computer deactivated>]
  168. SL: []
  169. */
  170. if (line == "<Port>") {
  171. SL_parser = SF_portline;
  172. }
  173. if (line ==
  174. " Corporate Planet Scan "
  175. " " ||
  176. line ==
  177. " Personal Planet Scan "
  178. " ") {
  179. SL_parser = SF_planetline;
  180. }
  181. /*
  182. if (startswith(line, " Items Status Trading % of max OnBoard"))
  183. SL_parser = SF_portline;
  184. */
  185. if (endswith(line, "Relative Density Scan")) {
  186. galaxy.dscan.reset(current_sector);
  187. SL_parser = SF_densityline;
  188. }
  189. if (startswith(line, "Sector : ")) SL_parser = SF_sectorline;
  190. if (line == ": ") SL_parser = SF_cimline;
  191. if (line == "<Info>") SL_parser = SF_infoline;
  192. if (startswith(line, "What sector is the port in? [")) {
  193. // Computer Port Report
  194. // SL: [What sector is the port in? [611] 4]
  195. size_t pos = line.rfind(' ');
  196. computer_port_sector = stoi(line.substr(pos));
  197. SL_parser = SF_computer_portline;
  198. }
  199. }
  200. if (SL_parser) {
  201. SL_parser(line);
  202. }
  203. if (chain) {
  204. chain->server_line(line, raw_line);
  205. }
  206. }
  207. void Director::server_prompt(const std::string &prompt,
  208. const std::string &raw_prompt) {
  209. current_prompt = prompt;
  210. current_raw_prompt = raw_prompt;
  211. if (game) {
  212. if (prompt == "Selection (? for menu): ") {
  213. galaxy.save();
  214. game = 0;
  215. galaxy.reset();
  216. }
  217. // in-game parsing here.
  218. // if (startswith(prompt, "Command [") && endswith(prompt, "] (?=Help)? :
  219. // ")) {
  220. if (at_command_prompt(prompt)) {
  221. std::string sector_text;
  222. size_t before, after;
  223. before = prompt.find("]:[") + 3;
  224. after = prompt.find("] (?=Help)");
  225. sector_text = prompt.substr(before, after - before);
  226. current_sector = stoi(sector_text);
  227. BUGZ_LOG(info) << "current_sector = " << current_sector;
  228. }
  229. }
  230. /*
  231. if (emit_server_prompt)
  232. emit_server_prompt(prompt);
  233. */
  234. if (chain) chain->server_prompt(prompt);
  235. }
  236. void Director::build_menu(void) {
  237. main_menu = std::make_shared<MenuDispatch>(*this);
  238. MenuDispatch *md = static_cast<MenuDispatch *>(&(*main_menu));
  239. ANSIColor bcolor(COLOR::YELLOW, COLOR::BLUE, ATTR::BOLD);
  240. ANSIColor tcolor(COLOR::WHITE, COLOR::BLUE, ATTR::BOLD);
  241. ANSIColor mocolor(COLOR::CYAN, ATTR::BOLD);
  242. md->menu_box_color = bcolor(); // "\x1b[1;33;44m";
  243. md->menu_text_color = tcolor(); // "\x1b[1;37;44m";
  244. md->menu_title = "Proxy Menu";
  245. md->menu_options_color = mocolor(); // "\x1b[1;36;40m";
  246. ANSIColor by{1, 33};
  247. ANSIColor cyan{36};
  248. ANSIColor bg{1, 32};
  249. std::string prompt = by() + "M" + cyan() + "ain " + by() + "P" + cyan() +
  250. "roxy " + bg() + "=>" + reset() + " ";
  251. md->menu_prompt = prompt; // "Main Proxy => ";
  252. // "\x1b[0;31;40m\xdb\xb2\xb1\xb0 \x1b[31;40mRED "
  253. // "\x1b[32;40mGREEN\x1b[30;42m\xdb\xb2\xb1\xb0 \x1b[0m : ";
  254. md->lazy = true;
  255. md->menu = {{"C", "Configure"},
  256. {"D", "Display Report"},
  257. {"E", "Export Data/Save"},
  258. {"I", "Information"},
  259. {"P", "Port CIM"},
  260. {"W", "Warp CIM"},
  261. {"T", "Trading Report (same as D)"},
  262. {"S", "Scripts"},
  263. {"X", "eXit"}};
  264. md->setNotify([this]() { this->menu_choice(); });
  265. cim = std::make_shared<CIMDispatch>(*this);
  266. cim->setNotify([this]() { this->cim_done(); });
  267. }
  268. void Director::proxy_activate(void) {
  269. active = true; // yes, set keep-alive timer.
  270. to_server(" "); // start keep-alive timer.
  271. // set other values we need
  272. talk_direct = false;
  273. show_client = false;
  274. /*
  275. Wait a minute .. this might be confusing.
  276. Shouldn't I send them the current prompt?
  277. Just in case we abort in the middle of something?!?
  278. */
  279. old_prompt = current_prompt;
  280. old_raw_prompt = current_raw_prompt;
  281. to_client("\x1b[0m\n\r");
  282. /*
  283. ╔══════════════════════════════╗
  284. ║ TradeWars Proxy Active ║
  285. ╚══════════════════════════════╝
  286. -=>
  287. */
  288. Boxes box(30, 1, true);
  289. box.boxcolor = "\x1b[1;33;44m";
  290. box.textcolor = "\x1b[1;33;44m";
  291. to_client(box.top());
  292. std::string output = " TradeWars Proxy \x1b[5mActive\x1b[0;1;33;44m ";
  293. to_client(box.row(output));
  294. to_client(box.bottom());
  295. if (galaxy.meta.contains("port_CIM")) {
  296. time_t last_port_cim_report = galaxy.meta["port_CIM"].get<int>();
  297. int seconds_ago = time_t_now() - last_port_cim_report;
  298. int minutes_ago = seconds_ago / 60;
  299. BUGZ_LOG(fatal) << "port_CIM was " << minutes_ago << " minutes ago.";
  300. if (minutes_ago >= 60) {
  301. float hours_ago = minutes_ago / 60.0;
  302. std::string message =
  303. str(boost::format(
  304. "Warning: Last Port CIM Refresh was %1$0.2f hours ago.\n\r") %
  305. hours_ago);
  306. to_client(message);
  307. }
  308. } else {
  309. BUGZ_LOG(fatal) << "no meta port_CIM value seen.";
  310. }
  311. chain = main_menu;
  312. main_menu->activate();
  313. /*
  314. // Using InputDispatch -- and see have_input
  315. std::shared_ptr<Dispatch> readline = std::make_shared<InputDispatch>(*this);
  316. chain = readline;
  317. InputDispatch *id = static_cast<InputDispatch *>(&(*readline));
  318. id->prompt = "\x1b[0m\x1b[1;33;44m-=>\x1b[0m \x1b[1;37;44m";
  319. id->max_length = 15;
  320. id->setNotify([this]() { this->have_input(); });
  321. readline->activate();
  322. */
  323. }
  324. void Director::menu_choice(void) {
  325. MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*chain));
  326. if (md) {
  327. if (md->input.empty()) {
  328. to_client("Menu aborted.\n\r");
  329. proxy_deactivate();
  330. return;
  331. } else {
  332. switch (md->input[0]) {
  333. case 'C': // configure
  334. config_edit();
  335. return;
  336. break;
  337. case 'D':
  338. case 'T': // display trading report
  339. {
  340. auto pptv = galaxy.find_best_trades();
  341. std::string output;
  342. galaxy.sort_port_pair_type(pptv);
  343. int max_display = 20;
  344. if (galaxy.config.contains("display_lines"))
  345. max_display = galaxy.config["display_lines"].get<int>();
  346. else
  347. galaxy.config["display_lines"] = max_display;
  348. if ((max_display <= 0) || (max_display > 255)) {
  349. max_display = 255;
  350. galaxy.config["display_lines"] = 255;
  351. }
  352. const int per_line = 5;
  353. int count = 0;
  354. int line = 0;
  355. std::string display_line;
  356. ANSIColor by{1, 33}; // yellow
  357. ANSIColor cyan{36}; // cyan
  358. ANSIColor bg{1, 32}; // bright green
  359. ANSIColor bb{1, 34}; // bright blue
  360. for (auto const &ppt : pptv) {
  361. output =
  362. str(boost::format("%1%%2$5d%3%:%4%%5$-5d%3%(%6%%7$d%3%) ") %
  363. by() % ppt.s1 % cyan() % bg() % ppt.s2 % bb() % ppt.type);
  364. display_line.append(output);
  365. ++count;
  366. if (count == per_line) {
  367. count = 0;
  368. display_line.append("\n\r");
  369. to_client(display_line);
  370. display_line.clear();
  371. ++line;
  372. }
  373. if (line == max_display) break;
  374. }
  375. if (count != 0) {
  376. display_line.append("\n\r");
  377. to_client(display_line);
  378. display_line.clear();
  379. }
  380. // We got < 5 lines, and max_display is > 5. Offer suggestion:
  381. if ((line < 5) && (max_display > 5)) {
  382. // suggestion:
  383. to_client(
  384. "HINT: For more lines, try reducing the burnt_percent?\n\r");
  385. }
  386. } break;
  387. case 'E': // Export Data/Save
  388. to_client("Saving...");
  389. galaxy.save();
  390. to_client("\rSaved....\n\r");
  391. break;
  392. case 'I': // Information
  393. information();
  394. break;
  395. case 'P': // Port CIM
  396. // Since we're adding/updating, we don't lose our
  397. // type 0 ports. Type 9 stays at 9.
  398. galaxy.meta["port_CIM"] = (int)time_t_now();
  399. chain = cim;
  400. to_server("^RQ");
  401. {
  402. std::string text = str(boost::format("Port CIM Report (%1%)\n\r") %
  403. galaxy.ports.size());
  404. // to_client("Port CIM Report\n\r");
  405. to_client(text);
  406. }
  407. chain->activate();
  408. return;
  409. break;
  410. case 'W': // Warp CIM
  411. chain = cim;
  412. to_server("^IQ");
  413. {
  414. std::string text = str(boost::format("Warp CIM Report (%1%)\n\r") %
  415. galaxy.warps.size());
  416. // to_client("Warp CIM Report\n\r");
  417. to_client(text);
  418. }
  419. chain->activate();
  420. return;
  421. break;
  422. // case 'T': // Trading Report
  423. // break;
  424. case 'S': // Scripts
  425. {
  426. init_scripts_menu();
  427. chain = scripts_menu;
  428. chain->activate();
  429. return;
  430. } break;
  431. case 'X': // Exit
  432. proxy_deactivate();
  433. return;
  434. }
  435. /*
  436. std::string text = str(
  437. boost::format("Back from Menu [%1%] was selected.\n\r") %
  438. md->input);
  439. to_client(text);
  440. */
  441. md->activate();
  442. }
  443. }
  444. }
  445. MenuDispatch *Director::init_scripts_menu(void) {
  446. MenuDispatch *md;
  447. if (scripts_menu) {
  448. md = dynamic_cast<MenuDispatch *>(&(*scripts_menu));
  449. return md;
  450. } else {
  451. scripts_menu = std::make_shared<MenuDispatch>(*this);
  452. md = static_cast<MenuDispatch *>(&(*scripts_menu));
  453. md->menu_box_color = "\x1b[0;32;40m";
  454. md->menu_text_color = "\x1b[1;32;40m";
  455. md->menu_title = "Scripts Menu";
  456. md->menu_options_color = "\x1b[1;32;40m";
  457. md->lazy = false;
  458. ANSIColor by{1, 33};
  459. ANSIColor cyan{36};
  460. ANSIColor bg{1, 32};
  461. std::string prompt = by() + "S" + cyan() + "cript " + by() + "M" + cyan() +
  462. "enu " + bg() + "=>" + reset() + " ";
  463. md->menu_prompt = prompt; // " SCRIPT : ";
  464. md->menu = {{"!", "Terror"},
  465. {"T", "Trade"},
  466. {"S", "Safe Move"},
  467. {"C", "Closest Trade"},
  468. {"N", "Nearest Unexplored"},
  469. {"V", "Voyager Explorer"},
  470. {"U", "Upgrade Planet Pants"},
  471. {"X", "Exit Scripts"}};
  472. md->setNotify([this]() { this->scripts_done(); });
  473. return md;
  474. }
  475. }
  476. void Director::scripts_done(void) {
  477. // Was script selected? If so, run it!
  478. // otherwise, back to the menu we go...
  479. MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*scripts_menu));
  480. if (md) {
  481. if (md->input.empty()) {
  482. to_client("Scripts aborted.\n\r");
  483. scripts_menu.reset();
  484. proxy_deactivate();
  485. return;
  486. } else {
  487. switch (md->input[0]) {
  488. case 'T': // Trade
  489. {
  490. script = std::make_shared<TraderDispatch>(*this);
  491. TraderDispatch *ts = static_cast<TraderDispatch *>(&((*script)));
  492. ts->setNotify([this]() { this->proxy_deactivate(); });
  493. // Locate best trades
  494. auto found = galaxy.find_trades(current_sector, false);
  495. if (found.empty()) {
  496. to_client(
  497. "No Trades found. Port burnt (CONFIG: lower burnt_percent?) "
  498. "or no ports around.\n\r");
  499. proxy_deactivate();
  500. return;
  501. }
  502. // sort first?
  503. galaxy.sort_port_pair_type(found);
  504. BUGZ_LOG(fatal) << "Found " << found.size() << " possible trade(s).";
  505. BUGZ_LOG(fatal) << "Best: " << found[0].s1 << "," << found[0].s2
  506. << " : " << found[0].type;
  507. // Set parameters
  508. ts->port[0] = found[0].s1;
  509. ts->port[1] = found[0].s2;
  510. ts->type = found[0].type;
  511. ts->trades = found[0].trades;
  512. chain = script;
  513. chain->activate();
  514. return;
  515. } break;
  516. case 'S': {
  517. script = std::make_shared<MoveDispatch>(*this);
  518. MoveDispatch *md = static_cast<MoveDispatch *>(&((*script)));
  519. md->setNotify([this]() { this->proxy_deactivate(); });
  520. md->move_to = 1;
  521. chain = script;
  522. chain->activate();
  523. return;
  524. } break;
  525. case '!': {
  526. script = std::make_shared<ScriptTerror>(*this);
  527. ScriptTerror *st = static_cast<ScriptTerror *>(&(*script));
  528. st->setNotify([this]() {
  529. script.reset();
  530. this->proxy_deactivate();
  531. });
  532. chain = script;
  533. chain->activate();
  534. return;
  535. } break;
  536. // }
  537. case 'C': {
  538. auto best = galaxy.find_closest(current_sector);
  539. if (best.type != 0) {
  540. std::string text =
  541. str(boost::format("Best/Closest: %1% with %2% & %3%\n\r") %
  542. best.type % best.s1 % best.s2);
  543. to_client(text);
  544. } else {
  545. to_client("I don't see any best trades.\n\r");
  546. }
  547. } break;
  548. case 'N': {
  549. sector_type s = galaxy.find_nearest_unexplored(current_sector);
  550. if (s != 0) {
  551. std::string text = str(boost::format("Sector: %1%\n\r") % s);
  552. to_client(text);
  553. } else {
  554. to_client("I don't see any unexplored.\n\r");
  555. }
  556. } break;
  557. case 'V': {
  558. script = std::make_shared<ScriptVoyager>(*this);
  559. ScriptVoyager *sv = static_cast<ScriptVoyager *>(&(*script));
  560. sv->setNotify([this]() {
  561. script.reset();
  562. this->proxy_deactivate();
  563. });
  564. chain = script;
  565. chain->activate();
  566. return;
  567. } break;
  568. case 'Q':
  569. chain = main_menu;
  570. main_menu->activate();
  571. return;
  572. break;
  573. }
  574. }
  575. }
  576. proxy_activate();
  577. // And to end scripts, we do .. what exactly?
  578. // DEBUG: Ok, why does everything work OK if I reset the scripts_menu
  579. // here?? probably do want to destroy scripts here. ;)
  580. // scripts_menu.reset();
  581. // proxy_deactivate();
  582. }
  583. /**
  584. * @brief Setup Config Input
  585. *
  586. * @return DispatchInput*
  587. */
  588. InputDispatch *Director::init_config_input(void) {
  589. InputDispatch *id;
  590. if (config_input) {
  591. // Yes, it has been setup before.
  592. id = dynamic_cast<InputDispatch *>(&(*config_input));
  593. ANSIColor by{1, 33};
  594. ANSIColor cyan{36};
  595. ANSIColor bg{1, 32};
  596. std::string prompt =
  597. by() + "C" + cyan() + "onfig " + bg() + "=>" + reset() + " ";
  598. id->prompt = prompt; // "Config => ";
  599. id->numeric = true;
  600. id->max_length = 3;
  601. config_item.clear();
  602. return id;
  603. } else {
  604. // set it up
  605. config_input = std::make_shared<InputDispatch>(*this);
  606. id = static_cast<InputDispatch *>(&(*config_input));
  607. ANSIColor by{1, 33};
  608. ANSIColor cyan{36};
  609. ANSIColor bg{1, 32};
  610. std::string prompt =
  611. by() + "C" + cyan() + "onfig " + bg() + "=>" + reset() + " ";
  612. id->prompt = prompt; // "Config => ";
  613. id->numeric = true;
  614. id->max_length = 3;
  615. id->setNotify([this]() { this->config_have_input(); });
  616. config_item.clear();
  617. return id;
  618. }
  619. }
  620. void Director::config_edit(void) {
  621. // display current config
  622. std::string menu_box_color = "\x1b[1;33;44m";
  623. std::string menu_text_color = "\x1b[1;37;44m";
  624. auto abox = Boxes::alert(" Configuration: ", menu_box_color,
  625. menu_text_color, 20, 1, true);
  626. for (auto line : abox) {
  627. to_client(line);
  628. }
  629. // to_client("Configuration:\n\r");
  630. int item = 1;
  631. ANSIColor number(COLOR::CYAN);
  632. ANSIColor key(COLOR::GREEN, ATTR::BOLD);
  633. ANSIColor value(COLOR::BLUE, ATTR::BOLD);
  634. for (auto const &cfg : galaxy.config.items()) {
  635. // for (auto const &cfg : galaxy.config) {
  636. std::string output =
  637. str(boost::format("%1%%2$2d %3%%4$20s: %5%%6$s%7%\n\r") % number() %
  638. item % key() % cfg.key() % value() % cfg.value() % reset());
  639. to_client(output);
  640. ++item;
  641. }
  642. std::string message =
  643. number() + "Enter number to edit, " + key() + "blank to exit.\n\r";
  644. // to_client("Enter number to edit, blank to exit.\n\r");
  645. to_client(message);
  646. // setup call to config_input:
  647. InputDispatch *id = init_config_input();
  648. chain = config_input;
  649. id->activate();
  650. // to return to the menu:
  651. // MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*chain));
  652. // md->activate();
  653. }
  654. void Director::config_have_input(void) {
  655. InputDispatch *id = dynamic_cast<InputDispatch *>(&(*config_input));
  656. if (config_item.empty()) {
  657. // This is a config menu selection
  658. if (id->input.empty()) {
  659. // We're done here. Return to menu.
  660. chain = main_menu;
  661. MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*chain));
  662. md->activate();
  663. // destroy the input? yes.
  664. config_input.reset();
  665. return;
  666. } else {
  667. int item = sstoi(id->input);
  668. if ((item < 1) || (item > (int)galaxy.config.size())) {
  669. // selection out of range - redisplay config menu
  670. to_client("What? I didn't see that item.\n\r");
  671. config_edit();
  672. return;
  673. } else {
  674. int pos = 1;
  675. for (auto const &c : galaxy.config.items()) {
  676. if (pos == item) {
  677. // got it!
  678. ANSIColor key(COLOR::GREEN, ATTR::BOLD);
  679. ANSIColor value(COLOR::BLUE, ATTR::BOLD);
  680. config_item = c.key();
  681. std::string output =
  682. str(boost::format("%1%%2% : %3%%4%\n\r") % key() % config_item %
  683. value() % galaxy.meta["help"][config_item]);
  684. to_client(output);
  685. id->max_length = 30;
  686. id->numeric = false;
  687. ANSIColor by{1, 33};
  688. ANSIColor cyan{36};
  689. ANSIColor bg{1, 32};
  690. std::string prompt =
  691. by() + "C" + cyan() + "hange to " + bg() + "=>" + reset() + " ";
  692. id->prompt = prompt;
  693. id->activate();
  694. return;
  695. };
  696. ++pos;
  697. }
  698. to_client("What? I didn't find that item?\n\r");
  699. config_edit();
  700. return;
  701. }
  702. }
  703. } else {
  704. // This is a config item edit
  705. if (id->input.empty()) {
  706. to_client("No change.\n\r");
  707. config_edit();
  708. return;
  709. } else {
  710. BUGZ_LOG(fatal) << "Config EDIT: " << config_item << " = " << id->input;
  711. galaxy.config[config_item] = id->input;
  712. config_edit();
  713. return;
  714. }
  715. }
  716. }
  717. void Director::have_input(void) {
  718. ++count;
  719. InputDispatch *id = dynamic_cast<InputDispatch *>(&(*chain));
  720. if (id) {
  721. std::string output =
  722. str(boost::format("Your Input (%2%): [%1%]\n\r") % id->input % count);
  723. to_client("\x1b[0m");
  724. to_client(output);
  725. } else {
  726. proxy_deactivate();
  727. return;
  728. }
  729. if (count > 3) {
  730. proxy_deactivate();
  731. } else {
  732. chain->activate();
  733. }
  734. }
  735. void Director::cim_done(void) {
  736. BUGZ_LOG(info) << "CIM done";
  737. chain = main_menu;
  738. main_menu->activate();
  739. }
  740. void Director::information(void) {
  741. std::string output;
  742. to_client("I currently know the following:\n\r");
  743. output = str(
  744. boost::format("Ports: %1%, Sectors: %2%, Config: %3%, Meta: %4%\n\r") %
  745. galaxy.ports.size() % galaxy.warps.size() % galaxy.config.size() %
  746. galaxy.meta.size());
  747. to_client(output);
  748. }
  749. void Director::proxy_deactivate(void) {
  750. active = false;
  751. // reset everything back to good state
  752. talk_direct = true;
  753. show_client = true;
  754. chain.reset();
  755. to_client("\n\r");
  756. to_client(current_raw_prompt);
  757. }
  758. /*
  759. Server Line Parsing Routines
  760. */
  761. void Director::SL_cimline(const std::string &line) {
  762. if (line == ": ENDINTERROG") {
  763. SL_parser = nullptr;
  764. return;
  765. }
  766. if (line == ": ") {
  767. // do I need to do anything special here for this?
  768. // Maybe -- We would save special ports that don't show up
  769. // (StarDock/Special) before. We don't know (at this point) if this is
  770. // warps or ports.
  771. return;
  772. }
  773. if (line.empty()) {
  774. SL_parser = nullptr;
  775. return;
  776. }
  777. // parse cimline
  778. // size_t pos = line.find('%');
  779. // std::string work = line;
  780. // if (pos == line.npos) {
  781. if (in(line, "%")) {
  782. // portcim
  783. struct port p = parse_portcim(line);
  784. if (p.sector == 0)
  785. BUGZ_LOG(fatal) << "portcim: FAIL [" << line << "]";
  786. else
  787. BUGZ_LOG(trace) << "portcim: " << p;
  788. galaxy.add_port(p);
  789. } else {
  790. // warpcim
  791. // BUGZ_LOG(fatal) << "warpcim: [" << line << "]";
  792. auto warps = split(line);
  793. sector_warps sw;
  794. for (auto const &w : warps) {
  795. if (sw.sector == 0) {
  796. sw.sector = stoi(w);
  797. } else {
  798. sw.add(stoi(w));
  799. }
  800. }
  801. BUGZ_LOG(trace) << "warpcim: " << sw;
  802. galaxy.add_warp(sw);
  803. }
  804. }
  805. void Director::SL_thiefline(const std::string &line) {
  806. size_t pos = line.find("Suddenly you're Busted!");
  807. bool busted = pos != line.npos;
  808. if (busted) {
  809. BUGZ_LOG(fatal) << "set bust";
  810. SL_parser = nullptr;
  811. } else {
  812. pos = line.find("(You realize the guards saw you last time!)");
  813. if (pos != line.npos) SL_parser = nullptr;
  814. }
  815. // Are those the two ways to exit from this state?
  816. }
  817. void Director::SL_sectorline(const std::string &line) {
  818. BUGZ_LOG(fatal) << "sectorline: [" << line << "]";
  819. if (line.empty()) {
  820. SL_parser = nullptr;
  821. } else {
  822. /*
  823. sectorline: [Sector : 926 in The Federation.]
  824. sectorline: [Beacon : FedSpace, FedLaw Enforced]
  825. sectorline: [Ports : Stargate Alpha I, Class 9 (Special) (StarDock)]
  826. sectorline: [Traders : Civilian phil, w/ 30 ftrs,]
  827. sectorline: [ in Star Stomper (Sverdlov Merchant Cruiser)]
  828. sectorline: [Warps to Sector(s) : 70 - 441 - 575 - 600 - 629 - 711]
  829. sectorline: [Warps to Sector(s) : 70 - (475) - 569]
  830. What can we get from Traders : line? Can we get if they are hostile
  831. to us? We need to respond to "is powering up weapons" ... We can
  832. react faster then a person can!
  833. "phil is powering up weapons systems!"
  834. Also the auto-attack ones Ferrengi -- we need to auto-respond Retreat.
  835. */
  836. if (in(line, "Sector :")) {
  837. current_sector = stoi(line.substr(10));
  838. BUGZ_LOG(warning) << "SECTOR: " << current_sector;
  839. }
  840. if (in(line, "Ports :")) {
  841. std::string port_class;
  842. size_t pos = line.find(", Class ");
  843. if (pos != std::string::npos) {
  844. pos += 8;
  845. int class_ = stoi(line.substr(pos));
  846. BUGZ_LOG(fatal) << "PORT: " << class_;
  847. galaxy.add_port(current_sector, class_);
  848. }
  849. }
  850. if (in(line, "Warps to Sector(s) :")) {
  851. std::string temp = line.substr(20);
  852. replace(temp, " - ", " ");
  853. // unexplored sectors ()
  854. // Should I track these?
  855. replace(temp, "(", "");
  856. replace(temp, ")", "");
  857. sector_warps sw;
  858. auto warps = split(temp);
  859. sw.sector = current_sector;
  860. // what if there is only one warp?
  861. for (auto const &w : warps) {
  862. sw.add(stoi(w));
  863. }
  864. BUGZ_LOG(fatal) << "WARPS: " << sw;
  865. galaxy.add_warp(sw);
  866. }
  867. }
  868. }
  869. void Director::SL_densityline(const std::string &line) {
  870. BUGZ_LOG(fatal) << "densityline: [" << line << "]";
  871. if (line.empty()) {
  872. SL_parser = nullptr;
  873. return;
  874. }
  875. /*
  876. // Ensure this really is a density scan and not something else
  877. if (!in(line, "Sector") || !in(line, "Warps") || !in(line, "NavHaz") ||
  878. !in(line, "Anom")) {
  879. BUGZ_LOG(fatal) << "densityline: Invalid line.";
  880. SL_parser = nullptr;
  881. return;
  882. }
  883. if (not galaxy.meta["density"]) {
  884. galaxy.meta["density"] = YAML::Node();
  885. }
  886. */
  887. /*
  888. 0 1 2 3 4 5 6 7 8 9 10 11 12
  889. "Sector 55 ==> 0 Warps : 4 NavHaz : 0% Anom : No"
  890. "Sector ( 223) ==> 0 Warps : 3 NavHaz : 0% Anom : No"
  891. */
  892. if (in(line, "==>")) {
  893. std::string work = line;
  894. replace(work, ":", "");
  895. bool known = !in(work, "(");
  896. replace(work, "(", "");
  897. replace(work, ")", "");
  898. replace(work, "%", "");
  899. auto dense = split(work);
  900. // Parse our data
  901. sector_type sector = std::stoi(dense.at(1));
  902. uint16_t density = std::stoi(dense.at(3));
  903. uint16_t warps = std::stoi(dense.at(5));
  904. uint16_t navhaz = std::stoi(dense.at(7));
  905. bool anom = in(dense.at(9), "Yes");
  906. struct density d = {sector, density, warps, navhaz, anom, known};
  907. galaxy.dscan.add_scan(d);
  908. // Commit data
  909. BUGZ_LOG(warning) << "densityline: {sector=" << sector
  910. << " density=" << density << " warps=" << warps
  911. << " navhaz=" << navhaz << " anom=" << anom
  912. << " known=" << known << "}";
  913. /*
  914. if (galaxy.meta["density"][sector]) {
  915. galaxy.meta["density"][sector] = YAML::Node();
  916. }
  917. */
  918. // what(): [json.exception.type_error.305] cannot use operator[] with a numeric argument with object
  919. std::string sector_text = std::to_string(sector);
  920. galaxy.meta["density"][sector_text]["density"] = density;
  921. galaxy.meta["density"][sector_text]["warps"] = warps;
  922. galaxy.meta["density"][sector_text]["navhaz"] = navhaz;
  923. galaxy.meta["density"][sector_text]["anom"] = anom;
  924. galaxy.meta["density"][sector_text]["known"] = known;
  925. // Add a check to see if density is greater than 500
  926. // Add datetime stamp
  927. }
  928. }
  929. void Director::SL_portline(const std::string &line) {
  930. /*
  931. We take blank lines because we start at <Port>.
  932. Otherwise, we trigger on computer port requests.
  933. if (line.empty()) {
  934. SL_parser = nullptr;
  935. return;
  936. }
  937. */
  938. /*
  939. SL: [ Items Status Trading % of max OnBoard]
  940. SL: [ ----- ------ ------- -------- -------]
  941. SL: [Fuel Ore Buying 3000 100% 0]
  942. SL: [Organics Buying 3000 100% 0]
  943. SL: [Equipment Buying 3000 100% 0]
  944. SL: []
  945. SL: [Commerce report for: 03:51:56 PM Mon Oct 24, 2033 You can buy:]
  946. SL: [A Cargo holds : 650 credits / next hold 0]
  947. SL: [B Fighters : 233 credits per fighter 75]
  948. SL: [C Shield Points : 116 credits per point 100]
  949. SL: []
  950. */
  951. // BUGZ_LOG(info) << "portline : " << line;
  952. if (in(line, "%")) {
  953. // size_t pos = line.find('%');
  954. // if (pos != line.npos) {
  955. // Ok, this is a valid portline
  956. std::string work = line;
  957. replace(work, "Fuel Ore", "Fuel");
  958. auto parts = split(work);
  959. if (parts[0] == "Items") return;
  960. char c = tolower(parts[0][0]);
  961. int pos;
  962. char foe[4] = "foe";
  963. for (pos = 0; pos < 3; ++pos) {
  964. if (c == foe[pos]) break;
  965. }
  966. int amount = stoi(parts[2]);
  967. int percent = stoi(parts[3]);
  968. // update port
  969. auto port = galaxy.ports.find(current_sector);
  970. if (port != galaxy.ports.end()) {
  971. port->second.amount[pos] = amount;
  972. port->second.percent[pos] = percent;
  973. }
  974. /*
  975. BUGZ_LOG(fatal) << "portline split:";
  976. for (auto const p : parts) {
  977. BUGZ_LOG(fatal) << p;
  978. }
  979. */
  980. // Here's the end:
  981. if (parts[0] == "Equipment") SL_parser = nullptr;
  982. // BUGZ_LOG(fatal) << "portline split : [" << parts << "]";
  983. }
  984. }
  985. void Director::SL_warpline(const std::string &line) {
  986. if (line.empty()) {
  987. SL_parser = nullptr;
  988. return;
  989. }
  990. // process warp line
  991. BUGZ_LOG(fatal) << "warpline: [" << line << "]";
  992. }
  993. void Director::SL_infoline(const std::string &line) {
  994. static int state;
  995. if (line == "<Info>") {
  996. state = 0;
  997. galaxy.meta["info"] = json();
  998. }
  999. if (line.empty()) {
  1000. ++state;
  1001. if (state == 2) {
  1002. SL_parser = nullptr;
  1003. // clear out the existing ship data
  1004. galaxy.meta["ship"] = json();
  1005. // process the parsed information in meta["info"]
  1006. if (galaxy.meta["info"].contains("Total Holds")) {
  1007. std::string work = galaxy.meta["info"]["Total Holds"];
  1008. replace(work, "Fuel Ore", "Fuel");
  1009. auto parts = split(work, " - ");
  1010. int total_holds = stoi(parts[0]);
  1011. BUGZ_LOG(fatal) << "total holds: " << total_holds;
  1012. auto contents = split(parts[1]);
  1013. for (auto const &hold : contents) {
  1014. auto hold_amount = split(hold, "=");
  1015. BUGZ_LOG(fatal) << hold_amount[0] << " with " << hold_amount[1];
  1016. std::string key = hold_amount[0];
  1017. str_tolower(key);
  1018. // equipment = e
  1019. // organics = o
  1020. // fuel = f
  1021. // colonists = c
  1022. // empty = empty
  1023. if (key != "empty") {
  1024. key = key[0];
  1025. }
  1026. galaxy.meta["ship"]["holds"][key] = stoi(hold_amount[1]);
  1027. }
  1028. galaxy.meta["ship"]["holds"]["total"] = total_holds;
  1029. }
  1030. if (galaxy.meta["info"].contains("Turns to Warp")) {
  1031. // Why is this saying that this is a string?
  1032. int warp_turns = sstoi(json_str(galaxy.meta["info"]["Turns to Warp"]));
  1033. BUGZ_LOG(fatal) << "Turns to Warp: " << warp_turns;
  1034. galaxy.meta["ship"]["warp_turns"] = warp_turns;
  1035. }
  1036. if (galaxy.meta["info"].contains("LongRange Scan")) {
  1037. std::string scanner_text =
  1038. galaxy.meta["info"]["LongRange Scan"].get<std::string>();
  1039. char scanner = scanner_text[0];
  1040. BUGZ_LOG(fatal) << "Scanner: " << scanner;
  1041. galaxy.meta["ship"]["scanner"] = scanner;
  1042. }
  1043. // turns isn't ship specific
  1044. if (galaxy.meta["info"].contains("Turns left")) {
  1045. // OR this could be "Unlimited" !!!
  1046. std::string text = galaxy.meta["info"]["Turns left"];
  1047. if (text == "Unlimited") {
  1048. galaxy.meta["turns"] = -1;
  1049. } else {
  1050. int turns =
  1051. stoi(text); // galaxy.meta["info"]["Turns left"].as<int>();
  1052. BUGZ_LOG(fatal) << "Turns left: " << turns;
  1053. galaxy.meta["turns"] = turns;
  1054. }
  1055. }
  1056. if (galaxy.meta["info"].contains("Current Sector")) {
  1057. int sector = sstoi(json_str(galaxy.meta["info"]["Current Sector"]));
  1058. BUGZ_LOG(fatal) << "Sector: " << sector;
  1059. // it should already be sector ...
  1060. current_sector = sector;
  1061. }
  1062. if (galaxy.meta["info"].contains("Credits")) {
  1063. std::string credit_text = galaxy.meta["info"]["Credits"];
  1064. replace(credit_text, ",", "");
  1065. int credits = stoi(credit_text);
  1066. galaxy.meta["credits"] = credits;
  1067. BUGZ_LOG(fatal) << "Credits: " << credits;
  1068. }
  1069. }
  1070. return;
  1071. }
  1072. // info to parse:
  1073. size_t pos = line.find(" : ");
  1074. if ((!endswith(line, " : ")) && (pos != line.npos)) {
  1075. std::string key = line.substr(0, pos);
  1076. // Ferrengi ships don't have date built
  1077. std::string value = line.substr(pos + 3);
  1078. trim(key);
  1079. trim(value);
  1080. galaxy.meta["info"][key] = value;
  1081. BUGZ_LOG(fatal) << "Info: " << key << " : " << value;
  1082. }
  1083. // [Corp # 1, Galaxy Stomping, Inc.]
  1084. if (startswith(line, "Corp ")) {
  1085. pos = line.find(", ");
  1086. if (pos != line.npos) {
  1087. galaxy.meta["info"]["Corp"] = line.substr(pos + 2);
  1088. }
  1089. }
  1090. }
  1091. void Director::SL_computer_portline(const std::string &line) {
  1092. if (startswith(line, "What sector is the port in?"))
  1093. computer_port_done = false;
  1094. if (line == "I have no information about a port in that sector.") {
  1095. computer_port_sector = 0;
  1096. SL_parser = nullptr;
  1097. return;
  1098. }
  1099. if (!computer_port_done) {
  1100. if (in(line, "Fuel Ore")) computer_port_done = true;
  1101. if (in(line, "Cargo holds")) {
  1102. // If I want to scan the class type 0 ports:
  1103. // computer_port_done = true;
  1104. // otherwise:
  1105. SL_parser = nullptr;
  1106. return;
  1107. }
  1108. }
  1109. if (computer_port_done) {
  1110. if (line.empty()) {
  1111. SL_parser = nullptr;
  1112. return;
  1113. }
  1114. // scan for items of interest
  1115. // SL: [Fuel Ore Buying 810 100% 0]
  1116. // SL: [Organics Buying 856 57% 0]
  1117. // SL: [Equipment Selling 922 44% 0]
  1118. std::string work = line;
  1119. replace(work, "Fuel Ore", "Fuel");
  1120. replace(work, "%", "");
  1121. auto parts = split(work);
  1122. char c = tolower(parts[0][0]);
  1123. int pos;
  1124. char foe[4] = "foe";
  1125. for (pos = 0; pos < 3; ++pos) {
  1126. if (c == foe[pos]) break;
  1127. }
  1128. int amount = stoi(parts[2]);
  1129. int percent = stoi(parts[3]);
  1130. // update port
  1131. auto port = galaxy.ports.find(computer_port_sector);
  1132. if (port != galaxy.ports.end()) {
  1133. BUGZ_LOG(info) << "COM PORT " << computer_port_sector << " " << c << " "
  1134. << amount << " " << percent;
  1135. port->second.amount[pos] = amount;
  1136. port->second.percent[pos] = percent;
  1137. }
  1138. }
  1139. }
  1140. void Director::SL_planetline(const std::string &line) {
  1141. if (line == "Corporate command [TL=00:00:00]:[344] (?=Help)? Q" ||
  1142. line == "Computer command [TL=00:00:00]:[344] (?=Help)? Q") {
  1143. SL_parser = nullptr;
  1144. return;
  1145. }
  1146. if (in(line, "Class ") &&
  1147. (in(line, "Level ") || (endswith(line, "No Citadel")))) {
  1148. int level;
  1149. char c;
  1150. sector_type sector;
  1151. int number;
  1152. std::string name;
  1153. std::string work = line;
  1154. size_t pos = work.find('#');
  1155. std::string temp = work.substr(0, pos);
  1156. trim(temp);
  1157. sector = sstoi(temp);
  1158. work = work.substr(pos + 1);
  1159. number = sstoi(work);
  1160. pos = work.find(' ');
  1161. work = work.substr(pos + 1);
  1162. trim(work);
  1163. if (endswith(work, "No Citadel")) {
  1164. level = 0;
  1165. } else {
  1166. pos = work.rfind("Level ");
  1167. temp = work.substr(pos + 6);
  1168. level = sstoi(temp);
  1169. }
  1170. pos = work.rfind("Class ");
  1171. temp = work.substr(pos + 6);
  1172. c = temp[0];
  1173. work = work.substr(0, pos);
  1174. trim(work);
  1175. name = work;
  1176. BUGZ_LOG(warning) << (int)sector << " # " << number << " Class " << c
  1177. << " Level " << level << " name: [" << name << "]";
  1178. }
  1179. /*
  1180. SL: [ 344 #4 Enjoy the Silence Class M, Earth Type Level 3] SL:
  1181. [ --- (4M) 1T 64 25 14T 693 277 2T 10M] SL: [
  1182. 344 #5 High There! Class L, Mountainous Level 2]
  1183. SL: [ --- (5M) 2T 0 6 25T 100 112 2T 6M]
  1184. ...
  1185. SL: [ --- (9M) 3T 64 31 39T 793 389 4T ---]
  1186. */
  1187. }