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.
 
 
 
 
 
 

880 lines
37 KiB

  1. /*
  2. * libcaca Colour ASCII-Art library
  3. * Copyright (c) 2002-2010 Sam Hocevar <sam@hocevar.net>
  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 caca.h
  15. * \version \$Id$
  16. * \author Sam Hocevar <sam@hocevar.net>
  17. * \brief The \e libcaca public header.
  18. *
  19. * This header contains the public types and functions that applications
  20. * using \e libcaca may use.
  21. */
  22. #ifndef __CACA_H__
  23. #define __CACA_H__
  24. #include <caca_types.h>
  25. #if !defined(__KERNEL__)
  26. # include <stdarg.h>
  27. #endif
  28. #undef __extern
  29. #if defined _DOXYGEN_SKIP_ME
  30. #elif defined _WIN32 && defined __LIBCACA__ && defined DLL_EXPORT
  31. # define __extern extern __declspec(dllexport)
  32. #elif defined _WIN32 && !defined __LIBCACA__
  33. # define __extern extern __declspec(dllimport)
  34. #else
  35. # define __extern extern
  36. #endif
  37. /** libcaca API version */
  38. #define CACA_API_VERSION_1
  39. #ifdef __cplusplus
  40. extern "C"
  41. {
  42. #endif
  43. /** \e libcaca canvas */
  44. typedef struct caca_canvas caca_canvas_t;
  45. /** dither structure */
  46. typedef struct caca_dither caca_dither_t;
  47. /** font structure */
  48. typedef struct caca_font caca_font_t;
  49. /** file handle structure */
  50. typedef struct caca_file caca_file_t;
  51. /** \e libcaca display context */
  52. typedef struct caca_display caca_display_t;
  53. /** \e libcaca event structure */
  54. typedef struct caca_event caca_event_t;
  55. /** \defgroup caca_attr libcaca attribute definitions
  56. *
  57. * Colours and styles that can be used with caca_set_attr().
  58. *
  59. * @{ */
  60. /** \e libcaca colour keyword */
  61. enum caca_color
  62. {
  63. CACA_BLACK = 0x00, /**< The colour index for black. */
  64. CACA_BLUE = 0x01, /**< The colour index for blue. */
  65. CACA_GREEN = 0x02, /**< The colour index for green. */
  66. CACA_CYAN = 0x03, /**< The colour index for cyan. */
  67. CACA_RED = 0x04, /**< The colour index for red. */
  68. CACA_MAGENTA = 0x05, /**< The colour index for magenta. */
  69. CACA_BROWN = 0x06, /**< The colour index for brown. */
  70. CACA_LIGHTGRAY = 0x07, /**< The colour index for light gray. */
  71. CACA_DARKGRAY = 0x08, /**< The colour index for dark gray. */
  72. CACA_LIGHTBLUE = 0x09, /**< The colour index for blue. */
  73. CACA_LIGHTGREEN = 0x0a, /**< The colour index for light green. */
  74. CACA_LIGHTCYAN = 0x0b, /**< The colour index for light cyan. */
  75. CACA_LIGHTRED = 0x0c, /**< The colour index for light red. */
  76. CACA_LIGHTMAGENTA = 0x0d, /**< The colour index for light magenta. */
  77. CACA_YELLOW = 0x0e, /**< The colour index for yellow. */
  78. CACA_WHITE = 0x0f, /**< The colour index for white. */
  79. CACA_DEFAULT = 0x10, /**< The output driver's default colour. */
  80. CACA_TRANSPARENT = 0x20, /**< The transparent colour. */
  81. };
  82. /** \e libcaca style keyword */
  83. enum caca_style
  84. {
  85. CACA_BOLD = 0x01, /**< The style mask for bold. */
  86. CACA_ITALICS = 0x02, /**< The style mask for italics. */
  87. CACA_UNDERLINE = 0x04, /**< The style mask for underline. */
  88. CACA_BLINK = 0x08, /**< The style mask for blink. */
  89. };
  90. /* @} */
  91. /** \brief User event type enumeration.
  92. *
  93. * This enum serves two purposes:
  94. * - Build listening masks for caca_get_event().
  95. * - Define the type of a \e caca_event_t.
  96. */
  97. enum caca_event_type
  98. {
  99. CACA_EVENT_NONE = 0x0000, /**< No event. */
  100. CACA_EVENT_KEY_PRESS = 0x0001, /**< A key was pressed. */
  101. CACA_EVENT_KEY_RELEASE = 0x0002, /**< A key was released. */
  102. CACA_EVENT_MOUSE_PRESS = 0x0004, /**< A mouse button was pressed. */
  103. CACA_EVENT_MOUSE_RELEASE = 0x0008, /**< A mouse button was released. */
  104. CACA_EVENT_MOUSE_MOTION = 0x0010, /**< The mouse was moved. */
  105. CACA_EVENT_RESIZE = 0x0020, /**< The window was resized. */
  106. CACA_EVENT_QUIT = 0x0040, /**< The user requested to quit. */
  107. CACA_EVENT_ANY = 0xffff /**< Bitmask for any event. */
  108. };
  109. /** \brief Handling of user events.
  110. *
  111. * This structure is filled by caca_get_event() when an event is received.
  112. * It is an opaque structure that should only be accessed through
  113. * caca_event_get_type() and similar functions. The struct members may no
  114. * longer be directly accessible in future versions.
  115. */
  116. struct caca_event
  117. {
  118. enum caca_event_type type; /**< The event type. */
  119. union
  120. {
  121. struct { int x, y, button; } mouse;
  122. struct { int w, h; } resize;
  123. struct { int ch; uint32_t utf32; char utf8[8]; } key;
  124. } data; /**< The event information data */
  125. #if !defined(_DOXYGEN_SKIP_ME)
  126. uint8_t padding[16];
  127. #endif
  128. };
  129. /** \brief Special key values.
  130. *
  131. * Special key values returned by caca_get_event() for which there is no
  132. * printable ASCII equivalent.
  133. */
  134. enum caca_key
  135. {
  136. CACA_KEY_UNKNOWN = 0x00, /**< Unknown key. */
  137. /* The following keys have ASCII equivalents */
  138. CACA_KEY_CTRL_A = 0x01, /**< The Ctrl-A key. */
  139. CACA_KEY_CTRL_B = 0x02, /**< The Ctrl-B key. */
  140. CACA_KEY_CTRL_C = 0x03, /**< The Ctrl-C key. */
  141. CACA_KEY_CTRL_D = 0x04, /**< The Ctrl-D key. */
  142. CACA_KEY_CTRL_E = 0x05, /**< The Ctrl-E key. */
  143. CACA_KEY_CTRL_F = 0x06, /**< The Ctrl-F key. */
  144. CACA_KEY_CTRL_G = 0x07, /**< The Ctrl-G key. */
  145. CACA_KEY_BACKSPACE = 0x08, /**< The backspace key. */
  146. CACA_KEY_TAB = 0x09, /**< The tabulation key. */
  147. CACA_KEY_CTRL_J = 0x0a, /**< The Ctrl-J key. */
  148. CACA_KEY_CTRL_K = 0x0b, /**< The Ctrl-K key. */
  149. CACA_KEY_CTRL_L = 0x0c, /**< The Ctrl-L key. */
  150. CACA_KEY_RETURN = 0x0d, /**< The return key. */
  151. CACA_KEY_CTRL_N = 0x0e, /**< The Ctrl-N key. */
  152. CACA_KEY_CTRL_O = 0x0f, /**< The Ctrl-O key. */
  153. CACA_KEY_CTRL_P = 0x10, /**< The Ctrl-P key. */
  154. CACA_KEY_CTRL_Q = 0x11, /**< The Ctrl-Q key. */
  155. CACA_KEY_CTRL_R = 0x12, /**< The Ctrl-R key. */
  156. CACA_KEY_PAUSE = 0x13, /**< The pause key. */
  157. CACA_KEY_CTRL_T = 0x14, /**< The Ctrl-T key. */
  158. CACA_KEY_CTRL_U = 0x15, /**< The Ctrl-U key. */
  159. CACA_KEY_CTRL_V = 0x16, /**< The Ctrl-V key. */
  160. CACA_KEY_CTRL_W = 0x17, /**< The Ctrl-W key. */
  161. CACA_KEY_CTRL_X = 0x18, /**< The Ctrl-X key. */
  162. CACA_KEY_CTRL_Y = 0x19, /**< The Ctrl-Y key. */
  163. CACA_KEY_CTRL_Z = 0x1a, /**< The Ctrl-Z key. */
  164. CACA_KEY_ESCAPE = 0x1b, /**< The escape key. */
  165. CACA_KEY_DELETE = 0x7f, /**< The delete key. */
  166. /* The following keys do not have ASCII equivalents but have been
  167. * chosen to match the SDL equivalents */
  168. CACA_KEY_UP = 0x111, /**< The up arrow key. */
  169. CACA_KEY_DOWN = 0x112, /**< The down arrow key. */
  170. CACA_KEY_LEFT = 0x113, /**< The left arrow key. */
  171. CACA_KEY_RIGHT = 0x114, /**< The right arrow key. */
  172. CACA_KEY_INSERT = 0x115, /**< The insert key. */
  173. CACA_KEY_HOME = 0x116, /**< The home key. */
  174. CACA_KEY_END = 0x117, /**< The end key. */
  175. CACA_KEY_PAGEUP = 0x118, /**< The page up key. */
  176. CACA_KEY_PAGEDOWN = 0x119, /**< The page down key. */
  177. CACA_KEY_F1 = 0x11a, /**< The F1 key. */
  178. CACA_KEY_F2 = 0x11b, /**< The F2 key. */
  179. CACA_KEY_F3 = 0x11c, /**< The F3 key. */
  180. CACA_KEY_F4 = 0x11d, /**< The F4 key. */
  181. CACA_KEY_F5 = 0x11e, /**< The F5 key. */
  182. CACA_KEY_F6 = 0x11f, /**< The F6 key. */
  183. CACA_KEY_F7 = 0x120, /**< The F7 key. */
  184. CACA_KEY_F8 = 0x121, /**< The F8 key. */
  185. CACA_KEY_F9 = 0x122, /**< The F9 key. */
  186. CACA_KEY_F10 = 0x123, /**< The F10 key. */
  187. CACA_KEY_F11 = 0x124, /**< The F11 key. */
  188. CACA_KEY_F12 = 0x125, /**< The F12 key. */
  189. CACA_KEY_F13 = 0x126, /**< The F13 key. */
  190. CACA_KEY_F14 = 0x127, /**< The F14 key. */
  191. CACA_KEY_F15 = 0x128 /**< The F15 key. */
  192. };
  193. /** \defgroup libcaca libcaca basic functions
  194. *
  195. * These functions provide the basic \e libcaca routines for library
  196. * initialisation, system information retrieval and configuration.
  197. *
  198. * @{ */
  199. __extern caca_canvas_t * caca_create_canvas(int, int);
  200. __extern int caca_manage_canvas(caca_canvas_t *, int (*)(void *), void *);
  201. __extern int caca_unmanage_canvas(caca_canvas_t *, int (*)(void *), void *);
  202. __extern int caca_set_canvas_size(caca_canvas_t *, int, int);
  203. __extern int caca_get_canvas_width(caca_canvas_t const *);
  204. __extern int caca_get_canvas_height(caca_canvas_t const *);
  205. __extern uint32_t const * caca_get_canvas_chars(caca_canvas_t const *);
  206. __extern uint32_t const * caca_get_canvas_attrs(caca_canvas_t const *);
  207. __extern int caca_free_canvas(caca_canvas_t *);
  208. __extern int caca_rand(int, int);
  209. __extern char const * caca_get_version(void);
  210. /* @} */
  211. /** \defgroup caca_canvas libcaca canvas drawing
  212. *
  213. * These functions provide low-level character printing routines and
  214. * higher level graphics functions.
  215. *
  216. * @{ */
  217. #define CACA_MAGIC_FULLWIDTH 0x000ffffe /**< Used to indicate that the previous character was a fullwidth glyph. */
  218. __extern int caca_gotoxy(caca_canvas_t *, int, int);
  219. __extern int caca_wherex(caca_canvas_t const *);
  220. __extern int caca_wherey(caca_canvas_t const *);
  221. __extern int caca_put_char(caca_canvas_t *, int, int, uint32_t);
  222. __extern uint32_t caca_get_char(caca_canvas_t const *, int, int);
  223. __extern int caca_put_str(caca_canvas_t *, int, int, char const *);
  224. __extern int caca_printf(caca_canvas_t *, int, int, char const *, ...);
  225. __extern int caca_vprintf(caca_canvas_t *, int, int, char const *, va_list);
  226. __extern int caca_clear_canvas(caca_canvas_t *);
  227. __extern int caca_set_canvas_handle(caca_canvas_t *, int, int);
  228. __extern int caca_get_canvas_handle_x(caca_canvas_t const *);
  229. __extern int caca_get_canvas_handle_y(caca_canvas_t const *);
  230. __extern int caca_blit(caca_canvas_t *, int, int, caca_canvas_t const *,
  231. caca_canvas_t const *);
  232. __extern int caca_set_canvas_boundaries(caca_canvas_t *, int, int, int, int);
  233. /* @} */
  234. /** \defgroup caca_dirty libcaca dirty rectangle manipulation
  235. *
  236. * These functions manipulate dirty rectangles for optimised blitting.
  237. * @{ */
  238. __extern int caca_disable_dirty_rect(caca_canvas_t *);
  239. __extern int caca_enable_dirty_rect(caca_canvas_t *);
  240. __extern int caca_get_dirty_rect_count(caca_canvas_t *);
  241. __extern int caca_get_dirty_rect(caca_canvas_t *, int, int *, int *,
  242. int *, int *);
  243. __extern int caca_add_dirty_rect(caca_canvas_t *, int, int, int, int);
  244. __extern int caca_remove_dirty_rect(caca_canvas_t *, int, int, int, int);
  245. __extern int caca_clear_dirty_rect_list(caca_canvas_t *);
  246. /* @} */
  247. /** \defgroup caca_transform libcaca canvas transformation
  248. *
  249. * These functions perform horizontal and vertical canvas flipping.
  250. *
  251. * @{ */
  252. __extern int caca_invert(caca_canvas_t *);
  253. __extern int caca_flip(caca_canvas_t *);
  254. __extern int caca_flop(caca_canvas_t *);
  255. __extern int caca_rotate_180(caca_canvas_t *);
  256. __extern int caca_rotate_left(caca_canvas_t *);
  257. __extern int caca_rotate_right(caca_canvas_t *);
  258. __extern int caca_stretch_left(caca_canvas_t *);
  259. __extern int caca_stretch_right(caca_canvas_t *);
  260. /* @} */
  261. /** \defgroup caca_attributes libcaca attribute conversions
  262. *
  263. * These functions perform conversions between attribute values.
  264. *
  265. * @{ */
  266. __extern uint32_t caca_get_attr(caca_canvas_t const *, int, int);
  267. __extern int caca_set_attr(caca_canvas_t *, uint32_t);
  268. __extern int caca_unset_attr(caca_canvas_t *, uint32_t);
  269. __extern int caca_toggle_attr(caca_canvas_t *, uint32_t);
  270. __extern int caca_put_attr(caca_canvas_t *, int, int, uint32_t);
  271. __extern int caca_set_color_ansi(caca_canvas_t *, uint8_t, uint8_t);
  272. __extern int caca_set_color_argb(caca_canvas_t *, uint16_t, uint16_t);
  273. __extern uint8_t caca_attr_to_ansi(uint32_t);
  274. __extern uint8_t caca_attr_to_ansi_fg(uint32_t);
  275. __extern uint8_t caca_attr_to_ansi_bg(uint32_t);
  276. __extern uint16_t caca_attr_to_rgb12_fg(uint32_t);
  277. __extern uint16_t caca_attr_to_rgb12_bg(uint32_t);
  278. __extern void caca_attr_to_argb64(uint32_t, uint8_t[8]);
  279. /* @} */
  280. /** \defgroup caca_charset libcaca character set conversions
  281. *
  282. * These functions perform conversions between usual character sets.
  283. *
  284. * @{ */
  285. __extern uint32_t caca_utf8_to_utf32(char const *, size_t *);
  286. __extern size_t caca_utf32_to_utf8(char *, uint32_t);
  287. __extern uint8_t caca_utf32_to_cp437(uint32_t);
  288. __extern uint32_t caca_cp437_to_utf32(uint8_t);
  289. __extern char caca_utf32_to_ascii(uint32_t);
  290. __extern int caca_utf32_is_fullwidth(uint32_t);
  291. /* @} */
  292. /** \defgroup caca_primitives libcaca primitives drawing
  293. *
  294. * These functions provide routines for primitive drawing, such as lines,
  295. * boxes, triangles and ellipses.
  296. *
  297. * @{ */
  298. __extern int caca_draw_line(caca_canvas_t *, int, int, int, int, uint32_t);
  299. __extern int caca_draw_polyline(caca_canvas_t *, int const x[],
  300. int const y[], int, uint32_t);
  301. __extern int caca_draw_thin_line(caca_canvas_t *, int, int, int, int);
  302. __extern int caca_draw_thin_polyline(caca_canvas_t *, int const x[],
  303. int const y[], int);
  304. __extern int caca_draw_circle(caca_canvas_t *, int, int, int, uint32_t);
  305. __extern int caca_draw_ellipse(caca_canvas_t *, int, int, int, int, uint32_t);
  306. __extern int caca_draw_thin_ellipse(caca_canvas_t *, int, int, int, int);
  307. __extern int caca_fill_ellipse(caca_canvas_t *, int, int, int, int, uint32_t);
  308. __extern int caca_draw_box(caca_canvas_t *, int, int, int, int, uint32_t);
  309. __extern int caca_draw_thin_box(caca_canvas_t *, int, int, int, int);
  310. __extern int caca_draw_cp437_box(caca_canvas_t *, int, int, int, int);
  311. __extern int caca_fill_box(caca_canvas_t *, int, int, int, int, uint32_t);
  312. __extern int caca_draw_triangle(caca_canvas_t *, int, int, int, int, int,
  313. int, uint32_t);
  314. __extern int caca_draw_thin_triangle(caca_canvas_t *, int, int, int, int,
  315. int, int);
  316. __extern int caca_fill_triangle(caca_canvas_t *, int, int, int, int, int,
  317. int, uint32_t);
  318. __extern int caca_fill_triangle_textured(caca_canvas_t *cv,
  319. int coords[6],
  320. caca_canvas_t *tex,
  321. float uv[6]);
  322. /* @} */
  323. /** \defgroup caca_frame libcaca canvas frame handling
  324. *
  325. * These functions provide high level routines for canvas frame insertion,
  326. * removal, copying etc.
  327. *
  328. * @{ */
  329. __extern int caca_get_frame_count(caca_canvas_t const *);
  330. __extern int caca_set_frame(caca_canvas_t *, int);
  331. __extern char const *caca_get_frame_name(caca_canvas_t const *);
  332. __extern int caca_set_frame_name(caca_canvas_t *, char const *);
  333. __extern int caca_create_frame(caca_canvas_t *, int);
  334. __extern int caca_free_frame(caca_canvas_t *, int);
  335. /* @} */
  336. /** \defgroup caca_dither libcaca bitmap dithering
  337. *
  338. * These functions provide high level routines for dither allocation and
  339. * rendering.
  340. *
  341. * @{ */
  342. __extern caca_dither_t *caca_create_dither(int, int, int, int,
  343. uint32_t, uint32_t,
  344. uint32_t, uint32_t);
  345. __extern int caca_set_dither_palette(caca_dither_t *,
  346. uint32_t r[], uint32_t g[],
  347. uint32_t b[], uint32_t a[]);
  348. __extern int caca_set_dither_brightness(caca_dither_t *, float);
  349. __extern float caca_get_dither_brightness(caca_dither_t const *);
  350. __extern int caca_set_dither_gamma(caca_dither_t *, float);
  351. __extern float caca_get_dither_gamma(caca_dither_t const *);
  352. __extern int caca_set_dither_contrast(caca_dither_t *, float);
  353. __extern float caca_get_dither_contrast(caca_dither_t const *);
  354. __extern int caca_set_dither_antialias(caca_dither_t *, char const *);
  355. __extern char const * const * caca_get_dither_antialias_list(caca_dither_t
  356. const *);
  357. __extern char const * caca_get_dither_antialias(caca_dither_t const *);
  358. __extern int caca_set_dither_color(caca_dither_t *, char const *);
  359. __extern char const * const * caca_get_dither_color_list(caca_dither_t
  360. const *);
  361. __extern char const * caca_get_dither_color(caca_dither_t const *);
  362. __extern int caca_set_dither_charset(caca_dither_t *, char const *);
  363. __extern char const * const * caca_get_dither_charset_list(caca_dither_t
  364. const *);
  365. __extern char const * caca_get_dither_charset(caca_dither_t const *);
  366. __extern int caca_set_dither_algorithm(caca_dither_t *, char const *);
  367. __extern char const * const * caca_get_dither_algorithm_list(caca_dither_t
  368. const *);
  369. __extern char const * caca_get_dither_algorithm(caca_dither_t const *);
  370. __extern int caca_dither_bitmap(caca_canvas_t *, int, int, int, int,
  371. caca_dither_t const *, void const *);
  372. __extern int caca_free_dither(caca_dither_t *);
  373. /* @} */
  374. /** \defgroup caca_font libcaca font handling
  375. *
  376. * These functions provide font handling routines and high quality
  377. * canvas to bitmap rendering.
  378. *
  379. * @{ */
  380. __extern caca_font_t *caca_load_font(void const *, size_t);
  381. __extern char const * const * caca_get_font_list(void);
  382. __extern int caca_get_font_width(caca_font_t const *);
  383. __extern int caca_get_font_height(caca_font_t const *);
  384. __extern uint32_t const *caca_get_font_blocks(caca_font_t const *);
  385. __extern int caca_render_canvas(caca_canvas_t const *, caca_font_t const *,
  386. void *, int, int, int);
  387. __extern int caca_free_font(caca_font_t *);
  388. /* @} */
  389. /** \defgroup caca_figfont libcaca FIGfont handling
  390. *
  391. * These functions provide FIGlet and TOIlet font handling routines.
  392. *
  393. * @{ */
  394. __extern int caca_canvas_set_figfont(caca_canvas_t *, char const *);
  395. __extern int caca_put_figchar(caca_canvas_t *, uint32_t);
  396. __extern int caca_flush_figlet(caca_canvas_t *);
  397. /* @} */
  398. /** \defgroup caca_file libcaca file IO
  399. *
  400. * These functions allow to read and write files in a platform-independent
  401. * way.
  402. * @{ */
  403. __extern caca_file_t *caca_file_open(char const *, const char *);
  404. __extern int caca_file_close(caca_file_t *);
  405. __extern uint64_t caca_file_tell(caca_file_t *);
  406. __extern size_t caca_file_read(caca_file_t *, void *, size_t);
  407. __extern size_t caca_file_write(caca_file_t *, const void *, size_t);
  408. __extern char * caca_file_gets(caca_file_t *, char *, int);
  409. __extern int caca_file_eof(caca_file_t *);
  410. /* @} */
  411. /** \defgroup caca_importexport libcaca importers/exporters from/to various
  412. * formats
  413. *
  414. * These functions import various file formats into a new canvas, or export
  415. * the current canvas to various text formats.
  416. *
  417. * @{ */
  418. __extern ssize_t caca_import_canvas_from_memory(caca_canvas_t *, void const *,
  419. size_t, char const *);
  420. __extern ssize_t caca_import_canvas_from_file(caca_canvas_t *, char const *,
  421. char const *);
  422. __extern ssize_t caca_import_area_from_memory(caca_canvas_t *, int, int,
  423. void const *, size_t,
  424. char const *);
  425. __extern ssize_t caca_import_area_from_file(caca_canvas_t *, int, int,
  426. char const *, char const *);
  427. __extern char const * const * caca_get_import_list(void);
  428. __extern void *caca_export_canvas_to_memory(caca_canvas_t const *,
  429. char const *, size_t *);
  430. __extern void *caca_export_area_to_memory(caca_canvas_t const *, int, int,
  431. int, int, char const *, size_t *);
  432. __extern char const * const * caca_get_export_list(void);
  433. /* @} */
  434. /** \defgroup caca_display libcaca display functions
  435. *
  436. * These functions provide the basic \e libcaca routines for display
  437. * initialisation, system information retrieval and configuration.
  438. *
  439. * @{ */
  440. __extern caca_display_t * caca_create_display(caca_canvas_t *);
  441. __extern caca_display_t * caca_create_display_with_driver(caca_canvas_t *,
  442. char const *);
  443. __extern char const * const * caca_get_display_driver_list(void);
  444. __extern char const * caca_get_display_driver(caca_display_t *);
  445. __extern int caca_set_display_driver(caca_display_t *, char const *);
  446. __extern int caca_free_display(caca_display_t *);
  447. __extern caca_canvas_t * caca_get_canvas(caca_display_t *);
  448. __extern int caca_refresh_display(caca_display_t *);
  449. __extern int caca_set_display_time(caca_display_t *, int);
  450. __extern int caca_get_display_time(caca_display_t const *);
  451. __extern int caca_get_display_width(caca_display_t const *);
  452. __extern int caca_get_display_height(caca_display_t const *);
  453. __extern int caca_set_display_title(caca_display_t *, char const *);
  454. __extern int caca_set_mouse(caca_display_t *, int);
  455. __extern int caca_set_cursor(caca_display_t *, int);
  456. /* @} */
  457. /** \defgroup caca_event libcaca event handling
  458. *
  459. * These functions handle user events such as keyboard input and mouse
  460. * clicks.
  461. *
  462. * @{ */
  463. __extern int caca_get_event(caca_display_t *, int, caca_event_t *, int);
  464. __extern int caca_get_mouse_x(caca_display_t const *);
  465. __extern int caca_get_mouse_y(caca_display_t const *);
  466. __extern enum caca_event_type caca_get_event_type(caca_event_t const *);
  467. __extern int caca_get_event_key_ch(caca_event_t const *);
  468. __extern uint32_t caca_get_event_key_utf32(caca_event_t const *);
  469. __extern int caca_get_event_key_utf8(caca_event_t const *, char *);
  470. __extern int caca_get_event_mouse_button(caca_event_t const *);
  471. __extern int caca_get_event_mouse_x(caca_event_t const *);
  472. __extern int caca_get_event_mouse_y(caca_event_t const *);
  473. __extern int caca_get_event_resize_width(caca_event_t const *);
  474. __extern int caca_get_event_resize_height(caca_event_t const *);
  475. /* @} */
  476. /** \brief DOS colours
  477. *
  478. * This enum lists the colour values for the DOS conio.h compatibility
  479. * layer.
  480. */
  481. enum CACA_CONIO_COLORS
  482. {
  483. CACA_CONIO_BLINK = 128,
  484. CACA_CONIO_BLACK = 0,
  485. CACA_CONIO_BLUE = 1,
  486. CACA_CONIO_GREEN = 2,
  487. CACA_CONIO_CYAN = 3,
  488. CACA_CONIO_RED = 4,
  489. CACA_CONIO_MAGENTA = 5,
  490. CACA_CONIO_BROWN = 6,
  491. CACA_CONIO_LIGHTGRAY = 7,
  492. CACA_CONIO_DARKGRAY = 8,
  493. CACA_CONIO_LIGHTBLUE = 9,
  494. CACA_CONIO_LIGHTGREEN = 10,
  495. CACA_CONIO_LIGHTCYAN = 11,
  496. CACA_CONIO_LIGHTRED = 12,
  497. CACA_CONIO_LIGHTMAGENTA = 13,
  498. CACA_CONIO_YELLOW = 14,
  499. CACA_CONIO_WHITE = 15,
  500. };
  501. /** \brief DOS cursor modes
  502. *
  503. * This enum lists the cursor mode values for the DOS conio.h compatibility
  504. * layer.
  505. */
  506. enum CACA_CONIO_CURSOR
  507. {
  508. CACA_CONIO__NOCURSOR = 0,
  509. CACA_CONIO__SOLIDCURSOR = 1,
  510. CACA_CONIO__NORMALCURSOR = 2,
  511. };
  512. /** \brief DOS video modes
  513. *
  514. * This enum lists the video mode values for the DOS conio.h compatibility
  515. * layer.
  516. */
  517. enum CACA_CONIO_MODE
  518. {
  519. CACA_CONIO_LASTMODE = -1,
  520. CACA_CONIO_BW40 = 0,
  521. CACA_CONIO_C40 = 1,
  522. CACA_CONIO_BW80 = 2,
  523. CACA_CONIO_C80 = 3,
  524. CACA_CONIO_MONO = 7,
  525. CACA_CONIO_C4350 = 64,
  526. };
  527. /** \brief DOS text area information
  528. *
  529. * This structure stores text area information for the DOS conio.h
  530. * compatibility layer.
  531. */
  532. struct caca_conio_text_info
  533. {
  534. unsigned char winleft; /**< left window coordinate */
  535. unsigned char wintop; /**< top window coordinate */
  536. unsigned char winright; /**< right window coordinate */
  537. unsigned char winbottom; /**< bottom window coordinate */
  538. unsigned char attribute; /**< text attribute */
  539. unsigned char normattr; /**< normal attribute */
  540. unsigned char currmode; /**< current video mode:
  541. BW40, BW80, C40, C80, or C4350 */
  542. unsigned char screenheight; /**< text screen's height */
  543. unsigned char screenwidth; /**< text screen's width */
  544. unsigned char curx; /**< x-coordinate in current window */
  545. unsigned char cury; /**< y-coordinate in current window */
  546. };
  547. /** \brief DOS direct video control */
  548. __extern int caca_conio_directvideo;
  549. /** \brief DOS scrolling control */
  550. __extern int caca_conio__wscroll;
  551. /** \defgroup conio libcaca DOS conio.h compatibility layer
  552. *
  553. * These functions implement DOS-like functions for high-level text
  554. * operations.
  555. *
  556. * @{ */
  557. __extern char * caca_conio_cgets(char *str);
  558. __extern void caca_conio_clreol(void);
  559. __extern void caca_conio_clrscr(void);
  560. __extern int caca_conio_cprintf(const char *format, ...);
  561. __extern int caca_conio_cputs(const char *str);
  562. __extern int caca_conio_cscanf(char *format, ...);
  563. __extern void caca_conio_delay(unsigned int);
  564. __extern void caca_conio_delline(void);
  565. __extern int caca_conio_getch(void);
  566. __extern int caca_conio_getche(void);
  567. __extern char * caca_conio_getpass(const char *prompt);
  568. __extern int caca_conio_gettext(int left, int top, int right, int bottom,
  569. void *destin);
  570. __extern void caca_conio_gettextinfo(struct caca_conio_text_info *r);
  571. __extern void caca_conio_gotoxy(int x, int y);
  572. __extern void caca_conio_highvideo(void);
  573. __extern void caca_conio_insline(void);
  574. __extern int caca_conio_kbhit(void);
  575. __extern void caca_conio_lowvideo(void);
  576. __extern int caca_conio_movetext(int left, int top, int right, int bottom,
  577. int destleft, int desttop);
  578. __extern void caca_conio_normvideo(void);
  579. __extern void caca_conio_nosound(void);
  580. __extern int caca_conio_printf(const char *format, ...);
  581. __extern int caca_conio_putch(int ch);
  582. __extern int caca_conio_puttext(int left, int top, int right, int bottom,
  583. void *destin);
  584. __extern void caca_conio__setcursortype(int cur_t);
  585. __extern void caca_conio_sleep(unsigned int);
  586. __extern void caca_conio_sound(unsigned int);
  587. __extern void caca_conio_textattr(int newattr);
  588. __extern void caca_conio_textbackground(int newcolor);
  589. __extern void caca_conio_textcolor(int newcolor);
  590. __extern void caca_conio_textmode(int newmode);
  591. __extern int caca_conio_ungetch(int ch);
  592. __extern int caca_conio_wherex(void);
  593. __extern int caca_conio_wherey(void);
  594. __extern void caca_conio_window(int left, int top, int right, int bottom);
  595. /* @} */
  596. #if !defined(_DOXYGEN_SKIP_ME)
  597. /* Legacy stuff from beta versions, will probably disappear in 1.0 */
  598. typedef struct cucul_buffer cucul_buffer_t;
  599. # if defined __GNUC__ && __GNUC__ >= 3
  600. # define CACA_DEPRECATED __attribute__ ((__deprecated__))
  601. # else
  602. # define CACA_DEPRECATED
  603. # endif
  604. # if defined __GNUC__ && __GNUC__ > 3
  605. # define CACA_ALIAS(x) __attribute__ ((weak, alias(#x)))
  606. # else
  607. # define CACA_ALIAS(x)
  608. # endif
  609. /* Aliases from old libcaca and libcucul functions */
  610. __extern int cucul_putchar(caca_canvas_t *, int, int,
  611. unsigned long int) CACA_DEPRECATED;
  612. __extern unsigned long int cucul_getchar(caca_canvas_t *,
  613. int, int) CACA_DEPRECATED;
  614. __extern int cucul_putstr(caca_canvas_t *, int, int,
  615. char const *) CACA_DEPRECATED;
  616. __extern int cucul_set_color(caca_canvas_t *, unsigned char,
  617. unsigned char) CACA_DEPRECATED;
  618. __extern int cucul_set_truecolor(caca_canvas_t *, unsigned int,
  619. unsigned int) CACA_DEPRECATED;
  620. __extern unsigned int cucul_get_canvas_frame_count(caca_canvas_t *)
  621. CACA_DEPRECATED;
  622. __extern int cucul_set_canvas_frame(caca_canvas_t *,
  623. unsigned int) CACA_DEPRECATED;
  624. __extern int cucul_create_canvas_frame(caca_canvas_t *,
  625. unsigned int) CACA_DEPRECATED;
  626. __extern int cucul_free_canvas_frame(caca_canvas_t *,
  627. unsigned int) CACA_DEPRECATED;
  628. __extern cucul_buffer_t *cucul_load_memory(void *,
  629. unsigned long int) CACA_DEPRECATED;
  630. __extern cucul_buffer_t *cucul_load_file(char const *) CACA_DEPRECATED;
  631. __extern unsigned long int cucul_get_buffer_size(cucul_buffer_t *)
  632. CACA_DEPRECATED;
  633. __extern void * cucul_get_buffer_data(cucul_buffer_t *) CACA_DEPRECATED;
  634. __extern int cucul_free_buffer(cucul_buffer_t *) CACA_DEPRECATED;
  635. __extern cucul_buffer_t * cucul_export_canvas(caca_canvas_t *,
  636. char const *) CACA_DEPRECATED;
  637. __extern caca_canvas_t * cucul_import_canvas(cucul_buffer_t *,
  638. char const *) CACA_DEPRECATED;
  639. __extern ssize_t caca_import_memory(caca_canvas_t *, void const *, size_t,
  640. char const *) CACA_DEPRECATED;
  641. __extern ssize_t caca_import_file(caca_canvas_t *, char const *,
  642. char const *) CACA_DEPRECATED;
  643. __extern void *caca_export_memory(caca_canvas_t const *, char const *,
  644. size_t *) CACA_DEPRECATED;
  645. __extern int cucul_rotate(caca_canvas_t *) CACA_DEPRECATED;
  646. __extern int cucul_set_dither_invert(caca_dither_t *, int) CACA_DEPRECATED;
  647. __extern int cucul_set_dither_mode(caca_dither_t *,
  648. char const *) CACA_DEPRECATED;
  649. __extern char const * const * cucul_get_dither_mode_list(caca_dither_t const *)
  650. CACA_DEPRECATED;
  651. # define CUCUL_COLOR_BLACK CACA_BLACK
  652. # define CUCUL_COLOR_BLUE CACA_BLUE
  653. # define CUCUL_COLOR_GREEN CACA_GREEN
  654. # define CUCUL_COLOR_CYAN CACA_CYAN
  655. # define CUCUL_COLOR_RED CACA_RED
  656. # define CUCUL_COLOR_MAGENTA CACA_MAGENTA
  657. # define CUCUL_COLOR_BROWN CACA_BROWN
  658. # define CUCUL_COLOR_LIGHTGRAY CACA_LIGHTGRAY
  659. # define CUCUL_COLOR_DARKGRAY CACA_DARKGRAY
  660. # define CUCUL_COLOR_LIGHTBLUE CACA_LIGHTBLUE
  661. # define CUCUL_COLOR_LIGHTGREEN CACA_LIGHTGREEN
  662. # define CUCUL_COLOR_LIGHTCYAN CACA_LIGHTCYAN
  663. # define CUCUL_COLOR_LIGHTRED CACA_LIGHTRED
  664. # define CUCUL_COLOR_LIGHTMAGENTA CACA_LIGHTMAGENTA
  665. # define CUCUL_COLOR_YELLOW CACA_YELLOW
  666. # define CUCUL_COLOR_WHITE CACA_YELLOW
  667. # define CUCUL_COLOR_DEFAULT CACA_DEFAULT
  668. # define CUCUL_COLOR_TRANSPARENT CACA_TRANSPARENT
  669. /* Aliases from the libcucul/libcaca merge */
  670. # define cucul_canvas_t caca_canvas_t
  671. # define cucul_dither_t caca_dither_t
  672. # define cucul_font_t caca_font_t
  673. # define cucul_file_t caca_file_t
  674. # define cucul_display_t caca_display_t
  675. # define cucul_event_t caca_event_t
  676. # define CUCUL_BLACK CACA_BLACK
  677. # define CUCUL_BLUE CACA_BLUE
  678. # define CUCUL_GREEN CACA_GREEN
  679. # define CUCUL_CYAN CACA_CYAN
  680. # define CUCUL_RED CACA_RED
  681. # define CUCUL_MAGENTA CACA_MAGENTA
  682. # define CUCUL_BROWN CACA_BROWN
  683. # define CUCUL_LIGHTGRAY CACA_LIGHTGRAY
  684. # define CUCUL_DARKGRAY CACA_DARKGRAY
  685. # define CUCUL_LIGHTBLUE CACA_LIGHTBLUE
  686. # define CUCUL_LIGHTGREEN CACA_LIGHTGREEN
  687. # define CUCUL_LIGHTCYAN CACA_LIGHTCYAN
  688. # define CUCUL_LIGHTRED CACA_LIGHTRED
  689. # define CUCUL_LIGHTMAGENTA CACA_LIGHTMAGENTA
  690. # define CUCUL_YELLOW CACA_YELLOW
  691. # define CUCUL_WHITE CACA_YELLOW
  692. # define CUCUL_DEFAULT CACA_DEFAULT
  693. # define CUCUL_TRANSPARENT CACA_TRANSPARENT
  694. # define CUCUL_BOLD CACA_BOLD
  695. # define CUCUL_ITALICS CACA_ITALICS
  696. # define CUCUL_UNDERLINE CACA_UNDERLINE
  697. # define CUCUL_BLINK CACA_BLINK
  698. # if !defined __LIBCACA__
  699. # define caca_get_cursor_x caca_wherex
  700. # define caca_get_cursor_y caca_wherey
  701. # define cucul_draw_triangle caca_draw_triangle
  702. # define cucul_draw_thin_triangle caca_draw_thin_triangle
  703. # define cucul_fill_triangle caca_fill_triangle
  704. # define cucul_load_font caca_load_font
  705. # define cucul_get_font_list caca_get_font_list
  706. # define cucul_get_font_width caca_get_font_width
  707. # define cucul_get_font_height caca_get_font_height
  708. # define cucul_get_font_blocks caca_get_font_blocks
  709. # define cucul_render_canvas caca_render_canvas
  710. # define cucul_free_font caca_free_font
  711. # define cucul_gotoxy caca_gotoxy
  712. # define cucul_get_cursor_x caca_wherex
  713. # define cucul_get_cursor_y caca_wherey
  714. # define cucul_put_char caca_put_char
  715. # define cucul_get_char caca_get_char
  716. # define cucul_put_str caca_put_str
  717. # define cucul_printf caca_printf
  718. # define cucul_clear_canvas caca_clear_canvas
  719. # define cucul_set_canvas_handle caca_set_canvas_handle
  720. # define cucul_get_canvas_handle_x caca_get_canvas_handle_x
  721. # define cucul_get_canvas_handle_y caca_get_canvas_handle_y
  722. # define cucul_blit caca_blit
  723. # define cucul_set_canvas_boundaries caca_set_canvas_boundaries
  724. # define cucul_import_memory caca_import_memory
  725. # define cucul_import_file caca_import_file
  726. # define cucul_get_import_list caca_get_import_list
  727. # define cucul_create_canvas caca_create_canvas
  728. # define cucul_manage_canvas caca_manage_canvas
  729. # define cucul_unmanage_canvas caca_unmanage_canvas
  730. # define cucul_set_canvas_size caca_set_canvas_size
  731. # define cucul_get_canvas_width caca_get_canvas_width
  732. # define cucul_get_canvas_height caca_get_canvas_height
  733. # define cucul_get_canvas_chars caca_get_canvas_chars
  734. # define cucul_get_canvas_attrs caca_get_canvas_attrs
  735. # define cucul_free_canvas caca_free_canvas
  736. # define cucul_rand caca_rand
  737. # define cucul_export_memory caca_export_memory
  738. # define cucul_get_export_list caca_get_export_list
  739. # define cucul_get_version caca_get_version
  740. # define cucul_utf8_to_utf32 caca_utf8_to_utf32
  741. # define cucul_utf32_to_utf8 caca_utf32_to_utf8
  742. # define cucul_utf32_to_cp437 caca_utf32_to_cp437
  743. # define cucul_cp437_to_utf32 caca_cp437_to_utf32
  744. # define cucul_utf32_to_ascii caca_utf32_to_ascii
  745. # define cucul_utf32_is_fullwidth caca_utf32_is_fullwidth
  746. # define cucul_draw_circle caca_draw_circle
  747. # define cucul_draw_ellipse caca_draw_ellipse
  748. # define cucul_draw_thin_ellipse caca_draw_thin_ellipse
  749. # define cucul_fill_ellipse caca_fill_ellipse
  750. # define cucul_canvas_set_figfont caca_canvas_set_figfont
  751. # define cucul_put_figchar caca_put_figchar
  752. # define cucul_flush_figlet caca_flush_figlet
  753. # define cucul_putchar caca_putchar
  754. # define cucul_getchar caca_getchar
  755. # define cucul_get_attr caca_get_attr
  756. # define cucul_set_attr caca_set_attr
  757. # define cucul_put_attr caca_put_attr
  758. # define cucul_set_color_ansi caca_set_color_ansi
  759. # define cucul_set_color_argb caca_set_color_argb
  760. # define cucul_attr_to_ansi caca_attr_to_ansi
  761. # define cucul_attr_to_ansi_fg caca_attr_to_ansi_fg
  762. # define cucul_attr_to_ansi_bg caca_attr_to_ansi_bg
  763. # define cucul_attr_to_rgb12_fg caca_attr_to_rgb12_fg
  764. # define cucul_attr_to_rgb12_bg caca_attr_to_rgb12_bg
  765. # define cucul_attr_to_argb64 caca_attr_to_argb64
  766. # define cucul_invert caca_invert
  767. # define cucul_flip caca_flip
  768. # define cucul_flop caca_flop
  769. # define cucul_rotate_180 caca_rotate_180
  770. # define cucul_rotate_left caca_rotate_left
  771. # define cucul_rotate_right caca_rotate_right
  772. # define cucul_stretch_left caca_stretch_left
  773. # define cucul_stretch_right caca_stretch_right
  774. # define cucul_file_open caca_file_open
  775. # define cucul_file_close caca_file_close
  776. # define cucul_file_tell caca_file_tell
  777. # define cucul_file_read caca_file_read
  778. # define cucul_file_write caca_file_write
  779. # define cucul_file_gets caca_file_gets
  780. # define cucul_file_eof caca_file_eof
  781. # define cucul_create_dither caca_create_dither
  782. # define cucul_set_dither_palette caca_set_dither_palette
  783. # define cucul_set_dither_brightness caca_set_dither_brightness
  784. # define cucul_get_dither_brightness caca_get_dither_brightness
  785. # define cucul_set_dither_gamma caca_set_dither_gamma
  786. # define cucul_get_dither_gamma caca_get_dither_gamma
  787. # define cucul_set_dither_contrast caca_set_dither_contrast
  788. # define cucul_get_dither_contrast caca_get_dither_contrast
  789. # define cucul_set_dither_antialias caca_set_dither_antialias
  790. # define cucul_get_dither_antialias_list caca_get_dither_antialias_list
  791. # define cucul_get_dither_antialias caca_get_dither_antialias
  792. # define cucul_set_dither_color caca_set_dither_color
  793. # define cucul_get_dither_color_list caca_get_dither_color_list
  794. # define cucul_get_dither_color caca_get_dither_color
  795. # define cucul_set_dither_charset caca_set_dither_charset
  796. # define cucul_get_dither_charset_list caca_get_dither_charset_list
  797. # define cucul_get_dither_charset caca_get_dither_charset
  798. # define cucul_set_dither_algorithm caca_set_dither_algorithm
  799. # define cucul_get_dither_algorithm_list caca_get_dither_algorithm_list
  800. # define cucul_get_dither_algorithm caca_get_dither_algorithm
  801. # define cucul_dither_bitmap caca_dither_bitmap
  802. # define cucul_free_dither caca_free_dither
  803. # define cucul_draw_line caca_draw_line
  804. # define cucul_draw_polyline caca_draw_polyline
  805. # define cucul_draw_thin_line caca_draw_thin_line
  806. # define cucul_draw_thin_polyline caca_draw_thin_polyline
  807. # define cucul_draw_box caca_draw_box
  808. # define cucul_draw_thin_box caca_draw_thin_box
  809. # define cucul_draw_cp437_box caca_draw_cp437_box
  810. # define cucul_fill_box caca_fill_box
  811. # define cucul_get_frame_count caca_get_frame_count
  812. # define cucul_set_frame caca_set_frame
  813. # define cucul_get_frame_name caca_get_frame_name
  814. # define cucul_set_frame_name caca_set_frame_name
  815. # define cucul_create_frame caca_create_frame
  816. # define cucul_free_frame caca_free_frame
  817. # endif
  818. #endif
  819. #ifdef __cplusplus
  820. }
  821. #endif
  822. #undef __extern
  823. #endif /* __CACA_H__ */