您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

377 行
10 KiB

  1. /*
  2. * libcucul Canvas for ultrafast compositing of Unicode letters
  3. * Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
  4. * All Rights Reserved
  5. *
  6. * $Id$
  7. *
  8. * This library is free software; you can redistribute it and/or
  9. * modify it under the terms of the Do What The Fuck You Want To
  10. * Public License, Version 2, as published by Sam Hocevar. See
  11. * http://sam.zoy.org/wtfpl/COPYING for more details.
  12. */
  13. /*
  14. * This file contains the main functions used by \e libcucul applications
  15. * to initialise a drawing context.
  16. */
  17. #include "config.h"
  18. #if !defined(__KERNEL__)
  19. # include <stdio.h>
  20. # include <stdlib.h>
  21. # include <string.h>
  22. #endif
  23. #include "cucul.h"
  24. #include "cucul_internals.h"
  25. /** \brief Initialise a \e libcucul canvas.
  26. *
  27. * This function initialises internal \e libcucul structures and the backend
  28. * that will be used for subsequent graphical operations. It must be the
  29. * first \e libcucul function to be called in a function. cucul_free() should
  30. * be called at the end of the program to free all allocated resources.
  31. *
  32. * If one of the desired canvas coordinates is zero, a default canvas size
  33. * of 80x32 is used instead.
  34. *
  35. * \param width The desired canvas width
  36. * \param height The desired canvas height
  37. * \return 0 upon success, a non-zero value if an error occurs.
  38. */
  39. cucul_t * cucul_create(unsigned int width, unsigned int height)
  40. {
  41. cucul_t *qq = malloc(sizeof(cucul_t));
  42. qq->refcount = 0;
  43. qq->fgcolor = CUCUL_COLOR_LIGHTGRAY;
  44. qq->bgcolor = CUCUL_COLOR_BLACK;
  45. qq->width = qq->height = 0;
  46. qq->chars = NULL;
  47. qq->attr = NULL;
  48. qq->empty_line = qq->scratch_line = NULL;
  49. /* Initialise to a default size. 80x32 is arbitrary but matches AAlib's
  50. * default X11 window. When a graphic driver attaches to us, it can set
  51. * a different size. */
  52. if(width && height)
  53. _cucul_set_size(qq, width, height);
  54. else
  55. _cucul_set_size(qq, 80, 32);
  56. if(_cucul_init_dither())
  57. {
  58. free(qq);
  59. return NULL;
  60. }
  61. return qq;
  62. }
  63. cucul_t *cucul_load(void *data, unsigned int size)
  64. {
  65. cucul_t *qq;
  66. uint8_t *buf = (uint8_t *)data;
  67. unsigned int width, height, n;
  68. if(size < 12)
  69. return NULL;
  70. if(buf[0] != 'C' || buf[1] != 'A' || buf[2] != 'C' || buf[3] != 'A')
  71. return NULL;
  72. width = ((uint32_t)buf[4] << 24) | ((uint32_t)buf[5] << 16)
  73. | ((uint32_t)buf[6] << 8) | (uint32_t)buf[7];
  74. height = ((uint32_t)buf[8] << 24) | ((uint32_t)buf[9] << 16)
  75. | ((uint32_t)buf[10] << 8) | (uint32_t)buf[11];
  76. if(!width || !height)
  77. return NULL;
  78. if(size != 12 + width * height * 8 + 4)
  79. return NULL;
  80. if(buf[size - 4] != 'A' || buf[size - 3] != 'C'
  81. || buf[size - 2] != 'A' || buf[size - 1] != 'C')
  82. return NULL;
  83. qq = cucul_create(width, height);
  84. if(!qq)
  85. return NULL;
  86. for(n = height * width; n--; )
  87. {
  88. qq->chars[n] = ((uint32_t)buf[12 + 8 * n] << 24)
  89. | ((uint32_t)buf[13 + 8 * n] << 16)
  90. | ((uint32_t)buf[14 + 8 * n] << 8)
  91. | (uint32_t)buf[15 + 8 * n];
  92. qq->attr[n] = ((uint32_t)buf[16 + 8 * n] << 24)
  93. | ((uint32_t)buf[17 + 8 * n] << 16)
  94. | ((uint32_t)buf[18 + 8 * n] << 8)
  95. | (uint32_t)buf[19 + 8 * n];
  96. }
  97. return qq;
  98. }
  99. /** \brief Resize a canvas.
  100. *
  101. * This function sets the canvas width and height, in character cells.
  102. *
  103. * The contents of the canvas are preserved to the extent of the new
  104. * canvas size. Newly allocated character cells at the right and/or at
  105. * the bottom of the canvas are filled with spaces.
  106. *
  107. * It is an error to try to resize the canvas if an output driver has
  108. * been attached to the canvas using caca_attach(). You need to remove
  109. * the output driver using caca_detach() before you can change the
  110. * canvas size again. However, the caca output driver can cause a canvas
  111. * resize through user interaction. See the caca_event() documentation
  112. * for more about this.
  113. *
  114. * \param width The desired canvas width
  115. * \param height The desired canvas height
  116. */
  117. void cucul_set_size(cucul_t *qq, unsigned int width, unsigned int height)
  118. {
  119. if(qq->refcount)
  120. return;
  121. _cucul_set_size(qq, width, height);
  122. }
  123. /** \brief Get the canvas width.
  124. *
  125. * This function returns the current canvas width, in character cells.
  126. *
  127. * \return The canvas width.
  128. */
  129. unsigned int cucul_get_width(cucul_t *qq)
  130. {
  131. return qq->width;
  132. }
  133. /** \brief Get the canvas height.
  134. *
  135. * This function returns the current canvas height, in character cells.
  136. *
  137. * \return The canvas height.
  138. */
  139. unsigned int cucul_get_height(cucul_t *qq)
  140. {
  141. return qq->height;
  142. }
  143. /** \brief Translate a colour index into the colour's name.
  144. *
  145. * This function translates a cucul_color enum into a human-readable
  146. * description string of the associated colour.
  147. *
  148. * \param color The colour value.
  149. * \return A static string containing the colour's name.
  150. */
  151. char const *cucul_get_color_name(unsigned int color)
  152. {
  153. static char const *color_names[] =
  154. {
  155. "black",
  156. "blue",
  157. "green",
  158. "cyan",
  159. "red",
  160. "magenta",
  161. "brown",
  162. "light gray",
  163. "dark gray",
  164. "light blue",
  165. "light green",
  166. "light cyan",
  167. "light red",
  168. "light magenta",
  169. "yellow",
  170. "white",
  171. };
  172. if(color < 0 || color > 15)
  173. return "unknown";
  174. return color_names[color];
  175. }
  176. /** \brief Uninitialise \e libcucul.
  177. *
  178. * This function frees all resources allocated by cucul_create(). After
  179. * cucul_free() has been called, no other \e libcucul functions may be used
  180. * unless a new call to cucul_create() is done.
  181. */
  182. void cucul_free(cucul_t *qq)
  183. {
  184. _cucul_end_dither();
  185. free(qq->empty_line);
  186. free(qq->scratch_line);
  187. free(qq->chars);
  188. free(qq->attr);
  189. free(qq);
  190. }
  191. struct cucul_buffer * cucul_create_export(cucul_t *qq, char const *format)
  192. {
  193. struct cucul_buffer *ex;
  194. ex = malloc(sizeof(struct cucul_buffer));
  195. if(!strcasecmp("ansi", format))
  196. _cucul_get_ansi(qq, ex);
  197. else if(!strcasecmp("html", format))
  198. _cucul_get_html(qq, ex);
  199. else if(!strcasecmp("html3", format))
  200. _cucul_get_html3(qq, ex);
  201. else if(!strcasecmp("irc", format))
  202. _cucul_get_irc(qq, ex);
  203. else if(!strcasecmp("ps", format))
  204. _cucul_get_ps(qq, ex);
  205. else if(!strcasecmp("svg", format))
  206. _cucul_get_svg(qq, ex);
  207. else
  208. {
  209. free(ex);
  210. return NULL;
  211. }
  212. return ex;
  213. }
  214. /**
  215. * \brief Get available export formats
  216. *
  217. * Return a list of available export formats. The list is a NULL-terminated
  218. * array of strings, interleaving a string containing the internal value for
  219. * the export format, to be used with \e cucul_create_export(), and a string
  220. * containing the natural language description for that export format.
  221. *
  222. * \return An array of strings.
  223. */
  224. char const * const * cucul_get_export_list(void)
  225. {
  226. static char const * const list[] =
  227. {
  228. "ansi", "ANSI",
  229. "html", "HTML",
  230. "html3", "backwards-compatible HTML",
  231. "irc", "IRC (mIRC colours)",
  232. "ps", "PostScript",
  233. "svg", "SVG",
  234. NULL, NULL
  235. };
  236. return list;
  237. }
  238. void cucul_free_export(struct cucul_buffer *ex)
  239. {
  240. free(ex->data);
  241. free(ex);
  242. }
  243. /*
  244. * XXX: The following functions are local.
  245. */
  246. void _cucul_set_size(cucul_t *qq, unsigned int width, unsigned int height)
  247. {
  248. unsigned int x, y, old_width, old_height, new_size, old_size;
  249. old_width = qq->width;
  250. old_height = qq->height;
  251. old_size = old_width * old_height;
  252. qq->width = width;
  253. qq->height = height;
  254. new_size = width * height;
  255. /* Step 1: if new area is bigger, resize the memory area now. */
  256. if(new_size > old_size)
  257. {
  258. qq->chars = realloc(qq->chars, new_size * sizeof(uint32_t));
  259. qq->attr = realloc(qq->attr, new_size * sizeof(uint32_t));
  260. }
  261. /* Step 2: move line data if necessary. */
  262. if(width == old_width)
  263. {
  264. /* Width did not change, which means we do not need to move data. */
  265. ;
  266. }
  267. else if(width > old_width)
  268. {
  269. /* New width is bigger than old width, which means we need to
  270. * copy lines starting from the bottom of the screen otherwise
  271. * we will overwrite information. */
  272. for(y = height < old_height ? height : old_height; y--; )
  273. {
  274. for(x = old_width; x--; )
  275. {
  276. qq->chars[y * width + x] = qq->chars[y * old_width + x];
  277. qq->attr[y * width + x] = qq->attr[y * old_width + x];
  278. }
  279. /* Zero the end of the line */
  280. for(x = width - old_width; x--; )
  281. qq->chars[y * width + old_width + x] = (uint32_t)' ';
  282. memset(qq->attr + y * width + old_width, 0,
  283. (width - old_width) * 4);
  284. }
  285. }
  286. else
  287. {
  288. /* New width is smaller. Copy as many lines as possible. Ignore
  289. * the first line, it is already in place. */
  290. unsigned int lines = height < old_height ? height : old_height;
  291. for(y = 1; y < lines; y++)
  292. {
  293. for(x = 0; x < width; x++)
  294. {
  295. qq->chars[y * width + x] = qq->chars[y * old_width + x];
  296. qq->attr[y * width + x] = qq->attr[y * old_width + x];
  297. }
  298. }
  299. }
  300. /* Step 3: fill the bottom of the new screen if necessary. */
  301. if(height > old_height)
  302. {
  303. /* Zero the bottom of the screen */
  304. for(x = (height - old_height) * width; x--; )
  305. qq->chars[old_height * width + x] = (uint32_t)' ';
  306. memset(qq->attr + old_height * width, 0,
  307. (height - old_height) * width * 4);
  308. }
  309. /* Step 4: if new area is smaller, resize memory area now. */
  310. if(new_size <= old_size)
  311. {
  312. qq->chars = realloc(qq->chars, new_size * sizeof(uint32_t));
  313. qq->attr = realloc(qq->attr, new_size * sizeof(uint32_t));
  314. }
  315. /* Recompute the scratch line and the empty line */
  316. if(width != old_width)
  317. {
  318. qq->empty_line = realloc(qq->empty_line, width + 1);
  319. memset(qq->empty_line, ' ', width);
  320. qq->empty_line[width] = '\0';
  321. qq->scratch_line = realloc(qq->scratch_line, width + 1);
  322. }
  323. }