render.cpp 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511
  1. #include <ctype.h>
  2. #include <stdio.h>
  3. #include <string.h>
  4. #include <time.h>
  5. #include <unistd.h> // usleep
  6. #include "render.h"
  7. #include "terminal.h"
  8. #include "zf_log.h"
  9. extern const char *strnstr(const char *source, int len, const char *needle);
  10. extern const char *repr(const char *data);
  11. extern struct console_details console;
  12. struct render current_render;
  13. int render_overlimit = 0;
  14. void reset_render(void) {
  15. current_render.speed = 0;
  16. current_render.effect = 0;
  17. render_overlimit = 0;
  18. }
  19. int ms_sleep(unsigned int ms) {
  20. int result = 0;
  21. struct timespec ts = {ms / 1000, (ms % 1000) * 1000000L};
  22. do {
  23. struct timespec ts_sleep = ts;
  24. result = nanosleep(&ts_sleep, &ts);
  25. } while ((-1 == result));
  26. return result;
  27. }
  28. void render_sleep(void) {
  29. if (render_overlimit)
  30. return;
  31. if (current_render.speed) { // * 100 still too slow.
  32. ms_sleep(current_render.speed * 10);
  33. }
  34. }
  35. /*
  36. Well SNAP! Mystic numbers don't remotely match ANSI color codes.
  37. 00 : Sets the current foreground to Black 0;30
  38. 01 : Sets the current foreground to Dark Blue 0;34
  39. 02 : Sets the current foreground to Dark Green 0;32
  40. 03 : Sets the current foreground to Dark Cyan 0;36
  41. 04 : Sets the current foreground to Dark Red 0;31
  42. 05 : Sets the current foreground to Dark Magenta 0;35
  43. 06 : Sets the current foreground to Brown 0;33
  44. 07 : Sets the current foreground to Grey 0;37
  45. 08 : Sets the current foreground to Dark Grey 1;30
  46. 09 : Sets the current foreground to Light Blue 1;34
  47. 10 : Sets the current foreground to Light Green 1;32
  48. 11 : Sets the current foreground to Light Cyan 1;36
  49. 12 : Sets the current foreground to Light Red 1;31
  50. 13 : Sets the current foreground to Light Magenta 1;35
  51. 14 : Sets the current foreground to Yellow 1;33
  52. 15 : Sets the current foreground to White 1;37
  53. 16 : Sets the current background to Black 40
  54. 17 : Sets the current background to Blue 44
  55. 18 : Sets the current background to Green 42
  56. 19 : Sets the current background to Cyan 46
  57. 20 : Sets the current background to Red 41
  58. 21 : Sets the current background to Magenta 45
  59. 22 : Sets the current background to Brown 43
  60. 23 : Sets the current background to Grey 47
  61. 24 : Sets the current background to black with blinking foreground 5;40
  62. 25 : Sets the current background to blue with blinking foreground 5;44
  63. 26 : Sets the current background to green with blinking foreground 5;42
  64. 27 : Sets the current background to cyan with blinking foreground 5;46
  65. 28 : Sets the current background to red with blinking foreground 5;41
  66. 29 : Sets the current background to magenta with blinking foreground 5;45
  67. 30 : Sets the current background to brown with blinking foreground 5;43
  68. 31 : Sets the current background to grey with blinking foreground 5;47
  69. Other things that Mystic does ...
  70. [A## - Move the cursor up ## lines
  71. [B## - Move the cursor down ## lines
  72. [C## - Move the cursor forward (to the right) ## columns
  73. [D## - Move the cursor backwards (to the left) ## columns
  74. [K - Clear from the current cursor position to the end of the line
  75. [L - Move cursor and erase data backwards from current column to column ##
  76. [X## - Move cursor to X coordinate ##
  77. [Y## - Move cursor to Y coordinate ##
  78. BS - Sends 1 destructive backspace sequence (ASCII 8-32-8)
  79. CL - Clears the screen (ANSI 1,1 locate and [2J or ASCII 12)
  80. CR - Send a carrage return and line feed (move to next line)
  81. RA - Restore the saved text attribute color
  82. RS - Restore the saved user's terminal screen
  83. SA - Save the current text attribute color
  84. SS - Save the entire user's terminal screen
  85. */
  86. // Covert MYSTIC color to (Proper) ANSI COLOR.
  87. const int MYSTIC[] = {0, 4, 2, 6, 1, 5, 3, 7};
  88. // ANSI_color = MYSTIC[ odd_mystic_color % 8 ]
  89. void write_color(int fd, int color) {
  90. char buffer[12];
  91. int slen;
  92. switch (color) {
  93. case 0:
  94. case 1:
  95. case 2:
  96. case 3:
  97. case 4:
  98. case 5:
  99. case 6:
  100. case 7:
  101. slen = snprintf(buffer, sizeof(buffer), "\x1b[0;3%dm", MYSTIC[color]);
  102. if (slen >= sizeof(buffer)) {
  103. ZF_LOGE("snprintf %d > size %d", slen, (int)sizeof(buffer));
  104. buffer[0] = 0;
  105. }
  106. break;
  107. case 8:
  108. case 9:
  109. case 10:
  110. case 11:
  111. case 12:
  112. case 13:
  113. case 14:
  114. case 15:
  115. slen = snprintf(buffer, sizeof(buffer), "\x1b[0;1;3%dm", MYSTIC[color - 8]);
  116. if (slen >= sizeof(buffer)) {
  117. ZF_LOGE("snprintf %d > size %d", slen, (int)sizeof(buffer));
  118. buffer[0] = 0;
  119. }
  120. break;
  121. case 16:
  122. case 17:
  123. case 18:
  124. case 19:
  125. case 20:
  126. case 21:
  127. case 22:
  128. case 23:
  129. slen = snprintf(buffer, sizeof(buffer), "\x1b[4%dm", MYSTIC[color - 16]);
  130. if (slen >= sizeof(buffer)) {
  131. ZF_LOGE("snprintf %d > size %d", slen, (int)sizeof(buffer));
  132. buffer[0] = 0;
  133. }
  134. break;
  135. case 24:
  136. case 25:
  137. case 26:
  138. case 27:
  139. case 28:
  140. case 29:
  141. case 30:
  142. case 31:
  143. slen = snprintf(buffer, sizeof(buffer), "\x1b[5;4%dm", MYSTIC[color - 24]);
  144. if (slen >= sizeof(buffer)) {
  145. ZF_LOGE("snprintf %d > size %d", slen, (int)sizeof(buffer));
  146. buffer[0] = 0;
  147. }
  148. break;
  149. default:
  150. buffer[0] = 0;
  151. break;
  152. }
  153. ZF_LOGD("write_color( %d ): %s", color, repr(buffer));
  154. write(fd, buffer, strlen(buffer));
  155. }
  156. int send_file(int fd, char *filename) {
  157. FILE *fp;
  158. char buffer[100];
  159. int read;
  160. fp = fopen(filename, "rb");
  161. if (fp == NULL) {
  162. ZF_LOGD("Failed to open %s", filename);
  163. return 0;
  164. }
  165. while ((read = fread(buffer, 1, sizeof(buffer), fp)) > 0) {
  166. write(fd, buffer, read);
  167. };
  168. fclose(fp);
  169. return 1;
  170. }
  171. void send_goto(int fd, int x, int y) {
  172. char gbuffer[16];
  173. int slen;
  174. slen = snprintf(gbuffer, sizeof(gbuffer), "\x1b[%d;%dH", y, x);
  175. if (slen >= sizeof(gbuffer)) {
  176. ZF_LOGE("snprintf %d > size %d", slen, (int)sizeof(gbuffer));
  177. gbuffer[0] = 0;
  178. }
  179. write(fd, gbuffer, strlen(gbuffer));
  180. }
  181. int send_file(int fd, int x, int y, char *filename) {
  182. FILE *fp;
  183. char buffer[100];
  184. int read;
  185. fp = fopen(filename, "rb");
  186. if (fp == NULL) {
  187. ZF_LOGD("Failed to open %s", filename);
  188. return 0;
  189. }
  190. send_goto(fd, x, y);
  191. y++;
  192. while ((read = fread(buffer, 1, sizeof(buffer), fp)) > 0) {
  193. char *cp, *last_cp;
  194. buffer[read] = 0;
  195. last_cp = buffer;
  196. while ((cp = strchr(last_cp, '\n')) != NULL) {
  197. *cp = 0;
  198. write(fd, last_cp, strlen(last_cp));
  199. send_goto(fd, x, y);
  200. y++;
  201. last_cp = cp + 1;
  202. };
  203. write(fd, last_cp, strlen(last_cp));
  204. };
  205. fclose(fp);
  206. return 1;
  207. }
  208. /**
  209. * process_trigger( fd, *cp )
  210. *
  211. * This process a command trigger.
  212. * It has seen TRIGGER, and now it is
  213. * processing whatever comes after it.
  214. * It will perform the process, and
  215. * return the char * of whatever is next.
  216. */
  217. const char *process_trigger(int fd, const char *cp) {
  218. char ch;
  219. int i, x, y;
  220. ch = *cp;
  221. cp++;
  222. switch (ch) {
  223. case 'D':
  224. i = 0;
  225. if (isdigit(*cp)) {
  226. i = (*cp) - '0';
  227. cp++;
  228. };
  229. if (isdigit(*cp)) {
  230. i *= 10;
  231. i += (*cp) - '0';
  232. cp++;
  233. };
  234. if ((i > 0) && (i < 80)) {
  235. ZF_LOGI("DEL %02d", i);
  236. for (x = 0; x < i; x++) {
  237. write(fd, "\b \b", 3);
  238. }
  239. };
  240. break;
  241. case 'C': {
  242. i = 0;
  243. if (*cp == 'R') {
  244. cp++;
  245. const char *restore = color_restore(&console);
  246. write(fd, restore, strlen(restore));
  247. break;
  248. }
  249. if (isdigit(*cp)) {
  250. i = (*cp) - '0';
  251. cp++;
  252. };
  253. if (isdigit(*cp)) {
  254. i *= 10;
  255. i += (*cp) - '0';
  256. cp++;
  257. };
  258. write_color(fd, i);
  259. } break;
  260. case 'F':
  261. case 'f': {
  262. int pos = 0;
  263. if (ch == 'f') {
  264. pos = 1;
  265. x = (*cp) - '0';
  266. cp++;
  267. x *= 10;
  268. x += (*cp) - '0';
  269. cp++;
  270. y = (*cp) - '0';
  271. cp++;
  272. y *= 10;
  273. y += (*cp) - '0';
  274. cp++;
  275. ZF_LOGI("file at (%d, %d)", x, y);
  276. }
  277. // Ok, look for filename
  278. char ansifile[32] = "./hh/";
  279. char *ap = ansifile + strlen(ansifile);
  280. while (*cp != '.') {
  281. *ap = *cp;
  282. ap++;
  283. *ap = 0;
  284. cp++;
  285. };
  286. strcat(ansifile, ".ans");
  287. cp++;
  288. ZF_LOGD("FILE [%s]", ansifile);
  289. if (pos) {
  290. send_file(fd, x, y, ansifile);
  291. } else {
  292. send_file(fd, ansifile);
  293. };
  294. } break;
  295. case 'G': {
  296. x = 0;
  297. if (isdigit(*cp)) {
  298. x = (*cp) - '0';
  299. cp++;
  300. };
  301. if (isdigit(*cp)) {
  302. x *= 10;
  303. x += (*cp) - '0';
  304. cp++;
  305. };
  306. y = 0;
  307. if (isdigit(*cp)) {
  308. y = (*cp) - '0';
  309. cp++;
  310. };
  311. if (isdigit(*cp)) {
  312. y *= 10;
  313. y += (*cp) - '0';
  314. cp++;
  315. };
  316. char buffer[20]; // row ; column H
  317. int slen;
  318. ZF_LOGD("GOTO (%d,%d)", x, y);
  319. slen = snprintf(buffer, sizeof(buffer), "\x1b[%d;%dH", y, x);
  320. if (slen >= sizeof(buffer)) {
  321. ZF_LOGE("snprintf %d > size %d", slen, (int)sizeof(buffer));
  322. buffer[0] = 0;
  323. }
  324. write(fd, buffer, strlen(buffer));
  325. } break;
  326. case 'R': {
  327. i = 0;
  328. if (isdigit(*cp)) {
  329. i = (*cp) - '0';
  330. cp++;
  331. };
  332. if ((i > 0) && (i < 10)) {
  333. ZF_LOGI("RENDER %d", i);
  334. current_render.effect = i;
  335. } else {
  336. current_render.effect = 0;
  337. }
  338. } break;
  339. case 'S': {
  340. i = 0;
  341. if (isdigit(*cp)) {
  342. i = (*cp) - '0';
  343. cp++;
  344. };
  345. if ((i > 0) && (i < 10)) {
  346. ZF_LOGI("SPEED %d", i);
  347. current_render.speed = i;
  348. } else {
  349. current_render.speed = 0;
  350. }
  351. } break;
  352. case 'P': {
  353. i = 0;
  354. if (isdigit(*cp)) {
  355. i = (*cp) - '0';
  356. cp++;
  357. };
  358. if ((i > 0) && (i < 10)) {
  359. ZF_LOGI("PAWS %d", i);
  360. // sleep(i);
  361. if (!render_overlimit) {
  362. sleep(i);
  363. };
  364. }
  365. } break;
  366. }
  367. return cp;
  368. }
  369. /**
  370. * render_effect( fd, ch )
  371. *
  372. * Displays the given character with whatever
  373. * rendering effect is currently active.
  374. * (If any).
  375. */
  376. void render_effect(int fd, char ch) {
  377. int effect = current_render.effect;
  378. int l;
  379. char space = ' ';
  380. char bs = '\b';
  381. switch (effect) {
  382. case 1:
  383. // CHAR + SPC + BS
  384. render_sleep();
  385. write(fd, &ch, 1);
  386. render_sleep();
  387. write(fd, &space, 1);
  388. render_sleep();
  389. render_sleep();
  390. write(fd, &bs, 1);
  391. break;
  392. case 2:
  393. // CHAR + 8 spaces + 8 BS
  394. render_sleep();
  395. write(fd, &ch, 1);
  396. for (l = 0; l < 8; l++) {
  397. render_sleep();
  398. write(fd, &space, 1);
  399. }
  400. for (l = 0; l < 8; l++) {
  401. render_sleep();
  402. write(fd, &bs, 1);
  403. }
  404. break;
  405. case 0:
  406. default:
  407. // NORMAL
  408. render_sleep();
  409. write(fd, &ch, 1);
  410. break;
  411. }
  412. }
  413. /**
  414. * render( fd, string_out )
  415. *
  416. * Render an entire string.
  417. * Handles TRIGGER.
  418. * Renders with effects.
  419. */
  420. void render(int fd, const char *string_out, int len) {
  421. const char *cp = string_out;
  422. const char *trigger = cp;
  423. time_t start = time(NULL);
  424. int elapsed;
  425. int over = 0;
  426. reset_render();
  427. // ZF_LOGV("render(%d, %s)", fd, repr(string_out));
  428. ZF_LOGV_MEM(string_out, len, "render(%d, %d bytes):", fd, len);
  429. // Check our time from time to time.
  430. // If we start running long, disable sleeps.
  431. while ((trigger = strnstr(cp, len - (cp - string_out), TRIGGER)) != NULL) {
  432. // There is special things to handle in here.
  433. while (cp != trigger) {
  434. elapsed = time(NULL) - start;
  435. if (elapsed > SLEEP_LIMIT) {
  436. render_overlimit = 1;
  437. current_render.speed = 0;
  438. };
  439. // write(fd, cp, 1 );
  440. render_effect(fd, *cp);
  441. cp++;
  442. };
  443. // ZF_LOGI( "at trigger: (%s)", cp);
  444. cp += strlen(TRIGGER);
  445. // Ok, we're pointing at the trigger -- do something.
  446. cp = process_trigger(fd, cp);
  447. // ZF_LOGI( "after trigger: (%s)", cp);
  448. };
  449. // We still might be under a rendering effect.
  450. while (cp < (string_out + len)) {
  451. elapsed = time(NULL) - start;
  452. if (elapsed > SLEEP_LIMIT) {
  453. render_overlimit = 1;
  454. current_render.speed = 0;
  455. };
  456. // write(fd, cp, 1);
  457. render_effect(fd, *cp);
  458. cp++;
  459. }
  460. }