25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

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