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

Latest commit

 

History

History
802 lines (669 loc) · 23.5 KB

SDL_riscosFullScreenVideo.c

File metadata and controls

802 lines (669 loc) · 23.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
27 March 2003
Feb 12, 2005
Feb 12, 2005
28
Implements RISC OS full screen display.
29
30
31
32
*/
#include "SDL_video.h"
#include "SDL_mouse.h"
Feb 16, 2006
Feb 16, 2006
33
34
35
#include "../SDL_sysvideo.h"
#include "../SDL_pixels_c.h"
#include "../../events/SDL_events_c.h"
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#include "SDL_riscostask.h"
#include "SDL_riscosvideo.h"
#include "SDL_riscosevents_c.h"
#include "SDL_riscosmouse_c.h"
#include "kernel.h"
#include "swis.h"
#include "unixlib/os.h"
#include "unixlib/local.h"
/* Private structures */
typedef struct tagScreenModeBlock
{
May 28, 2006
May 28, 2006
50
51
52
53
54
55
int flags; // mode selector flags, bit 0 = 1, bit 1-7 format specifier, 8-31 reserved
int x_pixels;
int y_pixels;
int pixel_depth; // 2^pixel_depth = bpp,i.e. 0 = 1, 1 = 2, 4 = 16, 5 = 32
int frame_rate; // -1 use first match
int mode_vars[5]; // array of index, value pairs terminated by -1
56
57
58
59
} SCREENMODEBLOCK;
/* Helper functions */
May 29, 2006
May 29, 2006
60
61
62
void FULLSCREEN_SetDeviceMode(_THIS);
int FULLSCREEN_SetMode(int width, int height, int bpp);
void FULLSCREEN_SetupBanks(_THIS);
63
64
/* SDL video device functions for fullscreen mode */
May 29, 2006
May 29, 2006
65
66
67
68
69
static int FULLSCREEN_SetColors(_THIS, int firstcolor, int ncolors,
SDL_Color * colors);
static int FULLSCREEN_FlipHWSurface(_THIS, SDL_Surface * surface);
void FULLSCREEN_SetWMCaption(_THIS, const char *title, const char *icon);
extern int RISCOS_GetWmInfo(_THIS, SDL_SysWMinfo * info);
Feb 12, 2005
Feb 12, 2005
71
/* UpdateRects variants */
May 29, 2006
May 29, 2006
72
73
static void FULLSCREEN_UpdateRects(_THIS, int numrects, SDL_Rect * rects);
static void FULLSCREEN_UpdateRectsMemCpy(_THIS, int numrects,
May 28, 2006
May 28, 2006
74
SDL_Rect * rects);
May 29, 2006
May 29, 2006
75
76
77
78
79
80
static void FULLSCREEN_UpdateRects8bpp(_THIS, int numrects, SDL_Rect * rects);
static void FULLSCREEN_UpdateRects16bpp(_THIS, int numrects,
SDL_Rect * rects);
static void FULLSCREEN_UpdateRects32bpp(_THIS, int numrects,
SDL_Rect * rects);
static void FULLSCREEN_UpdateRectsOS(_THIS, int numrects, SDL_Rect * rects);
Feb 12, 2005
Feb 12, 2005
81
82
/* Local helper functions */
May 29, 2006
May 29, 2006
83
84
85
86
87
88
89
static int cmpmodes(const void *va, const void *vb);
static int FULLSCREEN_AddMode(_THIS, int bpp, int w, int h);
void FULLSCREEN_SetWriteBank(int bank);
void FULLSCREEN_SetDisplayBank(int bank);
static void FULLSCREEN_DisableEscape();
static void FULLSCREEN_EnableEscape();
void FULLSCREEN_BuildModeList(_THIS);
90
91
/* Following variable is set up in riskosTask.c */
May 28, 2006
May 28, 2006
92
extern int riscos_backbuffer; /* Create a back buffer in system memory for full screen mode */
Feb 12, 2005
Feb 12, 2005
94
/* Following is used to create a sprite back buffer */
May 29, 2006
May 29, 2006
95
extern unsigned char *WIMP_CreateBuffer(int width, int height, int bpp);
Feb 12, 2005
Feb 12, 2005
97
/* Fast assembler copy */
May 29, 2006
May 29, 2006
98
99
extern void RISCOS_Put32(void *to, int pixels, int pitch, int rows,
void *from, int src_skip_bytes);
May 28, 2006
May 28, 2006
101
SDL_Surface *
May 29, 2006
May 29, 2006
102
103
FULLSCREEN_SetVideoMode(_THIS, SDL_Surface * current,
int width, int height, int bpp, Uint32 flags)
May 28, 2006
May 28, 2006
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
_kernel_swi_regs regs;
Uint32 Rmask = 0;
Uint32 Gmask = 0;
Uint32 Bmask = 0;
int create_back_buffer = riscos_backbuffer;
switch (bpp) {
case 8:
flags |= SDL_HWPALETTE;
break;
case 15:
case 16:
Bmask = 0x00007c00;
Gmask = 0x000003e0;
Rmask = 0x0000001f;
break;
case 32:
Bmask = 0x00ff0000;
Gmask = 0x0000ff00;
Rmask = 0x000000ff;
break;
default:
May 29, 2006
May 29, 2006
130
SDL_SetError("Pixel depth not supported");
May 28, 2006
May 28, 2006
131
132
133
134
return NULL;
break;
}
May 29, 2006
May 29, 2006
135
136
if (FULLSCREEN_SetMode(width, height, bpp) == 0) {
SDL_SetError("Couldn't set requested mode");
May 28, 2006
May 28, 2006
137
138
return (NULL);
}
139
140
141
/* printf("Setting mode %dx%d\n", width, height); */
May 28, 2006
May 28, 2006
142
/* Allocate the new pixel format for the screen */
May 29, 2006
May 29, 2006
143
144
145
if (!SDL_ReallocFormat(current, bpp, Rmask, Gmask, Bmask, 0)) {
RISCOS_RestoreWimpMode();
SDL_SetError("Couldn't allocate new pixel format for requested mode");
May 28, 2006
May 28, 2006
146
return (NULL);
May 28, 2006
May 28, 2006
149
150
151
152
153
154
155
156
/* Set up the new mode framebuffer */
current->w = width;
this->hidden->height = current->h = height;
regs.r[0] = -1; /* -1 for current screen mode */
/* Get screen width in bytes */
regs.r[1] = 6; // Screen Width in bytes
May 29, 2006
May 29, 2006
157
_kernel_swi(OS_ReadModeVariable, &regs, &regs);
May 28, 2006
May 28, 2006
159
160
161
162
current->pitch = regs.r[2];
if (flags & SDL_DOUBLEBUF) {
regs.r[0] = 2; /* Screen area */
May 29, 2006
May 29, 2006
163
_kernel_swi(OS_ReadDynamicArea, &regs, &regs);
May 28, 2006
May 28, 2006
164
165
166
167
/* Reg 1 has amount of memory currently used for display */
regs.r[0] = 2; /* Screen area */
regs.r[1] = (current->pitch * height * 2) - regs.r[1];
May 29, 2006
May 29, 2006
168
if (_kernel_swi(OS_ChangeDynamicArea, &regs, &regs) != NULL) {
May 28, 2006
May 28, 2006
169
170
171
172
173
174
175
176
177
178
/* Can't allocate enough screen memory for double buffer */
flags &= ~SDL_DOUBLEBUF;
}
}
current->flags = flags | SDL_FULLSCREEN | SDL_HWSURFACE | SDL_PREALLOC;
/* Need to set display banks here for double buffering */
if (flags & SDL_DOUBLEBUF) {
May 29, 2006
May 29, 2006
179
180
FULLSCREEN_SetWriteBank(0);
FULLSCREEN_SetDisplayBank(1);
May 28, 2006
May 28, 2006
181
182
183
184
create_back_buffer = 0; /* Don't need a back buffer for a double buffered display */
}
May 29, 2006
May 29, 2006
185
FULLSCREEN_SetupBanks(this);
May 28, 2006
May 28, 2006
186
187
188
if (create_back_buffer) {
/* If not double buffered we may need to create a memory
Feb 12, 2005
Feb 12, 2005
189
** back buffer to simulate processing on other OSes.
190
** This is turned on by setting the enviromental variable
Feb 12, 2005
Feb 12, 2005
191
192
** SDL$<name>$BackBuffer >= 1
*/
May 28, 2006
May 28, 2006
193
if (riscos_backbuffer == 3)
May 29, 2006
May 29, 2006
194
this->hidden->bank[0] = WIMP_CreateBuffer(width, height, bpp);
May 28, 2006
May 28, 2006
195
else
May 29, 2006
May 29, 2006
196
this->hidden->bank[0] = SDL_malloc(height * current->pitch);
May 28, 2006
May 28, 2006
197
if (this->hidden->bank[0] == 0) {
May 29, 2006
May 29, 2006
198
199
RISCOS_RestoreWimpMode();
SDL_SetError("Couldnt allocate memory for back buffer");
May 28, 2006
May 28, 2006
200
201
202
203
return (NULL);
}
/* Surface updated in programs is now a software surface */
current->flags &= ~SDL_HWSURFACE;
Feb 12, 2005
Feb 12, 2005
206
/* Store address of allocated screen bank to be freed later */
May 28, 2006
May 28, 2006
207
if (this->hidden->alloc_bank)
May 29, 2006
May 29, 2006
208
SDL_free(this->hidden->alloc_bank);
May 28, 2006
May 28, 2006
209
if (create_back_buffer) {
Feb 12, 2005
Feb 12, 2005
210
this->hidden->alloc_bank = this->hidden->bank[0];
May 28, 2006
May 28, 2006
211
212
213
214
if (riscos_backbuffer == 3) {
this->hidden->bank[0] += 60; /* Start of sprite data */
if (bpp == 8)
this->hidden->bank[0] += 2048; /* 8bpp sprite have palette first */
Feb 12, 2005
Feb 12, 2005
215
216
}
} else
May 28, 2006
May 28, 2006
217
this->hidden->alloc_bank = 0;
Feb 12, 2005
Feb 12, 2005
218
219
// Clear both banks to black
May 29, 2006
May 29, 2006
220
221
SDL_memset(this->hidden->bank[0], 0, height * current->pitch);
SDL_memset(this->hidden->bank[1], 0, height * current->pitch);
May 28, 2006
May 28, 2006
223
224
this->hidden->current_bank = 0;
current->pixels = this->hidden->bank[0];
Feb 12, 2005
Feb 12, 2005
226
227
228
/* Have to set the screen here, so SetDeviceMode will pick it up */
this->screen = current;
May 28, 2006
May 28, 2006
229
/* Reset device functions for the wimp */
May 29, 2006
May 29, 2006
230
FULLSCREEN_SetDeviceMode(this);
231
232
233
/* FULLSCREEN_DisableEscape(); */
May 28, 2006
May 28, 2006
234
235
/* We're done */
return (current);
236
237
238
}
/* Reset any device functions that have been changed because we have run in WIMP mode */
May 28, 2006
May 28, 2006
239
void
May 29, 2006
May 29, 2006
240
FULLSCREEN_SetDeviceMode(_THIS)
May 28, 2006
May 28, 2006
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
/* Update rects is different if we have a backbuffer */
if (riscos_backbuffer && (this->screen->flags & SDL_DOUBLEBUF) == 0) {
switch (riscos_backbuffer) {
case 2: /* ARM code full word copy */
switch (this->screen->format->BytesPerPixel) {
case 1: /* 8bpp modes */
this->UpdateRects = FULLSCREEN_UpdateRects8bpp;
break;
case 2: /* 15/16bpp modes */
this->UpdateRects = FULLSCREEN_UpdateRects16bpp;
break;
case 4: /* 32 bpp modes */
this->UpdateRects = FULLSCREEN_UpdateRects32bpp;
break;
default: /* Just default to the memcpy routine */
this->UpdateRects = FULLSCREEN_UpdateRectsMemCpy;
break;
}
break;
case 3: /* Use OS sprite plot routine */
this->UpdateRects = FULLSCREEN_UpdateRectsOS;
break;
default: /* Old but safe memcpy */
this->UpdateRects = FULLSCREEN_UpdateRectsMemCpy;
break;
}
} else
this->UpdateRects = FULLSCREEN_UpdateRects; /* Default do nothing implementation */
this->SetColors = FULLSCREEN_SetColors;
this->FlipHWSurface = FULLSCREEN_FlipHWSurface;
this->SetCaption = FULLSCREEN_SetWMCaption;
this->SetIcon = NULL;
this->IconifyWindow = NULL;
this->ShowWMCursor = RISCOS_ShowWMCursor;
this->WarpWMCursor = FULLSCREEN_WarpWMCursor;
this->PumpEvents = FULLSCREEN_PumpEvents;
287
288
289
}
/* Query for the list of available video modes */
May 28, 2006
May 28, 2006
290
void
May 29, 2006
May 29, 2006
291
FULLSCREEN_BuildModeList(_THIS)
May 28, 2006
May 28, 2006
293
294
295
296
297
298
299
300
301
302
303
304
_kernel_swi_regs regs;
char *enumInfo = NULL;
char *enum_ptr;
int *blockInfo;
int j;
int num_modes;
/* Find out how much space we need */
regs.r[0] = 2; /* Reason code */
regs.r[2] = 0; /* Number of modes to skip */
regs.r[6] = 0; /* pointer to block or 0 for count */
regs.r[7] = 0; /* Size of block in bytes */
May 29, 2006
May 29, 2006
305
_kernel_swi(OS_ScreenMode, &regs, &regs);
306
307
308
num_modes = -regs.r[2];
May 28, 2006
May 28, 2006
309
310
311
/* Video memory should be in r[5] */
this->info.video_mem = regs.r[5] / 1024;
May 29, 2006
May 29, 2006
312
enumInfo = (unsigned char *) SDL_malloc(-regs.r[7]);
May 28, 2006
May 28, 2006
313
if (enumInfo == NULL) {
May 29, 2006
May 29, 2006
314
SDL_OutOfMemory();
May 28, 2006
May 28, 2006
315
316
317
318
319
320
return;
}
/* Read mode information into block */
regs.r[2] = 0;
regs.r[6] = (int) enumInfo;
regs.r[7] = -regs.r[7];
May 29, 2006
May 29, 2006
321
_kernel_swi(OS_ScreenMode, &regs, &regs);
May 28, 2006
May 28, 2006
322
323
324
325
326
327
328
329
enum_ptr = enumInfo;
for (j = 0; j < num_modes; j++) {
blockInfo = (int *) enum_ptr;
if ((blockInfo[1] & 255) == 1) { /* We understand this format */
switch (blockInfo[4]) {
case 3: /* 8 bits per pixel */
May 29, 2006
May 29, 2006
330
FULLSCREEN_AddMode(this, 8, blockInfo[2], blockInfo[3]);
May 28, 2006
May 28, 2006
331
332
break;
case 4: /* 15 bits per pixel */
May 29, 2006
May 29, 2006
333
FULLSCREEN_AddMode(this, 15, blockInfo[2], blockInfo[3]);
May 28, 2006
May 28, 2006
334
335
break;
case 5: /* 32 bits per pixel */
May 29, 2006
May 29, 2006
336
FULLSCREEN_AddMode(this, 32, blockInfo[2], blockInfo[3]);
May 28, 2006
May 28, 2006
337
338
339
340
341
342
343
break;
}
}
enum_ptr += blockInfo[0];
}
May 29, 2006
May 29, 2006
344
SDL_free(enumInfo);
May 28, 2006
May 28, 2006
345
346
347
348
/* Sort the mode lists */
for (j = 0; j < NUM_MODELISTS; ++j) {
if (SDL_nummodes[j] > 0) {
May 29, 2006
May 29, 2006
349
350
SDL_qsort(SDL_modelist[j], SDL_nummodes[j],
sizeof *SDL_modelist[j], cmpmodes);
May 28, 2006
May 28, 2006
351
352
}
}
May 28, 2006
May 28, 2006
355
static int
May 29, 2006
May 29, 2006
356
FULLSCREEN_FlipHWSurface(_THIS, SDL_Surface * surface)
May 28, 2006
May 28, 2006
358
359
_kernel_swi_regs regs;
regs.r[0] = 19;
May 29, 2006
May 29, 2006
361
FULLSCREEN_SetDisplayBank(this->hidden->current_bank);
May 28, 2006
May 28, 2006
362
this->hidden->current_bank ^= 1;
May 29, 2006
May 29, 2006
363
FULLSCREEN_SetWriteBank(this->hidden->current_bank);
May 28, 2006
May 28, 2006
364
surface->pixels = this->hidden->bank[this->hidden->current_bank];
May 28, 2006
May 28, 2006
366
/* Wait for Vsync */
May 29, 2006
May 29, 2006
367
_kernel_swi(OS_Byte, &regs, &regs);
Dec 23, 2005
Dec 23, 2005
368
May 28, 2006
May 28, 2006
369
return (0);
Feb 12, 2005
Feb 12, 2005
372
/* Nothing to do if we are writing direct to hardware */
May 28, 2006
May 28, 2006
373
static void
May 29, 2006
May 29, 2006
374
FULLSCREEN_UpdateRects(_THIS, int numrects, SDL_Rect * rects)
Feb 12, 2005
Feb 12, 2005
376
377
378
}
/* Safe but slower Memory copy from our allocated back buffer */
May 28, 2006
May 28, 2006
379
static void
May 29, 2006
May 29, 2006
380
FULLSCREEN_UpdateRectsMemCpy(_THIS, int numrects, SDL_Rect * rects)
Feb 12, 2005
Feb 12, 2005
381
{
May 28, 2006
May 28, 2006
382
383
384
385
386
387
388
389
390
int j;
char *to, *from;
int pitch = this->screen->pitch;
int row;
int xmult = this->screen->format->BytesPerPixel;
for (j = 0; j < numrects; j++) {
from = this->hidden->bank[0] + rects->x * xmult + rects->y * pitch;
to = this->hidden->bank[1] + rects->x * xmult + rects->y * pitch;
for (row = 0; row < rects->h; row++) {
May 29, 2006
May 29, 2006
391
SDL_memcpy(to, from, rects->w * xmult);
May 28, 2006
May 28, 2006
392
393
394
395
396
from += pitch;
to += pitch;
}
rects++;
}
Feb 12, 2005
Feb 12, 2005
397
398
399
400
}
/* Use optimized assembler memory copy. Deliberately copies extra columns if
necessary to ensure the rectangle is word aligned. */
May 28, 2006
May 28, 2006
401
static void
May 29, 2006
May 29, 2006
402
FULLSCREEN_UpdateRects8bpp(_THIS, int numrects, SDL_Rect * rects)
Feb 12, 2005
Feb 12, 2005
403
{
May 28, 2006
May 28, 2006
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
int j;
char *to, *from;
int pitch = this->screen->pitch;
int width_bytes;
int src_skip_bytes;
for (j = 0; j < numrects; j++) {
from = this->hidden->bank[0] + rects->x + rects->y * pitch;
to = this->hidden->bank[1] + rects->x + rects->y * pitch;
width_bytes = rects->w;
if ((int) from & 3) {
int extra = ((int) from & 3);
from -= extra;
to -= extra;
width_bytes += extra;
}
if (width_bytes & 3)
width_bytes += 4 - (width_bytes & 3);
src_skip_bytes = pitch - width_bytes;
May 29, 2006
May 29, 2006
424
425
RISCOS_Put32(to, (width_bytes >> 2), pitch, (int) rects->h, from,
src_skip_bytes);
May 28, 2006
May 28, 2006
426
427
rects++;
}
Feb 12, 2005
Feb 12, 2005
428
429
430
431
}
/* Use optimized assembler memory copy. Deliberately copies extra columns if
necessary to ensure the rectangle is word aligned. */
May 28, 2006
May 28, 2006
432
static void
May 29, 2006
May 29, 2006
433
FULLSCREEN_UpdateRects16bpp(_THIS, int numrects, SDL_Rect * rects)
Feb 12, 2005
Feb 12, 2005
434
{
May 28, 2006
May 28, 2006
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
int j;
char *to, *from;
int pitch = this->screen->pitch;
int width_bytes;
int src_skip_bytes;
for (j = 0; j < numrects; j++) {
from = this->hidden->bank[0] + (rects->x << 1) + rects->y * pitch;
to = this->hidden->bank[1] + (rects->x << 1) + rects->y * pitch;
width_bytes = (((int) rects->w) << 1);
if ((int) from & 3) {
from -= 2;
to -= 2;
width_bytes += 2;
}
if (width_bytes & 3)
width_bytes += 2;
src_skip_bytes = pitch - width_bytes;
May 29, 2006
May 29, 2006
454
455
RISCOS_Put32(to, (width_bytes >> 2), pitch, (int) rects->h, from,
src_skip_bytes);
May 28, 2006
May 28, 2006
456
457
rects++;
}
Feb 12, 2005
Feb 12, 2005
458
459
460
}
/* Use optimized assembler memory copy. 32 bpp modes are always word aligned */
May 28, 2006
May 28, 2006
461
static void
May 29, 2006
May 29, 2006
462
FULLSCREEN_UpdateRects32bpp(_THIS, int numrects, SDL_Rect * rects)
Feb 12, 2005
Feb 12, 2005
463
{
May 28, 2006
May 28, 2006
464
465
466
467
468
469
470
471
472
473
int j;
char *to, *from;
int pitch = this->screen->pitch;
int width;
for (j = 0; j < numrects; j++) {
from = this->hidden->bank[0] + (rects->x << 2) + rects->y * pitch;
to = this->hidden->bank[1] + (rects->x << 2) + rects->y * pitch;
width = (int) rects->w;
May 29, 2006
May 29, 2006
474
475
RISCOS_Put32(to, width, pitch, (int) rects->h, from,
pitch - (width << 2));
May 28, 2006
May 28, 2006
476
477
rects++;
}
Feb 12, 2005
Feb 12, 2005
480
481
482
/* Use operating system sprite plots. Currently this is much slower than the
other variants however accelerated sprite plotting can be seen on the horizon
so this prepares for it. */
May 28, 2006
May 28, 2006
483
static void
May 29, 2006
May 29, 2006
484
FULLSCREEN_UpdateRectsOS(_THIS, int numrects, SDL_Rect * rects)
Feb 12, 2005
Feb 12, 2005
485
{
May 28, 2006
May 28, 2006
486
487
488
489
490
491
492
493
494
495
496
497
_kernel_swi_regs regs;
_kernel_oserror *err;
int j;
int y;
regs.r[0] = 28 + 512;
regs.r[1] = (unsigned int) this->hidden->alloc_bank;
regs.r[2] = (unsigned int) this->hidden->alloc_bank + 16;
regs.r[5] = 0;
for (j = 0; j < numrects; j++) {
y = this->screen->h - rects->y; /* top of clipping region */
May 29, 2006
May 29, 2006
498
499
500
501
502
503
504
505
506
507
_kernel_oswrch(24); /* Set graphics clip region */
_kernel_oswrch((rects->x << this->hidden->xeig) & 0xFF); /* left */
_kernel_oswrch(((rects->x << this->hidden->xeig) >> 8) & 0xFF);
_kernel_oswrch(((y - rects->h) << this->hidden->yeig) & 0xFF); /* bottom */
_kernel_oswrch((((y - rects->h) << this->hidden->yeig) >> 8) & 0xFF);
_kernel_oswrch(((rects->x + rects->w - 1) << this->hidden->xeig) & 0xFF); /* right */
_kernel_oswrch((((rects->x + rects->w -
1) << this->hidden->xeig) >> 8) & 0xFF);
_kernel_oswrch(((y - 1) << this->hidden->yeig) & 0xFF); /* top */
_kernel_oswrch((((y - 1) << this->hidden->yeig) >> 8) & 0xFF);
May 28, 2006
May 28, 2006
508
509
510
511
regs.r[3] = 0;
regs.r[4] = 0;
May 29, 2006
May 29, 2006
512
513
if ((err = _kernel_swi(OS_SpriteOp, &regs, &regs)) != 0) {
printf("OS_SpriteOp failed \n%s\n", err->errmess);
May 28, 2006
May 28, 2006
514
515
516
517
518
}
rects++;
/* Reset to full screen clipping */
May 29, 2006
May 29, 2006
519
520
521
522
523
524
525
526
527
528
529
_kernel_oswrch(24); /* Set graphics clip region */
_kernel_oswrch(0); /* left */
_kernel_oswrch(0);
_kernel_oswrch(0); /* bottom */
_kernel_oswrch(0);
_kernel_oswrch(((this->screen->w - 1) << this->hidden->xeig) & 0xFF); /* right */
_kernel_oswrch((((this->screen->w -
1) << this->hidden->xeig) >> 8) & 0xFF);
_kernel_oswrch(((this->screen->h - 1) << this->hidden->yeig) & 0xFF); /* top */
_kernel_oswrch((((this->screen->h -
1) << this->hidden->yeig) >> 8) & 0xFF);
May 28, 2006
May 28, 2006
530
}
Feb 12, 2005
Feb 12, 2005
531
532
533
}
May 28, 2006
May 28, 2006
534
int
May 29, 2006
May 29, 2006
535
FULLSCREEN_SetColors(_THIS, int firstcolor, int ncolors, SDL_Color * colors)
May 28, 2006
May 28, 2006
537
538
539
540
541
542
543
544
_kernel_swi_regs regs;
int palette[256];
regs.r[0] = -1;
regs.r[1] = -1;
regs.r[2] = (int) palette;
regs.r[3] = 1024;
regs.r[4] = 0;
May 29, 2006
May 29, 2006
545
_kernel_swi(ColourTrans_ReadPalette, &regs, &regs);
May 28, 2006
May 28, 2006
546
547
548
549
550
551
552
553
554
555
556
557
558
while (ncolors--) {
palette[firstcolor] =
((colors->b) << 24) | ((colors->g) << 16) | ((colors->r) << 8);
firstcolor++;
colors++;
}
regs.r[0] = -1;
regs.r[1] = -1;
regs.r[2] = (int) palette;
regs.r[3] = 0;
regs.r[4] = 0;
May 29, 2006
May 29, 2006
559
_kernel_swi(ColourTrans_WritePalette, &regs, &regs);
May 28, 2006
May 28, 2006
560
561
return (1);
May 28, 2006
May 28, 2006
565
static int
May 29, 2006
May 29, 2006
566
cmpmodes(const void *va, const void *vb)
May 28, 2006
May 28, 2006
568
569
570
SDL_Rect *a = *(SDL_Rect **) va;
SDL_Rect *b = *(SDL_Rect **) vb;
if (a->w == b->w)
Nov 12, 2004
Nov 12, 2004
571
572
573
return b->h - a->h;
else
return b->w - a->w;
May 28, 2006
May 28, 2006
576
static int
May 29, 2006
May 29, 2006
577
FULLSCREEN_AddMode(_THIS, int bpp, int w, int h)
May 28, 2006
May 28, 2006
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
SDL_Rect *mode;
int i, index;
int next_mode;
/* Check to see if we already have this mode */
if (bpp < 8) { /* Not supported */
return (0);
}
index = ((bpp + 7) / 8) - 1;
for (i = 0; i < SDL_nummodes[index]; ++i) {
mode = SDL_modelist[index][i];
if ((mode->w == w) && (mode->h == h)) {
return (0);
}
}
/* Set up the new video mode rectangle */
May 29, 2006
May 29, 2006
596
mode = (SDL_Rect *) SDL_malloc(sizeof *mode);
May 28, 2006
May 28, 2006
597
if (mode == NULL) {
May 29, 2006
May 29, 2006
598
SDL_OutOfMemory();
May 28, 2006
May 28, 2006
599
600
601
602
603
604
605
606
607
608
return (-1);
}
mode->x = 0;
mode->y = 0;
mode->w = w;
mode->h = h;
/* Allocate the new list of modes, and fill in the new mode */
next_mode = SDL_nummodes[index];
SDL_modelist[index] = (SDL_Rect **)
May 29, 2006
May 29, 2006
609
610
SDL_realloc(SDL_modelist[index],
(1 + next_mode + 1) * sizeof(SDL_Rect *));
May 28, 2006
May 28, 2006
611
if (SDL_modelist[index] == NULL) {
May 29, 2006
May 29, 2006
612
SDL_OutOfMemory();
May 28, 2006
May 28, 2006
613
SDL_nummodes[index] = 0;
May 29, 2006
May 29, 2006
614
SDL_free(mode);
May 28, 2006
May 28, 2006
615
616
617
618
619
620
621
return (-1);
}
SDL_modelist[index][next_mode] = mode;
SDL_modelist[index][next_mode + 1] = NULL;
SDL_nummodes[index]++;
return (0);
May 28, 2006
May 28, 2006
624
void
May 29, 2006
May 29, 2006
625
FULLSCREEN_SetWriteBank(int bank)
May 28, 2006
May 28, 2006
627
628
629
_kernel_swi_regs regs;
regs.r[0] = 112;
regs.r[1] = bank + 1;
May 29, 2006
May 29, 2006
630
_kernel_swi(OS_Byte, &regs, &regs);
May 28, 2006
May 28, 2006
633
void
May 29, 2006
May 29, 2006
634
FULLSCREEN_SetDisplayBank(int bank)
May 28, 2006
May 28, 2006
636
637
638
_kernel_swi_regs regs;
regs.r[0] = 113;
regs.r[1] = bank + 1;
May 29, 2006
May 29, 2006
639
_kernel_swi(OS_Byte, &regs, &regs);
640
641
642
643
}
/** Disable special escape key processing */
May 28, 2006
May 28, 2006
644
static void
May 29, 2006
May 29, 2006
645
FULLSCREEN_DisableEscape()
May 28, 2006
May 28, 2006
647
648
649
650
_kernel_swi_regs regs;
regs.r[0] = 229;
regs.r[1] = 1;
regs.r[2] = 0;
May 29, 2006
May 29, 2006
651
_kernel_swi(OS_Byte, &regs, &regs);
May 28, 2006
May 28, 2006
652
653
654
655
}
/** Enable special escape key processing */
May 28, 2006
May 28, 2006
656
static void
May 29, 2006
May 29, 2006
657
FULLSCREEN_EnableEscape()
May 28, 2006
May 28, 2006
659
660
661
662
_kernel_swi_regs regs;
regs.r[0] = 229;
regs.r[1] = 0;
regs.r[2] = 0;
May 29, 2006
May 29, 2006
663
_kernel_swi(OS_Byte, &regs, &regs);
May 28, 2006
May 28, 2006
664
665
666
667
}
/** Store caption in case this is called before we create a window */
May 28, 2006
May 28, 2006
668
void
May 29, 2006
May 29, 2006
669
FULLSCREEN_SetWMCaption(_THIS, const char *title, const char *icon)
May 29, 2006
May 29, 2006
671
672
SDL_strlcpy(this->hidden->title, title,
SDL_arraysize(this->hidden->title));
673
674
675
676
677
678
679
}
/* Set screen mode
*
* Returns 1 if mode is set ok, otherwise 0
*/
May 28, 2006
May 28, 2006
680
int
May 29, 2006
May 29, 2006
681
FULLSCREEN_SetMode(int width, int height, int bpp)
May 28, 2006
May 28, 2006
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
SCREENMODEBLOCK smb;
_kernel_swi_regs regs;
smb.flags = 1;
smb.x_pixels = width;
smb.y_pixels = height;
smb.mode_vars[0] = -1;
switch (bpp) {
case 8:
smb.pixel_depth = 3;
/* Note: Need to set ModeFlags to 128 and NColour variables to 255 get full 8 bit palette */
smb.mode_vars[0] = 0;
smb.mode_vars[1] = 128; /* Mode flags */
smb.mode_vars[2] = 3;
smb.mode_vars[3] = 255; /* NColour (number of colours -1) */
smb.mode_vars[4] = -1; /* End of list */
break;
case 15:
case 16:
smb.pixel_depth = 4;
break;
case 32:
smb.pixel_depth = 5;
break;
default:
May 29, 2006
May 29, 2006
712
SDL_SetError("Pixel depth not supported");
May 28, 2006
May 28, 2006
713
714
715
716
717
718
719
720
721
return 0;
break;
}
smb.frame_rate = -1;
regs.r[0] = 0;
regs.r[1] = (int) &smb;
May 29, 2006
May 29, 2006
722
723
if (_kernel_swi(OS_ScreenMode, &regs, &regs) != 0) {
SDL_SetError("Couldn't set requested mode");
May 28, 2006
May 28, 2006
724
725
726
727
return 0;
}
/* Turn cursor off */
May 29, 2006
May 29, 2006
728
729
730
731
732
733
734
735
736
737
738
_kernel_oswrch(23);
_kernel_oswrch(1);
_kernel_oswrch(0);
_kernel_oswrch(0);
_kernel_oswrch(0);
_kernel_oswrch(0);
_kernel_oswrch(0);
_kernel_oswrch(0);
_kernel_oswrch(0);
_kernel_oswrch(0);
_kernel_oswrch(0);
May 28, 2006
May 28, 2006
739
740
return 1;
741
742
743
}
/* Get Start addresses for the screen banks */
May 28, 2006
May 28, 2006
744
void
May 29, 2006
May 29, 2006
745
FULLSCREEN_SetupBanks(_THIS)
May 28, 2006
May 28, 2006
747
748
749
750
751
752
753
754
755
756
_kernel_swi_regs regs;
int block[5];
block[0] = 148; /* Write screen start */
block[1] = 149; /* Display screen start */
block[2] = 4; /* X eig factor */
block[3] = 5; /* Y eig factor */
block[4] = -1; /* End of list of variables to request */
regs.r[0] = (int) block;
regs.r[1] = (int) block;
May 29, 2006
May 29, 2006
757
_kernel_swi(OS_ReadVduVariables, &regs, &regs);
May 28, 2006
May 28, 2006
758
759
760
761
762
this->hidden->bank[0] = (void *) block[0];
this->hidden->bank[1] = (void *) block[1];
this->hidden->xeig = block[2];
this->hidden->yeig = block[3];
763
764
765
766
}
/* Toggle to full screen mode from the WIMP */
May 28, 2006
May 28, 2006
767
int
May 29, 2006
May 29, 2006
768
FULLSCREEN_ToggleFromWimp(_THIS)
May 28, 2006
May 28, 2006
770
771
772
int width = this->screen->w;
int height = this->screen->h;
int bpp = this->screen->format->BitsPerPixel;
May 29, 2006
May 29, 2006
774
775
RISCOS_StoreWimpMode();
if (FULLSCREEN_SetMode(width, height, bpp)) {
May 28, 2006
May 28, 2006
776
777
778
779
char *buffer = this->hidden->alloc_bank; /* This is start of sprite data */
/* Support back buffer mode only */
if (riscos_backbuffer == 0)
riscos_backbuffer = 1;
May 29, 2006
May 29, 2006
781
FULLSCREEN_SetupBanks(this);
May 28, 2006
May 28, 2006
783
784
785
this->hidden->bank[0] = buffer + 60; /* Start of sprite data */
if (bpp == 8)
this->hidden->bank[0] += 2048; /* 8bpp sprite have palette first */
May 28, 2006
May 28, 2006
787
788
this->hidden->current_bank = 0;
this->screen->pixels = this->hidden->bank[0];
May 28, 2006
May 28, 2006
790
/* Copy back buffer to screen memory */
May 29, 2006
May 29, 2006
791
792
SDL_memcpy(this->hidden->bank[1], this->hidden->bank[0],
width * height * this->screen->format->BytesPerPixel);
May 29, 2006
May 29, 2006
794
FULLSCREEN_SetDeviceMode(this);
May 28, 2006
May 28, 2006
795
796
return 1;
} else
May 29, 2006
May 29, 2006
797
RISCOS_RestoreWimpMode();
May 28, 2006
May 28, 2006
799
return 0;
May 28, 2006
May 28, 2006
801
802
/* vi: set ts=4 sw=4 expandtab: */