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.
 
 
 
 
 
 

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