Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

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