render.cpp 12 KB

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