door.cpp 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973
  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. /*
  820. std::function<void(Door &d, std::string &txt)> BlueYellow2 =
  821. [](Door &d, std::string &txt) -> void {
  822. bool uc = true;
  823. ANSIColor blue(COLOR::BLACK, COLOR::CYAN);
  824. ANSIColor cyan(COLOR::YELLOW, COLOR::BLUE, ATTR::BOLD);
  825. d << blue;
  826. for (char const &c : txt) {
  827. if (uc) {
  828. if (c == ':') {
  829. d << cyan;
  830. uc = false;
  831. }
  832. }
  833. d << c;
  834. }
  835. };
  836. std::function<void(Door &d, std::string &txt)> Aweful =
  837. [](Door &d, std::string &txt) -> void {
  838. for (char const &c : txt) {
  839. // Color clr((Colors)((c % 14) + 1), Colors::BLACK, 0);
  840. // Use only BRIGHT/LIGHT colors.
  841. ANSIColor clr((COLOR)(c % 8), ATTR::BOLD);
  842. d << clr << c;
  843. }
  844. };
  845. */
  846. } // namespace door