door.cpp 29 KB

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