Mercurial > sdl-ios-xcode
annotate src/video/bwindow/SDL_sysmouse.cc @ 1358:c71e05b4dc2e
More header massaging... works great on Windows. ;-)
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Fri, 10 Feb 2006 06:48:43 +0000 |
parents | 604d73db6802 |
children | 376665398b25 |
rev | line source |
---|---|
0 | 1 /* |
2 SDL - Simple DirectMedia Layer | |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
3 Copyright (C) 1997-2006 Sam Lantinga |
0 | 4 |
5 This library is free software; you can redistribute it and/or | |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
6 modify it under the terms of the GNU Lesser General Public |
0 | 7 License as published by the Free Software Foundation; either |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
8 version 2.1 of the License, or (at your option) any later version. |
0 | 9 |
10 This library is distributed in the hope that it will be useful, | |
11 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
13 Lesser General Public License for more details. |
0 | 14 |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
15 You should have received a copy of the GNU Lesser General Public |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
16 License along with this library; if not, write to the Free Software |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
0 | 18 |
19 Sam Lantinga | |
252
e8157fcb3114
Updated the source with the correct e-mail address
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
20 slouken@libsdl.org |
0 | 21 */ |
22 | |
23 #include <AppKit.h> | |
24 #include <GameKit.h> | |
25 | |
26 #include "SDL_BWin.h" | |
27 | |
28 extern "C" { | |
29 | |
30 #include "SDL_sysmouse_c.h" | |
31 | |
32 /* Convert bits to padded bytes */ | |
33 #define PADDED_BITS(bits) ((bits+7)/8) | |
34 | |
35 /* The implementation dependent data for the window manager cursor */ | |
36 struct WMcursor { | |
37 char *bits; | |
38 }; | |
39 | |
40 /* Can this be done in the BeOS? */ | |
41 WMcursor *BE_CreateWMCursor(_THIS, | |
42 Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y) | |
43 { | |
44 WMcursor *cursor; | |
45 int allowed_x; | |
46 int allowed_y; | |
47 int run, pad, i; | |
48 char *cptr; | |
49 | |
50 allowed_x = 16; /* BeOS limitation */ | |
51 allowed_y = 16; /* BeOS limitation */ | |
52 if ( (w > allowed_x) || (h > allowed_y) ) { | |
53 SDL_SetError("Only cursors of dimension (%dx%d) are allowed", | |
54 allowed_x, allowed_y); | |
55 return(NULL); | |
56 } | |
57 | |
58 /* Allocate the cursor */ | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
59 cursor = (WMcursor *)SDL_malloc(sizeof(WMcursor)); |
0 | 60 if ( cursor == NULL ) { |
61 SDL_OutOfMemory(); | |
62 return(NULL); | |
63 } | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
64 cursor->bits = (char *)SDL_malloc(4+2*((allowed_x/8)*allowed_y)); |
0 | 65 if ( cursor->bits == NULL ) { |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
66 SDL_free(cursor); |
0 | 67 SDL_OutOfMemory(); |
68 return(NULL); | |
69 } | |
70 cursor->bits[0] = allowed_y; /* Size of the cursor */ | |
71 cursor->bits[1] = 1; /* Bit depth of cursor */ | |
72 cursor->bits[2] = hot_y; | |
73 cursor->bits[3] = hot_x; | |
74 cptr = &cursor->bits[4]; | |
75 | |
76 /* Pad out to the normal cursor size */ | |
77 run = PADDED_BITS(w); | |
78 pad = PADDED_BITS(allowed_x)-run; | |
79 for ( i=0; i<h; ++i ) { | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
80 SDL_memcpy(cptr, data, run); |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
81 SDL_memset(cptr+run, 0, pad); |
0 | 82 data += run; |
83 cptr += (run+pad); | |
84 } | |
85 for ( ; i<allowed_y; ++i ) { | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
86 SDL_memset(cptr, 0, run+pad); |
0 | 87 cptr += (run+pad); |
88 } | |
89 for ( i=0; i<h; ++i ) { | |
90 /* FIXME: The mask should be OR'd with the data to turn | |
91 inverted color pixels black, since inverted color pixels | |
92 aren't supported under BeOS. | |
93 */ | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
94 SDL_memcpy(cptr, mask, run); |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
95 SDL_memset(cptr+run, 0, pad); |
0 | 96 mask += run; |
97 cptr += (run+pad); | |
98 } | |
99 for ( ; i<allowed_y; ++i ) { | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
100 SDL_memset(cptr, 0, run+pad); |
0 | 101 cptr += (run+pad); |
102 } | |
103 return(cursor); | |
104 } | |
105 | |
106 int BE_ShowWMCursor(_THIS, WMcursor *cursor) | |
107 { | |
108 if ( be_app->Lock() ) { | |
109 if ( cursor == NULL ) { | |
110 if ( SDL_BlankCursor != NULL ) { | |
111 be_app->SetCursor(SDL_BlankCursor->bits); | |
112 } | |
113 } else { | |
114 be_app->SetCursor(cursor->bits); | |
115 } | |
116 be_app->Unlock(); | |
117 } | |
118 return(1); | |
119 } | |
120 | |
121 void BE_FreeWMCursor(_THIS, WMcursor *cursor) | |
122 { | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
123 SDL_free(cursor->bits); |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
124 SDL_free(cursor); |
0 | 125 } |
126 | |
127 /* Implementation by Christian Bauer <cbauer@student.physik.uni-mainz.de> */ | |
128 void BE_WarpWMCursor(_THIS, Uint16 x, Uint16 y) | |
129 { | |
130 BPoint pt(x, y); | |
131 SDL_Win->Lock(); | |
132 SDL_Win->ConvertToScreen(&pt); | |
133 SDL_Win->Unlock(); | |
134 set_mouse_position((int32)pt.x, (int32)pt.y); | |
135 } | |
136 | |
137 }; /* Extern C */ |