door.cpp 29 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322
  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. std::list<char> pushback;
  39. /**
  40. * @brief convert string to lowercase
  41. *
  42. * @param text
  43. */
  44. void to_lower(std::string &text) {
  45. transform(text.begin(), text.end(), text.begin(), ::tolower);
  46. }
  47. /**
  48. * @brief Replaces one string with another once
  49. *
  50. * Returns true if replaced.
  51. *
  52. * @param[in,out] str String to modify
  53. * @param[in] from String to search for
  54. * @param[in] to String to replace with
  55. * @return true
  56. * @return false
  57. */
  58. bool replace(std::string &str, const std::string &from, const std::string &to) {
  59. size_t start_pos = str.find(from);
  60. if (start_pos == std::string::npos)
  61. return false;
  62. str.replace(start_pos, from.length(), to);
  63. return true;
  64. }
  65. /**
  66. * @brief Replace all instances of from with to.
  67. *
  68. * @param str
  69. * @param from
  70. * @param to
  71. * @return true
  72. * @return false
  73. */
  74. bool replace(std::string &str, const char *from, const char *to) {
  75. size_t start_pos = str.find(from);
  76. if (start_pos == std::string::npos)
  77. return false;
  78. str.replace(start_pos, strlen(from), to);
  79. return true;
  80. }
  81. static bool hangup = false;
  82. /**
  83. * @brief Signal handler for detecting hangup/broken pipe
  84. *
  85. * @param signal
  86. */
  87. void sig_handler(int signal) {
  88. hangup = true;
  89. /*
  90. ofstream sigf;
  91. sigf.open("signal.log", std::ofstream::out | std::ofstream::app);
  92. sigf << "SNAP! GOT: " << signal << std::endl;
  93. sigf.close();
  94. */
  95. // 13 SIGPIPE -- ok, what do I do with this, eh?
  96. }
  97. /**
  98. * @brief Converts from one encoding to another.
  99. * Uses iconv (international conversion) API.
  100. */
  101. class IConv {
  102. iconv_t ic;
  103. public:
  104. IConv(const char *to, const char *from);
  105. ~IConv();
  106. int convert(char *input, char *output, size_t outbufsize);
  107. };
  108. /**
  109. * @brief Construct a new IConv::IConv object
  110. *
  111. * Give the encodings that you want to convert to and from.
  112. * @param to
  113. * @param from
  114. */
  115. IConv::IConv(const char *to, const char *from) : ic(iconv_open(to, from)) {}
  116. IConv::~IConv() { iconv_close(ic); }
  117. /**
  118. * @brief Calls iconv API to do the conversion.
  119. *
  120. * Buffers must be provided.
  121. * @param input
  122. * @param output
  123. * @param outbufsize
  124. * @return int
  125. */
  126. int IConv::convert(char *input, char *output, size_t outbufsize) {
  127. size_t inbufsize = strlen(input);
  128. // size_t orig_size = outbufsize;
  129. // memset(output, 0, outbufsize);
  130. // https://www.gnu.org/savannah-checkouts/gnu/libiconv/documentation/libiconv-1.15/iconv.3.html
  131. int r = iconv(ic, &input, &inbufsize, &output, &outbufsize);
  132. *output = 0;
  133. return r;
  134. }
  135. /**
  136. * @brief converter that we provide to convert from CP437 to UTF-8.
  137. * \re cp437toUnicode
  138. */
  139. static IConv converter("UTF-8", "CP437");
  140. /**
  141. * @brief Convert from CP437 to unicode.
  142. *
  143. * @param input
  144. * @param out
  145. */
  146. void cp437toUnicode(std::string input, std::string &out) {
  147. char buffer[10240];
  148. char output[16384];
  149. strcpy(buffer, input.c_str());
  150. converter.convert(buffer, output, sizeof(output));
  151. out.assign(output);
  152. }
  153. /**
  154. * @brief Convert from CP437 to unicode.
  155. *
  156. * @param input
  157. * @param out
  158. */
  159. void cp437toUnicode(const char *input, std::string &out) {
  160. char buffer[10240];
  161. char output[16384];
  162. strcpy(buffer, input);
  163. converter.convert(buffer, output, sizeof(output));
  164. out.assign(output);
  165. }
  166. /**
  167. * @brief Was unicode detected?
  168. */
  169. bool unicode = false;
  170. /**
  171. * @brief Was full CP437 detected?
  172. *
  173. * This is for full CP437 support, meaning it also supports hearts, diamonds,
  174. * spades, clubs char(3)..char(6). These are sometimes ignored by CP437
  175. * translation programs as control codes.
  176. */
  177. bool full_cp437 = false;
  178. /**
  179. * @brief Capture the output for debugging.
  180. *
  181. * This is used by the tests.
  182. */
  183. bool debug_capture = false;
  184. /**
  185. * @brief Construct a new Door:: Door object
  186. *
  187. * @param[in] dname Door name used for logfile
  188. * @param[in] argc
  189. * @param[in] argv
  190. */
  191. Door::Door(std::string dname, int argc, char *argv[])
  192. : std::ostream(this), doorname{dname},
  193. has_dropfile{false}, debugging{false}, seconds_elapsed{0},
  194. previous(COLOR::WHITE), track{true}, cx{1}, cy{1},
  195. inactivity{120}, node{1} {
  196. // Setup commandline options
  197. opt.addUsage("Door++ library by BUGZ (C) 2021");
  198. opt.addUsage("");
  199. opt.addUsage(" -h --help Displays this help");
  200. opt.addUsage(" -l --local Local Mode");
  201. opt.addUsage(" -d --dropfile [FILENAME] Load Dropfile");
  202. opt.addUsage(" -n --node N Set node number");
  203. // opt.addUsage(" -c --cp437 Force CP437");
  204. // opt.addUsage(" -b --bbsname NAME Set BBS Name");
  205. opt.addUsage(" -u --username NAME Set Username");
  206. opt.addUsage(" -t --timeleft N Set time left");
  207. opt.addUsage(" --maxtime N Set max time");
  208. opt.addUsage("");
  209. opt.setFlag("help", 'h');
  210. opt.setFlag("local", 'l');
  211. opt.setFlag("cp437", 'c');
  212. opt.setFlag("unicode");
  213. opt.setFlag("debuggering");
  214. opt.setOption("dropfile", 'd');
  215. // opt.setOption("bbsname", 'b');
  216. opt.setOption("username", 'u');
  217. opt.setOption("timeleft", 't');
  218. opt.setOption("maxtime");
  219. opt.processCommandArgs(argc, argv);
  220. if (!opt.hasOptions()) {
  221. opt.printUsage();
  222. exit(1);
  223. }
  224. if (opt.getFlag("help") || opt.getFlag('h')) {
  225. opt.printUsage();
  226. exit(1);
  227. }
  228. if (opt.getValue("username") != nullptr) {
  229. username = opt.getValue("username");
  230. handle = username;
  231. }
  232. if (opt.getFlag("debuggering")) {
  233. debugging = true;
  234. }
  235. if (opt.getValue("node") != nullptr) {
  236. node = atoi(opt.getValue("node"));
  237. }
  238. if (opt.getValue("timeleft") != nullptr) {
  239. time_left = atoi(opt.getValue("timeleft"));
  240. } else {
  241. // sensible default
  242. time_left = 25;
  243. }
  244. time_used = 0;
  245. /*
  246. if (opt.getValue("bbsname") != nullptr) {
  247. bbsname = opt.getValue("bbsname");
  248. }
  249. */
  250. std::string logFileName = dname + ".log";
  251. logf.open(logFileName.c_str(), std::ofstream::out | std::ofstream::app);
  252. parse_dropfile(opt.getValue("dropfile"));
  253. /*
  254. If the dropfile has time_left, we'll use it.
  255. Adjust time_left by maxtime value (if given).
  256. */
  257. if (opt.getValue("maxtime") != nullptr) {
  258. int maxtime = atoi(opt.getValue("maxtime"));
  259. if (time_left > maxtime) {
  260. logf << "Adjusting time from " << time_left << " to " << maxtime
  261. << std::endl;
  262. time_left = maxtime;
  263. }
  264. }
  265. if (opt.getFlag("local")) {
  266. if (username.empty()) {
  267. std::cout << "Local mode requires username to be set." << std::endl;
  268. opt.printUsage();
  269. exit(1);
  270. }
  271. } else {
  272. // we must have a dropfile, or else!
  273. if (!has_dropfile) {
  274. std::cout << "I require a dropfile. And a shrubbery." << std::endl;
  275. opt.printUsage();
  276. exit(1);
  277. }
  278. }
  279. // Set program name
  280. log() << "Door init" << std::endl;
  281. init();
  282. // door.sys doesn't give BBS name. system_name
  283. if (!debugging) {
  284. detect_unicode_and_screen();
  285. logf << "Screen " << width << " X " << height << " unicode " << unicode
  286. << " full_cp437 " << full_cp437 << std::endl;
  287. }
  288. if (opt.getFlag("cp437")) {
  289. unicode = false;
  290. }
  291. if (opt.getFlag("unicode")) {
  292. unicode = true;
  293. }
  294. }
  295. Door::~Door() {
  296. // restore default mode
  297. // tcsetattr(STDIN_FILENO, TCSANOW, &tio_default);
  298. log() << "dtor" << std::endl;
  299. tcsetattr(STDIN_FILENO, TCOFLUSH, &tio_default);
  300. signal(SIGHUP, SIG_DFL);
  301. signal(SIGPIPE, SIG_DFL);
  302. // stop time thread
  303. stop_thread.set_value();
  304. time_thread.join();
  305. log() << "done" << std::endl;
  306. logf.close();
  307. }
  308. // https://www.tutorialspoint.com/how-do-i-terminate-a-thread-in-cplusplus11
  309. void Door::time_thread_run(std::future<void> future) {
  310. while (future.wait_for(std::chrono::milliseconds(1)) ==
  311. std::future_status::timeout) {
  312. std::this_thread::sleep_for(std::chrono::seconds(1));
  313. ++seconds_elapsed;
  314. if (seconds_elapsed % 60 == 0) {
  315. if (time_left > 0)
  316. --time_left;
  317. ++time_used;
  318. }
  319. }
  320. }
  321. void Door::init(void) {
  322. // https://viewsourcecode.org/snaptoken/kilo/02.enteringRawMode.html
  323. // https://viewsourcecode.org/snaptoken/kilo/03.rawInputAndOutput.html
  324. // ok! I didn't know about VTIME ! That's something different!
  325. // enable terminal RAW mode
  326. struct termios tio_raw;
  327. tcgetattr(STDIN_FILENO, &tio_default);
  328. tio_raw = tio_default;
  329. cfmakeraw(&tio_raw);
  330. // local terminal magic
  331. tio_raw.c_cc[VMIN] = 0;
  332. tio_raw.c_cc[VTIME] = 1;
  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. signed int Door::getkeyOrPushback(void) {
  582. signed int c;
  583. if (!door::pushback.empty()) {
  584. c = door::pushback.front();
  585. door::pushback.pop_front();
  586. return c;
  587. }
  588. return getch();
  589. }
  590. signed int Door::getkey(void) {
  591. signed int c, c2;
  592. c = getkeyOrPushback();
  593. /*
  594. if (bpos != 0) {
  595. c = get();
  596. } else {
  597. c = getch();
  598. }
  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 = getkeyOrPushback();
  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. door::pushback.push_front(c2);
  613. }
  614. return c;
  615. }
  616. if (c == 0) {
  617. // possibly "doorway mode"
  618. int tries = 0;
  619. c2 = getkeyOrPushback();
  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 = getkeyOrPushback();
  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 = getkeyOrPushback();
  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. door::pushback.push_front(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. /*
  795. The following code will wait for 1.5 second:
  796. #include <sys/select.h>
  797. #include <sys/time.h>
  798. #include <unistd.h>`
  799. int main() {
  800. struct timeval t;
  801. t.tv_sec = 1;
  802. t.tv_usec = 500000;
  803. select(0, NULL, NULL, NULL, &t);
  804. }
  805. */
  806. /**
  807. * @brief Waits secs seconds for a keypress.
  808. *
  809. * returns key, or -1 on timeout (seconds passed).
  810. * -2 hangup
  811. * -3 out of time
  812. *
  813. * @param secs
  814. * @return signed int
  815. */
  816. signed int Door::sleep_key(int secs) {
  817. fd_set socket_set;
  818. struct timeval tv;
  819. int select_ret = -1;
  820. /*
  821. int recv_ret;
  822. char key;
  823. */
  824. if (hangup)
  825. return -2;
  826. if (time_left < 2)
  827. return -3;
  828. while (select_ret == -1) {
  829. FD_ZERO(&socket_set);
  830. FD_SET(STDIN_FILENO, &socket_set);
  831. tv.tv_sec = secs;
  832. tv.tv_usec = 0;
  833. select_ret = select(STDIN_FILENO + 1, &socket_set, NULL, NULL, &tv);
  834. // select(STDIN_FILENO + 1, &socket_set, NULL, NULL, bWait ? NULL : &tv);
  835. if (select_ret == -1) {
  836. if (errno == EINTR)
  837. continue;
  838. hangup = true;
  839. log() << "hangup detected" << std::endl;
  840. return (-2);
  841. }
  842. if (select_ret == 0)
  843. return (-1);
  844. }
  845. return getkey();
  846. }
  847. /**
  848. * @brief Input a string of requested max length.
  849. *
  850. * This first sends out max number of spaces, and max number of backspaces. This
  851. * will setup the input area. (If you set a background color of blue, this
  852. * would allow that to be seen by the user.)
  853. *
  854. * It handles input, backspaces / deleting the characters / enter input and
  855. * timeout/hangup/out of time.
  856. *
  857. * @param max
  858. * @return std::string
  859. */
  860. std::string Door::input_string(int max) {
  861. std::string input;
  862. // draw the input area.
  863. *this << std::string(max, ' ');
  864. *this << std::string(max, '\x08');
  865. int c;
  866. while (true) {
  867. c = sleep_key(inactivity);
  868. if (c < 0) {
  869. input.clear();
  870. return input;
  871. }
  872. if (c > 0x1000)
  873. continue;
  874. if (isprint(c)) {
  875. if (int(input.length()) < max) {
  876. *this << char(c);
  877. input.append(1, c);
  878. } else {
  879. // bell
  880. *this << '\x07';
  881. }
  882. } else {
  883. switch (c) {
  884. case 0x08:
  885. case 0x7f:
  886. if (input.length() > 0) {
  887. *this << "\x08 \x08";
  888. // this->flush();
  889. input.erase(input.length() - 1);
  890. };
  891. break;
  892. case 0x0d:
  893. return input;
  894. }
  895. }
  896. }
  897. }
  898. /**
  899. * @brief Get one of these keys
  900. *
  901. * returns char, or < 0 if timeout.
  902. *
  903. * @param keys
  904. * @return char or < 0
  905. */
  906. int Door::get_one_of(const char *keys) {
  907. int c;
  908. while (true) {
  909. c = sleep_key(inactivity);
  910. if (c < 0)
  911. return c;
  912. if (c > 0x1000)
  913. continue;
  914. const char *key = strchr(keys, (char)toupper(c));
  915. if (key != nullptr) {
  916. return *key;
  917. }
  918. *this << '\x07';
  919. }
  920. return c;
  921. }
  922. /**
  923. * Take given buffer and output it.
  924. *
  925. * If debug_capture is enabled, we save everything to debug_buffer.
  926. * This is used by the tests.
  927. *
  928. * @param s const char *
  929. * @param n std::streamsize
  930. * @return std::streamsize
  931. */
  932. std::streamsize Door::xsputn(const char *s, std::streamsize n) {
  933. if (debug_capture) {
  934. debug_buffer.append(s, n);
  935. } else {
  936. static std::string buffer;
  937. buffer.append(s, n);
  938. // setp(&(*buffer.begin()), &(*buffer.end()));
  939. if (!hangup) {
  940. std::cout << buffer;
  941. std::cout.flush();
  942. }
  943. // Tracking character position could be a problem / local terminal unicode.
  944. if (track)
  945. cx += n;
  946. buffer.clear();
  947. }
  948. return n;
  949. }
  950. /**
  951. * Stores a character into the buffer.
  952. * This does still use the buffer.
  953. * @todo Replace this also with a direct call to od_disp_emu.
  954. *
  955. * @param c char
  956. * @return int
  957. */
  958. int Door::overflow(int c) {
  959. if (debug_capture) {
  960. debug_buffer.append(1, (char)c);
  961. } else {
  962. if (!hangup) {
  963. std::cout << (char)c;
  964. std::cout.flush();
  965. }
  966. }
  967. if (track)
  968. cx++;
  969. // setp(&(*buffer.begin()), &(*buffer.end()));
  970. return c;
  971. }
  972. /**
  973. * Construct a new Color Output:: Color Output object
  974. * We default to BLACK/BLACK (not really a valid color),
  975. * pos=0 and len=0.
  976. */
  977. ColorOutput::ColorOutput() : c(COLOR::BLACK, COLOR::BLACK) {
  978. pos = 0;
  979. len = 0;
  980. }
  981. /**
  982. * Reset pos and len to 0.
  983. */
  984. void ColorOutput::reset(void) {
  985. pos = 0;
  986. len = 0;
  987. }
  988. /**
  989. * Construct a new Render:: Render object
  990. *
  991. * Render consists of constant text,
  992. * and vector of ColorOutput
  993. *
  994. * @param txt Text
  995. */
  996. Render::Render(const std::string txt) : text{txt} {}
  997. /**
  998. * Output the Render.
  999. *
  1000. * This consists of going through the vector, getting
  1001. * the fragment (from pos and len), and outputting the
  1002. * color and fragment.
  1003. *
  1004. * @param os
  1005. */
  1006. void Render::output(std::ostream &os) {
  1007. for (auto out : outputs) {
  1008. std::string fragment = text.substr(out.pos, out.len);
  1009. os << out.c << fragment;
  1010. }
  1011. }
  1012. /**
  1013. * Create render output.
  1014. *
  1015. * Call this for each section you want to colorize.
  1016. *
  1017. * @param color
  1018. * @param len
  1019. */
  1020. void Render::append(ANSIColor color, int len) {
  1021. if (outputs.empty()) {
  1022. ColorOutput co;
  1023. co.c = color;
  1024. co.pos = 0;
  1025. co.len = len;
  1026. outputs.push_back(co);
  1027. return;
  1028. }
  1029. ColorOutput &current = outputs.back();
  1030. if (current.c == color) {
  1031. current.len += len;
  1032. return;
  1033. }
  1034. // Ok, new entry
  1035. // beware the unicode text
  1036. ColorOutput co;
  1037. co.pos = current.pos + current.len;
  1038. co.c = color;
  1039. co.len = len;
  1040. outputs.push_back(co);
  1041. }
  1042. /**
  1043. * Construct a new Clrscr:: Clrscr object
  1044. *
  1045. * This is used to clear the screen.
  1046. */
  1047. Clrscr::Clrscr() {}
  1048. /**
  1049. * Clear the screen using ANSI codes.
  1050. *
  1051. * Not all systems home the cursor after clearing the screen.
  1052. * We automatically home the cursor as well.
  1053. *
  1054. * @param os std::ostream&
  1055. * @param clr const Clrscr&
  1056. * @return std::ostream&
  1057. */
  1058. std::ostream &operator<<(std::ostream &os, const Clrscr &clr) {
  1059. Door *d = dynamic_cast<Door *>(&os);
  1060. if (d != nullptr) {
  1061. d->track = false;
  1062. *d << "\x1b[2J"
  1063. "\x1b[H";
  1064. d->cx = 1;
  1065. d->cy = 1;
  1066. d->track = true;
  1067. } else {
  1068. os << "\x1b[2J"
  1069. "\x1b[H";
  1070. }
  1071. return os;
  1072. }
  1073. Clrscr cls;
  1074. /**
  1075. * This is used to issue NL+CR
  1076. *
  1077. */
  1078. NewLine::NewLine() {}
  1079. /**
  1080. * Output Newline + CarriageReturn
  1081. * @param os std::ostream
  1082. * @param nl const NewLine
  1083. * @return std::ostream&
  1084. */
  1085. std::ostream &operator<<(std::ostream &os, const NewLine &nl) {
  1086. Door *d = dynamic_cast<Door *>(&os);
  1087. if (d != nullptr) {
  1088. d->track = false;
  1089. *d << "\r\n";
  1090. d->cx = 1;
  1091. d->cy++;
  1092. d->track = true;
  1093. } else {
  1094. os << "\r\n";
  1095. };
  1096. return os;
  1097. }
  1098. NewLine nl;
  1099. /**
  1100. * Construct a new Goto:: Goto object
  1101. *
  1102. * @param xpos
  1103. * @param ypos
  1104. */
  1105. Goto::Goto(int xpos, int ypos) {
  1106. x = xpos;
  1107. y = ypos;
  1108. }
  1109. void Goto::set(int xpos, int ypos) {
  1110. x = xpos;
  1111. y = ypos;
  1112. }
  1113. /**
  1114. * Output the ANSI codes to position the cursor to the given y,x position.
  1115. *
  1116. * @todo Optimize the ANSI goto string output.
  1117. * @todo Update the Door object so it know where the cursor
  1118. * is positioned.
  1119. *
  1120. * @param os std::ostream
  1121. * @param g const Goto
  1122. * @return std::ostream&
  1123. */
  1124. std::ostream &operator<<(std::ostream &os, const Goto &g) {
  1125. Door *d = dynamic_cast<Door *>(&os);
  1126. if (d != nullptr) {
  1127. d->track = false;
  1128. *d << "\x1b[";
  1129. if (g.y > 1)
  1130. *d << std::to_string(g.y);
  1131. if (g.x > 1) {
  1132. os << ";";
  1133. *d << std::to_string(g.x);
  1134. }
  1135. *d << "H";
  1136. d->cx = g.x;
  1137. d->cy = g.y;
  1138. d->track = true;
  1139. } else {
  1140. os << "\x1b[" << std::to_string(g.y) << ";" << std::to_string(g.x) << "H";
  1141. };
  1142. return os;
  1143. }
  1144. /**
  1145. * @brief ANSI Save Cursor position command.
  1146. */
  1147. const char SaveCursor[] = "\x1b[s";
  1148. /**
  1149. * @brief ANSI Restore Cursor position command.
  1150. */
  1151. const char RestoreCursor[] = "\x1b[u";
  1152. // EXAMPLES
  1153. /// BlueYellow Render example function
  1154. renderFunction rBlueYellow = [](const std::string &txt) -> Render {
  1155. Render r(txt);
  1156. ANSIColor blue(COLOR::BLUE, ATTR::BOLD);
  1157. ANSIColor cyan(COLOR::YELLOW, ATTR::BOLD);
  1158. for (char const &c : txt) {
  1159. if (isupper(c))
  1160. r.append(blue);
  1161. else
  1162. r.append(cyan);
  1163. }
  1164. return r;
  1165. };
  1166. } // namespace door