dispatchers.cpp 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777
  1. #include "dispatchers.h"
  2. #include <boost/format.hpp>
  3. #include <cctype>
  4. #include "boxes.h"
  5. #include "logging.h"
  6. #include "utils.h"
  7. Dispatch::Dispatch(Director &d) : director{d} {};
  8. Dispatch::~Dispatch(){};
  9. void Dispatch::to_server(const std::string &send) { director.to_server(send); }
  10. void Dispatch::to_client(const std::string &send) { director.to_client(send); }
  11. const std::string &Dispatch::get_prompt(void) {
  12. return director.current_prompt;
  13. }
  14. void Dispatch::setNotify(notifyFunc nf) { notify_ = nf; }
  15. void Dispatch::notify(void) {
  16. if (director.post) {
  17. director.post(notify_);
  18. }
  19. }
  20. void Dispatch::chain_client_input(const std::string &input) {
  21. if (chain) {
  22. chain->chain_client_input(input);
  23. } else {
  24. client_input(input);
  25. }
  26. }
  27. void Dispatch::chain_server_line(const std::string &line,
  28. const std::string &raw_line) {
  29. if (chain) {
  30. chain->chain_server_line(line, raw_line);
  31. } else {
  32. server_line(line, raw_line);
  33. }
  34. }
  35. void Dispatch::chain_server_prompt(const std::string &prompt) {
  36. if (chain) {
  37. chain->chain_server_prompt(prompt);
  38. } else {
  39. server_prompt(prompt);
  40. }
  41. }
  42. void Dispatch::server_line(const std::string &line,
  43. const std::string &raw_line) {}
  44. void Dispatch::server_prompt(const std::string &prompt) {}
  45. void Dispatch::client_input(const std::string &input) {}
  46. #ifdef NOMORE
  47. MainDispatch::MainDispatch(Director &d) : Dispatch{d}, id{d}, md{d} {
  48. BUGZ_LOG(warning) << "MainDispatch()";
  49. }
  50. MainDispatch::~MainDispatch() { BUGZ_LOG(warning) << "~MainDispatch()"; }
  51. void MainDispatch::activate(void) {
  52. count = 0;
  53. old_prompt = get_prompt();
  54. /*
  55. ╔══════════════════════════════╗
  56. ║ TradeWars Proxy Active ║
  57. ╚══════════════════════════════╝
  58. -=>
  59. */
  60. Boxes box(30, 1, true);
  61. box.boxcolor = "\x1b[1;33;44m";
  62. box.textcolor = "\x1b[1;33;44m";
  63. to_client("\n\r");
  64. to_client(box.top());
  65. std::string output = " TradeWars Proxy \x1b[5mActive\x1b[0;1;33;44m ";
  66. to_client(box.row(output));
  67. to_client(box.bottom());
  68. // to_client("\n\r\x1b[1;34mWELCOME! You are now in the proxy zone...\n\r");
  69. id.prompt = "\x1b[0m \x1b[1;33;44m-=>\x1b[0m \x1b[1;37;44m";
  70. id.max_length = 15;
  71. id.setNotify([this]() { this->have_input(); });
  72. id.activate();
  73. }
  74. void MainDispatch::have_input(void) {
  75. ++count;
  76. std::string output =
  77. str(boost::format("Your Input (%2%): [%1%]\n\r") % id.input % count);
  78. to_client("\x1b[0m");
  79. to_client(output);
  80. if (id.input == "?") {
  81. // Maybe? Maybe not.
  82. }
  83. if (id.input == "menu") {
  84. md.menu_box_color = "\x1b[1;33;44m";
  85. md.menu_text_color = "\x1b[1;37;44m";
  86. md.menu_title = "Proxy Menu";
  87. md.menu_options_color = "\x1b[1;36;40m";
  88. // md.menu_prompt = " --==>> ";
  89. // bold white to white --- black to green
  90. // md.menu_prompt = "\x1b[1;37;47m\xdb\xb2\xb1\xb0\x1b[0;30;47m RED GREEN
  91. // \x1b[30;42m\xdb\xb2\xb1\xb0\x1b[0m : ";
  92. // md.menu_prompt = "\x1b[0;31;47m\xdb\xb2\xb1\xb0\x1b[0;30;47m RED
  93. // GREEN\x1b[37;42m\xdb\xb2\xb1\xb0\x1b[0m : ";
  94. const char *CP437_GRADIENT = "\xdb\xb2\xb1\xb0 "; // 100, 75, 50, 25, 0
  95. md.menu_prompt =
  96. "\x1b[0;31;40m\xdb\xb2\xb1\xb0 \x1b[31;40mRED "
  97. "\x1b[32;40mGREEN\x1b[30;42m\xdb\xb2\xb1\xb0 \x1b[0m : ";
  98. md.lazy = true;
  99. md.menu = {{"A", "Apple"}, {"B", "Blue"}, {"R", "Rabbit"}, {"Z", "ZOOO!"}};
  100. md.setNotify([this]() { this->menu_choice(); });
  101. md.activate();
  102. return;
  103. }
  104. if (id.input == "menu2") {
  105. md.lazy = false;
  106. md.setNotify([this]() { this->menu_choice(); });
  107. md.activate();
  108. return;
  109. }
  110. if (id.input.empty()) {
  111. // if (count >= 5) {
  112. auto lines = Boxes::alert(" Returning you to the game... ", "",
  113. "\x1b[1;32m", 30, 1, true);
  114. // I'm not setting the box color, so the last color bleeds over.
  115. to_client("\x1b[0m");
  116. for (auto line : lines) {
  117. to_client(line);
  118. };
  119. to_client("Returning you to the game...\n\r");
  120. deactivate();
  121. } else {
  122. // prompt it again, sam.
  123. id.setNotify([this]() { this->have_input(); });
  124. id.activate();
  125. }
  126. }
  127. void MainDispatch::menu_choice(void) {
  128. if (md.input.empty()) {
  129. to_client("Menu abort.\n\r");
  130. } else {
  131. std::string text = "Back from menu [";
  132. text.append(md.input);
  133. text.append("] was your selection.\n\r");
  134. to_client(text);
  135. }
  136. id.max_length = 15;
  137. id.setNotify([this]() { this->have_input(); });
  138. id.activate();
  139. }
  140. void MainDispatch::deactivate(void) {
  141. // Since we're the main thing there --
  142. // sess->show_client = true;
  143. // sess->talk_direct = true;
  144. notify();
  145. }
  146. void MainDispatch::server_line(const std::string &line,
  147. const std::string &raw_line) {
  148. BUGZ_LOG(info) << "MDSL: " << line;
  149. to_client("SL: ");
  150. to_client(line);
  151. to_client("\n\r");
  152. }
  153. void MainDispatch::server_prompt(const std::string &prompt) {
  154. BUGZ_LOG(info) << "MDSP: " << prompt;
  155. }
  156. #ifdef NEVERMORE
  157. void MainDispatch::client_input(const std::string &input) {
  158. // I don't care what the old prompt looked liked at this point.
  159. BUGZ_LOG(warning) << "Got: " << input; // << " prompt=" << get_prompt();
  160. // Serious problem when the input = "\x1b" ESC. The output gets gummed/locked
  161. // up.
  162. if (input == "\x1b") {
  163. return;
  164. }
  165. ++count;
  166. std::string output = str(boost::format("MSG %1%: [%2%]\n\r") % count % input);
  167. to_client(output);
  168. if (count >= 5) {
  169. to_client("And we're outta here!\n\r");
  170. deactivate();
  171. }
  172. }
  173. #endif
  174. #endif
  175. InputDispatch::InputDispatch(Director &d) : Dispatch(d) {
  176. BUGZ_LOG(warning) << "InputDispatch()";
  177. }
  178. InputDispatch::~InputDispatch() { BUGZ_LOG(warning) << "~InputDispatch()"; }
  179. void InputDispatch::activate(void) {
  180. BUGZ_LOG(warning) << "InputDispatch::activate() " << max_length;
  181. input.clear();
  182. to_client(prompt);
  183. }
  184. void InputDispatch::deactivate(void) { notify(); }
  185. void InputDispatch::server_line(const std::string &line,
  186. const std::string &raw_line) {
  187. if (line.empty()) return;
  188. std::string temp = repr(raw_line);
  189. BUGZ_LOG(fatal) << "Input:SL(" << temp << ")";
  190. if (startswith(line, "Command [TL=")) {
  191. return;
  192. }
  193. /*
  194. temp = raw_line;
  195. clean_string(temp);
  196. BUGZ_LOG(fatal) << "InputDispatch::server_line(" << temp << ")";
  197. */
  198. temp = prompt;
  199. ansi_clean(temp);
  200. size_t total = temp.length() + input.length();
  201. to_client("\x1b[0m"); // reset colors
  202. while (total > 0) {
  203. to_client("\b \b");
  204. --total;
  205. }
  206. // Lines line "\[[1A\[[1;36mphil \[[0;32mwarps into the sector.\[[0m"
  207. temp = raw_line;
  208. replace(temp, "\x1b[1A", "");
  209. // replace(temp, "\x1[2J", "");
  210. to_client(temp);
  211. to_client("\n\r");
  212. // Doesn't matter if it is one or two calls.
  213. temp = prompt;
  214. temp.append(input);
  215. to_client(temp);
  216. // to_client(prompt);
  217. // to_client(input);
  218. }
  219. // void InputDispatch::server_prompt(const std::string &prompt) {}
  220. void InputDispatch::client_input(const std::string &cinput) {
  221. // BUGZ_LOG(info) << "InputDispatch::client_input(" << cinput << ")";
  222. for (const char ch : cinput) {
  223. if (isprint(ch)) {
  224. // Ok!
  225. if (input.length() < max_length) {
  226. to_client(std::string(1, ch));
  227. input += ch;
  228. }
  229. } else if ((ch == '\b') || (ch == 0x7f)) {
  230. // Backspace or rubout
  231. if (input.length() > 0) {
  232. to_client("\b \b");
  233. input.erase(input.size() - 1);
  234. }
  235. } else if (ch == '\r') {
  236. // Ok, we're done!
  237. BUGZ_LOG(info) << "InputDispatch done: " << input;
  238. to_client("\x1b[0m\n\r");
  239. deactivate();
  240. }
  241. }
  242. }
  243. /**
  244. * Menu Dispatch
  245. *
  246. * Two types of menus:
  247. * lazy: display the menu name and show prompt. ? shows menu.
  248. * non-lazy: displays menu + prompts.
  249. *
  250. *
  251. */
  252. MenuDispatch::MenuDispatch(Director &d) : Dispatch(d) {
  253. BUGZ_LOG(warning) << "MenuDispatch()";
  254. }
  255. MenuDispatch::~MenuDispatch() { BUGZ_LOG(warning) << "~MenuDispatch()"; }
  256. void MenuDispatch::activate(void) {
  257. calculate_widths();
  258. input.clear();
  259. BUGZ_LOG(warning) << "MenuDispatch::activate() " << max_width << ", "
  260. << max_option_width;
  261. if (lazy)
  262. menubox();
  263. else
  264. help();
  265. to_client(menu_prompt);
  266. }
  267. void MenuDispatch::deactivate(void) { notify(); }
  268. void MenuDispatch::help(void) {
  269. size_t max = max_width;
  270. Boxes mbox(max, 1, true);
  271. mbox.boxcolor = menu_box_color;
  272. if (lazy) {
  273. // just the menu
  274. mbox.textcolor = menu_options_color;
  275. to_client(mbox.top());
  276. for (auto const &menu_item : menu) {
  277. std::string text = " ";
  278. text.append(menu_item.first);
  279. text.append(" - ");
  280. text.append(menu_item.second);
  281. while (text.length() < max) text.append(1, ' ');
  282. to_client(mbox.row(text));
  283. }
  284. to_client(mbox.bottom());
  285. } else {
  286. // full menu
  287. mbox.textcolor = menu_text_color;
  288. to_client(mbox.top());
  289. std::string title = centered(max, menu_title);
  290. BUGZ_LOG(debug) << "help max=" << max << " [" << title << "]";
  291. to_client(mbox.row(title));
  292. to_client(mbox.middle());
  293. mbox.textcolor = menu_options_color;
  294. for (auto const &menu_item : menu) {
  295. std::string text = " ";
  296. text.append(menu_item.first);
  297. text.append(" - ");
  298. text.append(menu_item.second);
  299. while (text.length() < max) text.append(1, ' ');
  300. to_client(mbox.row(text));
  301. }
  302. to_client(mbox.bottom());
  303. }
  304. }
  305. std::string MenuDispatch::centered(int length, const std::string &s) {
  306. std::string text = s;
  307. size_t leftovers = length - text.length();
  308. int count = leftovers / 2;
  309. if (count > 0) {
  310. text.insert(0, count, ' ');
  311. text.append(count, ' ');
  312. }
  313. if (leftovers % 1 == 1) text.append(1, ' ');
  314. return text;
  315. }
  316. void MenuDispatch::menubox(void) {
  317. // just the menu box
  318. std::string title = centered(max_width, menu_title);
  319. /*
  320. int leftovers = max - menu_title.length();
  321. while (leftovers > 2) {
  322. title.insert(0, 1, " ");
  323. title.append(1, " ");
  324. leftovers -= 2;
  325. };
  326. if (leftovers == 1)
  327. title.append(1, " ");
  328. */
  329. BUGZ_LOG(debug) << "menubox max=" << max_width << " [" << title << "]";
  330. auto abox =
  331. Boxes::alert(title, menu_box_color, menu_text_color, max_width, 1, true);
  332. for (auto line : abox) {
  333. to_client(line);
  334. }
  335. }
  336. void MenuDispatch::calculate_widths(void) {
  337. max_width = menu_title.length() + 2;
  338. max_option_width = 0;
  339. for (auto key : menu) {
  340. size_t menu_line_length =
  341. 1 + key.first.length() + 3 + key.second.length() + 1;
  342. if (menu_line_length > max_width) max_width = menu_line_length;
  343. if (key.first.length() > max_option_width)
  344. max_option_width = key.first.length();
  345. }
  346. instant = max_option_width == 1;
  347. }
  348. void MenuDispatch::server_line(const std::string &line,
  349. const std::string &raw_line) {
  350. // TODO:
  351. // Clear prompt, display raw server line, restore prompt.
  352. if (line.empty()) return;
  353. std::string temp = repr(raw_line);
  354. BUGZ_LOG(fatal) << "Input:SL(" << temp << ")";
  355. if (startswith(line, "Command [TL=")) {
  356. return;
  357. }
  358. /*
  359. temp = raw_line;
  360. clean_string(temp);
  361. BUGZ_LOG(fatal) << "InputDispatch::server_line(" << temp << ")";
  362. */
  363. temp = menu_prompt;
  364. ansi_clean(temp);
  365. size_t total = temp.length() + input.length();
  366. to_client("\x1b[0m"); // reset colors
  367. while (total > 0) {
  368. to_client("\b \b");
  369. --total;
  370. }
  371. // Lines line "\[[1A\[[1;36mphil \[[0;32mwarps into the sector.\[[0m"
  372. temp = raw_line;
  373. replace(temp, "\x1b[1A", "");
  374. // replace(temp, "\x1[2J", "");
  375. to_client(temp);
  376. to_client("\n\r");
  377. // Doesn't matter if it is one or two calls.
  378. temp = menu_prompt;
  379. temp.append(input);
  380. to_client(temp);
  381. // to_client(prompt);
  382. // to_client(input);
  383. }
  384. void MenuDispatch::client_input(const std::string &cinput) {
  385. for (auto const ch : cinput) {
  386. // not likely that we'd have more then one,
  387. // but deal with it correctly.
  388. if (ch == '\r') {
  389. // enter
  390. if (instant) return;
  391. for (auto const &mnu : menu) {
  392. if (mnu.first == input) {
  393. to_client("\x1b[0m\n\r");
  394. deactivate();
  395. return;
  396. }
  397. }
  398. // input wasn't found ?
  399. while (input.length() > 0) {
  400. to_client("\b \b");
  401. input.erase(input.length() - 1);
  402. }
  403. return; // don't continue ...
  404. }
  405. if (ch == '\x1b') {
  406. // [ESC] - erase the input string
  407. while (input.length() > 0) {
  408. to_client("\b \b");
  409. input.erase(input.length() - 1);
  410. }
  411. // Exit - allow escape from menu
  412. deactivate();
  413. return;
  414. }
  415. if (ch == '\b') {
  416. if (input.length() > 0) {
  417. to_client("\b \b");
  418. input.erase(input.length() - 1);
  419. }
  420. }
  421. if (ch == '?') {
  422. to_client(cinput); // display what they entered.
  423. to_client("\x1b[0m\n\r");
  424. help();
  425. to_client(menu_prompt);
  426. return;
  427. }
  428. if (isprint(ch)) {
  429. char c = ch;
  430. if (!case_sensitive) c = toupper(ch);
  431. // ok, it's a printable character
  432. if (input.length() < max_option_width) {
  433. // ok, there's room.
  434. to_client(std::string(1, c));
  435. input.append(1, c);
  436. }
  437. if (instant) {
  438. for (auto const &mnu : menu) {
  439. if (mnu.first == input) {
  440. to_client("\x1b[0m\n\r");
  441. deactivate();
  442. return;
  443. }
  444. }
  445. // Erase last character, wasn't an option.
  446. to_client("\b \b");
  447. input.erase(input.length() - 1);
  448. }
  449. }
  450. }
  451. }
  452. CIMDispatch::CIMDispatch(Director &d) : Dispatch(d) {}
  453. void CIMDispatch::activate(void) { count = 0; }
  454. void CIMDispatch::deactivate(void) { notify(); }
  455. void CIMDispatch::server_line(const std::string &line,
  456. const std::string &raw_line) {
  457. if (!((line.empty() || startswith(line, ": ") ||
  458. startswith(line, "Command [")))) {
  459. count++;
  460. if (count % 100 == 0) {
  461. std::string message = str(boost::format("\r%1%") % count);
  462. to_client(message);
  463. }
  464. }
  465. if (line == ": ENDINTERROG") {
  466. std::string message = str(boost::format("\r%1%\n\r") % count);
  467. to_client(message);
  468. deactivate();
  469. }
  470. }
  471. MoveDispatch::MoveDispatch(Director &d) : Dispatch(d) {
  472. BUGZ_LOG(warning) << "MoveDispatch()";
  473. }
  474. // sector_type move_to;
  475. void MoveDispatch::activate(void) {
  476. starting = director.current_sector;
  477. BUGZ_LOG(warning) << "Moving from " << starting << " to " << move_to;
  478. // Start with density scan
  479. to_server("SD");
  480. state = 1;
  481. warp_lane.clear();
  482. warp_pos = 0;
  483. // build final string to match against
  484. at_destination = "Auto Warping to sector ";
  485. at_destination.append(std::to_string(move_to));
  486. }
  487. void MoveDispatch::deactivate(void) { notify(); }
  488. // optional here
  489. void MoveDispatch::server_line(const std::string &line,
  490. const std::string &raw_line) {
  491. if (state == 1) {
  492. if (endswith(line, "Relative Density Scan")) {
  493. state = 2;
  494. }
  495. }
  496. if ((state != 2) && (state != 5)) {
  497. // hide the density scan part
  498. std::string temp = raw_line;
  499. if (line == "<Auto Pilot Engaging>") {
  500. // trim out the stray cursor home
  501. replace(temp, "\x1b[H", "");
  502. }
  503. // Replace progress bar with something else.
  504. if (startswith(temp, "\x1b[1;33m\xb3"))
  505. temp = "\x1b[1A\x1b[1;33m** SLOW MOVE **";
  506. /*
  507. if (in(temp, "\xb3")) {
  508. std::string debug = repr(temp);
  509. BUGZ_LOG(fatal) << "MOVE LINE: " << debug;
  510. }
  511. */
  512. // Don't output raw_lines that move the cursor up 3.
  513. if (!in(temp, "\x1b[3A")) {
  514. temp.append("\n\r");
  515. to_client(temp);
  516. }
  517. }
  518. if (state == 3) {
  519. if (line == "You are already in that sector!") {
  520. success = true;
  521. deactivate();
  522. return;
  523. }
  524. if (line == "That Warp Lane is not adjacent.") {
  525. // ok! Parse out the path that we need to take...
  526. }
  527. // [611 > 612 > 577 > 543 > 162 > 947 > 185 > 720 > 894 > 3 > 1]
  528. // multiple lines possible here? Yes.
  529. // [344 > 23328 > 2981 > 10465 > 14016 > 8979 > 1916 > 18734 > 5477 > 131 >
  530. // 27464 >] watch for <Move> it contains >
  531. if ((line != "<Move>") && in(line, ">")) {
  532. bool more = false;
  533. std::string work = line;
  534. if (endswith(work, " >")) {
  535. more = true;
  536. work = work.substr(0, work.length() - 2);
  537. }
  538. replace(work, " > ", " ");
  539. replace(work, "(", "");
  540. replace(work, ")", "");
  541. auto warps = split(work);
  542. for (auto const &w : warps) {
  543. BUGZ_LOG(fatal) << "lane: " << w;
  544. warp_lane.push_back(stoi(w));
  545. }
  546. if (!more) state = 4;
  547. }
  548. }
  549. if (state == 4) {
  550. if (line == at_destination) {
  551. // [Auto Warping to sector 1]
  552. state = 6;
  553. }
  554. }
  555. }
  556. bool MoveDispatch::density_clear(density d) { // int sector, int density) {
  557. if (d.sector == 0) return false;
  558. switch (d.density) {
  559. case 0:
  560. case 1:
  561. case 100:
  562. case 101:
  563. return true;
  564. }
  565. // special case for sector 1:
  566. if ((d.sector == 1) && (d.density == 601)) return true;
  567. return false;
  568. }
  569. void MoveDispatch::server_prompt(const std::string &prompt) {
  570. BUGZ_LOG(fatal) << "server_prompt: " << prompt;
  571. if (state == 2) {
  572. if (at_command_prompt(prompt)) {
  573. // Ok, density is done
  574. // BUG: If the sector is adjacent, this doesn't check density!
  575. density d = director.galaxy.dscan.find(move_to);
  576. if (d.sector == move_to) {
  577. // Yes! we found the sector in the scan!
  578. if (! density_clear(d)) {
  579. BUGZ_LOG(fatal) << "Failed density check on single move.";
  580. success = false;
  581. deactivate();
  582. return;
  583. }
  584. }
  585. std::string command = str(boost::format("M%1%\r") % move_to);
  586. to_server(command);
  587. state = 3;
  588. }
  589. } else if (state == 3) {
  590. if (at_command_prompt(prompt)) {
  591. // this happens when the sector is adject to current_sector.
  592. BUGZ_LOG(fatal) << "Are we there yet?";
  593. success = true;
  594. deactivate();
  595. return;
  596. }
  597. } else if (state == 4) {
  598. if (prompt == "Engage the Autopilot? (Y/N/Single step/Express) [Y] ") {
  599. int to_check = warp_lane[warp_pos + 1];
  600. // check density scan
  601. density d = director.galaxy.dscan.find(to_check);
  602. /*
  603. int density =
  604. director.galaxy.meta["density"][to_check]["density"].as<int>();
  605. */
  606. if (density_clear(d)) { // to_check, density)) {
  607. to_server("S");
  608. ++warp_pos;
  609. } else {
  610. to_server("N");
  611. BUGZ_LOG(fatal) << "density_clear(" << to_check << ") : false";
  612. success = false;
  613. deactivate();
  614. }
  615. }
  616. if (prompt == "Stop in this sector (Y,N,E,I,R,S,D,P,?) (?=Help) [N] ? ") {
  617. state = 5;
  618. to_server("SD");
  619. }
  620. } else if (state == 5) {
  621. // finished scan
  622. if (prompt == "Stop in this sector (Y,N,E,I,R,S,D,P,?) (?=Help) [N] ? ") {
  623. int to_check = warp_lane[warp_pos + 1];
  624. density d = director.galaxy.dscan.find(to_check);
  625. /*
  626. int density =
  627. director.galaxy.meta["density"][to_check]["density"].as<int>();
  628. */
  629. if (density_clear(d)) {
  630. to_server("N");
  631. ++warp_pos;
  632. state = 4;
  633. } else {
  634. to_server("Y");
  635. BUGZ_LOG(fatal) << "Stopped by density: " << to_check;
  636. success = 0;
  637. deactivate();
  638. }
  639. }
  640. } else if (state == 6) {
  641. if (at_command_prompt(prompt)) {
  642. // We're done!
  643. success = 1;
  644. deactivate();
  645. }
  646. }
  647. }
  648. void MoveDispatch::client_input(const std::string &input) {
  649. // This exits us out quickly -- should I stop at a better spot?
  650. // As in answer "Y" to Stop in this sector?
  651. success = 0;
  652. deactivate();
  653. }
  654. /*
  655. * CoreDispatch: This is an example class that does dispatch.
  656. * Copy this and make changes from there...
  657. */
  658. CoreDispatch::CoreDispatch(Director &d) : Dispatch(d) {
  659. BUGZ_LOG(warning) << "CoreDispatch()";
  660. }
  661. void CoreDispatch::activate(void) {
  662. // save things, set things
  663. }
  664. void CoreDispatch::deactivate(void) {
  665. // restore things
  666. notify();
  667. }
  668. void CoreDispatch::server_line(const std::string &line,
  669. const std::string &raw_line) {}
  670. void CoreDispatch::server_prompt(const std::string &prompt) {}
  671. void CoreDispatch::client_input(const std::string &input) {
  672. BUGZ_LOG(warning) << "Got: " << input << " prompt=" << get_prompt();
  673. }