render.cpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485
  1. #include <unistd.h> // usleep
  2. #include <stdio.h>
  3. #include <time.h>
  4. #include <string.h>
  5. #include <ctype.h>
  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. switch (color) {
  92. case 0:
  93. case 1:
  94. case 2:
  95. case 3:
  96. case 4:
  97. case 5:
  98. case 6:
  99. case 7:
  100. sprintf(buffer, "\x1b[0;3%dm", MYSTIC[color]);
  101. break;
  102. case 8:
  103. case 9:
  104. case 10:
  105. case 11:
  106. case 12:
  107. case 13:
  108. case 14:
  109. case 15:
  110. sprintf(buffer, "\x1b[0;1;3%dm", MYSTIC[color - 8]);
  111. break;
  112. case 16:
  113. case 17:
  114. case 18:
  115. case 19:
  116. case 20:
  117. case 21:
  118. case 22:
  119. case 23:
  120. sprintf(buffer, "\x1b[4%dm", MYSTIC[color - 16]);
  121. break;
  122. case 24:
  123. case 25:
  124. case 26:
  125. case 27:
  126. case 28:
  127. case 29:
  128. case 30:
  129. case 31:
  130. sprintf(buffer, "\x1b[5;4%dm", MYSTIC[color - 24]);
  131. break;
  132. default:
  133. buffer[0] = 0;
  134. break;
  135. }
  136. ZF_LOGD("write_color( %d ): %s", color, repr(buffer));
  137. write(fd, buffer, strlen(buffer));
  138. }
  139. int send_file(int fd, char *filename) {
  140. FILE *fp;
  141. char buffer[100];
  142. int read;
  143. fp = fopen(filename, "rb");
  144. if (fp == NULL) {
  145. ZF_LOGD("Failed to open %s", filename);
  146. return 0;
  147. }
  148. while ((read = fread(buffer, 1, sizeof(buffer), fp)) > 0) {
  149. write(fd, buffer, read);
  150. };
  151. fclose(fp);
  152. return 1;
  153. }
  154. void send_goto(int fd, int x, int y) {
  155. char gbuffer[16];
  156. sprintf(gbuffer, "\x1b[%d;%dH", y, x);
  157. write(fd, gbuffer, strlen(gbuffer));
  158. }
  159. int send_file(int fd, int x, int y, char *filename) {
  160. FILE *fp;
  161. char buffer[100];
  162. int read;
  163. fp = fopen(filename, "rb");
  164. if (fp == NULL) {
  165. ZF_LOGD("Failed to open %s", filename);
  166. return 0;
  167. }
  168. send_goto(fd, x, y);
  169. y++;
  170. while ((read = fread(buffer, 1, sizeof(buffer), fp)) > 0) {
  171. char *cp, *last_cp;
  172. buffer[read] = 0;
  173. last_cp = buffer;
  174. while ((cp = strchr(last_cp, '\n')) != NULL) {
  175. *cp = 0;
  176. write(fd, last_cp, strlen(last_cp));
  177. send_goto(fd, x, y);
  178. y++;
  179. last_cp = cp + 1;
  180. };
  181. write(fd, last_cp, strlen(last_cp));
  182. };
  183. fclose(fp);
  184. return 1;
  185. }
  186. /**
  187. * process_trigger( fd, *cp )
  188. *
  189. * This process a command trigger.
  190. * It has seen TRIGGER, and now it is
  191. * processing whatever comes after it.
  192. * It will perform the process, and
  193. * return the char * of whatever is next.
  194. */
  195. const char *process_trigger(int fd, const char *cp) {
  196. char ch;
  197. int i, x, y;
  198. ch = *cp;
  199. cp++;
  200. switch (ch) {
  201. case 'D':
  202. i = 0;
  203. if (isdigit(*cp)) {
  204. i = (*cp) - '0';
  205. cp++;
  206. };
  207. if (isdigit(*cp)) {
  208. i *= 10;
  209. i += (*cp) - '0';
  210. cp++;
  211. };
  212. if ((i > 0) && (i < 80)) {
  213. ZF_LOGI("DEL %02d", i);
  214. for (x = 0; x < i; x++) {
  215. write(fd, "\b \b", 3);
  216. }
  217. };
  218. break;
  219. case 'C': {
  220. i = 0;
  221. if (*cp == 'R') {
  222. cp++;
  223. const char *restore = color_restore(&console);
  224. write(fd, restore, strlen(restore));
  225. break;
  226. }
  227. if (isdigit(*cp)) {
  228. i = (*cp) - '0';
  229. cp++;
  230. };
  231. if (isdigit(*cp)) {
  232. i *= 10;
  233. i += (*cp) - '0';
  234. cp++;
  235. };
  236. write_color(fd, i);
  237. } break;
  238. case 'F':
  239. case 'f': {
  240. int pos = 0;
  241. if (ch == 'f') {
  242. pos = 1;
  243. x = (*cp) - '0';
  244. cp++;
  245. x *= 10;
  246. x += (*cp) - '0';
  247. cp++;
  248. y = (*cp) - '0';
  249. cp++;
  250. y *= 10;
  251. y += (*cp) - '0';
  252. cp++;
  253. ZF_LOGI("file at (%d, %d)", x, y);
  254. }
  255. // Ok, look for filename
  256. char ansifile[32] = "./hh/";
  257. char *ap = ansifile + strlen(ansifile);
  258. while (*cp != '.') {
  259. *ap = *cp;
  260. ap++;
  261. *ap = 0;
  262. cp++;
  263. };
  264. strcat(ansifile, ".ans");
  265. cp++;
  266. ZF_LOGD("FILE [%s]", ansifile);
  267. if (pos) {
  268. send_file(fd, x, y, ansifile);
  269. } else {
  270. send_file(fd, ansifile);
  271. };
  272. } break;
  273. case 'G': {
  274. x = 0;
  275. if (isdigit(*cp)) {
  276. x = (*cp) - '0';
  277. cp++;
  278. };
  279. if (isdigit(*cp)) {
  280. x *= 10;
  281. x += (*cp) - '0';
  282. cp++;
  283. };
  284. y = 0;
  285. if (isdigit(*cp)) {
  286. y = (*cp) - '0';
  287. cp++;
  288. };
  289. if (isdigit(*cp)) {
  290. y *= 10;
  291. y += (*cp) - '0';
  292. cp++;
  293. };
  294. char buffer[20]; // row ; column H
  295. ZF_LOGD("GOTO (%d,%d)", x, y);
  296. sprintf(buffer, "\x1b[%d;%dH", y, x);
  297. write(fd, buffer, strlen(buffer));
  298. } break;
  299. case 'R': {
  300. i = 0;
  301. if (isdigit(*cp)) {
  302. i = (*cp) - '0';
  303. cp++;
  304. };
  305. if ((i > 0) && (i < 10)) {
  306. ZF_LOGI("RENDER %d", i);
  307. current_render.effect = i;
  308. } else {
  309. current_render.effect = 0;
  310. }
  311. } break;
  312. case 'S': {
  313. i = 0;
  314. if (isdigit(*cp)) {
  315. i = (*cp) - '0';
  316. cp++;
  317. };
  318. if ((i > 0) && (i < 10)) {
  319. ZF_LOGI("SPEED %d", i);
  320. current_render.speed = i;
  321. } else {
  322. current_render.speed = 0;
  323. }
  324. } break;
  325. case 'P': {
  326. i = 0;
  327. if (isdigit(*cp)) {
  328. i = (*cp) - '0';
  329. cp++;
  330. };
  331. if ((i > 0) && (i < 10)) {
  332. ZF_LOGI("PAWS %d", i);
  333. // sleep(i);
  334. if (!render_overlimit) {
  335. sleep(i);
  336. };
  337. }
  338. } break;
  339. }
  340. return cp;
  341. }
  342. /**
  343. * render_effect( fd, ch )
  344. *
  345. * Displays the given character with whatever
  346. * rendering effect is currently active.
  347. * (If any).
  348. */
  349. void render_effect(int fd, char ch) {
  350. int effect = current_render.effect;
  351. int l;
  352. char space = ' ';
  353. char bs = '\b';
  354. switch (effect) {
  355. case 1:
  356. // CHAR + SPC + BS
  357. render_sleep();
  358. write(fd, &ch, 1);
  359. render_sleep();
  360. write(fd, &space, 1);
  361. render_sleep();
  362. render_sleep();
  363. write(fd, &bs, 1);
  364. break;
  365. case 2:
  366. // CHAR + 8 spaces + 8 BS
  367. render_sleep();
  368. write(fd, &ch, 1);
  369. for (l = 0; l < 8; l++) {
  370. render_sleep();
  371. write(fd, &space, 1);
  372. }
  373. for (l = 0; l < 8; l++) {
  374. render_sleep();
  375. write(fd, &bs, 1);
  376. }
  377. break;
  378. case 0:
  379. default:
  380. // NORMAL
  381. render_sleep();
  382. write(fd, &ch, 1);
  383. break;
  384. }
  385. }
  386. /**
  387. * render( fd, string_out )
  388. *
  389. * Render an entire string.
  390. * Handles TRIGGER.
  391. * Renders with effects.
  392. */
  393. void render(int fd, const char *string_out, int len) {
  394. const char *cp = string_out;
  395. const char *trigger = cp;
  396. time_t start = time(NULL);
  397. int elapsed;
  398. int over = 0;
  399. reset_render();
  400. // ZF_LOGV("render(%d, %s)", fd, repr(string_out));
  401. ZF_LOGV_MEM(string_out, len, "render(%d, %d bytes):", fd, len);
  402. // Check our time from time to time.
  403. // If we start running long, disable sleeps.
  404. while ((trigger = strnstr(cp, len - (cp - trigger), TRIGGER)) != NULL) {
  405. // There is special things to handle in here.
  406. while (cp != trigger) {
  407. elapsed = time(NULL) - start;
  408. if (elapsed > SLEEP_LIMIT) {
  409. render_overlimit = 1;
  410. current_render.speed = 0;
  411. };
  412. // write(fd, cp, 1 );
  413. render_effect(fd, *cp);
  414. cp++;
  415. };
  416. // ZF_LOGI( "at trigger: (%s)", cp);
  417. cp += strlen(TRIGGER);
  418. // Ok, we're pointing at the trigger -- do something.
  419. cp = process_trigger(fd, cp);
  420. // ZF_LOGI( "after trigger: (%s)", cp);
  421. };
  422. // We still might be under a rendering effect.
  423. while (cp < (string_out + len)) {
  424. elapsed = time(NULL) - start;
  425. if (elapsed > SLEEP_LIMIT) {
  426. render_overlimit = 1;
  427. current_render.speed = 0;
  428. };
  429. // write(fd, cp, 1);
  430. render_effect(fd, *cp);
  431. cp++;
  432. }
  433. }