door.cpp 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290
  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. // This delay isn't long enough for QModem in a DOSBOX.
  464. // doorway mode arrow keys aren't always caught.
  465. tv.tv_sec = 0;
  466. tv.tv_usec = 100;
  467. // tv.tv_usec = 500;
  468. select_ret = select(STDIN_FILENO + 1, &socket_set, NULL, NULL, &tv);
  469. // select(STDIN_FILENO + 1, &socket_set, NULL, NULL, bWait ? NULL : &tv);
  470. if (select_ret == -1) {
  471. if (errno == EINTR)
  472. continue;
  473. log() << "hangup detected" << std::endl;
  474. door::hangup = true;
  475. return (-2);
  476. }
  477. if (select_ret == 0)
  478. return (-1);
  479. }
  480. recv_ret = read(STDIN_FILENO, &key, 1);
  481. if (recv_ret != 1) {
  482. // possibly log this.
  483. log() << "hangup" << std::endl;
  484. hangup = true;
  485. return -2;
  486. }
  487. // debug weird keys/layouts.
  488. // log() << "read " << std::hex << (int)key << std::endl;
  489. return key;
  490. }
  491. void Door::unget(char c) {
  492. if (bpos < sizeof(buffer) - 1) {
  493. buffer[bpos] = c;
  494. bpos++;
  495. }
  496. }
  497. char Door::get(void) {
  498. if (bpos == 0)
  499. return 0;
  500. bpos--;
  501. return buffer[bpos];
  502. }
  503. signed int Door::getkey(void) {
  504. signed int c, c2;
  505. if (bpos != 0) {
  506. c = get();
  507. } else {
  508. c = getch();
  509. }
  510. if (c < 0)
  511. return c;
  512. /*
  513. We get 0x0d 0x00 for [Enter] (Syncterm)
  514. From David's syncterm, I'm getting 0x0d 0x0a.
  515. This strips out the null.
  516. */
  517. if (c == 0x0d) {
  518. c2 = getch();
  519. if ((c2 != 0) and (c2 >= 0) and (c2 != 0x0a)) {
  520. log() << "got " << (int)c2 << " so stuffing it into unget buffer."
  521. << std::endl;
  522. unget(c2);
  523. }
  524. return c;
  525. }
  526. if (c == 0) {
  527. // possibly "doorway mode"
  528. int tries = 0;
  529. c2 = getch();
  530. while (c2 < 0) {
  531. if (tries > 7) {
  532. log() << "ok, got " << c2 << " and " << tries << " so returning 0x00!"
  533. << std::endl;
  534. return c;
  535. }
  536. c2 = getch();
  537. ++tries;
  538. }
  539. if (tries > 0) {
  540. log() << "tries " << tries << std::endl;
  541. }
  542. switch (c2) {
  543. case 0x50:
  544. return XKEY_DOWN_ARROW;
  545. case 0x48:
  546. return XKEY_UP_ARROW;
  547. case 0x4b:
  548. return XKEY_LEFT_ARROW;
  549. case 0x4d:
  550. return XKEY_RIGHT_ARROW;
  551. case 0x47:
  552. return XKEY_HOME;
  553. case 0x4f:
  554. return XKEY_END;
  555. case 0x49:
  556. return XKEY_PGUP;
  557. case 0x51:
  558. return XKEY_PGDN;
  559. case 0x3b:
  560. return XKEY_F1;
  561. case 0x3c:
  562. return XKEY_F2;
  563. case 0x3d:
  564. return XKEY_F3;
  565. case 0x3e:
  566. return XKEY_F4;
  567. case 0x3f:
  568. return XKEY_F5;
  569. case 0x40:
  570. return XKEY_F6;
  571. case 0x41:
  572. return XKEY_F7;
  573. case 0x42:
  574. return XKEY_F8;
  575. case 0x43:
  576. return XKEY_F9;
  577. case 0x44:
  578. return XKEY_F10;
  579. /*
  580. case 0x45:
  581. return XKEY_F11;
  582. case 0x46:
  583. return XKEY_F12;
  584. */
  585. case 0x52:
  586. return XKEY_INSERT;
  587. case 0x53:
  588. return XKEY_DELETE;
  589. }
  590. logf << "\r\nDEBUG:\r\n0x00 + 0x" << std::hex << (int)c2;
  591. logf << "\r\n";
  592. logf.flush();
  593. }
  594. if (c == 0x1b) {
  595. // possible extended key
  596. c2 = getch();
  597. if (c2 < 0) {
  598. // nope, just plain ESC key
  599. return c;
  600. }
  601. // consume extended key values int extended buffer
  602. char extended[16];
  603. unsigned int pos = 0;
  604. extended[pos] = (char)c2;
  605. extended[pos + 1] = 0;
  606. pos++;
  607. while ((pos < sizeof(extended) - 1) and ((c2 = getch()) >= 0)) {
  608. // special case here where I'm sending out cursor location requests
  609. // and the \x1b[X;YR strings are getting buffered.
  610. if (c2 == 0x1b) {
  611. unget(c2);
  612. break;
  613. }
  614. extended[pos] = (char)c2;
  615. extended[pos + 1] = 0;
  616. pos++;
  617. }
  618. // convert extended buffer to special key
  619. if (extended[0] == '[') {
  620. switch (extended[1]) {
  621. case 'A':
  622. return XKEY_UP_ARROW;
  623. case 'B':
  624. return XKEY_DOWN_ARROW;
  625. case 'C':
  626. return XKEY_RIGHT_ARROW;
  627. case 'D':
  628. return XKEY_LEFT_ARROW;
  629. case 'H':
  630. return XKEY_HOME;
  631. case 'F':
  632. return XKEY_END; // terminal
  633. case 'K':
  634. return XKEY_END;
  635. case 'U':
  636. return XKEY_PGUP;
  637. case 'V':
  638. return XKEY_PGDN;
  639. case '@':
  640. return XKEY_INSERT;
  641. }
  642. if (extended[pos - 1] == '~') {
  643. // \x1b[digits~
  644. int number = atoi(extended + 1);
  645. switch (number) {
  646. case 2:
  647. return XKEY_INSERT; // terminal
  648. case 3:
  649. return XKEY_DELETE; // terminal
  650. case 5:
  651. return XKEY_PGUP; // terminal
  652. case 6:
  653. return XKEY_PGDN; // terminal
  654. case 15:
  655. return XKEY_F5; // terminal
  656. case 17:
  657. return XKEY_F6; // terminal
  658. case 18:
  659. return XKEY_F7; // terminal
  660. case 19:
  661. return XKEY_F8; // terminal
  662. case 20:
  663. return XKEY_F9; // terminal
  664. case 21:
  665. return XKEY_F10; // terminal
  666. case 23:
  667. return XKEY_F11;
  668. case 24:
  669. return XKEY_F12; // terminal
  670. }
  671. }
  672. }
  673. if (extended[0] == 'O') {
  674. switch (extended[1]) {
  675. case 'P':
  676. return XKEY_F1;
  677. case 'Q':
  678. return XKEY_F2;
  679. case 'R':
  680. return XKEY_F3;
  681. case 'S':
  682. return XKEY_F4;
  683. case 't':
  684. return XKEY_F5; // syncterm
  685. }
  686. }
  687. // unknown -- This needs to be logged
  688. logf << "\r\nDEBUG:\r\nESC + ";
  689. for (unsigned int x = 0; x < pos; x++) {
  690. char z = extended[x];
  691. if (iscntrl(z)) {
  692. logf << (int)z << " ";
  693. } else {
  694. logf << "'" << (char)z << "'"
  695. << " ";
  696. };
  697. }
  698. logf << "\r\n";
  699. logf.flush();
  700. return XKEY_UNKNOWN;
  701. }
  702. return c;
  703. }
  704. int Door::get_input(void) {
  705. signed int c;
  706. c = getkey();
  707. if (c < 0)
  708. return 0;
  709. return c;
  710. /*
  711. tODInputEvent event;
  712. od_get_input(&event, OD_NO_TIMEOUT, GETIN_NORMAL);
  713. */
  714. }
  715. /*
  716. The following code will wait for 1.5 second:
  717. #include <sys/select.h>
  718. #include <sys/time.h>
  719. #include <unistd.h>`
  720. int main() {
  721. struct timeval t;
  722. t.tv_sec = 1;
  723. t.tv_usec = 500000;
  724. select(0, NULL, NULL, NULL, &t);
  725. }
  726. */
  727. signed int Door::sleep_key(int secs) {
  728. fd_set socket_set;
  729. struct timeval tv;
  730. int select_ret = -1;
  731. /*
  732. int recv_ret;
  733. char key;
  734. */
  735. if (hangup)
  736. return -2;
  737. if (time_left < 2)
  738. return -3;
  739. while (select_ret == -1) {
  740. FD_ZERO(&socket_set);
  741. FD_SET(STDIN_FILENO, &socket_set);
  742. tv.tv_sec = secs;
  743. tv.tv_usec = 0;
  744. select_ret = select(STDIN_FILENO + 1, &socket_set, NULL, NULL, &tv);
  745. // select(STDIN_FILENO + 1, &socket_set, NULL, NULL, bWait ? NULL : &tv);
  746. if (select_ret == -1) {
  747. if (errno == EINTR)
  748. continue;
  749. hangup = true;
  750. log() << "hangup detected" << std::endl;
  751. return (-2);
  752. }
  753. if (select_ret == 0)
  754. return (-1);
  755. }
  756. return getkey();
  757. }
  758. std::string Door::input_string(int max) {
  759. std::string input;
  760. // draw the input area.
  761. *this << std::string(max, ' ');
  762. *this << std::string(max, '\x08');
  763. int c;
  764. while (true) {
  765. c = sleep_key(inactivity);
  766. if (c < 0) {
  767. input.clear();
  768. return input;
  769. }
  770. if (c > 0x1000)
  771. continue;
  772. if (isprint(c)) {
  773. if (int(input.length()) < max) {
  774. *this << char(c);
  775. input.append(1, c);
  776. } else {
  777. // bell
  778. *this << '\x07';
  779. }
  780. } else {
  781. switch (c) {
  782. case 0x08:
  783. case 0x7f:
  784. if (input.length() > 0) {
  785. *this << "\x08 \x08";
  786. // this->flush();
  787. input.erase(input.length() - 1);
  788. };
  789. break;
  790. case 0x0d:
  791. return input;
  792. }
  793. }
  794. }
  795. }
  796. /**
  797. * Take given buffer and output it.
  798. *
  799. * This originally stored output in the buffer. We now directly output
  800. * via the OpenDoor od_disp_emu.
  801. *
  802. * @param s const char *
  803. * @param n std::streamsize
  804. * @return std::streamsize
  805. */
  806. std::streamsize Door::xsputn(const char *s, std::streamsize n) {
  807. if (debug_capture) {
  808. debug_buffer.append(s, n);
  809. } else {
  810. static std::string buffer;
  811. buffer.append(s, n);
  812. // setp(&(*buffer.begin()), &(*buffer.end()));
  813. if (!hangup) {
  814. std::cout << buffer;
  815. std::cout.flush();
  816. }
  817. // od_disp_emu(buffer.c_str(), TRUE);
  818. // Tracking character position could be a problem / local terminal unicode.
  819. if (track)
  820. cx += n;
  821. buffer.clear();
  822. }
  823. return n;
  824. }
  825. /**
  826. * Stores a character into the buffer.
  827. * This does still use the buffer.
  828. * @todo Replace this also with a direct call to od_disp_emu.
  829. *
  830. * @param c char
  831. * @return int
  832. */
  833. int Door::overflow(char c) {
  834. /*
  835. char temp[2];
  836. temp[0] = c;
  837. temp[1] = 0;
  838. */
  839. // buffer.push_back(c);
  840. // od_disp_emu(temp, TRUE);
  841. if (debug_capture) {
  842. debug_buffer.append(1, c);
  843. } else {
  844. if (!hangup) {
  845. std::cout << c;
  846. std::cout.flush();
  847. }
  848. }
  849. if (track)
  850. cx++;
  851. // setp(&(*buffer.begin()), &(*buffer.end()));
  852. return c;
  853. }
  854. /**
  855. * Construct a new Color Output:: Color Output object
  856. * We default to BLACK/BLACK (not really a valid color),
  857. * pos=0 and len=0.
  858. */
  859. ColorOutput::ColorOutput() : c(COLOR::BLACK, COLOR::BLACK) {
  860. pos = 0;
  861. len = 0;
  862. }
  863. /**
  864. * Reset pos and len to 0.
  865. */
  866. void ColorOutput::reset(void) {
  867. pos = 0;
  868. len = 0;
  869. }
  870. /**
  871. * Construct a new Render:: Render object
  872. *
  873. * Render consists of constant text,
  874. * and vector of ColorOutput
  875. *
  876. * @param txt Text
  877. */
  878. Render::Render(const std::string txt) : text{txt} {}
  879. /**
  880. * Output the Render.
  881. *
  882. * This consists of going through the vector, getting
  883. * the fragment (from pos and len), and outputting the
  884. * color and fragment.
  885. *
  886. * @param os
  887. */
  888. void Render::output(std::ostream &os) {
  889. for (auto out : outputs) {
  890. std::string fragment = text.substr(out.pos, out.len);
  891. os << out.c << fragment;
  892. }
  893. }
  894. /**
  895. * Construct a new Clrscr:: Clrscr object
  896. *
  897. * This is used to clear the screen.
  898. */
  899. Clrscr::Clrscr() {}
  900. /**
  901. * Clear the screen using ANSI codes.
  902. *
  903. * Not all systems home the cursor after clearing the screen.
  904. * We automatically home the cursor as well.
  905. *
  906. * @param os std::ostream&
  907. * @param clr const Clrscr&
  908. * @return std::ostream&
  909. */
  910. std::ostream &operator<<(std::ostream &os, const Clrscr &clr) {
  911. Door *d = dynamic_cast<Door *>(&os);
  912. if (d != nullptr) {
  913. d->track = false;
  914. *d << "\x1b[2J"
  915. "\x1b[H";
  916. d->cx = 1;
  917. d->cy = 1;
  918. d->track = true;
  919. } else {
  920. os << "\x1b[2J"
  921. "\x1b[H";
  922. }
  923. return os;
  924. }
  925. Clrscr cls;
  926. /**
  927. * This is used to issue NL+CR
  928. *
  929. */
  930. NewLine::NewLine() {}
  931. /**
  932. * Output Newline + CarriageReturn
  933. * @param os std::ostream
  934. * @param nl const NewLine
  935. * @return std::ostream&
  936. */
  937. std::ostream &operator<<(std::ostream &os, const NewLine &nl) {
  938. Door *d = dynamic_cast<Door *>(&os);
  939. if (d != nullptr) {
  940. d->track = false;
  941. *d << "\r\n";
  942. d->cx = 1;
  943. d->cy++;
  944. d->track = true;
  945. } else {
  946. os << "\r\n";
  947. };
  948. return os;
  949. }
  950. NewLine nl;
  951. /**
  952. * Construct a new Goto:: Goto object
  953. *
  954. * @param xpos
  955. * @param ypos
  956. */
  957. Goto::Goto(int xpos, int ypos) {
  958. x = xpos;
  959. y = ypos;
  960. }
  961. void Goto::set(int xpos, int ypos) {
  962. x = xpos;
  963. y = ypos;
  964. }
  965. /**
  966. * Output the ANSI codes to position the cursor to the given y,x position.
  967. *
  968. * @todo Optimize the ANSI goto string output.
  969. * @todo Update the Door object so it know where the cursor
  970. * is positioned.
  971. *
  972. * @param os std::ostream
  973. * @param g const Goto
  974. * @return std::ostream&
  975. */
  976. std::ostream &operator<<(std::ostream &os, const Goto &g) {
  977. Door *d = dynamic_cast<Door *>(&os);
  978. if (d != nullptr) {
  979. d->track = false;
  980. *d << "\x1b[";
  981. if (g.y > 1)
  982. *d << std::to_string(g.y);
  983. if (g.x > 1) {
  984. os << ";";
  985. *d << std::to_string(g.x);
  986. }
  987. *d << "H";
  988. d->cx = g.x;
  989. d->cy = g.y;
  990. d->track = true;
  991. } else {
  992. os << "\x1b[" << std::to_string(g.y) << ";" << std::to_string(g.x) << "H";
  993. };
  994. return os;
  995. }
  996. const char SaveCursor[] = "\x1b[s";
  997. const char RestoreCursor[] = "\x1b[u";
  998. // EXAMPLES
  999. /// BlueYellow Render example function
  1000. renderFunction rBlueYellow = [](const std::string &txt) -> Render {
  1001. Render r(txt);
  1002. ColorOutput co;
  1003. bool uc = true;
  1004. ANSIColor blue(COLOR::BLUE, ATTR::BOLD);
  1005. ANSIColor cyan(COLOR::YELLOW, ATTR::BOLD);
  1006. co.pos = 0;
  1007. co.len = 0;
  1008. co.c = blue;
  1009. // d << blue;
  1010. int tpos = 0;
  1011. for (char const &c : txt) {
  1012. if (uc) {
  1013. if (!isupper(c)) {
  1014. // possible color change
  1015. if (co.len != 0) {
  1016. r.outputs.push_back(co);
  1017. co.reset();
  1018. co.pos = tpos;
  1019. }
  1020. co.c = cyan;
  1021. // d << cyan;
  1022. uc = false;
  1023. }
  1024. } else {
  1025. if (isupper(c)) {
  1026. if (co.len != 0) {
  1027. r.outputs.push_back(co);
  1028. co.reset();
  1029. co.pos = tpos;
  1030. }
  1031. co.c = blue;
  1032. // d << blue;
  1033. uc = true;
  1034. }
  1035. }
  1036. co.len++;
  1037. tpos++;
  1038. // d << c;
  1039. }
  1040. if (co.len != 0) {
  1041. r.outputs.push_back(co);
  1042. }
  1043. return r;
  1044. };
  1045. door::renderFunction renderStatusValue(door::ANSIColor status,
  1046. door::ANSIColor value) {
  1047. door::renderFunction rf = [status,
  1048. value](const std::string &txt) -> door::Render {
  1049. door::Render r(txt);
  1050. door::ColorOutput co;
  1051. co.pos = 0;
  1052. co.len = 0;
  1053. co.c = status;
  1054. size_t pos = txt.find(':');
  1055. if (pos == std::string::npos) {
  1056. // failed to find - use entire string as status color.
  1057. co.len = txt.length();
  1058. r.outputs.push_back(co);
  1059. } else {
  1060. pos++; // Have : in status color
  1061. co.len = pos;
  1062. r.outputs.push_back(co);
  1063. co.reset();
  1064. co.pos = pos;
  1065. co.c = value;
  1066. co.len = txt.length() - pos;
  1067. r.outputs.push_back(co);
  1068. }
  1069. return r;
  1070. };
  1071. return rf;
  1072. }
  1073. door::renderFunction rStatusValue = [](const std::string &txt) -> door::Render {
  1074. door::Render r(txt);
  1075. door::ColorOutput co;
  1076. // default colors STATUS: value
  1077. door::ANSIColor status(door::COLOR::BLUE, door::ATTR::BOLD);
  1078. door::ANSIColor value(door::COLOR::YELLOW, door::ATTR::BOLD);
  1079. co.pos = 0;
  1080. co.len = 0;
  1081. co.c = status;
  1082. size_t pos = txt.find(':');
  1083. if (pos == std::string::npos) {
  1084. // failed to find - use entire string as status color.
  1085. co.len = txt.length();
  1086. r.outputs.push_back(co);
  1087. } else {
  1088. pos++; // Have : in status color
  1089. co.len = pos;
  1090. r.outputs.push_back(co);
  1091. co.reset();
  1092. co.pos = pos;
  1093. co.c = value;
  1094. co.len = txt.length() - pos;
  1095. r.outputs.push_back(co);
  1096. }
  1097. return r;
  1098. };
  1099. /*
  1100. std::function<void(Door &d, std::string &txt)> BlueYellow2 =
  1101. [](Door &d, std::string &txt) -> void {
  1102. bool uc = true;
  1103. ANSIColor blue(COLOR::BLACK, COLOR::CYAN);
  1104. ANSIColor cyan(COLOR::YELLOW, COLOR::BLUE, ATTR::BOLD);
  1105. d << blue;
  1106. for (char const &c : txt) {
  1107. if (uc) {
  1108. if (c == ':') {
  1109. d << cyan;
  1110. uc = false;
  1111. }
  1112. }
  1113. d << c;
  1114. }
  1115. };
  1116. std::function<void(Door &d, std::string &txt)> Aweful =
  1117. [](Door &d, std::string &txt) -> void {
  1118. for (char const &c : txt) {
  1119. // Color clr((Colors)((c % 14) + 1), Colors::BLACK, 0);
  1120. // Use only BRIGHT/LIGHT colors.
  1121. ANSIColor clr((COLOR)(c % 8), ATTR::BOLD);
  1122. d << clr << c;
  1123. }
  1124. };
  1125. */
  1126. } // namespace door