Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
380 lines (311 loc) · 10.5 KB

SDL_riscosmouse.c

File metadata and controls

380 lines (311 loc) · 10.5 KB
 
1
2
/*
SDL - Simple DirectMedia Layer
Jan 4, 2004
Jan 4, 2004
3
Copyright (C) 1997-2004 Sam Lantinga
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Sam Lantinga
Feb 1, 2006
Feb 1, 2006
20
slouken@libsdl.org
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Feb 12, 2005
Feb 12, 2005
25
File added by Alan Buckley (alan_baa@hotmail.com) for RISC OS compatability
26
27
28
29
30
31
27 March 2003
Implements mouse cursor shape definitions and positioning
*/
#include "SDL_mouse.h"
Feb 16, 2006
Feb 16, 2006
32
#include "../../events/SDL_events_c.h"
33
34
35
36
37
38
39
#include "SDL_riscosmouse_c.h"
#include "kernel.h"
#include "swis.h"
static WMcursor *current_cursor = NULL;
Dec 23, 2005
Dec 23, 2005
40
static WMcursor *defined_cursor = NULL;
41
42
43
extern int mouseInWindow;
Dec 23, 2005
Dec 23, 2005
44
45
46
/* Area to save cursor palette colours changed by SDL.
Actual values will be read before we change to the SDL cursor */
static Uint8 wimp_cursor_palette[2][5] = {
Jul 10, 2006
Jul 10, 2006
47
48
{1, 25, 255, 255, 255},
{3, 25, 255, 255, 255}
Dec 23, 2005
Dec 23, 2005
49
50
51
52
53
54
55
56
57
};
static int cursor_palette_saved = 0;
void WIMP_SaveCursorPalette();
void WIMP_RestoreWimpCursor();
void WIMP_SetSDLCursorPalette();
Jul 10, 2006
Jul 10, 2006
58
59
void
RISCOS_FreeWMCursor(_THIS, WMcursor * cursor)
Feb 7, 2006
Feb 7, 2006
61
SDL_free(cursor->data);
Jul 10, 2006
Jul 10, 2006
62
SDL_free(cursor);
Jul 10, 2006
Jul 10, 2006
65
66
67
68
WMcursor *
RISCOS_CreateWMCursor(_THIS,
Uint8 * data, Uint8 * mask, int w, int h, int hot_x,
int hot_y)
Jul 10, 2006
Jul 10, 2006
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
WMcursor *cursor;
Uint8 *cursor_data;
Uint8 *ptr;
int i, j, k;
int data_byte, mask_byte;
/* Check to make sure the cursor size is okay */
if ((w > 32) || (h > 32)) {
SDL_SetError("Only with width and height <= 32 pixels are allowed");
return (NULL);
}
/* Allocate the cursor */
cursor = (WMcursor *) SDL_malloc(sizeof(*cursor));
if (cursor == NULL) {
SDL_SetError("Out of memory");
return (NULL);
}
/* Note: SDL says width must be a multiple of 8 */
cursor_data = SDL_malloc(w / 4 * h);
if (cursor_data == NULL) {
SDL_free(cursor);
SDL_SetError("Out of memory");
return (NULL);
}
cursor->w = w;
cursor->h = h;
cursor->hot_x = hot_x;
cursor->hot_y = hot_y;
cursor->data = cursor_data;
102
103
104
105
106
107
108
109
/* Data / Mask Resulting pixel on screen
0 / 1 White
1 / 1 Black
0 / 0 Transparent
1 / 0 Inverted color if possible, black if not.
*/
Jul 10, 2006
Jul 10, 2006
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
ptr = cursor_data;
for (i = 0; i < h; ++i) {
for (j = 0; j < w / 8; ++j) {
data_byte = *data;
mask_byte = *mask;
*ptr++ = 0; /* Sets whole byte transparent */
*ptr = 0;
for (k = 0; k < 8; k++) {
(*ptr) <<= 2;
if (data_byte & 1)
*ptr |= 3; /* Black or inverted */
else if (mask_byte & 1)
*ptr |= 1; /* White */
if ((k & 3) == 3)
ptr--;
data_byte >>= 1;
mask_byte >>= 1;
}
ptr += 3;
data++;
mask++;
}
}
return (cursor);
Jul 10, 2006
Jul 10, 2006
139
140
int
RISCOS_ShowWMCursor(_THIS, WMcursor * cursor)
Jul 10, 2006
Jul 10, 2006
142
143
144
145
146
147
current_cursor = cursor;
if (cursor == NULL) {
_kernel_osbyte(106, 0, 0);
defined_cursor = NULL;
} else {
Dec 23, 2005
Dec 23, 2005
148
WMcursor *old_cursor = defined_cursor;
Jul 10, 2006
Jul 10, 2006
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
if (cursor != defined_cursor) {
Uint8 cursor_def[10];
cursor_def[0] = 0;
cursor_def[1] = 2; /* Use shape number 2 */
cursor_def[2] = cursor->w / 4; /* Width in bytes */
cursor_def[3] = cursor->h; /* Height (h) in pixels */
cursor_def[4] = cursor->hot_x; /* ActiveX in pixels from left */
cursor_def[5] = cursor->hot_y; /* ActiveY in pixels from top */
cursor_def[6] = ((int) (cursor->data) & 0xFF); /* Least significant byte of pointer to data */
cursor_def[7] = ((int) (cursor->data) >> 8) & 0xFF; /* ... */
cursor_def[8] = ((int) (cursor->data) >> 16) & 0xFF; /* ... */
cursor_def[9] = ((int) (cursor->data) >> 24) & 0xFF; /* Most significant byte of pointer to data */
if (_kernel_osword(21, (int *) cursor_def) != 0) {
SDL_SetError("RISCOS couldn't create the cursor to show");
return (0);
}
defined_cursor = cursor;
}
if (old_cursor == NULL) {
Dec 23, 2005
Dec 23, 2005
172
/* First time or reshow in window, so save/setup palette */
Jul 10, 2006
Jul 10, 2006
173
if (!cursor_palette_saved) {
Dec 23, 2005
Dec 23, 2005
174
175
176
177
178
WIMP_SaveCursorPalette();
}
WIMP_SetSDLCursorPalette();
}
Jul 10, 2006
Jul 10, 2006
179
180
181
182
_kernel_osbyte(106, 2, 0);
}
return (1);
Jul 10, 2006
Jul 10, 2006
185
186
void
FULLSCREEN_WarpWMCursor(_THIS, Uint16 x, Uint16 y)
Jul 10, 2006
Jul 10, 2006
188
189
190
191
Uint8 move_block[5];
int eig_block[3];
_kernel_swi_regs regs;
int os_x, os_y;
Jul 10, 2006
Jul 10, 2006
193
194
195
eig_block[0] = 4; /* X eig factor */
eig_block[1] = 5; /* Y eig factor */
eig_block[2] = -1; /* End of list of variables to request */
Jul 10, 2006
Jul 10, 2006
197
198
regs.r[0] = (int) eig_block;
regs.r[1] = (int) eig_block;
199
200
_kernel_swi(OS_ReadVduVariables, &regs, &regs);
Jul 10, 2006
Jul 10, 2006
201
202
os_x = x << eig_block[0];
os_y = y << eig_block[1];
Jul 10, 2006
Jul 10, 2006
204
205
206
207
208
move_block[0] = 3; /* Move cursor */
move_block[1] = os_x & 0xFF;
move_block[2] = (os_x >> 8) & 0xFF;
move_block[3] = os_y & 0xFF;
move_block[4] = (os_y >> 8) & 0xFF;
Jul 10, 2006
Jul 10, 2006
210
211
_kernel_osword(21, (int *) move_block);
SDL_PrivateMouseMotion(0, 0, x, y);
212
213
214
215
}
/* Reshow cursor when mouse re-enters the window */
Jul 10, 2006
Jul 10, 2006
216
217
void
WIMP_ReshowCursor(_THIS)
Jul 10, 2006
Jul 10, 2006
219
defined_cursor = NULL;
Dec 23, 2005
Dec 23, 2005
220
cursor_palette_saved = 0;
Jul 10, 2006
Jul 10, 2006
221
RISCOS_ShowWMCursor(this, current_cursor);
Jul 10, 2006
Jul 10, 2006
224
225
void
WIMP_WarpWMCursor(_THIS, Uint16 x, Uint16 y)
Jul 10, 2006
Jul 10, 2006
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
_kernel_swi_regs regs;
int window_state[9];
char block[5];
int osX, osY;
window_state[0] = this->hidden->window_handle;
regs.r[1] = (unsigned int) window_state;
_kernel_swi(Wimp_GetWindowState, &regs, &regs);
osX = (x << this->hidden->xeig) + window_state[1];
osY = window_state[4] - (y << this->hidden->yeig);
block[0] = 3;
block[1] = osX & 0xFF;
block[2] = (osX >> 8) & 0xFF;
block[3] = osY & 0xFF;
block[4] = (osY >> 8) & 0xFF;
regs.r[0] = 21;
regs.r[1] = (int) block;
_kernel_swi(OS_Word, &regs, &regs);
SDL_PrivateMouseMotion(0, 0, x, y);
Jul 10, 2006
Jul 10, 2006
251
252
int
WIMP_ShowWMCursor(_THIS, WMcursor * cursor)
Jul 10, 2006
Jul 10, 2006
254
255
256
257
if (mouseInWindow)
return RISCOS_ShowWMCursor(this, cursor);
else
current_cursor = cursor;
Dec 23, 2005
Dec 23, 2005
258
Jul 10, 2006
Jul 10, 2006
259
return 1;
Jul 10, 2006
Jul 10, 2006
262
263
SDL_GrabMode
RISCOS_GrabInput(_THIS, SDL_GrabMode mode)
Jul 10, 2006
Jul 10, 2006
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
/* In fullscreen mode we don't need to do anything */
if (mode < SDL_GRAB_FULLSCREEN) {
_kernel_swi_regs regs;
unsigned char block[9];
block[0] = 1; /* Define mouse cursor bounding block */
if (mode == SDL_GRAB_OFF) {
/* Clip to whole screen */
int r = (this->hidden->screen_width << this->hidden->xeig) - 1;
int t = (this->hidden->screen_height << this->hidden->yeig) - 1;
block[1] = 0;
block[2] = 0; /* Left */
block[3] = 0;
block[4] = 0; /* Bottom */
block[5] = r & 0xFF;
block[6] = (r >> 8) & 0xFF; /* Right */
block[7] = t & 0xFF;
block[8] = (t >> 8) & 0xFF; /* Top */
} else {
/* Clip to window */
unsigned char window_state[36];
*((int *) window_state) = this->hidden->window_handle;
regs.r[1] = (unsigned int) window_state;
_kernel_swi(Wimp_GetWindowState, &regs, &regs);
block[1] = window_state[4];
block[2] = window_state[5];
block[3] = window_state[8];
block[4] = window_state[9];
block[5] = window_state[12];
block[6] = window_state[13];
block[7] = window_state[16];
block[8] = window_state[17];
}
regs.r[0] = 21; /* OS word code */
regs.r[1] = (int) block;
_kernel_swi(OS_Word, &regs, &regs);
}
return mode;
Dec 23, 2005
Dec 23, 2005
311
312
313
314
/* Save mouse cursor palette to be restore when we are no longer
defining a cursor */
Jul 10, 2006
Jul 10, 2006
315
316
void
WIMP_SaveCursorPalette()
Dec 23, 2005
Dec 23, 2005
317
318
319
320
{
_kernel_swi_regs regs;
int colour;
Jul 10, 2006
Jul 10, 2006
321
322
323
324
325
326
327
328
329
330
331
332
for (colour = 0; colour < 2; colour++) {
regs.r[0] = (int) wimp_cursor_palette[colour][0];
regs.r[1] = 25;
/* Read settings with OS_ReadPalette */
if (_kernel_swi(0x2f, &regs, &regs) == NULL) {
wimp_cursor_palette[colour][2] =
(unsigned char) ((regs.r[2] >> 8) & 0xFF);
wimp_cursor_palette[colour][3] =
(unsigned char) ((regs.r[2] >> 16) & 0xFF);
wimp_cursor_palette[colour][4] =
(unsigned char) ((regs.r[2] >> 24) & 0xFF);
}
Dec 23, 2005
Dec 23, 2005
333
334
335
336
337
338
}
cursor_palette_saved = 1;
}
/* Restore the WIMP's cursor when we leave the SDL window */
Jul 10, 2006
Jul 10, 2006
339
340
void
WIMP_RestoreWimpCursor()
Dec 23, 2005
Dec 23, 2005
341
342
343
344
345
346
347
{
int colour;
/* Reset to pointer shape 1 */
_kernel_osbyte(106, 1, 0);
/* Reset pointer colours */
Jul 10, 2006
Jul 10, 2006
348
349
350
351
if (cursor_palette_saved) {
for (colour = 0; colour < 2; colour++) {
_kernel_osword(12, (int *) wimp_cursor_palette[colour]);
}
Dec 23, 2005
Dec 23, 2005
352
353
354
355
356
}
cursor_palette_saved = 0;
}
/* Set palette used for SDL mouse cursors */
Jul 10, 2006
Jul 10, 2006
357
358
void
WIMP_SetSDLCursorPalette()
Dec 23, 2005
Dec 23, 2005
359
{
Jul 10, 2006
Jul 10, 2006
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
/* First time set up the mouse colours */
Uint8 block[5];
/* Set up colour 1 as white */
block[0] = 1; /* Colour to change 1 - 3 */
block[1] = 25; /* Set pointer colour */
block[2] = 255; /* red component */
block[3] = 255; /* green component */
block[4] = 255; /* blue component */
_kernel_osword(12, (int *) block);
/* Set colour 3 to back */
block[0] = 3; /* Colour to change 1 - 3 */
block[1] = 25; /* Set pointer colour */
block[2] = 0; /* red component */
block[3] = 0; /* green component */
block[4] = 0; /* blue component */
_kernel_osword(12, (int *) block);
Dec 23, 2005
Dec 23, 2005
378
}
Jul 10, 2006
Jul 10, 2006
379
380
/* vi: set ts=4 sw=4 expandtab: */