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: cucul.h 814 2006-04-18 16:04:01Z sam $ |
---|
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 | |
---|
14 | /** \file cucul.h |
---|
15 | * \version \$Id: cucul.h 814 2006-04-18 16:04:01Z sam $ |
---|
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 | |
---|
23 | #ifndef __CUCUL_H__ |
---|
24 | #define __CUCUL_H__ |
---|
25 | |
---|
26 | /** libcucul API version */ |
---|
27 | #define CUCUL_API_VERSION_1 |
---|
28 | |
---|
29 | #ifdef __cplusplus |
---|
30 | extern "C" |
---|
31 | { |
---|
32 | #endif |
---|
33 | |
---|
34 | /** \e libcucul context */ |
---|
35 | typedef struct cucul_canvas cucul_canvas_t; |
---|
36 | /** sprite structure */ |
---|
37 | typedef struct cucul_sprite cucul_sprite_t; |
---|
38 | /** dither structure */ |
---|
39 | typedef struct cucul_dither cucul_dither_t; |
---|
40 | /** data buffer structure */ |
---|
41 | typedef struct cucul_buffer cucul_buffer_t; |
---|
42 | /** font structure */ |
---|
43 | typedef struct cucul_font cucul_font_t; |
---|
44 | |
---|
45 | /** \defgroup colour Colour definitions |
---|
46 | * |
---|
47 | * Colours that can be used with cucul_set_color(). |
---|
48 | * |
---|
49 | * @{ */ |
---|
50 | #define CUCUL_COLOR_BLACK 0x00 /**< The colour index for black. */ |
---|
51 | #define CUCUL_COLOR_BLUE 0x01 /**< The colour index for blue. */ |
---|
52 | #define CUCUL_COLOR_GREEN 0x02 /**< The colour index for green. */ |
---|
53 | #define CUCUL_COLOR_CYAN 0x03 /**< The colour index for cyan. */ |
---|
54 | #define CUCUL_COLOR_RED 0x04 /**< The colour index for red. */ |
---|
55 | #define CUCUL_COLOR_MAGENTA 0x05 /**< The colour index for magenta. */ |
---|
56 | #define CUCUL_COLOR_BROWN 0x06 /**< The colour index for brown. */ |
---|
57 | #define CUCUL_COLOR_LIGHTGRAY 0x07 /**< The colour index for light gray. */ |
---|
58 | #define CUCUL_COLOR_DARKGRAY 0x08 /**< The colour index for dark gray. */ |
---|
59 | #define CUCUL_COLOR_LIGHTBLUE 0x09 /**< The colour index for blue. */ |
---|
60 | #define CUCUL_COLOR_LIGHTGREEN 0x0a /**< The colour index for light green. */ |
---|
61 | #define CUCUL_COLOR_LIGHTCYAN 0x0b /**< The colour index for light cyan. */ |
---|
62 | #define CUCUL_COLOR_LIGHTRED 0x0c /**< The colour index for light red. */ |
---|
63 | #define CUCUL_COLOR_LIGHTMAGENTA 0x0d /**< The colour index for light magenta. */ |
---|
64 | #define CUCUL_COLOR_YELLOW 0x0e /**< The colour index for yellow. */ |
---|
65 | #define CUCUL_COLOR_WHITE 0x0f /**< The colour index for white. */ |
---|
66 | #define CUCUL_COLOR_DEFAULT 0x10 /**< The output driver's default colour. */ |
---|
67 | #define CUCUL_COLOR_TRANSPARENT 0x20 /**< The transparent colour. */ |
---|
68 | /* @} */ |
---|
69 | |
---|
70 | /** \defgroup cucul Basic libcucul functions |
---|
71 | * |
---|
72 | * These functions provide the basic \e libcaca routines for library |
---|
73 | * initialisation, system information retrieval and configuration. |
---|
74 | * |
---|
75 | * @{ */ |
---|
76 | cucul_canvas_t * cucul_create_canvas(unsigned int, unsigned int); |
---|
77 | cucul_canvas_t * cucul_load_canvas(void *, unsigned int); |
---|
78 | void cucul_set_canvas_size(cucul_canvas_t *, unsigned int, unsigned int); |
---|
79 | unsigned int cucul_get_canvas_width(cucul_canvas_t *); |
---|
80 | unsigned int cucul_get_canvas_height(cucul_canvas_t *); |
---|
81 | void cucul_free_canvas(cucul_canvas_t *); |
---|
82 | int cucul_rand(int, int); |
---|
83 | /* @} */ |
---|
84 | |
---|
85 | /** \defgroup buffer Buffer handling |
---|
86 | * |
---|
87 | * These functions provide methods to handle libcucul buffers. |
---|
88 | * |
---|
89 | * @{ */ |
---|
90 | unsigned long int cucul_get_buffer_size(cucul_buffer_t *); |
---|
91 | void * cucul_get_buffer_data(cucul_buffer_t *); |
---|
92 | void cucul_free_buffer(cucul_buffer_t *); |
---|
93 | /* @} */ |
---|
94 | |
---|
95 | /** \defgroup canvas Canvas drawing |
---|
96 | * |
---|
97 | * These functions provide low-level character printing routines and |
---|
98 | * higher level graphics functions. |
---|
99 | * |
---|
100 | * @{ */ |
---|
101 | void cucul_set_color(cucul_canvas_t *, unsigned char, unsigned char); |
---|
102 | void cucul_set_truecolor(cucul_canvas_t *, unsigned int, unsigned int); |
---|
103 | char const *cucul_get_color_name(unsigned int); |
---|
104 | void cucul_putchar(cucul_canvas_t *, int, int, char); |
---|
105 | void cucul_putstr(cucul_canvas_t *, int, int, char const *); |
---|
106 | void cucul_printf(cucul_canvas_t *, int, int, char const *, ...); |
---|
107 | void cucul_clear_canvas(cucul_canvas_t *, unsigned char); |
---|
108 | void cucul_blit(cucul_canvas_t *, int, int, cucul_canvas_t const *, cucul_canvas_t const *); |
---|
109 | /* @} */ |
---|
110 | |
---|
111 | /** \defgroup transform Canvas transformation |
---|
112 | * |
---|
113 | * These functions perform horizontal and vertical canvas flipping. |
---|
114 | * |
---|
115 | * @{ */ |
---|
116 | void cucul_invert(cucul_canvas_t *); |
---|
117 | void cucul_flip(cucul_canvas_t *); |
---|
118 | void cucul_flop(cucul_canvas_t *); |
---|
119 | void cucul_rotate(cucul_canvas_t *); |
---|
120 | /* @} */ |
---|
121 | |
---|
122 | /** \defgroup prim Primitives drawing |
---|
123 | * |
---|
124 | * These functions provide routines for primitive drawing, such as lines, |
---|
125 | * boxes, triangles and ellipses. |
---|
126 | * |
---|
127 | * @{ */ |
---|
128 | void cucul_draw_line(cucul_canvas_t *, int, int, int, int, char const *); |
---|
129 | void cucul_draw_polyline(cucul_canvas_t *, int const x[], int const y[], int, char const *); |
---|
130 | void cucul_draw_thin_line(cucul_canvas_t *, int, int, int, int); |
---|
131 | void cucul_draw_thin_polyline(cucul_canvas_t *, int const x[], int const y[], int); |
---|
132 | |
---|
133 | void cucul_draw_circle(cucul_canvas_t *, int, int, int, char const *); |
---|
134 | void cucul_draw_ellipse(cucul_canvas_t *, int, int, int, int, char const *); |
---|
135 | void cucul_draw_thin_ellipse(cucul_canvas_t *, int, int, int, int); |
---|
136 | void cucul_fill_ellipse(cucul_canvas_t *, int, int, int, int, char const *); |
---|
137 | |
---|
138 | void cucul_draw_box(cucul_canvas_t *, int, int, int, int, char const *); |
---|
139 | void cucul_draw_thin_box(cucul_canvas_t *, int, int, int, int); |
---|
140 | void cucul_fill_box(cucul_canvas_t *, int, int, int, int, char const *); |
---|
141 | |
---|
142 | void cucul_draw_triangle(cucul_canvas_t *, int, int, int, int, int, int, char const *); |
---|
143 | void cucul_draw_thin_triangle(cucul_canvas_t *, int, int, int, int, int, int); |
---|
144 | void cucul_fill_triangle(cucul_canvas_t *, int, int, int, int, int, int, char const *); |
---|
145 | /* @} */ |
---|
146 | |
---|
147 | /** \defgroup sprite Sprite handling |
---|
148 | * |
---|
149 | * These functions provide high level routines for sprite loading, animation |
---|
150 | * and rendering. |
---|
151 | * |
---|
152 | * @{ */ |
---|
153 | cucul_sprite_t * cucul_load_sprite(char const *); |
---|
154 | int cucul_get_sprite_frames(cucul_sprite_t const *); |
---|
155 | int cucul_get_sprite_width(cucul_sprite_t const *, int); |
---|
156 | int cucul_get_sprite_height(cucul_sprite_t const *, int); |
---|
157 | int cucul_get_sprite_dx(cucul_sprite_t const *, int); |
---|
158 | int cucul_get_sprite_dy(cucul_sprite_t const *, int); |
---|
159 | void cucul_draw_sprite(cucul_canvas_t *, int, int, cucul_sprite_t const *, int); |
---|
160 | void cucul_free_sprite(cucul_sprite_t *); |
---|
161 | /* @} */ |
---|
162 | |
---|
163 | /** \defgroup dither Bitmap dithering |
---|
164 | * |
---|
165 | * These functions provide high level routines for dither allocation and |
---|
166 | * rendering. |
---|
167 | * |
---|
168 | * @{ */ |
---|
169 | cucul_dither_t *cucul_create_dither(unsigned int, unsigned int, |
---|
170 | unsigned int, unsigned int, |
---|
171 | unsigned int, unsigned int, |
---|
172 | unsigned int, unsigned int); |
---|
173 | void cucul_set_dither_palette(cucul_dither_t *, |
---|
174 | unsigned int r[], unsigned int g[], |
---|
175 | unsigned int b[], unsigned int a[]); |
---|
176 | void cucul_set_dither_brightness(cucul_dither_t *, float); |
---|
177 | void cucul_set_dither_gamma(cucul_dither_t *, float); |
---|
178 | void cucul_set_dither_contrast(cucul_dither_t *, float); |
---|
179 | void cucul_set_dither_invert(cucul_dither_t *, int); |
---|
180 | void cucul_set_dither_antialias(cucul_dither_t *, char const *); |
---|
181 | char const * const * cucul_get_dither_antialias_list(cucul_dither_t const *); |
---|
182 | void cucul_set_dither_color(cucul_dither_t *, char const *); |
---|
183 | char const * const * cucul_get_dither_color_list(cucul_dither_t const *); |
---|
184 | void cucul_set_dither_charset(cucul_dither_t *, char const *); |
---|
185 | char const * const * cucul_get_dither_charset_list(cucul_dither_t const *); |
---|
186 | void cucul_set_dither_mode(cucul_dither_t *, char const *); |
---|
187 | char const * const * cucul_get_dither_mode_list(cucul_dither_t const *); |
---|
188 | void cucul_dither_bitmap(cucul_canvas_t *, int, int, int, int, |
---|
189 | cucul_dither_t const *, void *); |
---|
190 | void cucul_free_dither(cucul_dither_t *); |
---|
191 | /* @} */ |
---|
192 | |
---|
193 | /** \defgroup font Font handling |
---|
194 | * |
---|
195 | * These functions provide font handling routines and high quality |
---|
196 | * canvas to bitmap rendering. |
---|
197 | * |
---|
198 | * @{ */ |
---|
199 | cucul_font_t *cucul_load_font(void const *, unsigned int); |
---|
200 | char const * const * cucul_get_font_list(void); |
---|
201 | unsigned int cucul_get_font_width(cucul_font_t *); |
---|
202 | unsigned int cucul_get_font_height(cucul_font_t *); |
---|
203 | void cucul_render_canvas(cucul_canvas_t *, cucul_font_t *, void *, |
---|
204 | unsigned int, unsigned int, unsigned int); |
---|
205 | void cucul_free_font(cucul_font_t *); |
---|
206 | /* @} */ |
---|
207 | |
---|
208 | /** \defgroup exporter Exporters to various formats |
---|
209 | * |
---|
210 | * These functions export the current canvas to various text formats. It |
---|
211 | * is necessary to call cucul_free_buffer() to dispose of the data. |
---|
212 | * |
---|
213 | * @{ */ |
---|
214 | cucul_buffer_t * cucul_create_export(cucul_canvas_t *, char const *); |
---|
215 | char const * const * cucul_get_export_list(void); |
---|
216 | /* @} */ |
---|
217 | |
---|
218 | #ifdef __cplusplus |
---|
219 | } |
---|
220 | #endif |
---|
221 | |
---|
222 | #endif /* __CUCUL_H__ */ |
---|