door.cpp 21 KB

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