[1013] | 1 | /* |
---|
| 2 | * libcaca Colour ASCII-Art library |
---|
| 3 | * Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org> |
---|
| 4 | * All Rights Reserved |
---|
| 5 | * |
---|
| 6 | * $Id: caca0.h 2858 2008-09-29 23:03:30Z sam $ |
---|
| 7 | * |
---|
[1462] | 8 | * This library is free software. It comes without any warranty, to |
---|
[1452] | 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 |
---|
[1013] | 12 | * http://sam.zoy.org/wtfpl/COPYING for more details. |
---|
| 13 | */ |
---|
| 14 | |
---|
| 15 | /* |
---|
| 16 | * This header contains glue code for applications using the pre-1.0 |
---|
| 17 | * libcaca API. |
---|
| 18 | */ |
---|
| 19 | |
---|
| 20 | #ifndef __CACA0_H__ |
---|
| 21 | #define __CACA0_H__ |
---|
| 22 | |
---|
| 23 | #include <caca.h> |
---|
| 24 | |
---|
[2858] | 25 | #undef __extern |
---|
| 26 | #if defined(_DOXYGEN_SKIP_ME) |
---|
| 27 | #elif defined(_WIN32) && defined(__LIBCACA__) |
---|
| 28 | # define __extern extern __declspec(dllexport) |
---|
| 29 | #else |
---|
| 30 | # define __extern extern |
---|
| 31 | #endif |
---|
| 32 | |
---|
[1013] | 33 | #ifdef __cplusplus |
---|
| 34 | extern "C" |
---|
| 35 | { |
---|
| 36 | #endif |
---|
| 37 | |
---|
| 38 | /* Function emulation */ |
---|
[2858] | 39 | __extern int __caca0_init(void); |
---|
| 40 | __extern void __caca0_end(void); |
---|
| 41 | __extern unsigned int __caca0_get_event(unsigned int, int); |
---|
| 42 | __extern unsigned int __caca0_sqrt(unsigned int); |
---|
| 43 | __extern int __caca0_get_feature(int); |
---|
| 44 | __extern void __caca0_set_feature(int); |
---|
| 45 | __extern char const *__caca0_get_feature_name(int); |
---|
| 46 | __extern caca_canvas_t *__caca0_load_sprite(char const *); |
---|
| 47 | __extern caca_dither_t *__caca0_create_bitmap(unsigned int, unsigned int, |
---|
| 48 | unsigned int, unsigned int, unsigned long int, unsigned long int, |
---|
| 49 | unsigned long int, unsigned long int); |
---|
| 50 | __extern void __caca0_free_bitmap(caca_dither_t *); |
---|
| 51 | __extern char const *__caca0_get_color_name(unsigned char); |
---|
[1013] | 52 | |
---|
| 53 | /* These variables are needed to emulate old non-thread safe behaviour */ |
---|
[2858] | 54 | __extern caca_canvas_t *__caca0_cv; |
---|
| 55 | __extern caca_display_t *__caca0_dp; |
---|
| 56 | __extern unsigned char __caca0_fg; |
---|
| 57 | __extern unsigned char __caca0_bg; |
---|
[1013] | 58 | |
---|
| 59 | /* These enums and macros changed names or values */ |
---|
| 60 | enum caca_color |
---|
| 61 | { |
---|
[2821] | 62 | CACA_COLOR_BLACK = CACA_BLACK, |
---|
| 63 | CACA_COLOR_BLUE = CACA_BLUE, |
---|
| 64 | CACA_COLOR_GREEN = CACA_GREEN, |
---|
| 65 | CACA_COLOR_CYAN = CACA_CYAN, |
---|
| 66 | CACA_COLOR_RED = CACA_RED, |
---|
| 67 | CACA_COLOR_MAGENTA = CACA_MAGENTA, |
---|
| 68 | CACA_COLOR_BROWN = CACA_BROWN, |
---|
| 69 | CACA_COLOR_LIGHTGRAY = CACA_LIGHTGRAY, |
---|
| 70 | CACA_COLOR_DARKGRAY = CACA_DARKGRAY, |
---|
| 71 | CACA_COLOR_LIGHTBLUE = CACA_LIGHTBLUE, |
---|
| 72 | CACA_COLOR_LIGHTGREEN = CACA_LIGHTGREEN, |
---|
| 73 | CACA_COLOR_LIGHTCYAN = CACA_LIGHTCYAN, |
---|
| 74 | CACA_COLOR_LIGHTRED = CACA_LIGHTRED, |
---|
| 75 | CACA_COLOR_LIGHTMAGENTA = CACA_LIGHTMAGENTA, |
---|
| 76 | CACA_COLOR_YELLOW = CACA_YELLOW, |
---|
| 77 | CACA_COLOR_WHITE = CACA_WHITE, |
---|
[1013] | 78 | }; |
---|
| 79 | |
---|
| 80 | enum caca_feature |
---|
| 81 | { |
---|
| 82 | CACA_BACKGROUND = 0x10, |
---|
| 83 | CACA_BACKGROUND_BLACK = 0x11, |
---|
| 84 | CACA_BACKGROUND_SOLID = 0x12, |
---|
| 85 | #define CACA_BACKGROUND_MIN 0x11 |
---|
| 86 | #define CACA_BACKGROUND_MAX 0x12 |
---|
| 87 | CACA_ANTIALIASING = 0x20, |
---|
| 88 | CACA_ANTIALIASING_NONE = 0x21, |
---|
| 89 | CACA_ANTIALIASING_PREFILTER = 0x22, |
---|
| 90 | #define CACA_ANTIALIASING_MIN 0x21 |
---|
| 91 | #define CACA_ANTIALIASING_MAX 0x22 |
---|
| 92 | CACA_DITHERING = 0x30, |
---|
| 93 | CACA_DITHERING_NONE = 0x31, |
---|
| 94 | CACA_DITHERING_ORDERED2 = 0x32, |
---|
| 95 | CACA_DITHERING_ORDERED4 = 0x33, |
---|
| 96 | CACA_DITHERING_ORDERED8 = 0x34, |
---|
| 97 | CACA_DITHERING_RANDOM = 0x35, |
---|
| 98 | #define CACA_DITHERING_MIN 0x31 |
---|
| 99 | #define CACA_DITHERING_MAX 0x35 |
---|
| 100 | CACA_FEATURE_UNKNOWN = 0xffff |
---|
| 101 | }; |
---|
| 102 | |
---|
[2858] | 103 | #if ! defined __LIBCACA__ |
---|
| 104 | |
---|
[1015] | 105 | /* This enum still exists in libcaca 1.x, thus cannot be redefined */ |
---|
[1013] | 106 | #define CACA_EVENT_NONE 0x00000000 |
---|
| 107 | #define CACA_EVENT_KEY_PRESS 0x01000000 |
---|
| 108 | #define CACA_EVENT_KEY_RELEASE 0x02000000 |
---|
| 109 | #define CACA_EVENT_MOUSE_PRESS 0x04000000 |
---|
| 110 | #define CACA_EVENT_MOUSE_RELEASE 0x08000000 |
---|
| 111 | #define CACA_EVENT_MOUSE_MOTION 0x10000000 |
---|
| 112 | #define CACA_EVENT_RESIZE 0x20000000 |
---|
| 113 | #define CACA_EVENT_ANY 0xff000000 |
---|
| 114 | |
---|
| 115 | /* Backwards compatibility macros for even older shit */ |
---|
| 116 | #define caca_dithering caca_feature |
---|
| 117 | #define caca_set_dithering caca_set_feature |
---|
| 118 | #define caca_get_dithering_name caca_get_feature_name |
---|
| 119 | #define CACA_DITHER_NONE CACA_DITHERING_NONE |
---|
| 120 | #define CACA_DITHER_ORDERED CACA_DITHERING_ORDERED8 |
---|
| 121 | #define CACA_DITHER_RANDOM CACA_DITHERING_RANDOM |
---|
| 122 | |
---|
| 123 | /* Macros to redefine all the shit */ |
---|
| 124 | #define caca_init __caca0_init |
---|
| 125 | #define caca_set_delay(x) caca_set_display_time(__caca0_dp, x) |
---|
| 126 | #define caca_get_feature __caca0_get_feature |
---|
| 127 | #define caca_set_feature __caca0_set_feature |
---|
| 128 | #define caca_get_feature_name __caca0_get_feature_name |
---|
| 129 | #define caca_get_rendertime() caca_get_display_time(__caca0_dp) |
---|
[2821] | 130 | #define caca_get_width() caca_get_canvas_width(__caca0_cv) |
---|
| 131 | #define caca_get_height() caca_get_canvas_height(__caca0_cv) |
---|
[1013] | 132 | #define caca_set_window_title(s) caca_set_display_title(__caca0_dp, s) |
---|
| 133 | #define caca_get_window_width() caca_get_display_width(__caca0_dp) |
---|
| 134 | #define caca_get_window_height() caca_get_display_height(__caca0_dp) |
---|
| 135 | #define caca_refresh() caca_refresh_display(__caca0_dp) |
---|
| 136 | #define caca_end __caca0_end |
---|
| 137 | |
---|
| 138 | #define caca_get_event(x) __caca0_get_event(x, 0) |
---|
| 139 | #define caca_wait_event(x) __caca0_get_event(x, -1) |
---|
| 140 | #define caca_get_mouse_x() caca_get_mouse_x(__caca0_dp) |
---|
| 141 | #define caca_get_mouse_y() caca_get_mouse_y(__caca0_dp) |
---|
| 142 | |
---|
[1015] | 143 | #define caca_set_color(x, y) \ |
---|
[2821] | 144 | (__caca0_fg = (x), __caca0_bg = (y), caca_set_color_ansi(__caca0_cv, x, y)) |
---|
[1015] | 145 | #define caca_get_fg_color() __caca0_fg |
---|
| 146 | #define caca_get_bg_color() __caca0_bg |
---|
[1269] | 147 | #define caca_get_color_name __caca0_get_color_name |
---|
[2821] | 148 | #define caca_putchar(x, y, c) caca_put_char(__caca0_cv, x, y, c) |
---|
| 149 | #define caca_putstr(x, y, s) caca_put_str(__caca0_cv, x, y, s) |
---|
| 150 | #define caca_printf(x, y, f, z...) caca_printf(__caca0_cv, x, y, f, ##z) |
---|
| 151 | #define caca_clear() caca_clear_canvas(__caca0_cv) |
---|
[1013] | 152 | |
---|
| 153 | #define caca_draw_line(x, y, z, t, c) \ |
---|
[2821] | 154 | caca_draw_line(__caca0_cv, x, y, z, t, c) |
---|
[1013] | 155 | #define caca_draw_polyline(x, y, z, c) \ |
---|
[2821] | 156 | caca_draw_polyline(__caca0_cv, x, y, z, c) |
---|
[1013] | 157 | #define caca_draw_thin_line(x, y, z, t) \ |
---|
[2821] | 158 | caca_draw_thin_line(__caca0_cv, x, y, z, t) |
---|
[1013] | 159 | #define caca_draw_thin_polyline(x, y, z) \ |
---|
[2821] | 160 | caca_draw_thin_polyline(__caca0_cv, x, y, z) |
---|
[1013] | 161 | #define caca_draw_circle(x, y, z, c) \ |
---|
[2821] | 162 | caca_draw_circle(__caca0_cv, x, y, z, c) |
---|
[1013] | 163 | #define caca_draw_ellipse(x, y, z, t, c) \ |
---|
[2821] | 164 | caca_draw_ellipse(__caca0_cv, x, y, z, t, c) |
---|
[1013] | 165 | #define caca_draw_thin_ellipse(x, y, z, t) \ |
---|
[2821] | 166 | caca_draw_thin_ellipse(__caca0_cv, x, y, z, t) |
---|
[1013] | 167 | #define caca_fill_ellipse(x, y, z, t, c) \ |
---|
[2821] | 168 | caca_fill_ellipse(__caca0_cv, x, y, z, t, c) |
---|
[1013] | 169 | #define caca_draw_box(x, y, z, t, c) \ |
---|
[2821] | 170 | caca_draw_box(__caca0_cv, x, y, z, t, c) |
---|
[1013] | 171 | #define caca_draw_thin_box(x, y, z, t) \ |
---|
[2821] | 172 | caca_draw_thin_box(__caca0_cv, x, y, z, t) |
---|
[1013] | 173 | #define caca_fill_box(x, y, z, t, c) \ |
---|
[2821] | 174 | caca_fill_box(__caca0_cv, x, y, z, t, c) |
---|
[1013] | 175 | #define caca_draw_triangle(x, y, z, t, u, v, c) \ |
---|
[2821] | 176 | caca_draw_triangle(__caca0_cv, x, y, z, t, u, v, c) |
---|
[1013] | 177 | #define caca_draw_thin_triangle(x, y, z, t, u, v) \ |
---|
[2821] | 178 | caca_draw_thin_triangle(__caca0_cv, x, y, z, t, u, v) |
---|
[1013] | 179 | #define caca_fill_triangle(x, y, z, t, u, v, c) \ |
---|
[2821] | 180 | caca_fill_triangle(__caca0_cv, x, y, z, t, u, v, c) |
---|
[1013] | 181 | |
---|
[2821] | 182 | #define caca_rand(a, b) caca_rand(a, (b)+1) |
---|
[1015] | 183 | #define caca_sqrt __caca0_sqrt |
---|
[1013] | 184 | |
---|
[2821] | 185 | #define caca_sprite caca_canvas |
---|
[1013] | 186 | #define caca_load_sprite __caca0_load_sprite |
---|
[1015] | 187 | #define caca_get_sprite_frames(c) 1 |
---|
[2821] | 188 | #define caca_get_sprite_width(c, f) caca_get_canvas_width(c) |
---|
| 189 | #define caca_get_sprite_height(c, f) caca_get_canvas_height(c) |
---|
[1013] | 190 | #define caca_get_sprite_dx(c, f) 0 |
---|
| 191 | #define caca_get_sprite_dx(c, f) 0 |
---|
[2821] | 192 | #define caca_draw_sprite(x, y, c, f) caca_blit(__caca0_cv, x, y, c, NULL) |
---|
| 193 | #define caca_free_sprite caca_free_canvas |
---|
[1013] | 194 | |
---|
[2821] | 195 | #define caca_bitmap caca_dither |
---|
[1015] | 196 | #define caca_create_bitmap __caca0_create_bitmap |
---|
[2821] | 197 | #define caca_set_bitmap_palette caca_set_dither_palette |
---|
[1013] | 198 | #define caca_draw_bitmap(x, y, z, t, b, p) \ |
---|
[2821] | 199 | caca_dither_bitmap(__caca0_cv, x, y, z, t, b, p) |
---|
[1015] | 200 | #define caca_free_bitmap __caca0_free_bitmap |
---|
[1013] | 201 | |
---|
[2858] | 202 | #endif /* ! defined __LIBCACA__ */ |
---|
| 203 | |
---|
[1013] | 204 | #ifdef __cplusplus |
---|
| 205 | } |
---|
| 206 | #endif |
---|
| 207 | |
---|
| 208 | #endif /* __CACA0_H__ */ |
---|