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

Latest commit

 

History

History
1378 lines (1132 loc) · 36.4 KB

SDL_gemvideo.c

File metadata and controls

1378 lines (1132 loc) · 36.4 KB
 
1
2
/*
SDL - Simple DirectMedia Layer
Feb 1, 2006
Feb 1, 2006
3
Copyright (C) 1997-2006 Sam Lantinga
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
9
10
11
12
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
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
19
20
21
Sam Lantinga
slouken@libsdl.org
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Nov 12, 2003
Nov 12, 2003
25
26
27
28
29
30
GEM video driver
Patrice Mandin
and work from
Olivier Landemarre, Johan Klockars, Xavier Joubert, Claude Attard
*/
31
32
33
34
35
/* Mint includes */
#include <gem.h>
#include <gemx.h>
#include <mint/osbind.h>
Dec 7, 2002
Dec 7, 2002
36
#include <mint/cookie.h>
Feb 10, 2006
Feb 10, 2006
38
#include "SDL_endian.h"
39
40
#include "SDL_video.h"
#include "SDL_mouse.h"
Feb 16, 2006
Feb 16, 2006
41
42
43
44
#include "../SDL_sysvideo.h"
#include "../SDL_pixels_c.h"
#include "../../events/SDL_events_c.h"
#include "../SDL_cursor_c.h"
Feb 21, 2006
Feb 21, 2006
46
47
48
49
#include "../ataricommon/SDL_ataric2p_s.h"
#include "../ataricommon/SDL_atarieddi_s.h"
#include "../ataricommon/SDL_atarimxalloc_c.h"
#include "../ataricommon/SDL_atarigl_c.h"
Nov 25, 2004
Nov 25, 2004
50
51
52
53
54
#include "SDL_gemvideo.h"
#include "SDL_gemevents_c.h"
#include "SDL_gemmouse_c.h"
#include "SDL_gemwm_c.h"
Feb 21, 2006
Feb 21, 2006
55
#include "../ataricommon/SDL_xbiosevents_c.h"
Feb 23, 2006
Feb 23, 2006
56
#include "../ataricommon/SDL_ataridevmouse_c.h"
57
58
59
/* Defines */
Nov 21, 2004
Nov 21, 2004
60
/*#define DEBUG_VIDEO_GEM 1*/
Nov 12, 2003
Nov 12, 2003
61
62
63
#define GEM_VID_DRIVER_NAME "gem"
Nov 14, 2003
Nov 14, 2003
64
65
66
67
68
#undef MIN
#define MIN(a,b) (((a)<(b)) ? (a) : (b))
#undef MAX
#define MAX(a,b) (((a)>(b)) ? (a) : (b))
69
70
71
/* Variables */
static unsigned char vdi_index[256] = {
Jul 10, 2006
Jul 10, 2006
72
73
0, 2, 3, 6, 4, 7, 5, 8,
9, 10, 11, 14, 12, 15, 13, 255
Jul 10, 2006
Jul 10, 2006
76
static const unsigned char empty_name[] = "";
77
78
/* Initialization/Query functions */
Jul 10, 2006
Jul 10, 2006
79
80
81
82
83
84
85
static int GEM_VideoInit(_THIS, SDL_PixelFormat * vformat);
static SDL_Rect **GEM_ListModes(_THIS, SDL_PixelFormat * format,
Uint32 flags);
static SDL_Surface *GEM_SetVideoMode(_THIS, SDL_Surface * current, int width,
int height, int bpp, Uint32 flags);
static int GEM_SetColors(_THIS, int firstcolor, int ncolors,
SDL_Color * colors);
86
87
88
static void GEM_VideoQuit(_THIS);
/* Hardware surface functions */
Jul 10, 2006
Jul 10, 2006
89
90
91
92
93
94
static int GEM_AllocHWSurface(_THIS, SDL_Surface * surface);
static int GEM_LockHWSurface(_THIS, SDL_Surface * surface);
static int GEM_FlipHWSurface(_THIS, SDL_Surface * surface);
static void GEM_UnlockHWSurface(_THIS, SDL_Surface * surface);
static void GEM_FreeHWSurface(_THIS, SDL_Surface * surface);
static void GEM_UpdateRects(_THIS, int numrects, SDL_Rect * rects);
95
96
97
98
99
100
#if 0
static int GEM_ToggleFullScreen(_THIS, int on);
#endif
/* Internal functions */
static void GEM_FreeBuffers(_THIS);
Mar 26, 2002
Mar 26, 2002
101
static void GEM_ClearScreen(_THIS);
Nov 12, 2003
Nov 12, 2003
102
static void GEM_ClearRect(_THIS, short *rect);
Jun 7, 2005
Jun 7, 2005
103
static void GEM_SetNewPalette(_THIS, Uint16 newpal[256][3]);
Mar 26, 2002
Mar 26, 2002
104
105
static void GEM_LockScreen(_THIS);
static void GEM_UnlockScreen(_THIS);
106
107
static void refresh_window(_THIS, int winhandle, short *rect);
Feb 16, 2006
Feb 16, 2006
108
#if SDL_VIDEO_OPENGL
Nov 21, 2004
Nov 21, 2004
109
110
111
112
/* OpenGL functions */
static void GEM_GL_SwapBuffers(_THIS);
#endif
113
114
/* GEM driver bootstrap functions */
Jul 10, 2006
Jul 10, 2006
115
116
static int
GEM_Available(void)
Jul 10, 2006
Jul 10, 2006
118
119
120
/* Test if AES available */
if (appl_init() == -1)
return 0;
Jul 10, 2006
Jul 10, 2006
122
123
appl_exit();
return 1;
Jul 10, 2006
Jul 10, 2006
126
127
static void
GEM_DeleteDevice(SDL_VideoDevice * device)
Jul 10, 2006
Jul 10, 2006
129
130
SDL_free(device->hidden);
SDL_free(device);
Jul 10, 2006
Jul 10, 2006
133
134
static SDL_VideoDevice *
GEM_CreateDevice(int devindex)
Jul 10, 2006
Jul 10, 2006
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
SDL_VideoDevice *device;
int vectors_mask;
unsigned long dummy;
/* Initialize all variables that we clean on shutdown */
device = (SDL_VideoDevice *) SDL_malloc(sizeof(SDL_VideoDevice));
if (device) {
SDL_memset(device, 0, (sizeof *device));
device->hidden = (struct SDL_PrivateVideoData *)
SDL_malloc((sizeof *device->hidden));
device->gl_data = (struct SDL_PrivateGLData *)
SDL_malloc((sizeof *device->gl_data));
}
if ((device == NULL) || (device->hidden == NULL)) {
SDL_OutOfMemory();
if (device) {
SDL_free(device);
}
return (0);
}
SDL_memset(device->hidden, 0, (sizeof *device->hidden));
SDL_memset(device->gl_data, 0, sizeof(*device->gl_data));
/* Set the function pointers */
device->VideoInit = GEM_VideoInit;
device->ListModes = GEM_ListModes;
device->SetVideoMode = GEM_SetVideoMode;
device->SetColors = GEM_SetColors;
device->UpdateRects = NULL /*GEM_UpdateRects */ ;
device->VideoQuit = GEM_VideoQuit;
device->AllocHWSurface = GEM_AllocHWSurface;
device->LockHWSurface = GEM_LockHWSurface;
device->UnlockHWSurface = GEM_UnlockHWSurface;
device->FlipHWSurface = GEM_FlipHWSurface;
device->FreeHWSurface = GEM_FreeHWSurface;
device->ToggleFullScreen = NULL /*GEM_ToggleFullScreen */ ;
/* Window manager */
device->SetCaption = GEM_SetCaption;
device->SetIcon = GEM_SetIcon;
device->IconifyWindow = GEM_IconifyWindow;
device->GrabInput = GEM_GrabInput;
/* Events */
device->InitOSKeymap = GEM_InitOSKeymap;
device->PumpEvents = GEM_PumpEvents;
/* Mouse */
device->FreeWMCursor = GEM_FreeWMCursor;
device->CreateWMCursor = GEM_CreateWMCursor;
device->ShowWMCursor = GEM_ShowWMCursor;
device->WarpWMCursor = NULL /*GEM_WarpWMCursor */ ;
device->CheckMouseMode = GEM_CheckMouseMode;
Feb 16, 2006
Feb 16, 2006
190
#if SDL_VIDEO_OPENGL
Jul 10, 2006
Jul 10, 2006
191
192
193
194
195
196
/* OpenGL functions */
device->GL_LoadLibrary = SDL_AtariGL_LoadLibrary;
device->GL_GetProcAddress = SDL_AtariGL_GetProcAddress;
device->GL_GetAttribute = SDL_AtariGL_GetAttribute;
device->GL_MakeCurrent = SDL_AtariGL_MakeCurrent;
device->GL_SwapBuffers = GEM_GL_SwapBuffers;
Nov 21, 2004
Nov 21, 2004
197
198
#endif
Jul 10, 2006
Jul 10, 2006
199
200
device->hidden->use_dev_mouse =
(SDL_AtariDevMouse_Open() != 0) ? SDL_TRUE : SDL_FALSE;
Feb 23, 2006
Feb 23, 2006
201
Jul 10, 2006
Jul 10, 2006
202
203
204
205
vectors_mask = ATARI_XBIOS_JOYSTICKEVENTS; /* XBIOS joystick events */
if (!(device->hidden->use_dev_mouse)) {
vectors_mask |= ATARI_XBIOS_MOUSEEVENTS; /* XBIOS mouse events */
}
Sep 12, 2006
Sep 12, 2006
206
/*if (Getcookie(C_MiNT, &dummy) == C_FOUND) {
Sep 24, 2006
Sep 24, 2006
207
208
vectors_mask = 0;
} */
Jan 6, 2006
Jan 6, 2006
209
Jul 10, 2006
Jul 10, 2006
210
SDL_AtariXbios_InstallVectors(vectors_mask);
Mar 10, 2002
Mar 10, 2002
211
Jul 10, 2006
Jul 10, 2006
212
device->free = GEM_DeleteDevice;
Jul 10, 2006
Jul 10, 2006
214
return device;
215
216
217
}
VideoBootStrap GEM_bootstrap = {
Jul 10, 2006
Jul 10, 2006
218
219
GEM_VID_DRIVER_NAME, "Atari GEM video driver",
GEM_Available, GEM_CreateDevice
220
221
};
Jul 10, 2006
Jul 10, 2006
222
223
static void
VDI_ReadExtInfo(_THIS, short *work_out)
Jul 10, 2006
Jul 10, 2006
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
unsigned long EdDI_version;
unsigned long cookie_EdDI;
Uint32 num_colours;
Uint16 clut_type, num_bits;
/* Read EdDI informations */
if (Getcookie(C_EdDI, &cookie_EdDI) == C_NOTFOUND) {
return;
}
EdDI_version = Atari_get_EdDI_version((void *) cookie_EdDI);
vq_scrninfo(VDI_handle, work_out);
VDI_format = work_out[0];
clut_type = work_out[1];
num_bits = work_out[2];
num_colours = *((Uint32 *) & work_out[3]);
/* With EdDI>=1.1, we can have screen pitch, address and format
* so we can directly write to screen without using vro_cpyfm
*/
if (EdDI_version >= EDDI_11) {
VDI_pitch = work_out[5];
VDI_screen = (void *) *((unsigned long *) &work_out[6]);
}
switch (clut_type) {
case VDI_CLUT_HARDWARE:
{
int i;
Uint16 *tmp_p;
tmp_p = (Uint16 *) & work_out[16];
for (i = 0; i < 256; i++) {
vdi_index[*tmp_p++] = i;
}
}
break;
case VDI_CLUT_SOFTWARE:
{
int component; /* red, green, blue, alpha, overlay */
int num_bit;
unsigned short *tmp_p;
/* We can build masks with info here */
tmp_p = (unsigned short *) &work_out[16];
for (component = 0; component < 5; component++) {
for (num_bit = 0; num_bit < 16; num_bit++) {
unsigned short valeur;
valeur = *tmp_p++;
if (valeur == 0xffff) {
continue;
}
switch (component) {
case 0:
VDI_redmask |= 1 << valeur;
break;
case 1:
VDI_greenmask |= 1 << valeur;
break;
case 2:
VDI_bluemask |= 1 << valeur;
break;
case 3:
VDI_alphamask |= 1 << valeur;
break;
}
}
}
}
/* Remove lower green bits for Intel endian screen */
if ((VDI_greenmask == ((7 << 13) | 3))
|| (VDI_greenmask == ((7 << 13) | 7))) {
VDI_greenmask &= ~(7 << 13);
}
break;
case VDI_CLUT_NONE:
break;
}
Jul 10, 2006
Jul 10, 2006
312
313
int
GEM_VideoInit(_THIS, SDL_PixelFormat * vformat)
Jul 10, 2006
Jul 10, 2006
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
int i, menubar_size;
short work_in[12], work_out[272], dummy;
/* Open AES (Application Environment Services) */
if (appl_init() == -1) {
fprintf(stderr, "Can not open AES\n");
return 1;
}
/* Read version and features */
GEM_version = aes_global[0];
if (GEM_version >= 0x0410) {
short ap_gout[4], errorcode;
GEM_wfeatures = 0;
errorcode =
appl_getinfo(AES_WINDOW, &ap_gout[0], &ap_gout[1], &ap_gout[2],
&ap_gout[3]);
if (errorcode == 0) {
GEM_wfeatures = ap_gout[0];
}
}
/* Ask VDI physical workstation handle opened by AES */
VDI_handle = graf_handle(&dummy, &dummy, &dummy, &dummy);
if (VDI_handle < 1) {
fprintf(stderr, "Wrong VDI handle %d returned by AES\n", VDI_handle);
return 1;
}
/* Open virtual VDI workstation */
work_in[0] = Getrez() + 2;
for (i = 1; i < 10; i++)
work_in[i] = 1;
work_in[10] = 2;
v_opnvwk(work_in, &VDI_handle, work_out);
if (VDI_handle == 0) {
fprintf(stderr, "Can not open VDI virtual workstation\n");
return 1;
}
/* Read fullscreen size */
VDI_w = work_out[0] + 1;
VDI_h = work_out[1] + 1;
/* Read desktop size and position */
if (!wind_get
(DESKTOP_HANDLE, WF_WORKXYWH, &GEM_desk_x, &GEM_desk_y, &GEM_desk_w,
&GEM_desk_h)) {
fprintf(stderr, "Can not read desktop properties\n");
return 1;
}
/* Read bit depth */
vq_extnd(VDI_handle, 1, work_out);
VDI_bpp = work_out[4];
VDI_oldnumcolors = 0;
switch (VDI_bpp) {
case 8:
VDI_pixelsize = 1;
break;
case 15:
case 16:
VDI_pixelsize = 2;
break;
case 24:
VDI_pixelsize = 3;
break;
case 32:
VDI_pixelsize = 4;
break;
default:
fprintf(stderr, "%d bits colour depth not supported\n", VDI_bpp);
return 1;
}
/* Setup hardware -> VDI palette mapping */
for (i = 16; i < 255; i++) {
vdi_index[i] = i;
}
vdi_index[255] = 1;
/* Save current palette */
if (VDI_bpp > 8) {
VDI_oldnumcolors = 1 << 8;
} else {
VDI_oldnumcolors = 1 << VDI_bpp;
}
for (i = 0; i < VDI_oldnumcolors; i++) {
short rgb[3];
vq_color(VDI_handle, i, 0, rgb);
VDI_oldpalette[i][0] = rgb[0];
VDI_oldpalette[i][1] = rgb[1];
VDI_oldpalette[i][2] = rgb[2];
}
VDI_setpalette = GEM_SetNewPalette;
SDL_memcpy(VDI_curpalette, VDI_oldpalette, sizeof(VDI_curpalette));
/* Setup screen info */
GEM_title_name = empty_name;
GEM_icon_name = empty_name;
GEM_handle = -1;
GEM_locked = SDL_FALSE;
GEM_win_fulled = SDL_FALSE;
GEM_fullscreen = SDL_FALSE;
GEM_lock_redraw = SDL_TRUE; /* Prevent redraw till buffers are setup */
VDI_screen = NULL;
VDI_pitch = VDI_w * VDI_pixelsize;
VDI_format = ((VDI_bpp <= 8) ? VDI_FORMAT_INTER : VDI_FORMAT_PACK);
VDI_redmask = VDI_greenmask = VDI_bluemask = VDI_alphamask = 0;
VDI_ReadExtInfo(this, work_out);
Feb 6, 2004
Feb 6, 2004
434
435
#ifdef DEBUG_VIDEO_GEM
Jul 10, 2006
Jul 10, 2006
436
437
438
439
440
printf("sdl:video:gem: screen: address=0x%08x, pitch=%d\n", VDI_screen,
VDI_pitch);
printf("sdl:video:gem: format=%d\n", VDI_format);
printf("sdl:video:gem: masks: 0x%08x, 0x%08x, 0x%08x, 0x%08x\n",
VDI_alphamask, VDI_redmask, VDI_greenmask, VDI_bluemask);
Feb 6, 2004
Feb 6, 2004
441
#endif
Jul 10, 2006
Jul 10, 2006
443
444
/* Setup destination mfdb */
VDI_dst_mfdb.fd_addr = NULL;
Jul 10, 2006
Jul 10, 2006
446
447
448
/* Determine the current screen size */
this->info.current_w = VDI_w;
this->info.current_h = VDI_h;
Jul 10, 2006
Jul 10, 2006
450
451
452
/* Determine the screen depth */
/* we change this during the SDL_SetVideoMode implementation... */
vformat->BitsPerPixel = VDI_bpp;
Jul 10, 2006
Jul 10, 2006
454
455
/* Set mouse cursor to arrow */
graf_mouse(ARROW, NULL);
Jul 10, 2006
Jul 10, 2006
457
458
/* Init chunky to planar routine */
SDL_Atari_C2pConvert = SDL_Atari_C2pConvert8;
Nov 12, 2003
Nov 12, 2003
459
Jul 10, 2006
Jul 10, 2006
460
461
462
463
/* Setup VDI fill functions */
vsf_color(VDI_handle, 0);
vsf_interior(VDI_handle, 1);
vsf_perimeter(VDI_handle, 0);
Nov 12, 2003
Nov 12, 2003
464
Jul 10, 2006
Jul 10, 2006
465
466
467
/* Menu bar save buffer */
menubar_size = GEM_desk_w * GEM_desk_y * VDI_pixelsize;
GEM_menubar = Atari_SysMalloc(menubar_size, MX_PREFTTRAM);
Jun 6, 2005
Jun 6, 2005
468
Jul 10, 2006
Jul 10, 2006
469
470
471
472
473
474
/* Fill video modes list */
SDL_modelist[0] = SDL_malloc(sizeof(SDL_Rect));
SDL_modelist[0]->x = 0;
SDL_modelist[0]->y = 0;
SDL_modelist[0]->w = VDI_w;
SDL_modelist[0]->h = VDI_h;
Jul 17, 2004
Jul 17, 2004
475
Jul 10, 2006
Jul 10, 2006
476
SDL_modelist[1] = NULL;
Jul 17, 2004
Jul 17, 2004
477
Feb 16, 2006
Feb 16, 2006
478
#if SDL_VIDEO_OPENGL
Jul 10, 2006
Jul 10, 2006
479
SDL_AtariGL_InitPointers(this);
Nov 12, 2003
Nov 12, 2003
480
#endif
May 26, 2007
May 26, 2007
482
483
this->info.wm_available = 1;
Jul 10, 2006
Jul 10, 2006
484
485
/* We're done! */
return (0);
Jul 10, 2006
Jul 10, 2006
488
489
SDL_Rect **
GEM_ListModes(_THIS, SDL_PixelFormat * format, Uint32 flags)
Jul 10, 2006
Jul 10, 2006
491
492
493
if (format->BitsPerPixel != VDI_bpp) {
return ((SDL_Rect **) NULL);
}
Jul 17, 2004
Jul 17, 2004
494
Jul 10, 2006
Jul 10, 2006
495
496
497
if (flags & SDL_FULLSCREEN) {
return (SDL_modelist);
}
Jul 17, 2004
Jul 17, 2004
498
Jul 10, 2006
Jul 10, 2006
499
return ((SDL_Rect **) - 1);
Jul 10, 2006
Jul 10, 2006
502
503
static void
GEM_FreeBuffers(_THIS)
Jul 10, 2006
Jul 10, 2006
505
506
507
508
509
510
511
512
513
514
/* Release buffer */
if (GEM_buffer2) {
Mfree(GEM_buffer2);
GEM_buffer2 = NULL;
}
if (GEM_buffer1) {
Mfree(GEM_buffer1);
GEM_buffer1 = NULL;
}
Jul 10, 2006
Jul 10, 2006
517
518
static void
GEM_ClearRect(_THIS, short *rect)
Mar 26, 2002
Mar 26, 2002
519
{
Jul 10, 2006
Jul 10, 2006
520
short oldrgb[3], rgb[3] = { 0, 0, 0 };
Mar 26, 2002
Mar 26, 2002
521
Jul 10, 2006
Jul 10, 2006
522
523
vq_color(VDI_handle, vdi_index[0], 0, oldrgb);
vs_color(VDI_handle, vdi_index[0], rgb);
Mar 26, 2002
Mar 26, 2002
524
Jul 10, 2006
Jul 10, 2006
525
526
527
528
vsf_color(VDI_handle, 0);
vsf_interior(VDI_handle, 1);
vsf_perimeter(VDI_handle, 0);
v_bar(VDI_handle, rect);
Mar 26, 2002
Mar 26, 2002
529
Jul 10, 2006
Jul 10, 2006
530
vs_color(VDI_handle, vdi_index[0], oldrgb);
Nov 12, 2003
Nov 12, 2003
531
532
}
Jul 10, 2006
Jul 10, 2006
533
534
static void
GEM_ClearScreen(_THIS)
Nov 12, 2003
Nov 12, 2003
535
{
Jul 10, 2006
Jul 10, 2006
536
short pxy[4];
Nov 12, 2003
Nov 12, 2003
537
Jul 10, 2006
Jul 10, 2006
538
v_hide_c(VDI_handle);
Nov 12, 2003
Nov 12, 2003
539
Jul 10, 2006
Jul 10, 2006
540
541
542
543
pxy[0] = pxy[1] = 0;
pxy[2] = VDI_w - 1;
pxy[3] = VDI_h - 1;
GEM_ClearRect(this, pxy);
Mar 26, 2002
Mar 26, 2002
544
Jul 10, 2006
Jul 10, 2006
545
v_show_c(VDI_handle, 1);
Mar 26, 2002
Mar 26, 2002
546
547
}
Jul 10, 2006
Jul 10, 2006
548
549
static void
GEM_SetNewPalette(_THIS, Uint16 newpal[256][3])
Jun 7, 2005
Jun 7, 2005
550
{
Jul 10, 2006
Jul 10, 2006
551
552
int i;
short rgb[3];
Jun 7, 2005
Jun 7, 2005
553
Jul 10, 2006
Jul 10, 2006
554
555
if (VDI_oldnumcolors == 0)
return;
Jun 7, 2005
Jun 7, 2005
556
Jul 10, 2006
Jul 10, 2006
557
558
559
560
for (i = 0; i < VDI_oldnumcolors; i++) {
rgb[0] = newpal[i][0];
rgb[1] = newpal[i][1];
rgb[2] = newpal[i][2];
Jun 7, 2005
Jun 7, 2005
561
Jul 10, 2006
Jul 10, 2006
562
563
vs_color(VDI_handle, i, rgb);
}
Jun 7, 2005
Jun 7, 2005
564
565
}
Jul 10, 2006
Jul 10, 2006
566
567
static void
GEM_LockScreen(_THIS)
Mar 26, 2002
Mar 26, 2002
568
{
Jul 10, 2006
Jul 10, 2006
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
if (!GEM_locked) {
/* Lock AES */
wind_update(BEG_UPDATE);
wind_update(BEG_MCTRL);
/* Reserve memory space, used to be sure of compatibility */
form_dial(FMD_START, 0, 0, 0, 0, 0, 0, VDI_w, VDI_h);
/* Save menu bar */
if (GEM_menubar) {
MFDB mfdb_src;
short blitcoords[8];
mfdb_src.fd_addr = GEM_menubar;
mfdb_src.fd_w = GEM_desk_w;
mfdb_src.fd_h = GEM_desk_y;
mfdb_src.fd_wdwidth = GEM_desk_w >> 4;
mfdb_src.fd_nplanes = VDI_bpp;
mfdb_src.fd_stand =
mfdb_src.fd_r1 = mfdb_src.fd_r2 = mfdb_src.fd_r3 = 0;
blitcoords[0] = blitcoords[4] = 0;
blitcoords[1] = blitcoords[5] = 0;
blitcoords[2] = blitcoords[6] = GEM_desk_w - 1;
blitcoords[3] = blitcoords[7] = GEM_desk_y - 1;
vro_cpyfm(VDI_handle, S_ONLY, blitcoords, &VDI_dst_mfdb,
&mfdb_src);
}
GEM_locked = SDL_TRUE;
}
Mar 26, 2002
Mar 26, 2002
600
601
}
Jul 10, 2006
Jul 10, 2006
602
603
static void
GEM_UnlockScreen(_THIS)
Mar 26, 2002
Mar 26, 2002
604
{
Jul 10, 2006
Jul 10, 2006
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
if (GEM_locked) {
/* Restore menu bar */
if (GEM_menubar) {
MFDB mfdb_src;
short blitcoords[8];
mfdb_src.fd_addr = GEM_menubar;
mfdb_src.fd_w = GEM_desk_w;
mfdb_src.fd_h = GEM_desk_y;
mfdb_src.fd_wdwidth = GEM_desk_w >> 4;
mfdb_src.fd_nplanes = VDI_bpp;
mfdb_src.fd_stand =
mfdb_src.fd_r1 = mfdb_src.fd_r2 = mfdb_src.fd_r3 = 0;
blitcoords[0] = blitcoords[4] = 0;
blitcoords[1] = blitcoords[5] = 0;
blitcoords[2] = blitcoords[6] = GEM_desk_w - 1;
blitcoords[3] = blitcoords[7] = GEM_desk_y - 1;
vro_cpyfm(VDI_handle, S_ONLY, blitcoords, &mfdb_src,
&VDI_dst_mfdb);
}
/* Restore screen memory, and send REDRAW to all apps */
form_dial(FMD_FINISH, 0, 0, 0, 0, 0, 0, VDI_w, VDI_h);
/* Unlock AES */
wind_update(END_MCTRL);
wind_update(END_UPDATE);
GEM_locked = SDL_FALSE;
}
Mar 26, 2002
Mar 26, 2002
636
637
}
Jul 10, 2006
Jul 10, 2006
638
639
640
SDL_Surface *
GEM_SetVideoMode(_THIS, SDL_Surface * current,
int width, int height, int bpp, Uint32 flags)
Jul 10, 2006
Jul 10, 2006
642
643
644
645
646
647
648
649
Uint32 modeflags, screensize;
SDL_bool use_shadow1, use_shadow2;
/* width must be multiple of 16, for vro_cpyfm() and c2p_convert() */
if ((width & 15) != 0) {
width = (width | 15) + 1;
}
May 27, 2007
May 27, 2007
650
651
652
/*--- Verify if asked mode can be used ---*/
if (VDI_bpp != bpp) {
SDL_SetError("%d bpp mode not supported", bpp);
Jun 14, 2007
Jun 14, 2007
653
return (NULL);
May 27, 2007
May 27, 2007
654
655
656
657
658
659
660
}
if (flags & SDL_FULLSCREEN) {
if ((VDI_w < width) || (VDI_h < height)) {
SDL_SetError("%dx%d mode is too large", width, height);
return (NULL);
}
Jul 10, 2006
Jul 10, 2006
661
662
663
664
665
666
667
668
669
670
671
}
/*--- Allocate the new pixel format for the screen ---*/
if (!SDL_ReallocFormat
(current, VDI_bpp, VDI_redmask, VDI_greenmask, VDI_bluemask,
VDI_alphamask)) {
SDL_SetError("Couldn't allocate new pixel format for requested mode");
return (NULL);
}
screensize = width * height * VDI_pixelsize;
Nov 12, 2003
Nov 12, 2003
672
Feb 6, 2004
Feb 6, 2004
673
#ifdef DEBUG_VIDEO_GEM
Jul 10, 2006
Jul 10, 2006
674
675
printf("sdl:video:gem: setvideomode(): %dx%dx%d = %d\n", width, height,
bpp, screensize);
Feb 6, 2004
Feb 6, 2004
676
677
#endif
Jul 10, 2006
Jul 10, 2006
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
/*--- Allocate shadow buffers if needed, and conversion operations ---*/
GEM_FreeBuffers(this);
GEM_bufops = 0;
use_shadow1 = use_shadow2 = SDL_FALSE;
if (VDI_screen && (flags & SDL_FULLSCREEN)) {
if (VDI_format == VDI_FORMAT_INTER) {
use_shadow1 = SDL_TRUE;
GEM_bufops = B2S_C2P_1TOS;
}
} else {
use_shadow1 = SDL_TRUE;
if (VDI_format == VDI_FORMAT_PACK) {
GEM_bufops = B2S_VROCPYFM_1TOS;
} else {
use_shadow2 = SDL_TRUE;
GEM_bufops = B2S_C2P_1TO2 | B2S_VROCPYFM_2TOS;
}
}
if (use_shadow1) {
GEM_buffer1 = Atari_SysMalloc(screensize, MX_PREFTTRAM);
if (GEM_buffer1 == NULL) {
SDL_SetError("Can not allocate %d KB for frame buffer",
screensize >> 10);
return NULL;
}
SDL_memset(GEM_buffer1, 0, screensize);
Nov 12, 2003
Nov 12, 2003
706
#ifdef DEBUG_VIDEO_GEM
Jul 10, 2006
Jul 10, 2006
707
printf("sdl:video:gem: setvideomode(): allocated buffer 1\n");
Nov 12, 2003
Nov 12, 2003
708
#endif
Jul 10, 2006
Jul 10, 2006
709
710
711
712
713
714
715
716
717
718
}
if (use_shadow2) {
GEM_buffer2 = Atari_SysMalloc(screensize, MX_PREFTTRAM);
if (GEM_buffer2 == NULL) {
SDL_SetError("Can not allocate %d KB for shadow buffer",
screensize >> 10);
return NULL;
}
SDL_memset(GEM_buffer2, 0, screensize);
Nov 12, 2003
Nov 12, 2003
719
#ifdef DEBUG_VIDEO_GEM
Jul 10, 2006
Jul 10, 2006
720
printf("sdl:video:gem: setvideomode(): allocated buffer 2\n");
Nov 12, 2003
Nov 12, 2003
721
#endif
Jul 10, 2006
Jul 10, 2006
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
}
/*--- Initialize screen ---*/
modeflags = SDL_PREALLOC;
if (VDI_bpp == 8) {
modeflags |= SDL_HWPALETTE;
}
if (flags & SDL_FULLSCREEN) {
GEM_LockScreen(this);
GEM_ClearScreen(this);
modeflags |= SDL_FULLSCREEN;
if (VDI_screen && (VDI_format == VDI_FORMAT_PACK) && !use_shadow1) {
modeflags |= SDL_HWSURFACE;
} else {
modeflags |= SDL_SWSURFACE;
}
GEM_fullscreen = SDL_TRUE;
} else {
int old_win_type;
short x2, y2, w2, h2;
GEM_UnlockScreen(this);
/* Set window gadgets */
old_win_type = GEM_win_type;
if (!(flags & SDL_NOFRAME)) {
GEM_win_type = NAME | MOVER | CLOSER | SMALLER;
if (flags & SDL_RESIZABLE) {
GEM_win_type |= FULLER | SIZER;
modeflags |= SDL_RESIZABLE;
}
} else {
GEM_win_type = 0;
modeflags |= SDL_NOFRAME;
}
modeflags |= SDL_SWSURFACE;
/* Recreate window ? only for different widget or non-created window */
if ((old_win_type != GEM_win_type) || (GEM_handle < 0)) {
/* Calculate window size */
if (!wind_calc
(WC_BORDER, GEM_win_type, 0, 0, width, height, &x2, &y2,
&w2, &h2)) {
GEM_FreeBuffers(this);
SDL_SetError("Can not calculate window attributes");
return NULL;
}
/* Center window */
May 27, 2007
May 27, 2007
775
776
x2 = (GEM_desk_w - w2) >> 1;
y2 = (GEM_desk_h - h2) >> 1;
Jun 14, 2007
Jun 14, 2007
777
if (x2 < 0) {
May 27, 2007
May 27, 2007
778
779
x2 = 0;
}
Jun 14, 2007
Jun 14, 2007
780
if (y2 < 0) {
May 27, 2007
May 27, 2007
781
782
783
784
y2 = 0;
}
x2 += GEM_desk_x;
y2 += GEM_desk_y;
Jul 10, 2006
Jul 10, 2006
785
786
787
788
789
790
791
792
793
794
795
796
797
798
/* Destroy existing window */
if (GEM_handle >= 0) {
wind_close(GEM_handle);
wind_delete(GEM_handle);
}
/* Create window */
GEM_handle = wind_create(GEM_win_type, x2, y2, w2, h2);
if (GEM_handle < 0) {
GEM_FreeBuffers(this);
SDL_SetError("Can not create window");
return NULL;
}
Nov 12, 2003
Nov 12, 2003
799
#ifdef DEBUG_VIDEO_GEM
Jul 10, 2006
Jul 10, 2006
800
printf("sdl:video:gem: handle=%d\n", GEM_handle);
Nov 12, 2003
Nov 12, 2003
801
802
#endif
Jul 10, 2006
Jul 10, 2006
803
804
805
806
807
808
809
810
811
812
/* Setup window name */
wind_set(GEM_handle, WF_NAME,
(short) (((unsigned long) GEM_title_name) >> 16),
(short) (((unsigned long) GEM_title_name) & 0xffff),
0, 0);
GEM_refresh_name = SDL_FALSE;
/* Open the window */
wind_open(GEM_handle, x2, y2, w2, h2);
} else {
May 26, 2007
May 26, 2007
813
/* Resize window to fit asked video mode */
Jun 14, 2007
Jun 14, 2007
814
815
816
817
818
wind_get(GEM_handle, WF_WORKXYWH, &x2, &y2, &w2, &h2);
if (wind_calc
(WC_BORDER, GEM_win_type, x2, y2, width, height, &x2, &y2,
&w2, &h2)) {
wind_set(GEM_handle, WF_CURRXYWH, x2, y2, w2, h2);
Jul 10, 2006
Jul 10, 2006
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
}
}
GEM_fullscreen = SDL_FALSE;
}
/* Set up the new mode framebuffer */
current->w = width;
current->h = height;
if (use_shadow1) {
current->pixels = GEM_buffer1;
current->pitch = width * VDI_pixelsize;
} else {
current->pixels = VDI_screen;
current->pitch = VDI_pitch;
}
Feb 16, 2006
Feb 16, 2006
836
#if SDL_VIDEO_OPENGL
Jul 10, 2006
Jul 10, 2006
837
838
839
840
841
842
843
844
845
if (flags & SDL_INTERNALOPENGL) {
if (!SDL_AtariGL_Init(this, current)) {
GEM_FreeBuffers(this);
SDL_SetError("Can not create OpenGL context");
return NULL;
}
modeflags |= SDL_INTERNALOPENGL;
}
Nov 21, 2004
Nov 21, 2004
846
847
#endif
Jul 10, 2006
Jul 10, 2006
848
current->flags = modeflags;
Nov 21, 2004
Nov 21, 2004
849
Feb 6, 2004
Feb 6, 2004
850
#ifdef DEBUG_VIDEO_GEM
Jul 10, 2006
Jul 10, 2006
851
printf("sdl:video:gem: surface: %dx%d\n", current->w, current->h);
Feb 6, 2004
Feb 6, 2004
852
853
#endif
Jul 10, 2006
Jul 10, 2006
854
855
this->UpdateRects = GEM_UpdateRects;
GEM_lock_redraw = SDL_FALSE; /* Enable redraw */
Jul 10, 2006
Jul 10, 2006
857
858
/* We're done */
return (current);
Jul 10, 2006
Jul 10, 2006
861
862
static int
GEM_AllocHWSurface(_THIS, SDL_Surface * surface)
Jul 10, 2006
Jul 10, 2006
864
return -1;
Feb 6, 2004
Feb 6, 2004
866
Jul 10, 2006
Jul 10, 2006
867
868
static void
GEM_FreeHWSurface(_THIS, SDL_Surface * surface)
Jul 10, 2006
Jul 10, 2006
870
return;
Jul 10, 2006
Jul 10, 2006
873
874
static int
GEM_LockHWSurface(_THIS, SDL_Surface * surface)
Jul 10, 2006
Jul 10, 2006
876
return (0);
Jul 10, 2006
Jul 10, 2006
879
880
static void
GEM_UnlockHWSurface(_THIS, SDL_Surface * surface)
Jul 10, 2006
Jul 10, 2006
882
return;
Jul 10, 2006
Jul 10, 2006
885
886
static void
GEM_UpdateRectsFullscreen(_THIS, int numrects, SDL_Rect * rects)
Jul 10, 2006
Jul 10, 2006
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
SDL_Surface *surface;
int i, surf_width;
surface = this->screen;
/* Need to be a multiple of 16 pixels */
surf_width = surface->w;
if ((surf_width & 15) != 0) {
surf_width = (surf_width | 15) + 1;
}
if (GEM_bufops & (B2S_C2P_1TO2 | B2S_C2P_1TOS)) {
void *destscr;
int destpitch;
if (GEM_bufops & B2S_C2P_1TOS) {
destscr = VDI_screen;
destpitch = VDI_pitch;
} else {
destscr = GEM_buffer2;
destpitch = surface->pitch;
}
for (i = 0; i < numrects; i++) {
void *source, *destination;
int x1, x2;
x1 = rects[i].x & ~15;
x2 = rects[i].x + rects[i].w;
if (x2 & 15) {
x2 = (x2 | 15) + 1;
}
source = surface->pixels;
source += surface->pitch * rects[i].y;
source += x1;
destination = destscr;
destination += destpitch * rects[i].y;
destination += x1;
SDL_Atari_C2pConvert(source, destination,
x2 - x1, rects[i].h,
SDL_FALSE, surface->pitch, destpitch);
}
}
if (GEM_bufops & (B2S_VROCPYFM_1TOS | B2S_VROCPYFM_2TOS)) {
MFDB mfdb_src;
short blitcoords[8];
mfdb_src.fd_addr = surface->pixels;
mfdb_src.fd_w = surf_width;
mfdb_src.fd_h = surface->h;
mfdb_src.fd_wdwidth = (surface->pitch / VDI_pixelsize) >> 4;
mfdb_src.fd_nplanes = surface->format->BitsPerPixel;
mfdb_src.fd_stand =
mfdb_src.fd_r1 = mfdb_src.fd_r2 = mfdb_src.fd_r3 = 0;
if (GEM_bufops & B2S_VROCPYFM_2TOS) {
mfdb_src.fd_addr = GEM_buffer2;
}
for (i = 0; i < numrects; ++i) {
blitcoords[0] = blitcoords[4] = rects[i].x;
blitcoords[1] = blitcoords[5] = rects[i].y;
blitcoords[2] = blitcoords[6] = rects[i].x + rects[i].w - 1;
blitcoords[3] = blitcoords[7] = rects[i].y + rects[i].h - 1;
vro_cpyfm(VDI_handle, S_ONLY, blitcoords, &mfdb_src,
&VDI_dst_mfdb);
}
}
Jul 10, 2006
Jul 10, 2006
961
962
static void
GEM_UpdateRectsWindowed(_THIS, int numrects, SDL_Rect * rects)
Jul 10, 2006
Jul 10, 2006
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
short pxy[4], wind_pxy[4];
int i;
if (wind_get
(GEM_handle, WF_WORKXYWH, &wind_pxy[0], &wind_pxy[1], &wind_pxy[2],
&wind_pxy[3]) == 0) {
return;
}
for (i = 0; i < numrects; ++i) {
pxy[0] = wind_pxy[0] + rects[i].x;
pxy[1] = wind_pxy[1] + rects[i].y;
pxy[2] = rects[i].w;
pxy[3] = rects[i].h;
GEM_wind_redraw(this, GEM_handle, pxy);
}
Jul 10, 2006
Jul 10, 2006
983
984
static void
GEM_UpdateRects(_THIS, int numrects, SDL_Rect * rects)
Jul 10, 2006
Jul 10, 2006
986
SDL_Surface *surface;
Jul 10, 2006
Jul 10, 2006
988
989
990
if (GEM_lock_redraw) {
return;
}
Nov 6, 2004
Nov 6, 2004
991
Jul 10, 2006
Jul 10, 2006
992
surface = this->screen;
Jul 10, 2006
Jul 10, 2006
994
995
996
997
998
if (surface->flags & SDL_FULLSCREEN) {
GEM_UpdateRectsFullscreen(this, numrects, rects);
} else {
GEM_UpdateRectsWindowed(this, numrects, rects);
}
999
1000
}