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.
 
 
 
 
 
 

251 rivejä
10 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 canvas */
  30. typedef struct cucul_canvas cucul_canvas_t;
  31. /** dither structure */
  32. typedef struct cucul_dither cucul_dither_t;
  33. /** data buffer structure */
  34. typedef struct cucul_buffer cucul_buffer_t;
  35. /** font structure */
  36. typedef struct cucul_font cucul_font_t;
  37. /** \defgroup attributes libcucul attribute definitions
  38. *
  39. * Colours and styles that can be used with cucul_set_attr_ansi() and
  40. * cucul_set_attr_argb().
  41. *
  42. * @{ */
  43. #define CUCUL_COLOR_BLACK 0x00 /**< The colour index for black. */
  44. #define CUCUL_COLOR_BLUE 0x01 /**< The colour index for blue. */
  45. #define CUCUL_COLOR_GREEN 0x02 /**< The colour index for green. */
  46. #define CUCUL_COLOR_CYAN 0x03 /**< The colour index for cyan. */
  47. #define CUCUL_COLOR_RED 0x04 /**< The colour index for red. */
  48. #define CUCUL_COLOR_MAGENTA 0x05 /**< The colour index for magenta. */
  49. #define CUCUL_COLOR_BROWN 0x06 /**< The colour index for brown. */
  50. #define CUCUL_COLOR_LIGHTGRAY 0x07 /**< The colour index for light gray. */
  51. #define CUCUL_COLOR_DARKGRAY 0x08 /**< The colour index for dark gray. */
  52. #define CUCUL_COLOR_LIGHTBLUE 0x09 /**< The colour index for blue. */
  53. #define CUCUL_COLOR_LIGHTGREEN 0x0a /**< The colour index for light green. */
  54. #define CUCUL_COLOR_LIGHTCYAN 0x0b /**< The colour index for light cyan. */
  55. #define CUCUL_COLOR_LIGHTRED 0x0c /**< The colour index for light red. */
  56. #define CUCUL_COLOR_LIGHTMAGENTA 0x0d /**< The colour index for light magenta. */
  57. #define CUCUL_COLOR_YELLOW 0x0e /**< The colour index for yellow. */
  58. #define CUCUL_COLOR_WHITE 0x0f /**< The colour index for white. */
  59. #define CUCUL_COLOR_DEFAULT 0x10 /**< The output driver's default colour. */
  60. #define CUCUL_COLOR_TRANSPARENT 0x20 /**< The transparent colour. */
  61. #define CUCUL_STYLE_BOLD 0x01 /**< The style mask for bold. */
  62. #define CUCUL_STYLE_ITALICS 0x02 /**< The style mask for italics. */
  63. #define CUCUL_STYLE_UNDERLINE 0x04 /**< The style mask for underline. */
  64. #define CUCUL_STYLE_BLINK 0x08 /**< The style mask for blink. */
  65. /* @} */
  66. /** \defgroup cucul libcucul basic functions
  67. *
  68. * These functions provide the basic \e libcaca routines for library
  69. * initialisation, system information retrieval and configuration.
  70. *
  71. * @{ */
  72. cucul_canvas_t * cucul_create_canvas(unsigned int, unsigned int);
  73. int cucul_set_canvas_size(cucul_canvas_t *, unsigned int, unsigned int);
  74. unsigned int cucul_get_canvas_width(cucul_canvas_t *);
  75. unsigned int cucul_get_canvas_height(cucul_canvas_t *);
  76. int cucul_free_canvas(cucul_canvas_t *);
  77. int cucul_rand(int, int);
  78. /* @} */
  79. /** \defgroup buffer libcucul buffer handling
  80. *
  81. * These functions provide methods to handle libcucul buffers.
  82. *
  83. * @{ */
  84. cucul_buffer_t *cucul_load_memory(void *, unsigned long int);
  85. cucul_buffer_t *cucul_load_file(char const *);
  86. unsigned long int cucul_get_buffer_size(cucul_buffer_t *);
  87. void * cucul_get_buffer_data(cucul_buffer_t *);
  88. int cucul_free_buffer(cucul_buffer_t *);
  89. /* @} */
  90. /** \defgroup canvas libcucul canvas drawing
  91. *
  92. * These functions provide low-level character printing routines and
  93. * higher level graphics functions.
  94. *
  95. * @{ */
  96. #define CUCUL_MAGIC_FULLWIDTH 0x000ffffe /**< Used to indicate that the previous character was a fullwidth glyph. */
  97. int cucul_set_attr(cucul_canvas_t *, unsigned long int);
  98. int cucul_set_attr_ansi(cucul_canvas_t *, unsigned char, unsigned char,
  99. unsigned char);
  100. int cucul_set_attr_argb(cucul_canvas_t *, unsigned int, unsigned int,
  101. unsigned char);
  102. unsigned long int cucul_get_attr(cucul_canvas_t *, int, int);
  103. char const *cucul_get_color_name(unsigned int);
  104. int cucul_putchar(cucul_canvas_t *, int, int, unsigned long int);
  105. unsigned long int cucul_getchar(cucul_canvas_t *, int, int);
  106. int cucul_putstr(cucul_canvas_t *, int, int, char const *);
  107. int cucul_printf(cucul_canvas_t *, int, int, char const *, ...);
  108. int cucul_clear_canvas(cucul_canvas_t *);
  109. int cucul_blit(cucul_canvas_t *, int, int, cucul_canvas_t const *,
  110. cucul_canvas_t const *);
  111. int cucul_set_canvas_boundaries(cucul_canvas_t *, int, int,
  112. unsigned int, unsigned int);
  113. /* Legacy stuff */
  114. int cucul_set_color(cucul_canvas_t *, unsigned char, unsigned char);
  115. int cucul_set_truecolor(cucul_canvas_t *, unsigned int, unsigned int);
  116. /* @} */
  117. /** \defgroup transform libcucul canvas transformation
  118. *
  119. * These functions perform horizontal and vertical canvas flipping.
  120. *
  121. * @{ */
  122. int cucul_invert(cucul_canvas_t *);
  123. int cucul_flip(cucul_canvas_t *);
  124. int cucul_flop(cucul_canvas_t *);
  125. int cucul_rotate(cucul_canvas_t *);
  126. /* @} */
  127. /** \defgroup charset libcucul character set conversions
  128. *
  129. * These functions perform conversions between usual character sets.
  130. *
  131. * @{ */
  132. extern unsigned long int cucul_utf8_to_utf32(char const *, unsigned int *);
  133. extern unsigned int cucul_utf32_to_utf8(char *, unsigned long int);
  134. extern unsigned char cucul_utf32_to_cp437(unsigned long int);
  135. extern unsigned long int cucul_cp437_to_utf32(unsigned char);
  136. extern int cucul_utf32_is_fullwidth(unsigned long int);
  137. /* @} */
  138. /** \defgroup prim libcucul primitives drawing
  139. *
  140. * These functions provide routines for primitive drawing, such as lines,
  141. * boxes, triangles and ellipses.
  142. *
  143. * @{ */
  144. int cucul_draw_line(cucul_canvas_t *, int, int, int, int, char const *);
  145. int cucul_draw_polyline(cucul_canvas_t *, int const x[], int const y[], int, char const *);
  146. int cucul_draw_thin_line(cucul_canvas_t *, int, int, int, int);
  147. int cucul_draw_thin_polyline(cucul_canvas_t *, int const x[], int const y[], int);
  148. int cucul_draw_circle(cucul_canvas_t *, int, int, int, char const *);
  149. int cucul_draw_ellipse(cucul_canvas_t *, int, int, int, int, char const *);
  150. int cucul_draw_thin_ellipse(cucul_canvas_t *, int, int, int, int);
  151. int cucul_fill_ellipse(cucul_canvas_t *, int, int, int, int, char const *);
  152. int cucul_draw_box(cucul_canvas_t *, int, int, int, int, char const *);
  153. int cucul_draw_thin_box(cucul_canvas_t *, int, int, int, int);
  154. int cucul_fill_box(cucul_canvas_t *, int, int, int, int, char const *);
  155. int cucul_draw_triangle(cucul_canvas_t *, int, int, int, int, int, int, char const *);
  156. int cucul_draw_thin_triangle(cucul_canvas_t *, int, int, int, int, int, int);
  157. int cucul_fill_triangle(cucul_canvas_t *, int, int, int, int, int, int, char const *);
  158. /* @} */
  159. /** \defgroup frame libcucul canvas frame handling
  160. *
  161. * These functions provide high level routines for canvas frame insertion,
  162. * removal, copying etc.
  163. *
  164. * @{ */
  165. unsigned int cucul_get_canvas_frame_count(cucul_canvas_t *);
  166. int cucul_set_canvas_frame(cucul_canvas_t *, unsigned int);
  167. int cucul_create_canvas_frame(cucul_canvas_t *, unsigned int);
  168. int cucul_free_canvas_frame(cucul_canvas_t *, unsigned int);
  169. /* @} */
  170. /** \defgroup dither libcucul bitmap dithering
  171. *
  172. * These functions provide high level routines for dither allocation and
  173. * rendering.
  174. *
  175. * @{ */
  176. cucul_dither_t *cucul_create_dither(unsigned int, unsigned int,
  177. unsigned int, unsigned int,
  178. unsigned long int, unsigned long int,
  179. unsigned long int, unsigned long int);
  180. int cucul_set_dither_palette(cucul_dither_t *,
  181. unsigned int r[], unsigned int g[],
  182. unsigned int b[], unsigned int a[]);
  183. int cucul_set_dither_brightness(cucul_dither_t *, float);
  184. int cucul_set_dither_gamma(cucul_dither_t *, float);
  185. int cucul_set_dither_contrast(cucul_dither_t *, float);
  186. int cucul_set_dither_invert(cucul_dither_t *, int);
  187. int cucul_set_dither_antialias(cucul_dither_t *, char const *);
  188. char const * const * cucul_get_dither_antialias_list(cucul_dither_t const *);
  189. int cucul_set_dither_color(cucul_dither_t *, char const *);
  190. char const * const * cucul_get_dither_color_list(cucul_dither_t const *);
  191. int cucul_set_dither_charset(cucul_dither_t *, char const *);
  192. char const * const * cucul_get_dither_charset_list(cucul_dither_t const *);
  193. int cucul_set_dither_mode(cucul_dither_t *, char const *);
  194. char const * const * cucul_get_dither_mode_list(cucul_dither_t const *);
  195. int cucul_dither_bitmap(cucul_canvas_t *, int, int, int, int,
  196. cucul_dither_t const *, void *);
  197. int cucul_free_dither(cucul_dither_t *);
  198. /* @} */
  199. /** \defgroup font libcucul font handling
  200. *
  201. * These functions provide font handling routines and high quality
  202. * canvas to bitmap rendering.
  203. *
  204. * @{ */
  205. cucul_font_t *cucul_load_font(void const *, unsigned int);
  206. char const * const * cucul_get_font_list(void);
  207. unsigned int cucul_get_font_width(cucul_font_t *);
  208. unsigned int cucul_get_font_height(cucul_font_t *);
  209. unsigned long int const *cucul_get_font_blocks(cucul_font_t *);
  210. int cucul_render_canvas(cucul_canvas_t *, cucul_font_t *, void *,
  211. unsigned int, unsigned int, unsigned int);
  212. int cucul_free_font(cucul_font_t *);
  213. /* @} */
  214. /** \defgroup importexport libcucul importers/exporters from/to various formats
  215. *
  216. * These functions import various file formats into a new canvas, or export
  217. * the current canvas to various text formats.
  218. *
  219. * @{ */
  220. cucul_buffer_t * cucul_export_canvas(cucul_canvas_t *, char const *);
  221. char const * const * cucul_get_export_list(void);
  222. cucul_canvas_t * cucul_import_canvas(cucul_buffer_t *, char const *);
  223. char const * const * cucul_get_import_list(void);
  224. /* @} */
  225. #ifdef __cplusplus
  226. }
  227. #endif
  228. #endif /* __CUCUL_H__ */