door.cpp 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053
  1. #include "door.h"
  2. #include <algorithm>
  3. #include <chrono>
  4. #include <ctype.h>
  5. #include <string.h>
  6. #include <string>
  7. #include <thread>
  8. #include <libgen.h> // basename
  9. // time/date output std::put_time()
  10. // https://en.cppreference.com/w/cpp/io/manip/put_time
  11. #include <ctime>
  12. #include <iomanip>
  13. // alarm signal
  14. #include <signal.h>
  15. #include <unistd.h>
  16. #include <iconv.h>
  17. #include <algorithm>
  18. #include <iostream>
  19. void to_lower(std::string &text) {
  20. transform(text.begin(), text.end(), text.begin(), ::tolower);
  21. }
  22. namespace door {
  23. static bool hangup = false;
  24. void sig_handler(int signal) {
  25. hangup = true;
  26. /*
  27. ofstream sigf;
  28. sigf.open("signal.log", std::ofstream::out | std::ofstream::app);
  29. sigf << "SNAP! GOT: " << signal << std::endl;
  30. sigf.close();
  31. */
  32. // 13 SIGPIPE -- ok, what do I do with this, eh?
  33. }
  34. class IConv {
  35. iconv_t ic;
  36. public:
  37. IConv(const char *to, const char *from);
  38. ~IConv();
  39. int convert(char *input, char *output, size_t outbufsize);
  40. };
  41. IConv::IConv(const char *to, const char *from) : ic(iconv_open(to, from)) {}
  42. IConv::~IConv() { iconv_close(ic); }
  43. int IConv::convert(char *input, char *output, size_t outbufsize) {
  44. size_t inbufsize = strlen(input);
  45. // size_t orig_size = outbufsize;
  46. // memset(output, 0, outbufsize);
  47. // https://www.gnu.org/savannah-checkouts/gnu/libiconv/documentation/libiconv-1.15/iconv.3.html
  48. int r = iconv(ic, &input, &inbufsize, &output, &outbufsize);
  49. *output = 0;
  50. return r;
  51. }
  52. static IConv converter("UTF-8", "CP437");
  53. void cp437toUnicode(std::string input, std::string &out) {
  54. char buffer[10240];
  55. char output[16384];
  56. strcpy(buffer, input.c_str());
  57. converter.convert(buffer, output, sizeof(output));
  58. out.assign(output);
  59. }
  60. void cp437toUnicode(const char *input, std::string &out) {
  61. char buffer[10240];
  62. char output[16384];
  63. strcpy(buffer, input);
  64. converter.convert(buffer, output, sizeof(output));
  65. out.assign(output);
  66. }
  67. bool unicode = false;
  68. bool debug_capture = false;
  69. /**
  70. * Construct a new Door object using the commandline parameters
  71. * given to the main function.
  72. *
  73. * @example door_example.cpp
  74. */
  75. Door::Door(std::string dname, int argc, char *argv[])
  76. : std::ostream(this), doorname{dname}, has_dropfile{false},
  77. seconds_elapsed{0}, previous(COLOR::WHITE), track{true}, cx{1}, cy{1},
  78. inactivity{120}, node{1} {
  79. // Setup commandline options
  80. opt.addUsage("Door++ library by BUGZ (C) 2021");
  81. opt.addUsage("");
  82. opt.addUsage(" -h --help Displays this help");
  83. opt.addUsage(" -l --local Local Mode");
  84. opt.addUsage(" -d --dropfile [FILENAME] Load Dropfile");
  85. opt.addUsage(" -n --node N Set node number");
  86. // opt.addUsage(" -b --bbsname NAME Set BBS Name");
  87. opt.addUsage(" -u --username NAME Set Username");
  88. opt.addUsage(" -t --timeleft N Set time left");
  89. opt.addUsage(" --maxtime N Set max time");
  90. opt.addUsage("");
  91. opt.setFlag("help", 'h');
  92. opt.setFlag("local", 'l');
  93. opt.setOption("dropfile", 'd');
  94. // opt.setOption("bbsname", 'b');
  95. opt.setOption("username", 'u');
  96. opt.setOption("timeleft", 't');
  97. opt.setOption("maxtime");
  98. opt.processCommandArgs(argc, argv);
  99. if (!opt.hasOptions()) {
  100. opt.printUsage();
  101. exit(1);
  102. }
  103. if (opt.getFlag("help") || opt.getFlag('h')) {
  104. opt.printUsage();
  105. exit(1);
  106. }
  107. if (opt.getValue("username") != nullptr) {
  108. username = opt.getValue("username");
  109. }
  110. if (opt.getValue("node") != nullptr) {
  111. node = atoi(opt.getValue("node"));
  112. }
  113. if (opt.getValue("timeleft") != nullptr) {
  114. time_left = atoi(opt.getValue("timeleft"));
  115. } else {
  116. // sensible default
  117. time_left = 25;
  118. }
  119. /*
  120. if (opt.getValue("bbsname") != nullptr) {
  121. bbsname = opt.getValue("bbsname");
  122. }
  123. */
  124. parse_dropfile(opt.getValue("dropfile"));
  125. /*
  126. If the dropfile has time_left, we'll use it.
  127. Adjust time_left by maxtime value (if given).
  128. */
  129. if (opt.getValue("maxtime") != nullptr) {
  130. int maxtime = atoi(opt.getValue("maxtime"));
  131. if (time_left > maxtime) {
  132. logf << "Adjusting time from " << time_left << " to " << maxtime
  133. << std::endl;
  134. time_left = maxtime;
  135. }
  136. }
  137. if (opt.getFlag("local")) {
  138. if (username.empty()) {
  139. std::cout << "Local mode requires username to be set." << std::endl;
  140. opt.printUsage();
  141. exit(1);
  142. }
  143. } else {
  144. // we must have a dropfile, or else!
  145. if (!has_dropfile) {
  146. std::cout << "I require a dropfile. And a shrubbery." << std::endl;
  147. opt.printUsage();
  148. exit(1);
  149. }
  150. }
  151. // Set program name
  152. std::string logFileName = dname + ".log";
  153. logf.open(logFileName.c_str(), std::ofstream::out | std::ofstream::app);
  154. log("Door init");
  155. init();
  156. // door.sys doesn't give BBS name. system_name
  157. detect_unicode_and_screen();
  158. logf << "Screen " << width << " X " << height << std::endl;
  159. }
  160. Door::~Door() {
  161. // restore default mode
  162. // tcsetattr(STDIN_FILENO, TCSANOW, &tio_default);
  163. log("dtor");
  164. tcsetattr(STDIN_FILENO, TCOFLUSH, &tio_default);
  165. signal(SIGHUP, SIG_DFL);
  166. signal(SIGPIPE, SIG_DFL);
  167. // time thread
  168. stop_thread.set_value();
  169. time_thread.join();
  170. log("done");
  171. logf.close();
  172. }
  173. // https://www.tutorialspoint.com/how-do-i-terminate-a-thread-in-cplusplus11
  174. void Door::time_thread_run(std::future<void> future) {
  175. while (future.wait_for(std::chrono::milliseconds(1)) ==
  176. std::future_status::timeout) {
  177. // std::cout << "Executing the thread....." << std::endl;
  178. std::this_thread::sleep_for(std::chrono::seconds(1));
  179. seconds_elapsed++;
  180. // log("TICK");
  181. // logf << "TICK " << seconds_elapsed << std::endl;
  182. if (seconds_elapsed % 60 == 0) {
  183. time_left--;
  184. }
  185. }
  186. }
  187. void Door::init(void) {
  188. // https://viewsourcecode.org/snaptoken/kilo/02.enteringRawMode.html
  189. // https://viewsourcecode.org/snaptoken/kilo/03.rawInputAndOutput.html
  190. // ok! I didn't know about VTIME ! That's something different!
  191. // enable terminal RAW mode
  192. struct termios tio_raw;
  193. tcgetattr(STDIN_FILENO, &tio_default);
  194. tio_raw = tio_default;
  195. cfmakeraw(&tio_raw);
  196. // local terminal magic
  197. tio_raw.c_cc[VMIN] = 0;
  198. tio_raw.c_cc[VTIME] = 1;
  199. bpos = 0;
  200. tcsetattr(STDIN_FILENO, TCSANOW, &tio_raw);
  201. startup = std::time(nullptr);
  202. signal(SIGHUP, sig_handler);
  203. signal(SIGPIPE, sig_handler);
  204. // time thread
  205. std::future<void> stop_future = stop_thread.get_future();
  206. time_thread =
  207. std::thread(&Door::time_thread_run, this, std::move(stop_future));
  208. }
  209. void Door::detect_unicode_and_screen(void) {
  210. unicode = false;
  211. width = 0;
  212. height = 0;
  213. if (!isatty(STDIN_FILENO)) {
  214. // https://stackoverflow.com/questions/273261/force-telnet-client-into-character-mode
  215. *this << "\377\375\042\377\373\001"; // fix telnet client
  216. }
  217. *this << "\x1b[0;30;40m\x1b[2J\x1b[H"; // black on black, clrscr, go home
  218. *this << "\u2615"
  219. << "\x1b[6n"; // hot beverage + cursor pos
  220. *this << "\x1b[999C\x1b[999B\x1b[6n"; // goto end of screen + cursor pos
  221. *this << "\x1b[H"; // go home
  222. this->flush();
  223. usleep(1000 * 1000);
  224. if (haskey()) {
  225. char buffer[101];
  226. int len;
  227. len = read(STDIN_FILENO, &buffer, sizeof(buffer) - 1);
  228. // logf << "read " << len << std::endl;
  229. if (len > 0) {
  230. buffer[len] = 0;
  231. int x;
  232. /*
  233. for (x = 0; x < len; x++) {
  234. if (buffer[x] < 0x20)
  235. logf << std::hex << (int)buffer[x] << " ";
  236. else
  237. logf << buffer[x] << " ";
  238. }
  239. */
  240. for (x = 0; x < len; x++) {
  241. if (buffer[x] == 0)
  242. buffer[x] = ' ';
  243. }
  244. /*
  245. logf << std::endl;
  246. logf << "BUFFER [" << (char *)buffer << "]" << std::endl;
  247. */
  248. // logf << "BUFFER [" << (char *)buffer << "]" << std::endl;
  249. // this did not work -- because of the null characters in the buffer.
  250. // 1;3R required on David's machine. I'm not sure why.
  251. // 1;3R also happens under VSCodium.
  252. // 1;4R is what I get from syncterm.
  253. if ((strstr(buffer, "1;2R") != nullptr) or
  254. (strstr(buffer, "1;3R") != nullptr)) {
  255. unicode = true;
  256. log("unicode enabled \u2615"); // "U0001f926");
  257. }
  258. // Get the terminal screen size
  259. // \x1b[1;2R\x1b[41;173R
  260. // log(buffer);
  261. char *cp;
  262. cp = strchr(buffer, '\x1b');
  263. if (cp != nullptr) {
  264. cp = strchr(cp + 1, '\x1b');
  265. } else {
  266. log("Failed terminal size detection. See buffer:");
  267. log(buffer);
  268. return;
  269. }
  270. if (cp != nullptr) {
  271. cp++;
  272. if (*cp == '[') {
  273. cp++;
  274. height = atoi(cp);
  275. cp = strchr(cp, ';');
  276. if (cp != nullptr) {
  277. cp++;
  278. width = atoi(cp);
  279. } else {
  280. height = 0;
  281. }
  282. }
  283. }
  284. }
  285. } else {
  286. logf << "FAIL-WHALE, no response to terminal getposition." << std::endl;
  287. }
  288. }
  289. void Door::parse_dropfile(const char *filepath) {
  290. if (filepath == nullptr)
  291. return;
  292. // Ok, parse file here...
  293. std::ifstream file(filepath);
  294. std::string line;
  295. while (std::getline(file, line)) {
  296. // These are "DOS" files. Remove trailing \r.
  297. if (!line.empty() && line[line.size() - 1] == '\r')
  298. line.erase(line.size() - 1);
  299. dropfilelines.push_back(line);
  300. }
  301. file.close();
  302. std::string filename;
  303. {
  304. // converting const char * to char * for basename.
  305. char *temp = strdup(filepath);
  306. filename = basename(temp);
  307. free(temp);
  308. }
  309. to_lower(filename);
  310. // for now, just door.sys.
  311. if (filename == "door.sys") {
  312. // Ok, parse away!
  313. node = atoi(dropfilelines[3].c_str());
  314. username = dropfilelines[9];
  315. location = dropfilelines[10];
  316. time_left = atoi(dropfilelines[18].c_str());
  317. sysop = dropfilelines[34];
  318. handle = dropfilelines[35];
  319. } else {
  320. std::string msg = "Unknown dropfile: ";
  321. msg += filename;
  322. log(msg);
  323. *this << msg << std::endl;
  324. exit(2);
  325. }
  326. has_dropfile = true;
  327. }
  328. void Door::log(std::string output) {
  329. // todo: have logging
  330. std::time_t t = std::time(nullptr);
  331. std::tm tm = *std::localtime(&t);
  332. logf << std::put_time(&tm, "%c ") << output << std::endl;
  333. }
  334. bool Door::haskey(void) {
  335. fd_set socket_set;
  336. struct timeval tv;
  337. int select_ret = -1;
  338. if (hangup)
  339. return -2;
  340. while (select_ret == -1) {
  341. FD_ZERO(&socket_set);
  342. FD_SET(STDIN_FILENO, &socket_set);
  343. tv.tv_sec = 0;
  344. tv.tv_usec = 1;
  345. select_ret = select(STDIN_FILENO + 1, &socket_set, NULL, NULL, &tv);
  346. if (select_ret == -1) {
  347. if (errno == EINTR)
  348. continue;
  349. log("hangup detected");
  350. hangup = true;
  351. return (-2);
  352. }
  353. if (select_ret == 0)
  354. return false;
  355. }
  356. return true;
  357. }
  358. /*
  359. low-lever read a key from terminal or stdin.
  360. Returns key, or
  361. -1 (no key available)
  362. -2 (read error)
  363. */
  364. signed int Door::getch(void) {
  365. fd_set socket_set;
  366. struct timeval tv;
  367. int select_ret = -1;
  368. int recv_ret;
  369. char key;
  370. if (door::hangup)
  371. return -2;
  372. if (time_left < 2)
  373. return -3;
  374. while (select_ret == -1) {
  375. FD_ZERO(&socket_set);
  376. FD_SET(STDIN_FILENO, &socket_set);
  377. tv.tv_sec = 0;
  378. tv.tv_usec = 100;
  379. select_ret = select(STDIN_FILENO + 1, &socket_set, NULL, NULL, &tv);
  380. // select(STDIN_FILENO + 1, &socket_set, NULL, NULL, bWait ? NULL : &tv);
  381. if (select_ret == -1) {
  382. if (errno == EINTR)
  383. continue;
  384. log("hangup detected");
  385. door::hangup = true;
  386. return (-2);
  387. }
  388. if (select_ret == 0)
  389. return (-1);
  390. }
  391. recv_ret = read(STDIN_FILENO, &key, 1);
  392. if (recv_ret != 1) {
  393. // possibly log this.
  394. log("hangup");
  395. hangup = true;
  396. return -2;
  397. }
  398. return key;
  399. }
  400. void Door::unget(char c) {
  401. if (bpos < sizeof(buffer) - 1) {
  402. buffer[bpos] = c;
  403. bpos++;
  404. }
  405. }
  406. char Door::get(void) {
  407. if (bpos == 0)
  408. return 0;
  409. bpos--;
  410. return buffer[bpos];
  411. }
  412. signed int Door::getkey(void) {
  413. signed int c, c2;
  414. if (bpos != 0) {
  415. c = get();
  416. } else {
  417. c = getch();
  418. }
  419. if (c < 0)
  420. return c;
  421. /*
  422. We get 0x0d 0x00 for [Enter] (Syncterm)
  423. This strips out the null.
  424. */
  425. if (c == 0x0d) {
  426. c2 = getch();
  427. if ((c2 != 0) and (c2 >= 0))
  428. unget(c2);
  429. return c;
  430. }
  431. if (c == 0x1b) {
  432. // possible extended key
  433. c2 = getch();
  434. if (c2 < 0) {
  435. // nope, just plain ESC key
  436. return c;
  437. }
  438. // consume extended key values int extended buffer
  439. char extended[16];
  440. unsigned int pos = 0;
  441. extended[pos] = (char)c2;
  442. extended[pos + 1] = 0;
  443. pos++;
  444. while ((pos < sizeof(extended) - 1) and ((c2 = getch()) >= 0)) {
  445. // special case here where I'm sending out cursor location requests
  446. // and the \x1b[X;YR strings are getting buffered.
  447. if (c2 == 0x1b) {
  448. unget(c2);
  449. break;
  450. }
  451. extended[pos] = (char)c2;
  452. extended[pos + 1] = 0;
  453. pos++;
  454. }
  455. // convert extended buffer to special key
  456. if (extended[0] == '[') {
  457. switch (extended[1]) {
  458. case 'A':
  459. return XKEY_UP_ARROW;
  460. case 'B':
  461. return XKEY_DOWN_ARROW;
  462. case 'C':
  463. return XKEY_RIGHT_ARROW;
  464. case 'D':
  465. return XKEY_LEFT_ARROW;
  466. case 'H':
  467. return XKEY_HOME;
  468. case 'F':
  469. return XKEY_END; // terminal
  470. case 'K':
  471. return XKEY_END;
  472. case 'U':
  473. return XKEY_PGUP;
  474. case 'V':
  475. return XKEY_PGDN;
  476. case '@':
  477. return XKEY_INSERT;
  478. }
  479. if (extended[pos - 1] == '~') {
  480. // \x1b[digits~
  481. int number = atoi(extended + 1);
  482. switch (number) {
  483. case 2:
  484. return XKEY_INSERT; // terminal
  485. case 3:
  486. return XKEY_DELETE; // terminal
  487. case 5:
  488. return XKEY_PGUP; // terminal
  489. case 6:
  490. return XKEY_PGDN; // terminal
  491. case 15:
  492. return XKEY_F5; // terminal
  493. case 17:
  494. return XKEY_F6; // terminal
  495. case 18:
  496. return XKEY_F7; // terminal
  497. case 19:
  498. return XKEY_F8; // terminal
  499. case 20:
  500. return XKEY_F9; // terminal
  501. case 21:
  502. return XKEY_F10; // terminal
  503. case 23:
  504. return XKEY_F11;
  505. case 24:
  506. return XKEY_F12; // terminal
  507. }
  508. }
  509. }
  510. if (extended[0] == 'O') {
  511. switch (extended[1]) {
  512. case 'P':
  513. return XKEY_F1;
  514. case 'Q':
  515. return XKEY_F2;
  516. case 'R':
  517. return XKEY_F3;
  518. case 'S':
  519. return XKEY_F4;
  520. case 't':
  521. return XKEY_F5; // syncterm
  522. }
  523. }
  524. // unknown -- This needs to be logged
  525. logf << "\r\nDEBUG:\r\nESC + ";
  526. for (unsigned int x = 0; x < pos; x++) {
  527. char z = extended[x];
  528. if (iscntrl(z)) {
  529. logf << (int)z << " ";
  530. } else {
  531. logf << "'" << (char)z << "'"
  532. << " ";
  533. };
  534. }
  535. logf << "\r\n";
  536. logf.flush();
  537. return XKEY_UNKNOWN;
  538. }
  539. return c;
  540. }
  541. int Door::get_input(void) {
  542. signed int c;
  543. c = getkey();
  544. if (c < 0)
  545. return 0;
  546. return c;
  547. /*
  548. tODInputEvent event;
  549. od_get_input(&event, OD_NO_TIMEOUT, GETIN_NORMAL);
  550. */
  551. }
  552. /*
  553. The following code will wait for 1.5 second:
  554. #include <sys/select.h>
  555. #include <sys/time.h>
  556. #include <unistd.h>`
  557. int main() {
  558. struct timeval t;
  559. t.tv_sec = 1;
  560. t.tv_usec = 500000;
  561. select(0, NULL, NULL, NULL, &t);
  562. }
  563. */
  564. signed int Door::sleep_key(int secs) {
  565. fd_set socket_set;
  566. struct timeval tv;
  567. int select_ret = -1;
  568. /*
  569. int recv_ret;
  570. char key;
  571. */
  572. if (hangup)
  573. return -2;
  574. while (select_ret == -1) {
  575. FD_ZERO(&socket_set);
  576. FD_SET(STDIN_FILENO, &socket_set);
  577. tv.tv_sec = secs;
  578. tv.tv_usec = 0;
  579. select_ret = select(STDIN_FILENO + 1, &socket_set, NULL, NULL, &tv);
  580. // select(STDIN_FILENO + 1, &socket_set, NULL, NULL, bWait ? NULL : &tv);
  581. if (select_ret == -1) {
  582. if (errno == EINTR)
  583. continue;
  584. hangup = true;
  585. log("hangup detected");
  586. return (-2);
  587. }
  588. if (select_ret == 0)
  589. return (-1);
  590. }
  591. return getkey();
  592. }
  593. /**
  594. * Take given buffer and output it.
  595. *
  596. * This originally stored output in the buffer. We now directly output
  597. * via the OpenDoor od_disp_emu.
  598. *
  599. * @param s const char *
  600. * @param n std::streamsize
  601. * @return std::streamsize
  602. */
  603. std::streamsize Door::xsputn(const char *s, std::streamsize n) {
  604. if (debug_capture) {
  605. debug_buffer.append(s, n);
  606. } else {
  607. static std::string buffer;
  608. buffer.append(s, n);
  609. // setp(&(*buffer.begin()), &(*buffer.end()));
  610. if (!hangup) {
  611. std::cout << buffer;
  612. std::cout.flush();
  613. }
  614. // od_disp_emu(buffer.c_str(), TRUE);
  615. // Tracking character position could be a problem / local terminal unicode.
  616. if (track)
  617. cx += n;
  618. buffer.clear();
  619. }
  620. return n;
  621. }
  622. /**
  623. * Stores a character into the buffer.
  624. * This does still use the buffer.
  625. * @todo Replace this also with a direct call to od_disp_emu.
  626. *
  627. * @param c char
  628. * @return int
  629. */
  630. int Door::overflow(char c) {
  631. /*
  632. char temp[2];
  633. temp[0] = c;
  634. temp[1] = 0;
  635. */
  636. // buffer.push_back(c);
  637. // od_disp_emu(temp, TRUE);
  638. if (debug_capture) {
  639. debug_buffer.append(1, c);
  640. } else {
  641. if (!hangup) {
  642. std::cout << c;
  643. std::cout.flush();
  644. }
  645. }
  646. if (track)
  647. cx++;
  648. // setp(&(*buffer.begin()), &(*buffer.end()));
  649. return c;
  650. }
  651. /**
  652. * Construct a new Color Output:: Color Output object
  653. * We default to BLACK/BLACK (not really a valid color),
  654. * pos=0 and len=0.
  655. */
  656. ColorOutput::ColorOutput() : c(COLOR::BLACK, COLOR::BLACK) {
  657. pos = 0;
  658. len = 0;
  659. }
  660. /**
  661. * Reset pos and len to 0.
  662. */
  663. void ColorOutput::reset(void) {
  664. pos = 0;
  665. len = 0;
  666. }
  667. /**
  668. * Construct a new Render:: Render object
  669. *
  670. * Render consists of constant text,
  671. * and vector of ColorOutput
  672. *
  673. * @param txt Text
  674. */
  675. Render::Render(const std::string txt) : text{txt} {}
  676. /**
  677. * Output the Render.
  678. *
  679. * This consists of going through the vector, getting
  680. * the fragment (from pos and len), and outputting the
  681. * color and fragment.
  682. *
  683. * @param os
  684. */
  685. void Render::output(std::ostream &os) {
  686. for (auto out : outputs) {
  687. std::string fragment = text.substr(out.pos, out.len);
  688. os << out.c << fragment;
  689. }
  690. }
  691. /**
  692. * Construct a new Clrscr:: Clrscr object
  693. *
  694. * This is used to clear the screen.
  695. */
  696. Clrscr::Clrscr() {}
  697. /**
  698. * Clear the screen using ANSI codes.
  699. *
  700. * Not all systems home the cursor after clearing the screen.
  701. * We automatically home the cursor as well.
  702. *
  703. * @param os std::ostream&
  704. * @param clr const Clrscr&
  705. * @return std::ostream&
  706. */
  707. std::ostream &operator<<(std::ostream &os, const Clrscr &clr) {
  708. Door *d = dynamic_cast<Door *>(&os);
  709. if (d != nullptr) {
  710. d->track = false;
  711. *d << "\x1b[2J"
  712. "\x1b[H";
  713. d->cx = 1;
  714. d->cy = 1;
  715. d->track = true;
  716. } else {
  717. os << "\x1b[2J"
  718. "\x1b[H";
  719. }
  720. return os;
  721. }
  722. Clrscr cls;
  723. /**
  724. * This is used to issue NL+CR
  725. *
  726. */
  727. NewLine::NewLine() {}
  728. /**
  729. * Output Newline + CarriageReturn
  730. * @param os std::ostream
  731. * @param nl const NewLine
  732. * @return std::ostream&
  733. */
  734. std::ostream &operator<<(std::ostream &os, const NewLine &nl) {
  735. Door *d = dynamic_cast<Door *>(&os);
  736. if (d != nullptr) {
  737. d->track = false;
  738. *d << "\r\n";
  739. d->cx = 1;
  740. d->cy++;
  741. d->track = true;
  742. } else {
  743. os << "\r\n";
  744. };
  745. return os;
  746. }
  747. NewLine nl;
  748. /**
  749. * Construct a new Goto:: Goto object
  750. *
  751. * @param xpos
  752. * @param ypos
  753. */
  754. Goto::Goto(int xpos, int ypos) {
  755. x = xpos;
  756. y = ypos;
  757. }
  758. /**
  759. * Output the ANSI codes to position the cursor to the given y,x position.
  760. *
  761. * @todo Optimize the ANSI goto string output.
  762. * @todo Update the Door object so it know where the cursor
  763. * is positioned.
  764. *
  765. * @param os std::ostream
  766. * @param g const Goto
  767. * @return std::ostream&
  768. */
  769. std::ostream &operator<<(std::ostream &os, const Goto &g) {
  770. Door *d = dynamic_cast<Door *>(&os);
  771. if (d != nullptr) {
  772. d->track = false;
  773. *d << "\x1b[";
  774. if (g.y > 1)
  775. *d << std::to_string(g.y);
  776. os << ";";
  777. if (g.x > 1)
  778. *d << std::to_string(g.x);
  779. *d << "H";
  780. d->cx = g.x;
  781. d->cy = g.y;
  782. d->track = true;
  783. } else {
  784. os << "\x1b[" << std::to_string(g.y) << ";" << std::to_string(g.x) << "H";
  785. };
  786. return os;
  787. }
  788. // EXAMPLES
  789. /// BlueYellow Render example function
  790. renderFunction rBlueYellow = [](const std::string &txt) -> Render {
  791. Render r(txt);
  792. ColorOutput co;
  793. bool uc = true;
  794. ANSIColor blue(COLOR::BLUE, ATTR::BOLD);
  795. ANSIColor cyan(COLOR::YELLOW, ATTR::BOLD);
  796. co.pos = 0;
  797. co.len = 0;
  798. co.c = blue;
  799. // d << blue;
  800. int tpos = 0;
  801. for (char const &c : txt) {
  802. if (uc) {
  803. if (!isupper(c)) {
  804. // possible color change
  805. if (co.len != 0) {
  806. r.outputs.push_back(co);
  807. co.reset();
  808. co.pos = tpos;
  809. }
  810. co.c = cyan;
  811. // d << cyan;
  812. uc = false;
  813. }
  814. } else {
  815. if (isupper(c)) {
  816. if (co.len != 0) {
  817. r.outputs.push_back(co);
  818. co.reset();
  819. co.pos = tpos;
  820. }
  821. co.c = blue;
  822. // d << blue;
  823. uc = true;
  824. }
  825. }
  826. co.len++;
  827. tpos++;
  828. // d << c;
  829. }
  830. if (co.len != 0) {
  831. r.outputs.push_back(co);
  832. }
  833. return r;
  834. };
  835. door::renderFunction renderStatusValue(door::ANSIColor status,
  836. door::ANSIColor value) {
  837. door::renderFunction rf = [status,
  838. value](const std::string &txt) -> door::Render {
  839. door::Render r(txt);
  840. door::ColorOutput co;
  841. co.pos = 0;
  842. co.len = 0;
  843. co.c = status;
  844. size_t pos = txt.find(':');
  845. if (pos == std::string::npos) {
  846. // failed to find - use entire string as status color.
  847. co.len = txt.length();
  848. r.outputs.push_back(co);
  849. } else {
  850. pos++; // Have : in status color
  851. co.len = pos;
  852. r.outputs.push_back(co);
  853. co.reset();
  854. co.pos = pos;
  855. co.c = value;
  856. co.len = txt.length() - pos;
  857. r.outputs.push_back(co);
  858. }
  859. return r;
  860. };
  861. return rf;
  862. }
  863. door::renderFunction rStatusValue = [](const std::string &txt) -> door::Render {
  864. door::Render r(txt);
  865. door::ColorOutput co;
  866. // default colors STATUS: value
  867. door::ANSIColor status(door::COLOR::BLUE, door::ATTR::BOLD);
  868. door::ANSIColor value(door::COLOR::YELLOW, door::ATTR::BOLD);
  869. co.pos = 0;
  870. co.len = 0;
  871. co.c = status;
  872. size_t pos = txt.find(':');
  873. if (pos == std::string::npos) {
  874. // failed to find - use entire string as status color.
  875. co.len = txt.length();
  876. r.outputs.push_back(co);
  877. } else {
  878. pos++; // Have : in status color
  879. co.len = pos;
  880. r.outputs.push_back(co);
  881. co.reset();
  882. co.pos = pos;
  883. co.c = value;
  884. co.len = txt.length() - pos;
  885. r.outputs.push_back(co);
  886. }
  887. return r;
  888. };
  889. /*
  890. std::function<void(Door &d, std::string &txt)> BlueYellow2 =
  891. [](Door &d, std::string &txt) -> void {
  892. bool uc = true;
  893. ANSIColor blue(COLOR::BLACK, COLOR::CYAN);
  894. ANSIColor cyan(COLOR::YELLOW, COLOR::BLUE, ATTR::BOLD);
  895. d << blue;
  896. for (char const &c : txt) {
  897. if (uc) {
  898. if (c == ':') {
  899. d << cyan;
  900. uc = false;
  901. }
  902. }
  903. d << c;
  904. }
  905. };
  906. std::function<void(Door &d, std::string &txt)> Aweful =
  907. [](Door &d, std::string &txt) -> void {
  908. for (char const &c : txt) {
  909. // Color clr((Colors)((c % 14) + 1), Colors::BLACK, 0);
  910. // Use only BRIGHT/LIGHT colors.
  911. ANSIColor clr((COLOR)(c % 8), ATTR::BOLD);
  912. d << clr << c;
  913. }
  914. };
  915. */
  916. } // namespace door