1 | /* |
---|
2 | * CacaSharp .NET bindings for libcaca |
---|
3 | * Copyright (c) 2006 Jean-Yves Lamoureux <jylam@lnxscene.org> |
---|
4 | * All Rights Reserved |
---|
5 | * |
---|
6 | * $Id: Caca.cs 943 2006-05-09 00:59:29Z 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 | |
---|
15 | |
---|
16 | using System; |
---|
17 | using System.Runtime.InteropServices; |
---|
18 | using System.Security; |
---|
19 | |
---|
20 | using libCucul; |
---|
21 | |
---|
22 | |
---|
23 | namespace libCaca |
---|
24 | { |
---|
25 | |
---|
26 | enum Keys |
---|
27 | { |
---|
28 | CACA_KEY_UNKNOWN = 0x00, /**< Unknown key. */ |
---|
29 | |
---|
30 | /* The following keys have ASCII equivalents */ |
---|
31 | CACA_KEY_BACKSPACE = 0x08, /**< The backspace key. */ |
---|
32 | CACA_KEY_TAB = 0x09, /**< The tabulation key. */ |
---|
33 | CACA_KEY_RETURN = 0x0d, /**< The return key. */ |
---|
34 | CACA_KEY_PAUSE = 0x13, /**< The pause key. */ |
---|
35 | CACA_KEY_ESCAPE = 0x1b, /**< The escape key. */ |
---|
36 | CACA_KEY_DELETE = 0x7f, /**< The delete key. */ |
---|
37 | |
---|
38 | /* The following keys do not have ASCII equivalents but have been |
---|
39 | * chosen to match the SDL equivalents */ |
---|
40 | CACA_KEY_UP = 0x111, /**< The up arrow key. */ |
---|
41 | CACA_KEY_DOWN = 0x112, /**< The down arrow key. */ |
---|
42 | CACA_KEY_LEFT = 0x113, /**< The left arrow key. */ |
---|
43 | CACA_KEY_RIGHT = 0x114, /**< The right arrow key. */ |
---|
44 | |
---|
45 | CACA_KEY_INSERT = 0x115, /**< The insert key. */ |
---|
46 | CACA_KEY_HOME = 0x116, /**< The home key. */ |
---|
47 | CACA_KEY_END = 0x117, /**< The end key. */ |
---|
48 | CACA_KEY_PAGEUP = 0x118, /**< The page up key. */ |
---|
49 | CACA_KEY_PAGEDOWN = 0x119, /**< The page down key. */ |
---|
50 | |
---|
51 | CACA_KEY_F1 = 0x11a, /**< The F1 key. */ |
---|
52 | CACA_KEY_F2 = 0x11b, /**< The F2 key. */ |
---|
53 | CACA_KEY_F3 = 0x11c, /**< The F3 key. */ |
---|
54 | CACA_KEY_F4 = 0x11d, /**< The F4 key. */ |
---|
55 | CACA_KEY_F5 = 0x11e, /**< The F5 key. */ |
---|
56 | CACA_KEY_F6 = 0x11f, /**< The F6 key. */ |
---|
57 | CACA_KEY_F7 = 0x120, /**< The F7 key. */ |
---|
58 | CACA_KEY_F8 = 0x121, /**< The F8 key. */ |
---|
59 | CACA_KEY_F9 = 0x122, /**< The F9 key. */ |
---|
60 | CACA_KEY_F10 = 0x123, /**< The F10 key. */ |
---|
61 | CACA_KEY_F11 = 0x124, /**< The F11 key. */ |
---|
62 | CACA_KEY_F12 = 0x125, /**< The F12 key. */ |
---|
63 | CACA_KEY_F13 = 0x126, /**< The F13 key. */ |
---|
64 | CACA_KEY_F14 = 0x127, /**< The F14 key. */ |
---|
65 | CACA_KEY_F15 = 0x128 /**< The F15 key. */ |
---|
66 | } |
---|
67 | public unsafe class Event |
---|
68 | { |
---|
69 | public enum type |
---|
70 | { |
---|
71 | NONE = 0x0000, /**< No event. */ |
---|
72 | |
---|
73 | KEY_PRESS = 0x0001, /**< A key was pressed. */ |
---|
74 | KEY_RELEASE = 0x0002, /**< A key was released. */ |
---|
75 | MOUSE_PRESS = 0x0004, /**< A mouse button was pressed. */ |
---|
76 | MOUSE_RELEASE = 0x0008, /**< A mouse button was released. */ |
---|
77 | MOUSE_MOTION = 0x0010, /**< The mouse was moved. */ |
---|
78 | RESIZE = 0x0020, /**< The window was resized. */ |
---|
79 | QUIT = 0x0040, /**< The user requested to quit. */ |
---|
80 | |
---|
81 | ANY = 0xffff /**< Bitmask for any event. */ |
---|
82 | }; |
---|
83 | |
---|
84 | } |
---|
85 | |
---|
86 | |
---|
87 | public unsafe class Caca : IDisposable |
---|
88 | { |
---|
89 | [DllImport("libCaca.dll", CallingConvention=CallingConvention.Cdecl), SuppressUnmanagedCodeSecurity] |
---|
90 | public static extern IntPtr caca_create_display(IntPtr qq); |
---|
91 | [DllImport("libCaca.dll", CallingConvention=CallingConvention.Cdecl), SuppressUnmanagedCodeSecurity] |
---|
92 | public static extern void caca_free_display(IntPtr kk); |
---|
93 | [DllImport("libCaca.dll", CallingConvention=CallingConvention.Cdecl), SuppressUnmanagedCodeSecurity] |
---|
94 | public static extern void caca_refresh_display(IntPtr kk); |
---|
95 | [DllImport("libCaca.dll", CallingConvention=CallingConvention.Cdecl), SuppressUnmanagedCodeSecurity] |
---|
96 | public static extern void caca_set_delay(IntPtr kk, Int32 d); |
---|
97 | [DllImport("libCaca.dll", CallingConvention=CallingConvention.Cdecl), SuppressUnmanagedCodeSecurity] |
---|
98 | public static extern Int32 caca_get_rendertime(IntPtr kk); |
---|
99 | [DllImport("libCaca.dll", CallingConvention=CallingConvention.Cdecl), SuppressUnmanagedCodeSecurity] |
---|
100 | public static extern Int32 caca_get_display_width(IntPtr kk); |
---|
101 | [DllImport("libCaca.dll", CallingConvention=CallingConvention.Cdecl), SuppressUnmanagedCodeSecurity] |
---|
102 | public static extern Int32 caca_get_display_height(IntPtr kk); |
---|
103 | [DllImport("libCaca.dll", CallingConvention=CallingConvention.Cdecl), SuppressUnmanagedCodeSecurity] |
---|
104 | public static extern Int32 caca_set_display_title(IntPtr kk, string t); |
---|
105 | [DllImport("libCaca.dll", CallingConvention=CallingConvention.Cdecl), SuppressUnmanagedCodeSecurity] |
---|
106 | public static extern Int32 caca_get_event(IntPtr k, Event.type t, Event e, Int32 timeout); |
---|
107 | [DllImport("libCaca.dll", CallingConvention=CallingConvention.Cdecl), SuppressUnmanagedCodeSecurity] |
---|
108 | public static extern Int32 caca_get_mouse_x(IntPtr k); |
---|
109 | [DllImport("libCaca.dll", CallingConvention=CallingConvention.Cdecl), SuppressUnmanagedCodeSecurity] |
---|
110 | public static extern Int32 caca_get_mouse_y(IntPtr k); |
---|
111 | [DllImport("libCaca.dll", CallingConvention=CallingConvention.Cdecl), SuppressUnmanagedCodeSecurity] |
---|
112 | public static extern void caca_set_mouse(IntPtr k, bool status); |
---|
113 | |
---|
114 | |
---|
115 | |
---|
116 | |
---|
117 | |
---|
118 | IntPtr qq; |
---|
119 | IntPtr kk; |
---|
120 | |
---|
121 | public Caca(Cucul qqt) |
---|
122 | { |
---|
123 | qq = qqt.get_cucul_t(); |
---|
124 | kk = caca_create_display(qq); |
---|
125 | } |
---|
126 | public void Dispose() |
---|
127 | { |
---|
128 | caca_free_display(kk); |
---|
129 | GC.SuppressFinalize(this); |
---|
130 | } |
---|
131 | public void Refresh() |
---|
132 | { |
---|
133 | caca_refresh_display(kk); |
---|
134 | } |
---|
135 | public void setDelay(Int32 d) |
---|
136 | { |
---|
137 | caca_set_delay(kk, d); |
---|
138 | } |
---|
139 | public Int32 getRendertime() |
---|
140 | { |
---|
141 | return caca_get_rendertime(kk); |
---|
142 | } |
---|
143 | public Int32 getDisplayWidth() |
---|
144 | { |
---|
145 | return caca_get_display_width(kk); |
---|
146 | } |
---|
147 | public Int32 getDisplayHeight() |
---|
148 | { |
---|
149 | return caca_get_display_height(kk); |
---|
150 | } |
---|
151 | public Int32 setDisplayTitle(string t) |
---|
152 | { |
---|
153 | return caca_set_display_title(kk, t); |
---|
154 | } |
---|
155 | public Int32 getEvent(Event.type t, Event e, Int32 timeout) |
---|
156 | { |
---|
157 | return caca_get_event(kk, t, e, timeout); |
---|
158 | } |
---|
159 | public Int32 getMouseX() |
---|
160 | { |
---|
161 | return caca_get_mouse_x(kk); |
---|
162 | } |
---|
163 | public Int32 getMouseY() |
---|
164 | { |
---|
165 | return caca_get_mouse_y(kk); |
---|
166 | } |
---|
167 | public void caca_set_mouse(bool status) |
---|
168 | { |
---|
169 | caca_set_mouse(kk, status); |
---|
170 | } |
---|
171 | |
---|
172 | |
---|
173 | |
---|
174 | |
---|
175 | |
---|
176 | |
---|
177 | |
---|
178 | public IntPtr get_caca_t() |
---|
179 | { |
---|
180 | return kk; |
---|
181 | } |
---|
182 | |
---|
183 | |
---|
184 | } |
---|
185 | } |
---|