door.cpp 27 KB

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