Mercurial > sdl-ios-xcode
annotate src/video/bwindow/SDL_sysmouse.cc @ 1336:3692456e7b0f
Use SDL_ prefixed versions of C library functions.
FIXME:
Change #include <stdlib.h> to #include "SDL_stdlib.h"
Change #include <string.h> to #include "SDL_string.h"
Make sure nothing else broke because of this...
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 07 Feb 2006 06:59:48 +0000 |
parents | c9b51268668f |
children | 604d73db6802 |
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 <stdlib.h> | |
24 #include <string.h> | |
25 | |
26 #include <AppKit.h> | |
27 #include <GameKit.h> | |
28 | |
29 #include "SDL_error.h" | |
30 #include "SDL_BWin.h" | |
31 | |
32 extern "C" { | |
33 | |
34 #include "SDL_sysmouse_c.h" | |
35 | |
36 /* Convert bits to padded bytes */ | |
37 #define PADDED_BITS(bits) ((bits+7)/8) | |
38 | |
39 /* The implementation dependent data for the window manager cursor */ | |
40 struct WMcursor { | |
41 char *bits; | |
42 }; | |
43 | |
44 /* Can this be done in the BeOS? */ | |
45 WMcursor *BE_CreateWMCursor(_THIS, | |
46 Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y) | |
47 { | |
48 WMcursor *cursor; | |
49 int allowed_x; | |
50 int allowed_y; | |
51 int run, pad, i; | |
52 char *cptr; | |
53 | |
54 allowed_x = 16; /* BeOS limitation */ | |
55 allowed_y = 16; /* BeOS limitation */ | |
56 if ( (w > allowed_x) || (h > allowed_y) ) { | |
57 SDL_SetError("Only cursors of dimension (%dx%d) are allowed", | |
58 allowed_x, allowed_y); | |
59 return(NULL); | |
60 } | |
61 | |
62 /* Allocate the cursor */ | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
63 cursor = (WMcursor *)SDL_malloc(sizeof(WMcursor)); |
0 | 64 if ( cursor == NULL ) { |
65 SDL_OutOfMemory(); | |
66 return(NULL); | |
67 } | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
68 cursor->bits = (char *)SDL_malloc(4+2*((allowed_x/8)*allowed_y)); |
0 | 69 if ( cursor->bits == NULL ) { |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
70 SDL_free(cursor); |
0 | 71 SDL_OutOfMemory(); |
72 return(NULL); | |
73 } | |
74 cursor->bits[0] = allowed_y; /* Size of the cursor */ | |
75 cursor->bits[1] = 1; /* Bit depth of cursor */ | |
76 cursor->bits[2] = hot_y; | |
77 cursor->bits[3] = hot_x; | |
78 cptr = &cursor->bits[4]; | |
79 | |
80 /* Pad out to the normal cursor size */ | |
81 run = PADDED_BITS(w); | |
82 pad = PADDED_BITS(allowed_x)-run; | |
83 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
|
84 SDL_memcpy(cptr, data, run); |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
85 SDL_memset(cptr+run, 0, pad); |
0 | 86 data += run; |
87 cptr += (run+pad); | |
88 } | |
89 for ( ; i<allowed_y; ++i ) { | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
90 SDL_memset(cptr, 0, run+pad); |
0 | 91 cptr += (run+pad); |
92 } | |
93 for ( i=0; i<h; ++i ) { | |
94 /* FIXME: The mask should be OR'd with the data to turn | |
95 inverted color pixels black, since inverted color pixels | |
96 aren't supported under BeOS. | |
97 */ | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
98 SDL_memcpy(cptr, mask, run); |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
99 SDL_memset(cptr+run, 0, pad); |
0 | 100 mask += run; |
101 cptr += (run+pad); | |
102 } | |
103 for ( ; i<allowed_y; ++i ) { | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
104 SDL_memset(cptr, 0, run+pad); |
0 | 105 cptr += (run+pad); |
106 } | |
107 return(cursor); | |
108 } | |
109 | |
110 int BE_ShowWMCursor(_THIS, WMcursor *cursor) | |
111 { | |
112 if ( be_app->Lock() ) { | |
113 if ( cursor == NULL ) { | |
114 if ( SDL_BlankCursor != NULL ) { | |
115 be_app->SetCursor(SDL_BlankCursor->bits); | |
116 } | |
117 } else { | |
118 be_app->SetCursor(cursor->bits); | |
119 } | |
120 be_app->Unlock(); | |
121 } | |
122 return(1); | |
123 } | |
124 | |
125 void BE_FreeWMCursor(_THIS, WMcursor *cursor) | |
126 { | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
127 SDL_free(cursor->bits); |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
128 SDL_free(cursor); |
0 | 129 } |
130 | |
131 /* Implementation by Christian Bauer <cbauer@student.physik.uni-mainz.de> */ | |
132 void BE_WarpWMCursor(_THIS, Uint16 x, Uint16 y) | |
133 { | |
134 BPoint pt(x, y); | |
135 SDL_Win->Lock(); | |
136 SDL_Win->ConvertToScreen(&pt); | |
137 SDL_Win->Unlock(); | |
138 set_mouse_position((int32)pt.x, (int32)pt.y); | |
139 } | |
140 | |
141 }; /* Extern C */ |