You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

223 lines
8.2 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. /** \file cucul.h
  14. * \version \$Id$
  15. * \author Sam Hocevar <sam@zoy.org>
  16. * \brief The \e libcucul public header.
  17. *
  18. * This header contains the public types and functions that applications
  19. * using \e libcucul may use.
  20. */
  21. #ifndef __CUCUL_H__
  22. #define __CUCUL_H__
  23. /** libcucul API version */
  24. #define CUCUL_API_VERSION_1
  25. #ifdef __cplusplus
  26. extern "C"
  27. {
  28. #endif
  29. /** \e libcucul context */
  30. typedef struct cucul cucul_t;
  31. /** sprite structure */
  32. typedef struct cucul_sprite cucul_sprite_t;
  33. /** dither structure */
  34. typedef struct cucul_dither cucul_dither_t;
  35. /** data buffer structure */
  36. typedef struct cucul_buffer cucul_buffer_t;
  37. /** font structure */
  38. typedef struct cucul_font cucul_font_t;
  39. /** \defgroup colour Colour definitions
  40. *
  41. * Colours that can be used with cucul_set_color().
  42. *
  43. * @{ */
  44. #define CUCUL_COLOR_BLACK 0x00 /**< The colour index for black. */
  45. #define CUCUL_COLOR_BLUE 0x01 /**< The colour index for blue. */
  46. #define CUCUL_COLOR_GREEN 0x02 /**< The colour index for green. */
  47. #define CUCUL_COLOR_CYAN 0x03 /**< The colour index for cyan. */
  48. #define CUCUL_COLOR_RED 0x04 /**< The colour index for red. */
  49. #define CUCUL_COLOR_MAGENTA 0x05 /**< The colour index for magenta. */
  50. #define CUCUL_COLOR_BROWN 0x06 /**< The colour index for brown. */
  51. #define CUCUL_COLOR_LIGHTGRAY 0x07 /**< The colour index for light gray. */
  52. #define CUCUL_COLOR_DARKGRAY 0x08 /**< The colour index for dark gray. */
  53. #define CUCUL_COLOR_LIGHTBLUE 0x09 /**< The colour index for blue. */
  54. #define CUCUL_COLOR_LIGHTGREEN 0x0a /**< The colour index for light green. */
  55. #define CUCUL_COLOR_LIGHTCYAN 0x0b /**< The colour index for light cyan. */
  56. #define CUCUL_COLOR_LIGHTRED 0x0c /**< The colour index for light red. */
  57. #define CUCUL_COLOR_LIGHTMAGENTA 0x0d /**< The colour index for light magenta. */
  58. #define CUCUL_COLOR_YELLOW 0x0e /**< The colour index for yellow. */
  59. #define CUCUL_COLOR_WHITE 0x0f /**< The colour index for white. */
  60. #define CUCUL_COLOR_DEFAULT 0x10 /**< The output driver's default colour. */
  61. #define CUCUL_COLOR_TRANSPARENT 0x20 /**< The transparent colour. */
  62. /* @} */
  63. /** \defgroup cucul Basic libcucul functions
  64. *
  65. * These functions provide the basic \e libcaca routines for library
  66. * initialisation, system information retrieval and configuration.
  67. *
  68. * @{ */
  69. cucul_t * cucul_create(unsigned int, unsigned int);
  70. cucul_t * cucul_load(void *, unsigned int);
  71. void cucul_set_size(cucul_t *, unsigned int, unsigned int);
  72. unsigned int cucul_get_width(cucul_t *);
  73. unsigned int cucul_get_height(cucul_t *);
  74. void cucul_free(cucul_t *);
  75. int cucul_rand(int, int);
  76. /* @} */
  77. /** \defgroup buffer Buffer handling
  78. *
  79. * These functions provide methods to handle libcucul buffers.
  80. *
  81. * @{ */
  82. unsigned long int cucul_get_buffer_size(cucul_buffer_t *);
  83. void * cucul_get_buffer_data(cucul_buffer_t *);
  84. void cucul_free_buffer(cucul_buffer_t *);
  85. /* @} */
  86. /** \defgroup canvas Canvas drawing
  87. *
  88. * These functions provide low-level character printing routines and
  89. * higher level graphics functions.
  90. *
  91. * @{ */
  92. void cucul_set_color(cucul_t *, unsigned char, unsigned char);
  93. void cucul_set_truecolor(cucul_t *, unsigned int, unsigned int);
  94. char const *cucul_get_color_name(unsigned int);
  95. void cucul_putchar(cucul_t *, int, int, char);
  96. void cucul_putstr(cucul_t *, int, int, char const *);
  97. void cucul_printf(cucul_t *, int, int, char const *, ...);
  98. void cucul_clear(cucul_t *);
  99. void cucul_blit(cucul_t *, int, int, cucul_t const *, cucul_t const *);
  100. /* @} */
  101. /** \defgroup transform Canvas transformation
  102. *
  103. * These functions perform horizontal and vertical canvas flipping.
  104. *
  105. * @{ */
  106. void cucul_invert(cucul_t *);
  107. void cucul_flip(cucul_t *);
  108. void cucul_flop(cucul_t *);
  109. void cucul_rotate(cucul_t *);
  110. /* @} */
  111. /** \defgroup prim Primitives drawing
  112. *
  113. * These functions provide routines for primitive drawing, such as lines,
  114. * boxes, triangles and ellipses.
  115. *
  116. * @{ */
  117. void cucul_draw_line(cucul_t *, int, int, int, int, char const *);
  118. void cucul_draw_polyline(cucul_t *, int const x[], int const y[], int, char const *);
  119. void cucul_draw_thin_line(cucul_t *, int, int, int, int);
  120. void cucul_draw_thin_polyline(cucul_t *, int const x[], int const y[], int);
  121. void cucul_draw_circle(cucul_t *, int, int, int, char const *);
  122. void cucul_draw_ellipse(cucul_t *, int, int, int, int, char const *);
  123. void cucul_draw_thin_ellipse(cucul_t *, int, int, int, int);
  124. void cucul_fill_ellipse(cucul_t *, int, int, int, int, char const *);
  125. void cucul_draw_box(cucul_t *, int, int, int, int, char const *);
  126. void cucul_draw_thin_box(cucul_t *, int, int, int, int);
  127. void cucul_fill_box(cucul_t *, int, int, int, int, char const *);
  128. void cucul_draw_triangle(cucul_t *, int, int, int, int, int, int, char const *);
  129. void cucul_draw_thin_triangle(cucul_t *, int, int, int, int, int, int);
  130. void cucul_fill_triangle(cucul_t *, int, int, int, int, int, int, char const *);
  131. /* @} */
  132. /** \defgroup sprite Sprite handling
  133. *
  134. * These functions provide high level routines for sprite loading, animation
  135. * and rendering.
  136. *
  137. * @{ */
  138. cucul_sprite_t * cucul_load_sprite(char const *);
  139. int cucul_get_sprite_frames(cucul_sprite_t const *);
  140. int cucul_get_sprite_width(cucul_sprite_t const *, int);
  141. int cucul_get_sprite_height(cucul_sprite_t const *, int);
  142. int cucul_get_sprite_dx(cucul_sprite_t const *, int);
  143. int cucul_get_sprite_dy(cucul_sprite_t const *, int);
  144. void cucul_draw_sprite(cucul_t *, int, int, cucul_sprite_t const *, int);
  145. void cucul_free_sprite(cucul_sprite_t *);
  146. /* @} */
  147. /** \defgroup dither Bitmap dithering
  148. *
  149. * These functions provide high level routines for dither allocation and
  150. * rendering.
  151. *
  152. * @{ */
  153. cucul_dither_t *cucul_create_dither(unsigned int, unsigned int,
  154. unsigned int, unsigned int,
  155. unsigned int, unsigned int,
  156. unsigned int, unsigned int);
  157. void cucul_set_dither_palette(cucul_dither_t *,
  158. unsigned int r[], unsigned int g[],
  159. unsigned int b[], unsigned int a[]);
  160. void cucul_set_dither_brightness(cucul_dither_t *, float);
  161. void cucul_set_dither_gamma(cucul_dither_t *, float);
  162. void cucul_set_dither_contrast(cucul_dither_t *, float);
  163. void cucul_set_dither_invert(cucul_dither_t *, int);
  164. void cucul_set_dither_antialias(cucul_dither_t *, char const *);
  165. char const * const * cucul_get_dither_antialias_list(cucul_dither_t const *);
  166. void cucul_set_dither_color(cucul_dither_t *, char const *);
  167. char const * const * cucul_get_dither_color_list(cucul_dither_t const *);
  168. void cucul_set_dither_charset(cucul_dither_t *, char const *);
  169. char const * const * cucul_get_dither_charset_list(cucul_dither_t const *);
  170. void cucul_set_dither_mode(cucul_dither_t *, char const *);
  171. char const * const * cucul_get_dither_mode_list(cucul_dither_t const *);
  172. void cucul_dither_bitmap(cucul_t *, int, int, int, int,
  173. cucul_dither_t const *, void *);
  174. void cucul_free_dither(cucul_dither_t *);
  175. /* @} */
  176. /** \defgroup font Font handling
  177. *
  178. * These functions provide font handling routines and high quality
  179. * canvas to bitmap rendering.
  180. *
  181. * @{ */
  182. cucul_font_t *cucul_load_font(void const *, unsigned int);
  183. char const * const * cucul_get_font_list(void);
  184. unsigned int cucul_get_font_width(cucul_font_t *);
  185. unsigned int cucul_get_font_height(cucul_font_t *);
  186. void cucul_render_canvas(cucul_t *, cucul_font_t *, unsigned char *,
  187. unsigned int, unsigned int, unsigned int);
  188. void cucul_free_font(cucul_font_t *);
  189. /* @} */
  190. /** \defgroup exporter Exporters to various formats
  191. *
  192. * These functions export the current canvas to various text formats. It
  193. * is necessary to call cucul_free_buffer() to dispose of the data.
  194. *
  195. * @{ */
  196. cucul_buffer_t * cucul_create_export(cucul_t *, char const *);
  197. char const * const * cucul_get_export_list(void);
  198. /* @} */
  199. #ifdef __cplusplus
  200. }
  201. #endif
  202. #endif /* __CUCUL_H__ */