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.
 
 
 
 
 
 

231 rivejä
8.4 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. /* @} */
  76. /** \defgroup buffer Buffer handling
  77. *
  78. * These functions provide methods to handle libcucul buffers.
  79. *
  80. * @{ */
  81. unsigned long int cucul_get_buffer_size(cucul_buffer_t *);
  82. void * cucul_get_buffer_data(cucul_buffer_t *);
  83. void cucul_free_buffer(cucul_buffer_t *);
  84. /* @} */
  85. /** \defgroup canvas Canvas drawing
  86. *
  87. * These functions provide low-level character printing routines and
  88. * higher level graphics functions.
  89. *
  90. * @{ */
  91. void cucul_set_color(cucul_t *, unsigned char, unsigned char);
  92. void cucul_set_truecolor(cucul_t *, unsigned int, unsigned int);
  93. char const *cucul_get_color_name(unsigned int);
  94. void cucul_putchar(cucul_t *, int, int, char);
  95. void cucul_putstr(cucul_t *, int, int, char const *);
  96. void cucul_printf(cucul_t *, int, int, char const *, ...);
  97. void cucul_clear(cucul_t *);
  98. void cucul_blit(cucul_t *, int, int, cucul_t const *, cucul_t const *);
  99. /* @} */
  100. /** \defgroup transform Canvas transformation
  101. *
  102. * These functions perform horizontal and vertical canvas flipping.
  103. *
  104. * @{ */
  105. void cucul_invert(cucul_t *);
  106. void cucul_flip(cucul_t *);
  107. void cucul_flop(cucul_t *);
  108. void cucul_rotate(cucul_t *);
  109. /* @} */
  110. /** \defgroup prim Primitives drawing
  111. *
  112. * These functions provide routines for primitive drawing, such as lines,
  113. * boxes, triangles and ellipses.
  114. *
  115. * @{ */
  116. void cucul_draw_line(cucul_t *, int, int, int, int, char const *);
  117. void cucul_draw_polyline(cucul_t *, int const x[], int const y[], int, char const *);
  118. void cucul_draw_thin_line(cucul_t *, int, int, int, int);
  119. void cucul_draw_thin_polyline(cucul_t *, int const x[], int const y[], int);
  120. void cucul_draw_circle(cucul_t *, int, int, int, char const *);
  121. void cucul_draw_ellipse(cucul_t *, int, int, int, int, char const *);
  122. void cucul_draw_thin_ellipse(cucul_t *, int, int, int, int);
  123. void cucul_fill_ellipse(cucul_t *, int, int, int, int, char const *);
  124. void cucul_draw_box(cucul_t *, int, int, int, int, char const *);
  125. void cucul_draw_thin_box(cucul_t *, int, int, int, int);
  126. void cucul_fill_box(cucul_t *, int, int, int, int, char const *);
  127. void cucul_draw_triangle(cucul_t *, int, int, int, int, int, int, char const *);
  128. void cucul_draw_thin_triangle(cucul_t *, int, int, int, int, int, int);
  129. void cucul_fill_triangle(cucul_t *, int, int, int, int, int, int, char const *);
  130. /* @} */
  131. /** \defgroup math Mathematical functions
  132. *
  133. * These functions provide a few useful math-related routines.
  134. *
  135. * @{ */
  136. int cucul_rand(int, int);
  137. unsigned int cucul_sqrt(unsigned int);
  138. /* @} */
  139. /** \defgroup sprite Sprite handling
  140. *
  141. * These functions provide high level routines for sprite loading, animation
  142. * and rendering.
  143. *
  144. * @{ */
  145. cucul_sprite_t * cucul_load_sprite(char const *);
  146. int cucul_get_sprite_frames(cucul_sprite_t const *);
  147. int cucul_get_sprite_width(cucul_sprite_t const *, int);
  148. int cucul_get_sprite_height(cucul_sprite_t const *, int);
  149. int cucul_get_sprite_dx(cucul_sprite_t const *, int);
  150. int cucul_get_sprite_dy(cucul_sprite_t const *, int);
  151. void cucul_draw_sprite(cucul_t *, int, int, cucul_sprite_t const *, int);
  152. void cucul_free_sprite(cucul_sprite_t *);
  153. /* @} */
  154. /** \defgroup dither Bitmap dithering
  155. *
  156. * These functions provide high level routines for dither allocation and
  157. * rendering.
  158. *
  159. * @{ */
  160. cucul_dither_t *cucul_create_dither(unsigned int, unsigned int,
  161. unsigned int, unsigned int,
  162. unsigned int, unsigned int,
  163. unsigned int, unsigned int);
  164. void cucul_set_dither_palette(cucul_dither_t *,
  165. unsigned int r[], unsigned int g[],
  166. unsigned int b[], unsigned int a[]);
  167. void cucul_set_dither_brightness(cucul_dither_t *, float);
  168. void cucul_set_dither_gamma(cucul_dither_t *, float);
  169. void cucul_set_dither_contrast(cucul_dither_t *, float);
  170. void cucul_set_dither_invert(cucul_dither_t *, int);
  171. void cucul_set_dither_antialias(cucul_dither_t *, char const *);
  172. char const * const * cucul_get_dither_antialias_list(cucul_dither_t const *);
  173. void cucul_set_dither_color(cucul_dither_t *, char const *);
  174. char const * const * cucul_get_dither_color_list(cucul_dither_t const *);
  175. void cucul_set_dither_charset(cucul_dither_t *, char const *);
  176. char const * const * cucul_get_dither_charset_list(cucul_dither_t const *);
  177. void cucul_set_dither_mode(cucul_dither_t *, char const *);
  178. char const * const * cucul_get_dither_mode_list(cucul_dither_t const *);
  179. void cucul_dither_bitmap(cucul_t *, int, int, int, int,
  180. cucul_dither_t const *, void *);
  181. void cucul_free_dither(cucul_dither_t *);
  182. /* @} */
  183. /** \defgroup font Font handling
  184. *
  185. * These functions provide font handling routines and high quality
  186. * canvas to bitmap rendering.
  187. *
  188. * @{ */
  189. cucul_font_t *cucul_load_font(void const *, unsigned int);
  190. char const * const * cucul_get_font_list(void);
  191. unsigned int cucul_get_font_width(cucul_font_t *);
  192. unsigned int cucul_get_font_height(cucul_font_t *);
  193. void cucul_render_canvas(cucul_t *, cucul_font_t *, unsigned char *,
  194. unsigned int, unsigned int, unsigned int);
  195. void cucul_free_font(cucul_font_t *);
  196. /* @} */
  197. /** \defgroup exporter Exporters to various formats
  198. *
  199. * These functions export the current canvas to various text formats. It
  200. * is necessary to call cucul_free_buffer() to dispose of the data.
  201. *
  202. * @{ */
  203. cucul_buffer_t * cucul_create_export(cucul_t *, char const *);
  204. char const * const * cucul_get_export_list(void);
  205. /* @} */
  206. #ifdef __cplusplus
  207. }
  208. #endif
  209. #endif /* __CUCUL_H__ */