door.cpp 24 KB

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