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.
 
 
 
 
 
 

330 line
14 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. It comes without any warranty, to
  9. * the extent permitted by applicable law. You can redistribute it
  10. * and/or modify it under the terms of the Do What The Fuck You Want
  11. * To Public License, Version 2, as published by Sam Hocevar. See
  12. * http://sam.zoy.org/wtfpl/COPYING for more details.
  13. */
  14. /** \file cucul.h
  15. * \version \$Id$
  16. * \author Sam Hocevar <sam@zoy.org>
  17. * \brief The \e libcucul public header.
  18. *
  19. * This header contains the public types and functions that applications
  20. * using \e libcucul may use.
  21. */
  22. #ifndef __CUCUL_H__
  23. #define __CUCUL_H__
  24. /** libcucul API version */
  25. #define CUCUL_API_VERSION_1
  26. #ifdef __cplusplus
  27. extern "C"
  28. {
  29. #endif
  30. /** \e libcucul canvas */
  31. typedef struct cucul_canvas cucul_canvas_t;
  32. /** dither structure */
  33. typedef struct cucul_dither cucul_dither_t;
  34. /** font structure */
  35. typedef struct cucul_font cucul_font_t;
  36. /** \defgroup cucul_attr libcucul attribute definitions
  37. *
  38. * Colours and styles that can be used with cucul_set_attr().
  39. *
  40. * @{ */
  41. #define CUCUL_BLACK 0x00 /**< The colour index for black. */
  42. #define CUCUL_BLUE 0x01 /**< The colour index for blue. */
  43. #define CUCUL_GREEN 0x02 /**< The colour index for green. */
  44. #define CUCUL_CYAN 0x03 /**< The colour index for cyan. */
  45. #define CUCUL_RED 0x04 /**< The colour index for red. */
  46. #define CUCUL_MAGENTA 0x05 /**< The colour index for magenta. */
  47. #define CUCUL_BROWN 0x06 /**< The colour index for brown. */
  48. #define CUCUL_LIGHTGRAY 0x07 /**< The colour index for light gray. */
  49. #define CUCUL_DARKGRAY 0x08 /**< The colour index for dark gray. */
  50. #define CUCUL_LIGHTBLUE 0x09 /**< The colour index for blue. */
  51. #define CUCUL_LIGHTGREEN 0x0a /**< The colour index for light green. */
  52. #define CUCUL_LIGHTCYAN 0x0b /**< The colour index for light cyan. */
  53. #define CUCUL_LIGHTRED 0x0c /**< The colour index for light red. */
  54. #define CUCUL_LIGHTMAGENTA 0x0d /**< The colour index for light magenta. */
  55. #define CUCUL_YELLOW 0x0e /**< The colour index for yellow. */
  56. #define CUCUL_WHITE 0x0f /**< The colour index for white. */
  57. #define CUCUL_DEFAULT 0x10 /**< The output driver's default colour. */
  58. #define CUCUL_TRANSPARENT 0x20 /**< The transparent colour. */
  59. #define CUCUL_BOLD 0x01 /**< The style mask for bold. */
  60. #define CUCUL_ITALICS 0x02 /**< The style mask for italics. */
  61. #define CUCUL_UNDERLINE 0x04 /**< The style mask for underline. */
  62. #define CUCUL_BLINK 0x08 /**< The style mask for blink. */
  63. /* @} */
  64. /** \defgroup libcucul libcucul basic functions
  65. *
  66. * These functions provide the basic \e libcaca routines for library
  67. * initialisation, system information retrieval and configuration.
  68. *
  69. * @{ */
  70. cucul_canvas_t * cucul_create_canvas(unsigned int, unsigned int);
  71. int cucul_set_canvas_size(cucul_canvas_t *, unsigned int, unsigned int);
  72. unsigned int cucul_get_canvas_width(cucul_canvas_t *);
  73. unsigned int cucul_get_canvas_height(cucul_canvas_t *);
  74. int cucul_free_canvas(cucul_canvas_t *);
  75. int cucul_rand(int, int);
  76. /* @} */
  77. /** \defgroup cucul_canvas libcucul canvas drawing
  78. *
  79. * These functions provide low-level character printing routines and
  80. * higher level graphics functions.
  81. *
  82. * @{ */
  83. #define CUCUL_MAGIC_FULLWIDTH 0x000ffffe /**< Used to indicate that the previous character was a fullwidth glyph. */
  84. int cucul_gotoxy(cucul_canvas_t *, int, int);
  85. int cucul_get_cursor_x(cucul_canvas_t *);
  86. int cucul_get_cursor_y(cucul_canvas_t *);
  87. int cucul_put_char(cucul_canvas_t *, int, int, unsigned long int);
  88. unsigned long int cucul_get_char(cucul_canvas_t *, int, int);
  89. int cucul_put_str(cucul_canvas_t *, int, int, char const *);
  90. unsigned long int cucul_get_attr(cucul_canvas_t *, int, int);
  91. int cucul_set_attr(cucul_canvas_t *, unsigned long int);
  92. int cucul_put_attr(cucul_canvas_t *, int, int, unsigned long int);
  93. int cucul_set_color_ansi(cucul_canvas_t *, unsigned char, unsigned char);
  94. int cucul_set_color_argb(cucul_canvas_t *, unsigned int, unsigned int);
  95. int cucul_printf(cucul_canvas_t *, int, int, char const *, ...);
  96. int cucul_clear_canvas(cucul_canvas_t *);
  97. int cucul_set_canvas_handle(cucul_canvas_t *, int, int);
  98. int cucul_get_canvas_handle_x(cucul_canvas_t *);
  99. int cucul_get_canvas_handle_y(cucul_canvas_t *);
  100. int cucul_blit(cucul_canvas_t *, int, int, cucul_canvas_t const *,
  101. cucul_canvas_t const *);
  102. int cucul_set_canvas_boundaries(cucul_canvas_t *, int, int,
  103. unsigned int, unsigned int);
  104. /* @} */
  105. /** \defgroup cucul_transform libcucul canvas transformation
  106. *
  107. * These functions perform horizontal and vertical canvas flipping.
  108. *
  109. * @{ */
  110. int cucul_invert(cucul_canvas_t *);
  111. int cucul_flip(cucul_canvas_t *);
  112. int cucul_flop(cucul_canvas_t *);
  113. int cucul_rotate_180(cucul_canvas_t *);
  114. int cucul_rotate_left(cucul_canvas_t *);
  115. int cucul_rotate_right(cucul_canvas_t *);
  116. int cucul_stretch_left(cucul_canvas_t *);
  117. int cucul_stretch_right(cucul_canvas_t *);
  118. /* @} */
  119. /** \defgroup cucul_attributes libcucul attribute conversions
  120. *
  121. * These functions perform conversions between attribute values.
  122. *
  123. * @{ */
  124. unsigned char cucul_attr_to_ansi(unsigned long int);
  125. unsigned char cucul_attr_to_ansi_fg(unsigned long int);
  126. unsigned char cucul_attr_to_ansi_bg(unsigned long int);
  127. /* @} */
  128. /** \defgroup cucul_charset libcucul character set conversions
  129. *
  130. * These functions perform conversions between usual character sets.
  131. *
  132. * @{ */
  133. unsigned long int cucul_utf8_to_utf32(char const *, unsigned int *);
  134. unsigned int cucul_utf32_to_utf8(char *, unsigned long int);
  135. unsigned char cucul_utf32_to_cp437(unsigned long int);
  136. unsigned long int cucul_cp437_to_utf32(unsigned char);
  137. char cucul_utf32_to_ascii(unsigned long int);
  138. int cucul_utf32_is_fullwidth(unsigned long int);
  139. /* @} */
  140. /** \defgroup cucul_primitives libcucul primitives drawing
  141. *
  142. * These functions provide routines for primitive drawing, such as lines,
  143. * boxes, triangles and ellipses.
  144. *
  145. * @{ */
  146. int cucul_draw_line(cucul_canvas_t *, int, int, int, int, unsigned long int);
  147. int cucul_draw_polyline(cucul_canvas_t *, int const x[], int const y[], int,
  148. unsigned long int);
  149. int cucul_draw_thin_line(cucul_canvas_t *, int, int, int, int);
  150. int cucul_draw_thin_polyline(cucul_canvas_t *, int const x[], int const y[],
  151. int);
  152. int cucul_draw_circle(cucul_canvas_t *, int, int, int, unsigned long int);
  153. int cucul_draw_ellipse(cucul_canvas_t *, int, int, int, int, unsigned long int);
  154. int cucul_draw_thin_ellipse(cucul_canvas_t *, int, int, int, int);
  155. int cucul_fill_ellipse(cucul_canvas_t *, int, int, int, int, unsigned long int);
  156. int cucul_draw_box(cucul_canvas_t *, int, int, int, int, unsigned long int);
  157. int cucul_draw_thin_box(cucul_canvas_t *, int, int, int, int);
  158. int cucul_draw_cp437_box(cucul_canvas_t *, int, int, int, int);
  159. int cucul_fill_box(cucul_canvas_t *, int, int, int, int, unsigned long int);
  160. int cucul_draw_triangle(cucul_canvas_t *, int, int, int, int, int, int,
  161. unsigned long int);
  162. int cucul_draw_thin_triangle(cucul_canvas_t *, int, int, int, int, int, int);
  163. int cucul_fill_triangle(cucul_canvas_t *, int, int, int, int, int, int,
  164. unsigned long int);
  165. /* @} */
  166. /** \defgroup cucul_frame libcucul canvas frame handling
  167. *
  168. * These functions provide high level routines for canvas frame insertion,
  169. * removal, copying etc.
  170. *
  171. * @{ */
  172. unsigned int cucul_get_frame_count(cucul_canvas_t *);
  173. int cucul_set_frame(cucul_canvas_t *, unsigned int);
  174. char const *cucul_get_frame_name(cucul_canvas_t *);
  175. int cucul_set_frame_name(cucul_canvas_t *, char const *);
  176. int cucul_create_frame(cucul_canvas_t *, unsigned int);
  177. int cucul_free_frame(cucul_canvas_t *, unsigned int);
  178. /* @} */
  179. /** \defgroup cucul_dither libcucul bitmap dithering
  180. *
  181. * These functions provide high level routines for dither allocation and
  182. * rendering.
  183. *
  184. * @{ */
  185. cucul_dither_t *cucul_create_dither(unsigned int, unsigned int,
  186. unsigned int, unsigned int,
  187. unsigned long int, unsigned long int,
  188. unsigned long int, unsigned long int);
  189. int cucul_set_dither_palette(cucul_dither_t *,
  190. unsigned int r[], unsigned int g[],
  191. unsigned int b[], unsigned int a[]);
  192. int cucul_set_dither_brightness(cucul_dither_t *, float);
  193. float cucul_get_dither_brightness(cucul_dither_t *);
  194. int cucul_set_dither_gamma(cucul_dither_t *, float);
  195. float cucul_get_dither_gamma(cucul_dither_t *);
  196. int cucul_set_dither_contrast(cucul_dither_t *, float);
  197. float cucul_get_dither_contrast(cucul_dither_t *);
  198. int cucul_set_dither_antialias(cucul_dither_t *, char const *);
  199. char const * const * cucul_get_dither_antialias_list(cucul_dither_t const *);
  200. char const * cucul_get_dither_antialias(cucul_dither_t const *);
  201. int cucul_set_dither_color(cucul_dither_t *, char const *);
  202. char const * const * cucul_get_dither_color_list(cucul_dither_t const *);
  203. char const * cucul_get_dither_color(cucul_dither_t const *);
  204. int cucul_set_dither_charset(cucul_dither_t *, char const *);
  205. char const * const * cucul_get_dither_charset_list(cucul_dither_t const *);
  206. char const * cucul_get_dither_charset(cucul_dither_t const *);
  207. int cucul_set_dither_algorithm(cucul_dither_t *, char const *);
  208. char const * const * cucul_get_dither_algorithm_list(cucul_dither_t const *);
  209. char const * cucul_get_dither_algorithm(cucul_dither_t const *);
  210. int cucul_dither_bitmap(cucul_canvas_t *, int, int, int, int,
  211. cucul_dither_t const *, void *);
  212. int cucul_free_dither(cucul_dither_t *);
  213. /* @} */
  214. /** \defgroup cucul_font libcucul font handling
  215. *
  216. * These functions provide font handling routines and high quality
  217. * canvas to bitmap rendering.
  218. *
  219. * @{ */
  220. cucul_font_t *cucul_load_font(void const *, unsigned int);
  221. char const * const * cucul_get_font_list(void);
  222. unsigned int cucul_get_font_width(cucul_font_t *);
  223. unsigned int cucul_get_font_height(cucul_font_t *);
  224. unsigned long int const *cucul_get_font_blocks(cucul_font_t *);
  225. int cucul_render_canvas(cucul_canvas_t *, cucul_font_t *, void *,
  226. unsigned int, unsigned int, unsigned int);
  227. int cucul_free_font(cucul_font_t *);
  228. /* @} */
  229. /** \defgroup cucul_importexport libcucul importers/exporters from/to various
  230. * formats
  231. *
  232. * These functions import various file formats into a new canvas, or export
  233. * the current canvas to various text formats.
  234. *
  235. * @{ */
  236. long int cucul_import_memory(cucul_canvas_t *, void const *,
  237. unsigned long int, char const *);
  238. long int cucul_import_file(cucul_canvas_t *, char const *, char const *);
  239. char const * const * cucul_get_import_list(void);
  240. void *cucul_export_memory(cucul_canvas_t *, char const *, unsigned long int *);
  241. char const * const * cucul_get_export_list(void);
  242. /* @} */
  243. #if !defined(_DOXYGEN_SKIP_ME)
  244. /* Legacy stuff from beta versions, will probably disappear in 1.0 */
  245. typedef struct cucul_buffer cucul_buffer_t;
  246. # if defined __GNUC__ && __GNUC__ >= 3
  247. # define CUCUL_DEPRECATED __attribute__ ((__deprecated__))
  248. # else
  249. # define CUCUL_DEPRECATED
  250. # endif
  251. int cucul_putchar(cucul_canvas_t *, int, int,
  252. unsigned long int) CUCUL_DEPRECATED;
  253. unsigned long int cucul_getchar(cucul_canvas_t *,
  254. int, int) CUCUL_DEPRECATED;
  255. int cucul_putstr(cucul_canvas_t *, int, int,
  256. char const *) CUCUL_DEPRECATED;
  257. int cucul_set_color(cucul_canvas_t *, unsigned char,
  258. unsigned char) CUCUL_DEPRECATED;
  259. int cucul_set_truecolor(cucul_canvas_t *, unsigned int,
  260. unsigned int) CUCUL_DEPRECATED;
  261. unsigned int cucul_get_canvas_frame_count(cucul_canvas_t *)
  262. CUCUL_DEPRECATED;
  263. int cucul_set_canvas_frame(cucul_canvas_t *,
  264. unsigned int) CUCUL_DEPRECATED;
  265. int cucul_create_canvas_frame(cucul_canvas_t *,
  266. unsigned int) CUCUL_DEPRECATED;
  267. int cucul_free_canvas_frame(cucul_canvas_t *,
  268. unsigned int) CUCUL_DEPRECATED;
  269. cucul_buffer_t *cucul_load_memory(void *,
  270. unsigned long int) CUCUL_DEPRECATED;
  271. cucul_buffer_t *cucul_load_file(char const *) CUCUL_DEPRECATED;
  272. unsigned long int cucul_get_buffer_size(cucul_buffer_t *) CUCUL_DEPRECATED;
  273. void * cucul_get_buffer_data(cucul_buffer_t *) CUCUL_DEPRECATED;
  274. int cucul_free_buffer(cucul_buffer_t *) CUCUL_DEPRECATED;
  275. cucul_buffer_t * cucul_export_canvas(cucul_canvas_t *,
  276. char const *) CUCUL_DEPRECATED;
  277. cucul_canvas_t * cucul_import_canvas(cucul_buffer_t *,
  278. char const *) CUCUL_DEPRECATED;
  279. int cucul_rotate(cucul_canvas_t *) CUCUL_DEPRECATED;
  280. int cucul_set_dither_invert(cucul_dither_t *, int) CUCUL_DEPRECATED;
  281. int cucul_set_dither_mode(cucul_dither_t *, char const *) CUCUL_DEPRECATED;
  282. char const * const * cucul_get_dither_mode_list(cucul_dither_t
  283. const *) CUCUL_DEPRECATED;
  284. # define CUCUL_COLOR_BLACK CUCUL_BLACK
  285. # define CUCUL_COLOR_BLUE CUCUL_BLUE
  286. # define CUCUL_COLOR_GREEN CUCUL_GREEN
  287. # define CUCUL_COLOR_CYAN CUCUL_CYAN
  288. # define CUCUL_COLOR_RED CUCUL_RED
  289. # define CUCUL_COLOR_MAGENTA CUCUL_MAGENTA
  290. # define CUCUL_COLOR_BROWN CUCUL_BROWN
  291. # define CUCUL_COLOR_LIGHTGRAY CUCUL_LIGHTGRAY
  292. # define CUCUL_COLOR_DARKGRAY CUCUL_DARKGRAY
  293. # define CUCUL_COLOR_LIGHTBLUE CUCUL_LIGHTBLUE
  294. # define CUCUL_COLOR_LIGHTGREEN CUCUL_LIGHTGREEN
  295. # define CUCUL_COLOR_LIGHTCYAN CUCUL_LIGHTCYAN
  296. # define CUCUL_COLOR_LIGHTRED CUCUL_LIGHTRED
  297. # define CUCUL_COLOR_LIGHTMAGENTA CUCUL_LIGHTMAGENTA
  298. # define CUCUL_COLOR_YELLOW CUCUL_YELLOW
  299. # define CUCUL_COLOR_WHITE CUCUL_YELLOW
  300. # define CUCUL_COLOR_DEFAULT CUCUL_DEFAULT
  301. # define CUCUL_COLOR_TRANSPARENT CUCUL_TRANSPARENT
  302. #endif
  303. #ifdef __cplusplus
  304. }
  305. #endif
  306. #endif /* __CUCUL_H__ */