Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

382 rader
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 A libcucul canvas handle upon success, NULL if an error occurred.
  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. /** \brief Load a memory area into a canvas.
  64. *
  65. * This function loads a memory area containing an exported canvas into
  66. * a new \e libcucul canvas.
  67. *
  68. * \param data The memory area to be loaded into a canvas.
  69. * \param size The length of the memory area.
  70. * \return A libcucul canvas, or NULL in case of error.
  71. */
  72. cucul_t *cucul_load(void *data, unsigned int size)
  73. {
  74. cucul_t *qq;
  75. uint8_t *buf = (uint8_t *)data;
  76. unsigned int width, height, n;
  77. if(size < 12)
  78. return NULL;
  79. if(buf[0] != 'C' || buf[1] != 'A' || buf[2] != 'C' || buf[3] != 'A')
  80. return NULL;
  81. width = ((uint32_t)buf[4] << 24) | ((uint32_t)buf[5] << 16)
  82. | ((uint32_t)buf[6] << 8) | (uint32_t)buf[7];
  83. height = ((uint32_t)buf[8] << 24) | ((uint32_t)buf[9] << 16)
  84. | ((uint32_t)buf[10] << 8) | (uint32_t)buf[11];
  85. if(!width || !height)
  86. return NULL;
  87. if(size != 12 + width * height * 8 + 4)
  88. return NULL;
  89. if(buf[size - 4] != 'A' || buf[size - 3] != 'C'
  90. || buf[size - 2] != 'A' || buf[size - 1] != 'C')
  91. return NULL;
  92. qq = cucul_create(width, height);
  93. if(!qq)
  94. return NULL;
  95. for(n = height * width; n--; )
  96. {
  97. qq->chars[n] = ((uint32_t)buf[12 + 8 * n] << 24)
  98. | ((uint32_t)buf[13 + 8 * n] << 16)
  99. | ((uint32_t)buf[14 + 8 * n] << 8)
  100. | (uint32_t)buf[15 + 8 * n];
  101. qq->attr[n] = ((uint32_t)buf[16 + 8 * n] << 24)
  102. | ((uint32_t)buf[17 + 8 * n] << 16)
  103. | ((uint32_t)buf[18 + 8 * n] << 8)
  104. | (uint32_t)buf[19 + 8 * n];
  105. }
  106. return qq;
  107. }
  108. /** \brief Resize a canvas.
  109. *
  110. * This function sets the canvas width and height, in character cells.
  111. *
  112. * The contents of the canvas are preserved to the extent of the new
  113. * canvas size. Newly allocated character cells at the right and/or at
  114. * the bottom of the canvas are filled with spaces.
  115. *
  116. * It is an error to try to resize the canvas if an output driver has
  117. * been attached to the canvas using caca_attach(). You need to remove
  118. * the output driver using caca_detach() before you can change the
  119. * canvas size again. However, the caca output driver can cause a canvas
  120. * resize through user interaction. See the caca_event() documentation
  121. * for more about this.
  122. *
  123. * \param qq A libcucul canvas
  124. * \param width The desired canvas width
  125. * \param height The desired canvas height
  126. */
  127. void cucul_set_size(cucul_t *qq, unsigned int width, unsigned int height)
  128. {
  129. if(qq->refcount)
  130. return;
  131. _cucul_set_size(qq, width, height);
  132. }
  133. /** \brief Get the canvas width.
  134. *
  135. * This function returns the current canvas width, in character cells.
  136. *
  137. * \param qq A libcucul canvas
  138. * \return The canvas width.
  139. */
  140. unsigned int cucul_get_width(cucul_t *qq)
  141. {
  142. return qq->width;
  143. }
  144. /** \brief Get the canvas height.
  145. *
  146. * This function returns the current canvas height, in character cells.
  147. *
  148. * \param qq A libcucul canvas
  149. * \return The canvas height.
  150. */
  151. unsigned int cucul_get_height(cucul_t *qq)
  152. {
  153. return qq->height;
  154. }
  155. /** \brief Translate a colour index into the colour's name.
  156. *
  157. * This function translates a cucul_color enum into a human-readable
  158. * description string of the associated colour.
  159. *
  160. * \param color The colour value.
  161. * \return A static string containing the colour's name.
  162. */
  163. char const *cucul_get_color_name(unsigned int color)
  164. {
  165. static char const *color_names[] =
  166. {
  167. "black",
  168. "blue",
  169. "green",
  170. "cyan",
  171. "red",
  172. "magenta",
  173. "brown",
  174. "light gray",
  175. "dark gray",
  176. "light blue",
  177. "light green",
  178. "light cyan",
  179. "light red",
  180. "light magenta",
  181. "yellow",
  182. "white",
  183. };
  184. if(color < 0 || color > 15)
  185. return "unknown";
  186. return color_names[color];
  187. }
  188. /** \brief Uninitialise \e libcucul.
  189. *
  190. * This function frees all resources allocated by cucul_create(). After
  191. * cucul_free() has been called, no other \e libcucul functions may be used
  192. * unless a new call to cucul_create() is done.
  193. *
  194. * \param qq A libcucul canvas
  195. */
  196. void cucul_free(cucul_t *qq)
  197. {
  198. _cucul_end_dither();
  199. free(qq->empty_line);
  200. free(qq->scratch_line);
  201. free(qq->chars);
  202. free(qq->attr);
  203. free(qq);
  204. }
  205. /** \brief Generate a random integer within a range.
  206. *
  207. * \param min The lower bound of the integer range.
  208. * \param max The upper bound of the integer range.
  209. * \return A random integer comprised between \p min and \p max, inclusive.
  210. */
  211. int cucul_rand(int min, int max)
  212. {
  213. return min + (int)((1.0*(max-min+1)) * rand() / (RAND_MAX+1.0));
  214. }
  215. /** \brief Get the buffer size.
  216. *
  217. * This function returns the length (in bytes) of the memory area stored
  218. * in the given \e libcucul buffer.
  219. *
  220. * \param buf A \e libcucul buffer
  221. * \return The buffer data length.
  222. */
  223. unsigned long int cucul_get_buffer_size(cucul_buffer_t *buf)
  224. {
  225. return buf->size;
  226. }
  227. /** \brief Get the buffer data.
  228. *
  229. * This function returns a pointer to the memory area stored in the given
  230. * \e libcucul buffer.
  231. *
  232. * \param buf A \e libcucul buffer
  233. * \return A pointer to the buffer memory area.
  234. */
  235. void * cucul_get_buffer_data(cucul_buffer_t *buf)
  236. {
  237. return buf->data;
  238. }
  239. /** \brief Free a buffer.
  240. *
  241. * This function frees the structures associated with the given
  242. * \e libcucul buffer.
  243. *
  244. * \param buf A \e libcucul buffer
  245. */
  246. void cucul_free_buffer(cucul_buffer_t *buf)
  247. {
  248. free(buf->data);
  249. free(buf);
  250. }
  251. /*
  252. * XXX: The following functions are local.
  253. */
  254. void _cucul_set_size(cucul_t *qq, unsigned int width, unsigned int height)
  255. {
  256. unsigned int x, y, old_width, old_height, new_size, old_size;
  257. old_width = qq->width;
  258. old_height = qq->height;
  259. old_size = old_width * old_height;
  260. qq->width = width;
  261. qq->height = height;
  262. new_size = width * height;
  263. /* Step 1: if new area is bigger, resize the memory area now. */
  264. if(new_size > old_size)
  265. {
  266. qq->chars = realloc(qq->chars, new_size * sizeof(uint32_t));
  267. qq->attr = realloc(qq->attr, new_size * sizeof(uint32_t));
  268. }
  269. /* Step 2: move line data if necessary. */
  270. if(width == old_width)
  271. {
  272. /* Width did not change, which means we do not need to move data. */
  273. ;
  274. }
  275. else if(width > old_width)
  276. {
  277. /* New width is bigger than old width, which means we need to
  278. * copy lines starting from the bottom of the screen otherwise
  279. * we will overwrite information. */
  280. for(y = height < old_height ? height : old_height; y--; )
  281. {
  282. for(x = old_width; x--; )
  283. {
  284. qq->chars[y * width + x] = qq->chars[y * old_width + x];
  285. qq->attr[y * width + x] = qq->attr[y * old_width + x];
  286. }
  287. /* Zero the end of the line */
  288. for(x = width - old_width; x--; )
  289. qq->chars[y * width + old_width + x] = (uint32_t)' ';
  290. memset(qq->attr + y * width + old_width, 0,
  291. (width - old_width) * 4);
  292. }
  293. }
  294. else
  295. {
  296. /* New width is smaller. Copy as many lines as possible. Ignore
  297. * the first line, it is already in place. */
  298. unsigned int lines = height < old_height ? height : old_height;
  299. for(y = 1; y < lines; y++)
  300. {
  301. for(x = 0; x < width; x++)
  302. {
  303. qq->chars[y * width + x] = qq->chars[y * old_width + x];
  304. qq->attr[y * width + x] = qq->attr[y * old_width + x];
  305. }
  306. }
  307. }
  308. /* Step 3: fill the bottom of the new screen if necessary. */
  309. if(height > old_height)
  310. {
  311. /* Zero the bottom of the screen */
  312. for(x = (height - old_height) * width; x--; )
  313. qq->chars[old_height * width + x] = (uint32_t)' ';
  314. memset(qq->attr + old_height * width, 0,
  315. (height - old_height) * width * 4);
  316. }
  317. /* Step 4: if new area is smaller, resize memory area now. */
  318. if(new_size <= old_size)
  319. {
  320. qq->chars = realloc(qq->chars, new_size * sizeof(uint32_t));
  321. qq->attr = realloc(qq->attr, new_size * sizeof(uint32_t));
  322. }
  323. /* Recompute the scratch line and the empty line */
  324. if(width != old_width)
  325. {
  326. qq->empty_line = realloc(qq->empty_line, width + 1);
  327. memset(qq->empty_line, ' ', width);
  328. qq->empty_line[width] = '\0';
  329. qq->scratch_line = realloc(qq->scratch_line, width + 1);
  330. }
  331. }