選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

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