door.cpp 29 KB

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