Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

351 wiersze
13 KiB

  1. /*
  2. * libcaca ASCII-Art library
  3. * Copyright (c) 2002, 2003 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 GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2 of the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  19. * 02111-1307 USA
  20. */
  21. /** \file caca.h
  22. * \version \$Id$
  23. * \author Sam Hocevar <sam@zoy.org>
  24. * \brief The \e libcaca public header.
  25. *
  26. * This header contains the public types and functions that applications
  27. * using \e libcaca may use.
  28. */
  29. /** \mainpage libcaca developer documentation
  30. *
  31. * \section intro Introduction
  32. *
  33. * \e libcaca is a graphics library that outputs text instead of pixels,
  34. * so that it can work on older video cards or text terminals. It is not
  35. * unlike the famous AAlib library. \e libcaca can use almost any virtual
  36. * terminal to work, thus it should work on all Unix systems (including
  37. * Mac OS X) using either the slang library or the ncurses library, on DOS
  38. * using the conio library, and on Windows systems using either slang or
  39. * ncurses (through Cygwin emulation) or conio. There is also a native X11
  40. * driver that does not require a text terminal.
  41. *
  42. * \e libcaca is free software, released under the GNU Lesser General
  43. * Public License. This ensures that \e libcaca will always remain free
  44. * software.
  45. *
  46. * \section api The libcaca API
  47. *
  48. * The complete \e libcaca programming interface is available from the
  49. * caca.h header.
  50. *
  51. * \section env Environment variables
  52. *
  53. * Some environment variables can be used to change the behaviour of
  54. * \e libcaca without having to modify the program which uses it. These
  55. * variables are:
  56. *
  57. * \li \b CACA_DRIVER: set the backend video driver. In order of preference:
  58. * - \c conio uses the DOS conio.h interface.
  59. * - \c ncurses uses the ncurses library.
  60. * - \c slang uses the S-Lang library.
  61. * - \c x11 uses the native X11 driver.
  62. *
  63. * \li \b CACA_GEOMETRY: set the video display size. The format of this
  64. * variable must be XxY, with X and Y being integer values. This option
  65. * currently only works with the X11 driver.
  66. *
  67. * \li \b CACA_FONT: set the rendered font. The format of this variable is
  68. * implementation dependent, but since it currently only works with the
  69. * X11 driver, an X11 font name such as "fixed" or "5x7" is expected.
  70. *
  71. * \li \b CACA_BACKGROUND: set the background type.
  72. * - \c solid uses solid coloured backgrounds for all characters. This
  73. * feature does not work with all terminal emulators. This is the
  74. * default choice.
  75. * - \c black uses only black backgrounds to render characters.
  76. *
  77. * \li \b CACA_ANTIALIASING: set the antialiasing mode. Antialiasing
  78. * smoothens the rendered image and avoids the commonly seen staircase
  79. * effect.
  80. * - \c none disables antialiasing.
  81. * - \c prefilter uses a simple prefilter antialiasing method. This is
  82. * the default choice.
  83. *
  84. * \li \b CACA_DITHERING: set the dithering mode. Dithering is necessary
  85. * when rendering a picture that has more colours than the usually
  86. * available palette.
  87. * - \c none disables dithering.
  88. * - \c ordered2 uses a 2x2 Bayer matrix for dithering.
  89. * - \c ordered4 uses a 4x4 Bayer matrix for dithering. This is the
  90. * default choice.
  91. * - \c ordered8 uses a 8x8 Bayer matrix for dithering.
  92. * - \c random uses random dithering.
  93. */
  94. #ifndef __CACA_H__
  95. #define __CACA_H__
  96. #ifdef __cplusplus
  97. extern "C"
  98. {
  99. #endif
  100. /** \brief Colour definitions.
  101. *
  102. * Colours that can be used with caca_set_color().
  103. */
  104. enum caca_color
  105. {
  106. CACA_COLOR_BLACK = 0, /**< The colour index for black. */
  107. CACA_COLOR_BLUE = 1, /**< The colour index for blue. */
  108. CACA_COLOR_GREEN = 2, /**< The colour index for green. */
  109. CACA_COLOR_CYAN = 3, /**< The colour index for cyan. */
  110. CACA_COLOR_RED = 4, /**< The colour index for red. */
  111. CACA_COLOR_MAGENTA = 5, /**< The colour index for magenta. */
  112. CACA_COLOR_BROWN = 6, /**< The colour index for brown. */
  113. CACA_COLOR_LIGHTGRAY = 7, /**< The colour index for light gray. */
  114. CACA_COLOR_DARKGRAY = 8, /**< The colour index for dark gray. */
  115. CACA_COLOR_LIGHTBLUE = 9, /**< The colour index for blue. */
  116. CACA_COLOR_LIGHTGREEN = 10, /**< The colour index for light green. */
  117. CACA_COLOR_LIGHTCYAN = 11, /**< The colour index for light cyan. */
  118. CACA_COLOR_LIGHTRED = 12, /**< The colour index for light red. */
  119. CACA_COLOR_LIGHTMAGENTA = 13, /**< The colour index for light magenta. */
  120. CACA_COLOR_YELLOW = 14, /**< The colour index for yellow. */
  121. CACA_COLOR_WHITE = 15 /**< The colour index for white. */
  122. };
  123. /** \brief Internal features.
  124. *
  125. * Internal libcaca features such as the rendering method or the dithering
  126. * mode.
  127. */
  128. enum caca_feature
  129. {
  130. CACA_BACKGROUND = 0x10, /**< Properties of background characters. */
  131. CACA_BACKGROUND_BLACK = 0x11, /**< Draw only black backgrounds. */
  132. CACA_BACKGROUND_SOLID = 0x12, /**< Draw coloured solid backgorunds. */
  133. #define CACA_BACKGROUND_MIN 0x11 /**< First background property */
  134. #define CACA_BACKGROUND_MAX 0x12 /**< Last background property */
  135. CACA_ANTIALIASING = 0x20, /**< Antialiasing features. */
  136. CACA_ANTIALIASING_NONE = 0x21, /**< No antialiasing. */
  137. CACA_ANTIALIASING_PREFILTER = 0x22, /**< Prefilter antialiasing. */
  138. #define CACA_ANTIALIASING_MIN 0x21 /**< First antialiasing feature. */
  139. #define CACA_ANTIALIASING_MAX 0x22 /**< Last antialiasing feature. */
  140. CACA_DITHERING = 0x30, /**< Dithering methods */
  141. CACA_DITHERING_NONE = 0x31, /**< No dithering. */
  142. CACA_DITHERING_ORDERED2 = 0x32, /**< Ordered 2x2 Bayer dithering. */
  143. CACA_DITHERING_ORDERED4 = 0x33, /**< Ordered 4x4 Bayer dithering. */
  144. CACA_DITHERING_ORDERED8 = 0x34, /**< Ordered 8x8 Bayer dithering. */
  145. CACA_DITHERING_RANDOM = 0x35, /**< Random dithering. */
  146. #define CACA_DITHERING_MIN 0x31 /**< First dithering feature. */
  147. #define CACA_DITHERING_MAX 0x35 /**< Last dithering feature. */
  148. CACA_FEATURE_UNKNOWN = 0xffff /**< Unknown feature. */
  149. };
  150. /*
  151. * Backwards compatibility macros
  152. */
  153. #if !defined(_DOXYGEN_SKIP_ME)
  154. #define caca_dithering caca_feature
  155. #define caca_set_dithering caca_set_feature
  156. #define caca_get_dithering_name caca_get_feature_name
  157. #define CACA_DITHER_NONE CACA_DITHERING_NONE
  158. #define CACA_DITHER_ORDERED CACA_DITHERING_ORDERED8
  159. #define CACA_DITHER_RANDOM CACA_DITHERING_RANDOM
  160. #endif
  161. /** \brief User events.
  162. *
  163. * Event types returned by caca_get_event().
  164. */
  165. enum caca_event
  166. {
  167. CACA_EVENT_NONE = 0x00000000, /**< No event. */
  168. CACA_EVENT_KEY_PRESS = 0x01000000, /**< A key was pressed. */
  169. CACA_EVENT_KEY_RELEASE = 0x02000000, /**< A key was released. */
  170. CACA_EVENT_MOUSE_PRESS = 0x04000000, /**< A mouse button was pressed. */
  171. CACA_EVENT_MOUSE_RELEASE = 0x08000000, /**< A mouse button was released. */
  172. CACA_EVENT_MOUSE_MOTION = 0x10000000, /**< The mouse was moved. */
  173. CACA_EVENT_ANY = 0xff000000 /**< Bitmask for any event. */
  174. };
  175. /** \brief Special key values.
  176. *
  177. * Special key values returned by caca_get_event() for which there is no
  178. * ASCII equivalent.
  179. */
  180. enum caca_key
  181. {
  182. CACA_KEY_UNKNOWN = 0, /**< Unknown key. */
  183. /* The following keys have ASCII equivalents */
  184. CACA_KEY_BACKSPACE = 8, /**< The backspace key. */
  185. CACA_KEY_TAB = 9, /**< The tabulation key. */
  186. CACA_KEY_RETURN = 13, /**< The return key. */
  187. CACA_KEY_PAUSE = 19, /**< The pause key. */
  188. CACA_KEY_ESCAPE = 27, /**< The escape key. */
  189. CACA_KEY_DELETE = 127, /**< The delete key. */
  190. /* The following keys do not have ASCII equivalents but have been
  191. * chosen to match the SDL equivalents */
  192. CACA_KEY_UP = 273, /**< The up arrow key. */
  193. CACA_KEY_DOWN = 274, /**< The down arrow key. */
  194. CACA_KEY_LEFT = 275, /**< The left arrow key. */
  195. CACA_KEY_RIGHT = 276, /**< The right arrow key. */
  196. CACA_KEY_INSERT = 277, /**< The insert key. */
  197. CACA_KEY_HOME = 278, /**< The home key. */
  198. CACA_KEY_END = 279, /**< The end key. */
  199. CACA_KEY_PAGEUP = 280, /**< The page up key. */
  200. CACA_KEY_PAGEDOWN = 281, /**< The page down key. */
  201. CACA_KEY_F1 = 282, /**< The F1 key. */
  202. CACA_KEY_F2 = 283, /**< The F2 key. */
  203. CACA_KEY_F3 = 284, /**< The F3 key. */
  204. CACA_KEY_F4 = 285, /**< The F4 key. */
  205. CACA_KEY_F5 = 286, /**< The F5 key. */
  206. CACA_KEY_F6 = 287, /**< The F6 key. */
  207. CACA_KEY_F7 = 288, /**< The F7 key. */
  208. CACA_KEY_F8 = 289, /**< The F8 key. */
  209. CACA_KEY_F9 = 290, /**< The F9 key. */
  210. CACA_KEY_F10 = 291, /**< The F10 key. */
  211. CACA_KEY_F11 = 292, /**< The F11 key. */
  212. CACA_KEY_F12 = 293, /**< The F12 key. */
  213. CACA_KEY_F13 = 294, /**< The F13 key. */
  214. CACA_KEY_F14 = 295, /**< The F14 key. */
  215. CACA_KEY_F15 = 296 /**< The F15 key. */
  216. };
  217. /** \defgroup basic Basic functions
  218. *
  219. * These functions provide the basic \e libcaca routines for library
  220. * initialisation, system information retrieval and configuration.
  221. *
  222. * @{ */
  223. int caca_init(void);
  224. void caca_set_delay(unsigned int);
  225. enum caca_feature caca_get_feature(enum caca_feature);
  226. void caca_set_feature(enum caca_feature);
  227. char const *caca_get_feature_name(enum caca_feature);
  228. unsigned int caca_get_rendertime(void);
  229. unsigned int caca_get_width(void);
  230. unsigned int caca_get_height(void);
  231. void caca_refresh(void);
  232. void caca_end(void);
  233. /* @} */
  234. /** \defgroup event Event handling
  235. *
  236. * These functions handle user events such as keyboard input and mouse
  237. * clicks.
  238. *
  239. * @{ */
  240. unsigned int caca_get_event(unsigned int);
  241. unsigned int caca_wait_event(unsigned int);
  242. /* @} */
  243. /** \defgroup char Character printing
  244. *
  245. * These functions provide low-level character printing routines.
  246. *
  247. * @{ */
  248. void caca_set_color(enum caca_color, enum caca_color);
  249. enum caca_color caca_get_fg_color(void);
  250. enum caca_color caca_get_bg_color(void);
  251. char const *caca_get_color_name(enum caca_color);
  252. void caca_putchar(int, int, char);
  253. void caca_putstr(int, int, char const *);
  254. void caca_printf(int, int, char const *, ...);
  255. void caca_clear(void);
  256. /* @} */
  257. /** \defgroup prim Primitives drawing
  258. *
  259. * These functions provide routines for primitive drawing, such as lines,
  260. * boxes, triangles and ellipses.
  261. *
  262. * @{ */
  263. void caca_draw_line(int, int, int, int, char);
  264. void caca_draw_polyline(int const x[], int const y[], int, char);
  265. void caca_draw_thin_line(int, int, int, int);
  266. void caca_draw_thin_polyline(int const x[], int const y[], int);
  267. void caca_draw_circle(int, int, int, char);
  268. void caca_draw_ellipse(int, int, int, int, char);
  269. void caca_draw_thin_ellipse(int, int, int, int);
  270. void caca_fill_ellipse(int, int, int, int, char);
  271. void caca_draw_box(int, int, int, int, char);
  272. void caca_draw_thin_box(int, int, int, int);
  273. void caca_fill_box(int, int, int, int, char);
  274. void caca_draw_triangle(int, int, int, int, int, int, char);
  275. void caca_draw_thin_triangle(int, int, int, int, int, int);
  276. void caca_fill_triangle(int, int, int, int, int, int, char);
  277. /* @} */
  278. /** \defgroup math Mathematical functions
  279. *
  280. * These functions provide a few useful math-related routines.
  281. *
  282. * @{ */
  283. int caca_rand(int, int);
  284. unsigned int caca_sqrt(unsigned int);
  285. /* @} */
  286. /** \defgroup sprite Sprite handling
  287. *
  288. * These functions provide high level routines for sprite loading, animation
  289. * and rendering.
  290. *
  291. * @{ */
  292. struct caca_sprite;
  293. struct caca_sprite * caca_load_sprite(char const *);
  294. int caca_get_sprite_frames(struct caca_sprite const *);
  295. int caca_get_sprite_width(struct caca_sprite const *, int);
  296. int caca_get_sprite_height(struct caca_sprite const *, int);
  297. int caca_get_sprite_dx(struct caca_sprite const *, int);
  298. int caca_get_sprite_dy(struct caca_sprite const *, int);
  299. void caca_draw_sprite(int, int, struct caca_sprite const *, int);
  300. void caca_free_sprite(struct caca_sprite *);
  301. /* @} */
  302. /** \defgroup bitmap Bitmap handling
  303. *
  304. * These functions provide high level routines for bitmap allocation and
  305. * rendering.
  306. *
  307. * @{ */
  308. struct caca_bitmap;
  309. struct caca_bitmap *caca_create_bitmap(unsigned int, unsigned int,
  310. unsigned int, unsigned int,
  311. unsigned int, unsigned int,
  312. unsigned int, unsigned int);
  313. void caca_set_bitmap_palette(struct caca_bitmap *,
  314. unsigned int r[], unsigned int g[],
  315. unsigned int b[], unsigned int a[]);
  316. void caca_draw_bitmap(int, int, int, int, struct caca_bitmap const *, void *);
  317. void caca_free_bitmap(struct caca_bitmap *);
  318. /* @} */
  319. #ifdef __cplusplus
  320. }
  321. #endif
  322. #endif /* __CACA_H__ */