terminal.cpp 19 KB

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