door.cpp 23 KB

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