terminal.cpp 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795
  1. /*
  2. Terminal tracking
  3. Actually, I believe I only really need to track the color information.
  4. Everything else, I'm not sure I really care about. (NNY!)
  5. */
  6. #include "terminal.h"
  7. #include "utils.h"
  8. #include "zf_log.h"
  9. #include <ctype.h>
  10. #include <sstream>
  11. #include <stdio.h> // snprintf
  12. #include <stdlib.h>
  13. #include <string.h>
  14. #include <vector>
  15. Terminal::Terminal() { this->init(); }
  16. void Terminal::init(void) {
  17. this->posx = this->posy = 0;
  18. this->in_ansi = 0;
  19. this->fgcolor = 7;
  20. this->bgcolor = 0;
  21. this->status = 0;
  22. this->saved_cursor_position.clear();
  23. }
  24. int Terminal::getx(void) { return posx; }
  25. int Terminal::gety(void) { return posy; }
  26. int Terminal::getstatus(void) { return status; }
  27. int Terminal::inANSI(void) { return in_ansi; }
  28. int Terminal::fg(void) { return fgcolor; }
  29. int Terminal::bg(void) { return bgcolor; }
  30. bool Terminal::ansiempty(void) { return ansi.empty(); }
  31. void Terminal::ansi_color(int color) {
  32. // ZF_LOGV("ansi_color(%d)", color);
  33. if (color == 0) {
  34. this->status = 0;
  35. this->fgcolor = 7;
  36. this->bgcolor = 0;
  37. return;
  38. }
  39. if ((color == 1) || (color == 2) || (color == 3) || (color == 4) ||
  40. (color == 5)) {
  41. this->status = color;
  42. return;
  43. }
  44. if ((color >= 30) && (color <= 37)) {
  45. this->fgcolor = color - 30;
  46. return;
  47. }
  48. if ((color >= 40) && (color <= 47)) {
  49. this->bgcolor = color - 40;
  50. return;
  51. }
  52. if (color == 39) {
  53. // default fg color
  54. this->fgcolor = 7;
  55. return;
  56. }
  57. if (color == 49) {
  58. // default bg color
  59. this->bgcolor = 0;
  60. return;
  61. }
  62. ZF_LOGD("ansi_color( %d ) is unknown to me.", color);
  63. }
  64. std::string Terminal::color_restore(void) {
  65. std::ostringstream oss;
  66. // possible optimize: If fg is 7, don't set (0 reset does that), if bg is 0,
  67. // don't set (0 does that)
  68. if (this->status == 0) {
  69. oss << "\x1b[0;" << this->fgcolor + 30 << ";" << this->bgcolor + 40 << "m";
  70. } else {
  71. oss << "\x1b[0;" << this->status << ";" << this->fgcolor + 30 << ";"
  72. << this->bgcolor + 40 << "m";
  73. }
  74. std::string buffer = oss.str();
  75. return buffer;
  76. }
  77. Terminal::ANSI_TYPE Terminal::ansi_code(std::string ansi) {
  78. std::string::iterator cp = ansi.begin();
  79. std::string::iterator last = ansi.end() - 1;
  80. int number, number2;
  81. if (*cp == '\x1b') {
  82. ++cp;
  83. // Ok, that's expected.
  84. if (*cp == '[') {
  85. ++cp;
  86. // https://en.wikipedia.org/wiki/ANSI_escape_code#CSI_sequences
  87. switch (*last) {
  88. case 'A':
  89. // cursor up
  90. if (cp == last) {
  91. number = 1;
  92. } else {
  93. number = std::stoi(std::string(cp, last));
  94. if (number < 1) {
  95. ZF_LOGD("console_ansi( %s ): number error (%d)", repr(ansi.c_str()),
  96. number);
  97. number = 1;
  98. }
  99. };
  100. this->posy -= number;
  101. if (this->posy < 0) {
  102. this->posy = 0;
  103. ZF_LOGD(
  104. "console_ansi( %s ): attempt to move above top of screen (%d)",
  105. repr(ansi.c_str()), number);
  106. }
  107. return CURSOR;
  108. case 'B':
  109. // cursor down
  110. if (cp == last) {
  111. number = 1;
  112. } else {
  113. number = std::stoi(std::string(cp, last));
  114. if (number < 1) {
  115. ZF_LOGD("console_ansi( %s ): number error (%d)", repr(ansi.c_str()),
  116. number);
  117. number = 1;
  118. }
  119. };
  120. this->posy += number;
  121. // check range/"scroll"
  122. return CURSOR;
  123. case 'C':
  124. // cursor forward
  125. if (cp == last) {
  126. number = 1;
  127. } else {
  128. number = std::stoi(std::string(cp, last));
  129. if (number < 1) {
  130. ZF_LOGD("console_ansi( %s ): number error (%d)", repr(ansi.c_str()),
  131. number);
  132. number = 1;
  133. }
  134. };
  135. this->posx += number;
  136. // Well. According to the "spec", the screen limits are hard
  137. // If the cursor is already at the edge of the screen, this has no
  138. // effect. ^ This is *NOT* how any ANSI BBS terminal program acts!
  139. while (this->posx > 79) {
  140. this->posy++;
  141. // check range/"scroll"
  142. this->posx -= 79;
  143. }
  144. return CURSOR;
  145. case 'D':
  146. // cursor backwards
  147. if (cp == last) {
  148. number = 1;
  149. } else {
  150. number = std::stoi(std::string(cp, last));
  151. if (number < 1) {
  152. ZF_LOGD("console_ansi( %s ): number error (%d)", repr(ansi.c_str()),
  153. number);
  154. number = 0;
  155. }
  156. };
  157. this->posx -= number;
  158. // Well. According to the "spec", the screen limits are hard
  159. // If the cursor is already at the edge of the screen, this has no
  160. // effect. ^ This is *NOT* how any ANSI BBS terminal program acts!
  161. while (this->posx < 0) {
  162. this->posy--;
  163. if (this->posy < 0) {
  164. this->posy = 0;
  165. }
  166. this->posx += 79;
  167. }
  168. return CURSOR;
  169. case 'H':
  170. // cursor position
  171. if (*cp == ';') {
  172. // Missing first number
  173. number = 1;
  174. ++cp;
  175. if (cp == last) {
  176. // missing 2nd number as well?
  177. number2 = 1;
  178. } else {
  179. number2 = std::stoi(std::string(cp, last));
  180. }
  181. } else {
  182. // Ok, find the first number
  183. number = std::stoi(std::string(cp, last));
  184. // covert iterator to position
  185. std::size_t pos = ansi.find(';', std::distance(ansi.begin(), cp));
  186. if (pos == std::string::npos) {
  187. // Missing 2nd number
  188. number2 = 1;
  189. } else {
  190. // 2nd number found, maybe.
  191. cp = ansi.begin() + pos;
  192. ++cp;
  193. if (cp == last) {
  194. number2 = 1;
  195. } else {
  196. number2 = std::stoi(std::string(cp, last));
  197. }
  198. }
  199. }
  200. // Our positions start at zero, not one.
  201. this->posy = number - 1;
  202. this->posx = number2 - 1;
  203. return CURSOR;
  204. case 'J':
  205. // clear
  206. if (cp == last) {
  207. number = 0;
  208. } else {
  209. number = std::stoi(std::string(cp, last));
  210. };
  211. // clears ... part of the screen.
  212. if (number == 2) {
  213. this->posx = 0;
  214. this->posy = 0;
  215. };
  216. return CLEAR;
  217. case 'K':
  218. // clear line
  219. if (cp == last) {
  220. number = 0;
  221. } else {
  222. number = std::stoi(std::string(cp, last));
  223. };
  224. return CLEAR;
  225. case 'm':
  226. // color
  227. if (cp == last) {
  228. // nothing given, default to 0.
  229. number = 0;
  230. ansi_color(number);
  231. } else {
  232. while (cp != last) {
  233. number = std::stoi(std::string(cp, last));
  234. ansi_color(number);
  235. ++cp;
  236. while ((cp != last) && (isdigit(*cp))) {
  237. ++cp;
  238. };
  239. if (cp != last) {
  240. if (*cp == ';') {
  241. cp++;
  242. }
  243. }
  244. }
  245. }
  246. return COLOR;
  247. case 's':
  248. // save position
  249. saved_cursor_position.push_back(std::make_pair(this->posx, this->posy));
  250. return CURSOR;
  251. case 'u':
  252. // restore position
  253. if (saved_cursor_position.empty()) {
  254. ZF_LOGE("Restore cursor position from empty history.");
  255. } else {
  256. std::pair<int, int> pos = saved_cursor_position.back();
  257. this->posx = pos.first;
  258. this->posy = pos.second;
  259. saved_cursor_position.pop_back();
  260. }
  261. return CURSOR;
  262. case 't':
  263. case 'r':
  264. case 'h':
  265. case '!':
  266. // These are ones that I don't care about.
  267. case 'n': // This is terminal detect -- give me cursor position
  268. return OTHER;
  269. default:
  270. // unsure -- possibly not important
  271. ZF_LOGD("console_ansi( %s ): ???", repr(ansi.c_str()));
  272. return OTHER;
  273. }
  274. }
  275. }
  276. ZF_LOGD("console_ansi( %s ) : ???", repr(ansi.c_str()));
  277. return OTHER;
  278. }
  279. Terminal::termchar Terminal::putchar(char ch) {
  280. Terminal::termchar tc;
  281. if (this->in_ansi) {
  282. // Ok, append this char
  283. this->ansi.append(1, ch);
  284. if (isalpha(ch)) {
  285. // Ok! end of ANSI code, process it.
  286. tc.ansi = ansi_code(this->ansi);
  287. this->in_ansi = 0;
  288. this->ansi.clear();
  289. tc.in_ansi = 1;
  290. return tc;
  291. }
  292. tc.ansi = START;
  293. tc.in_ansi = 1;
  294. return tc;
  295. } else {
  296. tc.ansi = START;
  297. tc.in_ansi = 0;
  298. if (ch == '\x1b') {
  299. this->ansi.append(1, ch);
  300. this->in_ansi = 1;
  301. tc.in_ansi = 1;
  302. return tc;
  303. }
  304. // should I try reporting MOTION non-ANSI ?
  305. if (ch == '\r') {
  306. // Carriage return
  307. this->posx = 0;
  308. return tc;
  309. }
  310. if (ch == '\n') {
  311. this->posy++;
  312. // check range/"scroll"
  313. return tc;
  314. }
  315. if (ch == '\b') {
  316. // Backspace.
  317. if (this->posx > 0) {
  318. this->posx--;
  319. }
  320. return tc;
  321. }
  322. if (ch == '\f') {
  323. // form feed
  324. // treat as clear screen
  325. this->posx = 0;
  326. this->posy = 0;
  327. return tc;
  328. }
  329. /*
  330. I don't believe that anything else can possibly be here, other then an
  331. actual printable character. So!
  332. FUTURE: Store the screen text + colors
  333. */
  334. this->posx++;
  335. if (this->posx > 79) {
  336. this->posx = 0;
  337. this->posy++;
  338. // check range/"scroll"
  339. }
  340. return tc;
  341. }
  342. }
  343. void Terminal::putstring(std::string text) {
  344. // This gets noisy when called from render effect ^D
  345. // ZF_LOGI("console_char %lu chars", chars.size());
  346. for (auto strit = text.begin(); strit != text.end(); strit++)
  347. putchar(*strit);
  348. }
  349. // Old non-C++ ways
  350. void console_init(struct console_details *cdp) {
  351. cdp->posx = 0;
  352. cdp->posy = 0;
  353. cdp->savedx = 0;
  354. cdp->savedy = 0;
  355. cdp->in_ansi = 0;
  356. cdp->fgcolor = 7;
  357. cdp->bgcolor = 0;
  358. cdp->status = 0;
  359. }
  360. /*
  361. * Given the ansi number codes
  362. * Figure out fg, bg and status.
  363. */
  364. void ansi_color(struct console_details *cdp, int color) {
  365. // ZF_LOGV("ansi_color(%d)", color);
  366. if (color == 0) {
  367. cdp->status = 0;
  368. cdp->fgcolor = 7;
  369. cdp->bgcolor = 0;
  370. return;
  371. }
  372. if ((color == 1) || (color == 2) || (color == 3) || (color == 4) ||
  373. (color == 5)) {
  374. cdp->status = color;
  375. return;
  376. }
  377. if ((color >= 30) && (color <= 37)) {
  378. cdp->fgcolor = color - 30;
  379. return;
  380. }
  381. if ((color >= 40) && (color <= 47)) {
  382. cdp->bgcolor = color - 40;
  383. return;
  384. }
  385. if (color == 39) {
  386. // default fg color
  387. cdp->fgcolor = 7;
  388. return;
  389. }
  390. if (color == 49) {
  391. // default bg color
  392. cdp->bgcolor = 0;
  393. return;
  394. }
  395. ZF_LOGD("ansi_color( %d ) is unknown to me.", color);
  396. }
  397. const char *color_restore(struct console_details *cdp) {
  398. static char buffer[30];
  399. int slen;
  400. // possible optimize: If fg is 7, don't set (0 reset does that), if bg is 0,
  401. // don't set (0 does that)
  402. if (cdp->status == 0) {
  403. slen = snprintf(buffer, sizeof(buffer), "\x1b[0;3%d;4%dm", cdp->fgcolor,
  404. cdp->bgcolor);
  405. if (slen >= (int)sizeof(buffer)) {
  406. ZF_LOGE("snprintf %d > size %d", slen, (int)sizeof(buffer));
  407. buffer[0] = 0;
  408. }
  409. } else {
  410. slen = snprintf(buffer, sizeof(buffer), "\x1b[0;%d;3%d;4%dm", cdp->status,
  411. cdp->fgcolor, cdp->bgcolor);
  412. if (slen >= (int)sizeof(buffer)) {
  413. ZF_LOGE("snprintf %d > size %d", slen, (int)sizeof(buffer));
  414. buffer[0] = 0;
  415. }
  416. };
  417. return buffer;
  418. }
  419. /* store cursor position X,Y */
  420. std::vector<std::pair<int, int>> cursor_position_history;
  421. ANSI_TYPE console_ansi(struct console_details *cdp, const char *ansi) {
  422. const char *cp = ansi;
  423. const char *last = ansi + strlen(ansi) - 1;
  424. int number, number2;
  425. if (*cp == '\x1b') {
  426. cp++;
  427. // Ok, that's expected.
  428. if (*cp == '[') {
  429. cp++;
  430. // https://en.wikipedia.org/wiki/ANSI_escape_code#CSI_sequences
  431. switch (*last) {
  432. case 'A':
  433. // cursor up
  434. if (cp == last) {
  435. number = 1;
  436. } else {
  437. number = atoi(cp);
  438. if (number < 1) {
  439. ZF_LOGD("console_ansi( %s ): number error (%d)", repr(ansi),
  440. number);
  441. number = 1;
  442. }
  443. };
  444. cdp->posy -= number;
  445. if (cdp->posy < 0) {
  446. cdp->posy = 0;
  447. ZF_LOGD(
  448. "console_ansi( %s ): attempt to move above top of screen (%d)",
  449. repr(ansi), number);
  450. }
  451. return CURSOR;
  452. case 'B':
  453. // cursor down
  454. if (cp == last) {
  455. number = 1;
  456. } else {
  457. number = atoi(cp);
  458. if (number < 1) {
  459. ZF_LOGD("console_ansi( %s ): number error (%d)", repr(ansi),
  460. number);
  461. number = 1;
  462. }
  463. };
  464. cdp->posy += number;
  465. // check range/"scroll"
  466. return CURSOR;
  467. case 'C':
  468. // cursor forward
  469. if (cp == last) {
  470. number = 1;
  471. } else {
  472. number = atoi(cp);
  473. if (number < 1) {
  474. ZF_LOGD("console_ansi( %s ): number error (%d)", repr(ansi),
  475. number);
  476. number = 1;
  477. }
  478. };
  479. cdp->posx += number;
  480. // Well. According to the "spec", the screen limits are hard
  481. // If the cursor is already at the edge of the screen, this has no
  482. // effect. ^ This is *NOT* how any ANSI BBS terminal program acts!
  483. while (cdp->posx > 79) {
  484. cdp->posy++;
  485. // check range/"scroll"
  486. cdp->posx -= 79;
  487. }
  488. return CURSOR;
  489. case 'D':
  490. // cursor backwards
  491. if (cp == last) {
  492. number = 1;
  493. } else {
  494. number = atoi(cp);
  495. if (number < 1) {
  496. ZF_LOGD("console_ansi( %s ): number error (%d)", repr(ansi),
  497. number);
  498. number = 0;
  499. }
  500. };
  501. cdp->posx -= number;
  502. // Well. According to the "spec", the screen limits are hard
  503. // If the cursor is already at the edge of the screen, this has no
  504. // effect. ^ This is *NOT* how any ANSI BBS terminal program acts!
  505. while (cdp->posx < 0) {
  506. cdp->posy--;
  507. if (cdp->posy < 0) {
  508. cdp->posy = 0;
  509. }
  510. cdp->posx += 79;
  511. }
  512. return CURSOR;
  513. case 'H':
  514. // cursor position
  515. if (*cp == ';') {
  516. // Missing first number
  517. number = 1;
  518. cp++;
  519. if (cp == last) {
  520. // missing 2nd number as well?
  521. number2 = 1;
  522. } else {
  523. number2 = atoi(cp);
  524. }
  525. } else {
  526. // Ok, find the first number
  527. number = atoi(cp);
  528. cp = strchr(cp, ';');
  529. if (cp == NULL) {
  530. // Missing 2nd number
  531. number2 = 1;
  532. } else {
  533. // 2nd number found, maybe.
  534. cp++;
  535. if (cp == last) {
  536. number2 = 1;
  537. } else {
  538. number2 = atoi(cp);
  539. }
  540. }
  541. }
  542. // Our positions start at zero, not one.
  543. cdp->posy = number - 1;
  544. cdp->posx = number2 - 1;
  545. return CURSOR;
  546. case 'J':
  547. // clear
  548. if (cp == last) {
  549. number = 0;
  550. } else {
  551. number = atoi(cp);
  552. };
  553. // clears ... part of the screen.
  554. if (number == 2) {
  555. cdp->posx = 0;
  556. cdp->posy = 0;
  557. };
  558. return CLEAR;
  559. case 'K':
  560. // clear line
  561. if (cp == last) {
  562. number = 0;
  563. } else {
  564. number = atoi(cp);
  565. };
  566. return CLEAR;
  567. case 'm':
  568. // color
  569. if (cp == last) {
  570. // nothing given, default to 0.
  571. number = 0;
  572. ansi_color(cdp, number);
  573. } else {
  574. while (cp != last) {
  575. number = atoi(cp);
  576. ansi_color(cdp, number);
  577. cp++;
  578. while ((cp != last) && (isdigit(*cp))) {
  579. cp++;
  580. };
  581. if (cp != last) {
  582. if (*cp == ';') {
  583. cp++;
  584. }
  585. }
  586. }
  587. }
  588. return COLOR;
  589. case 's':
  590. // save position
  591. cursor_position_history.push_back(std::make_pair(cdp->posx, cdp->posy));
  592. return CURSOR;
  593. case 'u':
  594. // restore position
  595. if (cursor_position_history.empty()) {
  596. ZF_LOGE("Restore cursor position from empty history.");
  597. } else {
  598. std::pair<int, int> pos = cursor_position_history.back();
  599. cdp->posx = pos.first;
  600. cdp->posy = pos.second;
  601. cursor_position_history.pop_back();
  602. }
  603. return CURSOR;
  604. case 't':
  605. case 'r':
  606. case 'h':
  607. case '!':
  608. // These are ones that I don't care about.
  609. case 'n': // This is terminal detect -- give me cursor position
  610. return OTHER;
  611. default:
  612. // unsure -- possibly not important
  613. ZF_LOGD("console_ansi( %s ): ???", repr(ansi));
  614. return OTHER;
  615. }
  616. }
  617. }
  618. ZF_LOGD("console_ansi( %s ) : ???", repr(ansi));
  619. return OTHER;
  620. }
  621. /*
  622. * console_char()
  623. * return whether or not we are still in_ansi
  624. *
  625. * in_ansi TRUE: START (receiving start of/fragment of ANSI)
  626. * CURSOR, COLOR, CLEAR, OTHER
  627. * Results of the last ANSI parse.
  628. * in_ansi FALSE: START Normal character.
  629. *
  630. */
  631. termchar console_char(struct console_details *cdp, char ch) {
  632. char *cp;
  633. termchar tc;
  634. if (cdp->in_ansi) {
  635. // Ok, append this char
  636. cp = cdp->ansi + strlen(cdp->ansi);
  637. *cp = ch;
  638. cp++;
  639. *cp = 0;
  640. if (isalpha(ch)) {
  641. // Ok! end of ANSI code, process it.
  642. tc.ansi = console_ansi(cdp, cdp->ansi);
  643. cdp->in_ansi = 0;
  644. cdp->ansi[0] = 0;
  645. tc.in_ansi = 1;
  646. return tc;
  647. }
  648. tc.ansi = START;
  649. tc.in_ansi = 1;
  650. return tc;
  651. } else {
  652. tc.ansi = START;
  653. tc.in_ansi = 0;
  654. if (ch == '\x1b') {
  655. cp = cdp->ansi;
  656. *cp = ch;
  657. cp++;
  658. *cp = 0;
  659. cdp->in_ansi = 1;
  660. tc.in_ansi = 1;
  661. return tc;
  662. }
  663. // should I try reporting MOTION non-ANSI ?
  664. if (ch == '\r') {
  665. // Carriage return
  666. cdp->posx = 0;
  667. return tc;
  668. }
  669. if (ch == '\n') {
  670. cdp->posy++;
  671. // check range/"scroll"
  672. return tc;
  673. }
  674. if (ch == '\b') {
  675. // Backspace.
  676. if (cdp->posx > 0) {
  677. cdp->posx--;
  678. }
  679. return tc;
  680. }
  681. if (ch == '\f') {
  682. // form feed
  683. // treat as clear screen
  684. cdp->posx = 0;
  685. cdp->posy = 0;
  686. return tc;
  687. }
  688. /*
  689. I don't believe that anything else can possibly be here, other then an
  690. actual printable character. So!
  691. FUTURE: Store the screen text + colors
  692. */
  693. cdp->posx++;
  694. if (cdp->posx > 79) {
  695. cdp->posx = 0;
  696. cdp->posy++;
  697. // check range/"scroll"
  698. }
  699. return tc;
  700. }
  701. }
  702. void console_receive(struct console_details *cdp, std::string chars) {
  703. // This gets noisy when called from render effect ^D
  704. // ZF_LOGI("console_char %lu chars", chars.size());
  705. for (auto strit = chars.begin(); strit != chars.end(); strit++)
  706. console_char(cdp, *strit);
  707. }