door.cpp 26 KB

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