render.cpp 12 KB

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