No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 
 

241 líneas
8.8 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. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the Do What The Fuck You Want To
  8. * Public License, Version 2, as published by Sam Hocevar. See
  9. * http://sam.zoy.org/wtfpl/COPYING for more details.
  10. */
  11. /** \file cucul.h
  12. * \version \$Id$
  13. * \author Sam Hocevar <sam@zoy.org>
  14. * \brief The \e libcucul public header.
  15. *
  16. * This header contains the public types and functions that applications
  17. * using \e libcucul may use.
  18. */
  19. #ifndef __CUCUL_H__
  20. #define __CUCUL_H__
  21. #define CUCUL_API_VERSION_1
  22. #ifdef __cplusplus
  23. extern "C"
  24. {
  25. #endif
  26. /** \brief Colour definitions.
  27. *
  28. * Colours that can be used with cucul_set_color().
  29. */
  30. enum cucul_color
  31. {
  32. CUCUL_COLOR_BLACK = 0, /**< The colour index for black. */
  33. CUCUL_COLOR_BLUE = 1, /**< The colour index for blue. */
  34. CUCUL_COLOR_GREEN = 2, /**< The colour index for green. */
  35. CUCUL_COLOR_CYAN = 3, /**< The colour index for cyan. */
  36. CUCUL_COLOR_RED = 4, /**< The colour index for red. */
  37. CUCUL_COLOR_MAGENTA = 5, /**< The colour index for magenta. */
  38. CUCUL_COLOR_BROWN = 6, /**< The colour index for brown. */
  39. CUCUL_COLOR_LIGHTGRAY = 7, /**< The colour index for light gray. */
  40. CUCUL_COLOR_DARKGRAY = 8, /**< The colour index for dark gray. */
  41. CUCUL_COLOR_LIGHTBLUE = 9, /**< The colour index for blue. */
  42. CUCUL_COLOR_LIGHTGREEN = 10, /**< The colour index for light green. */
  43. CUCUL_COLOR_LIGHTCYAN = 11, /**< The colour index for light cyan. */
  44. CUCUL_COLOR_LIGHTRED = 12, /**< The colour index for light red. */
  45. CUCUL_COLOR_LIGHTMAGENTA = 13, /**< The colour index for light magenta. */
  46. CUCUL_COLOR_YELLOW = 14, /**< The colour index for yellow. */
  47. CUCUL_COLOR_WHITE = 15 /**< The colour index for white. */
  48. };
  49. /** \brief Internal features.
  50. *
  51. * Internal libcaca features such as the rendering method or the dithering
  52. * mode.
  53. */
  54. enum cucul_feature
  55. {
  56. CUCUL_BACKGROUND = 0x10, /**< Properties of background characters. */
  57. CUCUL_BACKGROUND_BLACK = 0x11, /**< Draw only black backgrounds. */
  58. CUCUL_BACKGROUND_SOLID = 0x12, /**< Draw coloured solid backgorunds. */
  59. #define CUCUL_BACKGROUND_MIN 0x11 /**< First background property */
  60. #define CUCUL_BACKGROUND_MAX 0x12 /**< Last background property */
  61. CUCUL_ANTIALIASING = 0x20, /**< Antialiasing features. */
  62. CUCUL_ANTIALIASING_NONE = 0x21, /**< No antialiasing. */
  63. CUCUL_ANTIALIASING_PREFILTER = 0x22, /**< Prefilter antialiasing. */
  64. #define CUCUL_ANTIALIASING_MIN 0x21 /**< First antialiasing feature. */
  65. #define CUCUL_ANTIALIASING_MAX 0x22 /**< Last antialiasing feature. */
  66. CUCUL_DITHERING = 0x30, /**< Dithering methods */
  67. CUCUL_DITHERING_NONE = 0x31, /**< No dithering. */
  68. CUCUL_DITHERING_ORDERED2 = 0x32, /**< Ordered 2x2 Bayer dithering. */
  69. CUCUL_DITHERING_ORDERED4 = 0x33, /**< Ordered 4x4 Bayer dithering. */
  70. CUCUL_DITHERING_ORDERED8 = 0x34, /**< Ordered 8x8 Bayer dithering. */
  71. CUCUL_DITHERING_RANDOM = 0x35, /**< Random dithering. */
  72. CUCUL_DITHERING_FSTEIN = 0x36, /**< Floyd-Steinberg dithering. */
  73. #define CUCUL_DITHERING_MIN 0x31 /**< First dithering feature. */
  74. #define CUCUL_DITHERING_MAX 0x36 /**< Last dithering feature. */
  75. CUCUL_FEATURE_UNKNOWN = 0xffff /**< Unknown feature. */
  76. };
  77. /*
  78. * Backwards compatibility macros
  79. */
  80. #if !defined(_DOXYGEN_SKIP_ME)
  81. #define caca_dithering cucul_feature
  82. #define caca_set_dithering caca_set_feature
  83. #define caca_get_dithering_name caca_get_feature_name
  84. #define CACA_DITHER_NONE CUCUL_DITHERING_NONE
  85. #define CACA_DITHER_ORDERED CUCUL_DITHERING_ORDERED8
  86. #define CACA_DITHER_RANDOM CUCUL_DITHERING_RANDOM
  87. #endif
  88. typedef struct cucul_context cucul_t;
  89. /** \defgroup basic Basic functions
  90. *
  91. * These functions provide the basic \e libcaca routines for library
  92. * initialisation, system information retrieval and configuration.
  93. *
  94. * @{ */
  95. cucul_t * cucul_create(unsigned int, unsigned int);
  96. cucul_t * cucul_load(void *, unsigned int);
  97. void cucul_set_size(cucul_t *, unsigned int, unsigned int);
  98. unsigned int cucul_get_width(cucul_t *);
  99. unsigned int cucul_get_height(cucul_t *);
  100. enum cucul_feature cucul_get_feature(cucul_t *, enum cucul_feature);
  101. void cucul_set_feature(cucul_t *, enum cucul_feature);
  102. char const *cucul_get_feature_name(enum cucul_feature);
  103. void cucul_free(cucul_t *);
  104. /* @} */
  105. /** \defgroup canvas Canvas drawing
  106. *
  107. * These functions provide low-level character printing routines and
  108. * higher level graphics functions.
  109. *
  110. * @{ */
  111. void cucul_set_color(cucul_t *, enum cucul_color, enum cucul_color);
  112. enum cucul_color cucul_get_fg_color(cucul_t const *);
  113. enum cucul_color cucul_get_bg_color(cucul_t const *);
  114. char const *cucul_get_color_name(enum cucul_color);
  115. void cucul_putchar(cucul_t *, int, int, char);
  116. void cucul_putstr(cucul_t *, int, int, char const *);
  117. void cucul_printf(cucul_t *, int, int, char const *, ...);
  118. void cucul_get_screen(cucul_t const *, char *);
  119. void cucul_clear(cucul_t *);
  120. void cucul_blit(cucul_t *, int, int, cucul_t const *, cucul_t const *);
  121. /* @} */
  122. /** \defgroup transform Canvas transformation
  123. *
  124. * These functions perform horizontal and vertical canvas flipping.
  125. *
  126. * @{ */
  127. void cucul_invert(cucul_t *);
  128. void cucul_flip(cucul_t *);
  129. void cucul_flop(cucul_t *);
  130. void cucul_rotate(cucul_t *);
  131. /* @} */
  132. /** \defgroup prim Primitives drawing
  133. *
  134. * These functions provide routines for primitive drawing, such as lines,
  135. * boxes, triangles and ellipses.
  136. *
  137. * @{ */
  138. void cucul_draw_line(cucul_t *, int, int, int, int, char const *);
  139. void cucul_draw_polyline(cucul_t *, int const x[], int const y[], int, char const *);
  140. void cucul_draw_thin_line(cucul_t *, int, int, int, int);
  141. void cucul_draw_thin_polyline(cucul_t *, int const x[], int const y[], int);
  142. void cucul_draw_circle(cucul_t *, int, int, int, char const *);
  143. void cucul_draw_ellipse(cucul_t *, int, int, int, int, char const *);
  144. void cucul_draw_thin_ellipse(cucul_t *, int, int, int, int);
  145. void cucul_fill_ellipse(cucul_t *, int, int, int, int, char const *);
  146. void cucul_draw_box(cucul_t *, int, int, int, int, char const *);
  147. void cucul_draw_thin_box(cucul_t *, int, int, int, int);
  148. void cucul_fill_box(cucul_t *, int, int, int, int, char const *);
  149. void cucul_draw_triangle(cucul_t *, int, int, int, int, int, int, char const *);
  150. void cucul_draw_thin_triangle(cucul_t *, int, int, int, int, int, int);
  151. void cucul_fill_triangle(cucul_t *, int, int, int, int, int, int, char const *);
  152. /* @} */
  153. /** \defgroup math Mathematical functions
  154. *
  155. * These functions provide a few useful math-related routines.
  156. *
  157. * @{ */
  158. int cucul_rand(int, int);
  159. unsigned int cucul_sqrt(unsigned int);
  160. /* @} */
  161. /** \defgroup sprite Sprite handling
  162. *
  163. * These functions provide high level routines for sprite loading, animation
  164. * and rendering.
  165. *
  166. * @{ */
  167. struct cucul_sprite;
  168. struct cucul_sprite * cucul_load_sprite(cucul_t *, char const *);
  169. int cucul_get_sprite_frames(cucul_t *, struct cucul_sprite const *);
  170. int cucul_get_sprite_width(cucul_t *, struct cucul_sprite const *, int);
  171. int cucul_get_sprite_height(cucul_t *, struct cucul_sprite const *, int);
  172. int cucul_get_sprite_dx(cucul_t *, struct cucul_sprite const *, int);
  173. int cucul_get_sprite_dy(cucul_t *, struct cucul_sprite const *, int);
  174. void cucul_draw_sprite(cucul_t *, int, int, struct cucul_sprite const *, int);
  175. void cucul_free_sprite(struct cucul_sprite *);
  176. /* @} */
  177. /** \defgroup bitmap Bitmap handling
  178. *
  179. * These functions provide high level routines for bitmap allocation and
  180. * rendering.
  181. *
  182. * @{ */
  183. struct cucul_bitmap;
  184. struct cucul_bitmap *cucul_create_bitmap(unsigned int, unsigned int,
  185. unsigned int, unsigned int,
  186. unsigned int, unsigned int,
  187. unsigned int, unsigned int);
  188. void cucul_set_bitmap_palette(struct cucul_bitmap *,
  189. unsigned int r[], unsigned int g[],
  190. unsigned int b[], unsigned int a[]);
  191. void cucul_set_bitmap_gamma(struct cucul_bitmap *, float);
  192. void cucul_draw_bitmap(cucul_t *, int, int, int, int, struct cucul_bitmap const *, void *);
  193. void cucul_set_bitmap_invert(struct cucul_bitmap *, unsigned char);
  194. void cucul_free_bitmap(struct cucul_bitmap *);
  195. /* @} */
  196. /** \defgroup exporter Exporters to various formats
  197. *
  198. * These functions export the current canvas to various text formats. It
  199. * is necessary to call cucul_free_export() to dispose of the data.
  200. *
  201. * @{ */
  202. struct cucul_export
  203. {
  204. unsigned int size;
  205. char *buffer;
  206. };
  207. struct cucul_export * cucul_create_export(cucul_t *, char const *);
  208. char const * const * cucul_get_export_list(void);
  209. void cucul_free_export(struct cucul_export *);
  210. /* @} */
  211. #ifdef __cplusplus
  212. }
  213. #endif
  214. #endif /* __CUCUL_H__ */