Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

218 linhas
8.2 KiB

  1. /*
  2. * libcucul Unicode canvas library
  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. #ifdef __cplusplus
  22. extern "C"
  23. {
  24. #endif
  25. /** \brief Colour definitions.
  26. *
  27. * Colours that can be used with caca_set_color().
  28. */
  29. enum cucul_color
  30. {
  31. CUCUL_COLOR_BLACK = 0, /**< The colour index for black. */
  32. CUCUL_COLOR_BLUE = 1, /**< The colour index for blue. */
  33. CUCUL_COLOR_GREEN = 2, /**< The colour index for green. */
  34. CUCUL_COLOR_CYAN = 3, /**< The colour index for cyan. */
  35. CUCUL_COLOR_RED = 4, /**< The colour index for red. */
  36. CUCUL_COLOR_MAGENTA = 5, /**< The colour index for magenta. */
  37. CUCUL_COLOR_BROWN = 6, /**< The colour index for brown. */
  38. CUCUL_COLOR_LIGHTGRAY = 7, /**< The colour index for light gray. */
  39. CUCUL_COLOR_DARKGRAY = 8, /**< The colour index for dark gray. */
  40. CUCUL_COLOR_LIGHTBLUE = 9, /**< The colour index for blue. */
  41. CUCUL_COLOR_LIGHTGREEN = 10, /**< The colour index for light green. */
  42. CUCUL_COLOR_LIGHTCYAN = 11, /**< The colour index for light cyan. */
  43. CUCUL_COLOR_LIGHTRED = 12, /**< The colour index for light red. */
  44. CUCUL_COLOR_LIGHTMAGENTA = 13, /**< The colour index for light magenta. */
  45. CUCUL_COLOR_YELLOW = 14, /**< The colour index for yellow. */
  46. CUCUL_COLOR_WHITE = 15 /**< The colour index for white. */
  47. };
  48. /** \brief Internal features.
  49. *
  50. * Internal libcaca features such as the rendering method or the dithering
  51. * mode.
  52. */
  53. enum cucul_feature
  54. {
  55. CUCUL_BACKGROUND = 0x10, /**< Properties of background characters. */
  56. CUCUL_BACKGROUND_BLACK = 0x11, /**< Draw only black backgrounds. */
  57. CUCUL_BACKGROUND_SOLID = 0x12, /**< Draw coloured solid backgorunds. */
  58. #define CUCUL_BACKGROUND_MIN 0x11 /**< First background property */
  59. #define CUCUL_BACKGROUND_MAX 0x12 /**< Last background property */
  60. CUCUL_ANTIALIASING = 0x20, /**< Antialiasing features. */
  61. CUCUL_ANTIALIASING_NONE = 0x21, /**< No antialiasing. */
  62. CUCUL_ANTIALIASING_PREFILTER = 0x22, /**< Prefilter antialiasing. */
  63. #define CUCUL_ANTIALIASING_MIN 0x21 /**< First antialiasing feature. */
  64. #define CUCUL_ANTIALIASING_MAX 0x22 /**< Last antialiasing feature. */
  65. CUCUL_DITHERING = 0x30, /**< Dithering methods */
  66. CUCUL_DITHERING_NONE = 0x31, /**< No dithering. */
  67. CUCUL_DITHERING_ORDERED2 = 0x32, /**< Ordered 2x2 Bayer dithering. */
  68. CUCUL_DITHERING_ORDERED4 = 0x33, /**< Ordered 4x4 Bayer dithering. */
  69. CUCUL_DITHERING_ORDERED8 = 0x34, /**< Ordered 8x8 Bayer dithering. */
  70. CUCUL_DITHERING_RANDOM = 0x35, /**< Random dithering. */
  71. CUCUL_DITHERING_FSTEIN = 0x36, /**< Floyd-Steinberg dithering. */
  72. #define CUCUL_DITHERING_MIN 0x31 /**< First dithering feature. */
  73. #define CUCUL_DITHERING_MAX 0x36 /**< Last dithering feature. */
  74. CUCUL_FEATURE_UNKNOWN = 0xffff /**< Unknown feature. */
  75. };
  76. /*
  77. * Backwards compatibility macros
  78. */
  79. #if !defined(_DOXYGEN_SKIP_ME)
  80. #define caca_dithering cucul_feature
  81. #define caca_set_dithering caca_set_feature
  82. #define caca_get_dithering_name caca_get_feature_name
  83. #define CACA_DITHER_NONE CUCUL_DITHERING_NONE
  84. #define CACA_DITHER_ORDERED CUCUL_DITHERING_ORDERED8
  85. #define CACA_DITHER_RANDOM CUCUL_DITHERING_RANDOM
  86. #endif
  87. typedef struct cucul_context cucul_t;
  88. /** \defgroup basic Basic functions
  89. *
  90. * These functions provide the basic \e libcaca routines for library
  91. * initialisation, system information retrieval and configuration.
  92. *
  93. * @{ */
  94. cucul_t * cucul_init(void);
  95. void cucul_set_size(cucul_t *, unsigned int, unsigned int);
  96. unsigned int cucul_get_width(cucul_t *);
  97. unsigned int cucul_get_height(cucul_t *);
  98. enum cucul_feature cucul_get_feature(cucul_t *, enum cucul_feature);
  99. void cucul_set_feature(cucul_t *, enum cucul_feature);
  100. char const *cucul_get_feature_name(enum cucul_feature);
  101. void cucul_end(cucul_t *);
  102. /* @} */
  103. /** \defgroup char Character printing
  104. *
  105. * These functions provide low-level character printing routines.
  106. *
  107. * @{ */
  108. void cucul_set_color(cucul_t *, enum cucul_color, enum cucul_color);
  109. enum cucul_color cucul_get_fg_color(cucul_t *);
  110. enum cucul_color cucul_get_bg_color(cucul_t *);
  111. char const *cucul_get_color_name(enum cucul_color);
  112. void cucul_putchar(cucul_t *, int, int, char);
  113. void cucul_putstr(cucul_t *, int, int, char const *);
  114. void cucul_printf(cucul_t *, int, int, char const *, ...);
  115. void cucul_get_screen(cucul_t *, char *);
  116. void cucul_clear(cucul_t *);
  117. /* @} */
  118. /** \defgroup prim Primitives drawing
  119. *
  120. * These functions provide routines for primitive drawing, such as lines,
  121. * boxes, triangles and ellipses.
  122. *
  123. * @{ */
  124. void cucul_draw_line(cucul_t *, int, int, int, int, char);
  125. void cucul_draw_polyline(cucul_t *, int const x[], int const y[], int, char);
  126. void cucul_draw_thin_line(cucul_t *, int, int, int, int);
  127. void cucul_draw_thin_polyline(cucul_t *, int const x[], int const y[], int);
  128. void cucul_draw_circle(cucul_t *, int, int, int, char);
  129. void cucul_draw_ellipse(cucul_t *, int, int, int, int, char);
  130. void cucul_draw_thin_ellipse(cucul_t *, int, int, int, int);
  131. void cucul_fill_ellipse(cucul_t *, int, int, int, int, char);
  132. void cucul_draw_box(cucul_t *, int, int, int, int, char);
  133. void cucul_draw_thin_box(cucul_t *, int, int, int, int);
  134. void cucul_fill_box(cucul_t *, int, int, int, int, char);
  135. void cucul_draw_triangle(cucul_t *, int, int, int, int, int, int, char);
  136. void cucul_draw_thin_triangle(cucul_t *, int, int, int, int, int, int);
  137. void cucul_fill_triangle(cucul_t *, int, int, int, int, int, int, char);
  138. /* @} */
  139. /** \defgroup math Mathematical functions
  140. *
  141. * These functions provide a few useful math-related routines.
  142. *
  143. * @{ */
  144. int cucul_rand(int, int);
  145. unsigned int cucul_sqrt(unsigned int);
  146. float cucul_powf(float x, float y);
  147. /* @} */
  148. /** \defgroup sprite Sprite handling
  149. *
  150. * These functions provide high level routines for sprite loading, animation
  151. * and rendering.
  152. *
  153. * @{ */
  154. struct cucul_sprite;
  155. struct cucul_sprite * cucul_load_sprite(cucul_t *, char const *);
  156. int cucul_get_sprite_frames(cucul_t *, struct cucul_sprite const *);
  157. int cucul_get_sprite_width(cucul_t *, struct cucul_sprite const *, int);
  158. int cucul_get_sprite_height(cucul_t *, struct cucul_sprite const *, int);
  159. int cucul_get_sprite_dx(cucul_t *, struct cucul_sprite const *, int);
  160. int cucul_get_sprite_dy(cucul_t *, struct cucul_sprite const *, int);
  161. void cucul_draw_sprite(cucul_t *, int, int, struct cucul_sprite const *, int);void cucul_free_sprite(cucul_t *, struct cucul_sprite *);
  162. /* @} */
  163. /** \defgroup bitmap Bitmap handling
  164. *
  165. * These functions provide high level routines for bitmap allocation and
  166. * rendering.
  167. *
  168. * @{ */
  169. struct cucul_bitmap;
  170. struct cucul_bitmap *cucul_create_bitmap(cucul_t *, unsigned int, unsigned int,
  171. unsigned int, unsigned int,
  172. unsigned int, unsigned int,
  173. unsigned int, unsigned int);
  174. void cucul_set_bitmap_palette(cucul_t *, struct cucul_bitmap *,
  175. unsigned int r[], unsigned int g[],
  176. unsigned int b[], unsigned int a[]);
  177. void cucul_set_bitmap_gamma(cucul_t *, struct cucul_bitmap *, float);
  178. void cucul_draw_bitmap(cucul_t *, int, int, int, int, struct cucul_bitmap const *, void *);
  179. void cucul_free_bitmap(cucul_t *, struct cucul_bitmap *);
  180. /* @} */
  181. /** \defgroup exporter Exporters to various formats
  182. *
  183. * These functions exports current image to various text formats
  184. * Returned buffer will be freed() each you'll call the exporter function.
  185. *
  186. * @{ */
  187. char* cucul_get_html(cucul_t *, int *size);
  188. char* cucul_get_html3(cucul_t *, int *size);
  189. char* cucul_get_irc(cucul_t *, int *size);
  190. char* cucul_get_ansi(cucul_t *, int trailing, int *size);
  191. /* @} */
  192. #ifdef __cplusplus
  193. }
  194. #endif
  195. #endif /* __CUCUL_H__ */