door.cpp 27 KB

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