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

Latest commit

 

History

History
1375 lines (1163 loc) · 33.5 KB

SDL_cgxvideo.c

File metadata and controls

1375 lines (1163 loc) · 33.5 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Feb 1, 2006
Feb 1, 2006
3
Copyright (C) 1997-2006 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
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
Apr 26, 2001
Apr 26, 2001
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.
Apr 26, 2001
Apr 26, 2001
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.
Apr 26, 2001
Apr 26, 2001
14
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
Apr 26, 2001
Apr 26, 2001
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
23
Dec 16, 2001
Dec 16, 2001
24
25
26
27
/*
* CGX based SDL video driver implementation by Gabriele Greco
* gabriele.greco@aruba.it
*/
Apr 26, 2001
Apr 26, 2001
28
Feb 10, 2006
Feb 10, 2006
29
#include "SDL_endian.h"
Apr 26, 2001
Apr 26, 2001
30
31
32
33
#include "SDL_timer.h"
#include "SDL_thread.h"
#include "SDL_video.h"
#include "SDL_mouse.h"
Feb 16, 2006
Feb 16, 2006
34
35
36
#include "../SDL_sysvideo.h"
#include "../SDL_pixels_c.h"
#include "../../events/SDL_events_c.h"
Dec 16, 2001
Dec 16, 2001
37
#include "SDL_cgxgl_c.h"
Apr 26, 2001
Apr 26, 2001
38
39
40
41
42
43
44
45
46
47
48
49
#include "SDL_cgxvideo.h"
#include "SDL_cgxwm_c.h"
#include "SDL_amigamouse_c.h"
#include "SDL_amigaevents_c.h"
#include "SDL_cgxmodes_c.h"
#include "SDL_cgximage_c.h"
/* Initialization/Query functions */
static int CGX_VideoInit(_THIS, SDL_PixelFormat *vformat);
static SDL_Surface *CGX_SetVideoMode(_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags);
static int CGX_ToggleFullScreen(_THIS, int on);
static void CGX_UpdateMouse(_THIS);
May 10, 2001
May 10, 2001
50
static int CGX_SetColors(_THIS, int firstcolor, int ncolors, SDL_Color *colors);
Apr 26, 2001
Apr 26, 2001
51
52
53
54
55
56
57
58
static void CGX_VideoQuit(_THIS);
/* CGX driver bootstrap functions */
struct Library *CyberGfxBase=NULL;
struct IntuitionBase *IntuitionBase=NULL;
struct GfxBase *GfxBase=NULL;
Dec 16, 2001
Dec 16, 2001
59
60
61
62
63
64
65
66
67
68
69
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
102
103
104
int CGX_SetGamma(_THIS, float red, float green, float blue)
{
SDL_SetError("Gamma correction not supported");
return -1;
}
int CGX_GetGamma(_THIS, float red, float green, float blue)
{
SDL_SetError("Gamma correction not supported");
return -1;
}
int CGX_SetGammaRamp(_THIS, Uint16 *ramp)
{
#if 0
Int i, ncolors;
XColor xcmap[256];
/* See if actually setting the gamma is supported */
if ( SDL_Visual->class != DirectColor ) {
SDL_SetError("Gamma correction not supported on this visual");
return(-1);
}
/* Calculate the appropriate palette for the given gamma ramp */
ncolors = SDL_Visual->map_entries;
for ( i=0; i<ncolors; ++i ) {
Uint8 c = (256 * i / ncolors);
xcmap[i].pixel = SDL_MapRGB(this->screen->format, c, c, c);
xcmap[i].red = ramp[0*256+c];
xcmap[i].green = ramp[1*256+c];
xcmap[i].blue = ramp[2*256+c];
xcmap[i].flags = (DoRed|DoGreen|DoBlue);
}
XStoreColors(GFX_Display, SDL_XColorMap, xcmap, ncolors);
XSync(GFX_Display, False);
return(0);
#else
SDL_SetError("Gamma correction not supported on this visual");
return(-1);
#endif
}
Apr 26, 2001
Apr 26, 2001
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
130
static void DestroyScreen(_THIS)
{
if(currently_fullscreen)
{
if(this->hidden->dbuffer)
{
extern struct MsgPort *safeport,*dispport;
this->hidden->dbuffer=0;
if(safeport)
{
while(GetMsg(safeport)!=NULL);
DeleteMsgPort(safeport);
}
if(dispport)
{
while(GetMsg(dispport)!=NULL);
DeleteMsgPort(dispport);
}
this->hidden->SB[0]->sb_DBufInfo->dbi_SafeMessage.mn_ReplyPort=this->hidden->SB[0]->sb_DBufInfo->dbi_DispMessage.mn_ReplyPort=NULL;
this->hidden->SB[1]->sb_DBufInfo->dbi_SafeMessage.mn_ReplyPort=this->hidden->SB[1]->sb_DBufInfo->dbi_DispMessage.mn_ReplyPort=NULL;
if(this->hidden->SB[1])
FreeScreenBuffer(SDL_Display,this->hidden->SB[1]);
Dec 16, 2001
Dec 16, 2001
131
132
if(this->hidden->SB[0])
FreeScreenBuffer(SDL_Display,this->hidden->SB[0]);
Apr 26, 2001
Apr 26, 2001
133
134
135
this->hidden->SB[0]=this->hidden->SB[1]=NULL;
Dec 16, 2001
Dec 16, 2001
136
137
if(SDL_RastPort && SDL_RastPort != &SDL_Display->RastPort)
Feb 7, 2006
Feb 7, 2006
138
SDL_free(SDL_RastPort);
Dec 16, 2001
Dec 16, 2001
139
Apr 26, 2001
Apr 26, 2001
140
141
142
SDL_RastPort=NULL;
}
CloseScreen(GFX_Display);
May 10, 2001
May 10, 2001
143
currently_fullscreen=0;
Apr 26, 2001
Apr 26, 2001
144
}
Dec 16, 2001
Dec 16, 2001
145
else if(GFX_Display)
Apr 26, 2001
Apr 26, 2001
146
147
148
149
150
151
152
153
154
UnlockPubScreen(NULL,GFX_Display);
GFX_Display = NULL;
}
static int CGX_Available(void)
{
struct Library *l;
Dec 16, 2001
Dec 16, 2001
155
l = OpenLibrary("cybergraphics.library",0L);
Apr 26, 2001
Apr 26, 2001
156
157
if ( l != NULL ) {
Dec 16, 2001
Dec 16, 2001
158
D(bug("CGX video device AVAILABLE\n"));
Apr 26, 2001
Apr 26, 2001
159
160
CloseLibrary(l);
}
Dec 16, 2001
Dec 16, 2001
161
162
D(else bug("**CGX video device UNAVAILABLE\n"));
Apr 26, 2001
Apr 26, 2001
163
164
165
166
167
168
169
return(l != NULL);
}
static void CGX_DeleteDevice(SDL_VideoDevice *device)
{
if ( device ) {
if ( device->hidden ) {
Feb 7, 2006
Feb 7, 2006
170
SDL_free(device->hidden);
Apr 26, 2001
Apr 26, 2001
171
172
}
if ( device->gl_data ) {
Feb 7, 2006
Feb 7, 2006
173
SDL_free(device->gl_data);
Apr 26, 2001
Apr 26, 2001
174
}
Feb 7, 2006
Feb 7, 2006
175
SDL_free(device);
Apr 26, 2001
Apr 26, 2001
176
177
178
179
180
181
182
183
}
}
static SDL_VideoDevice *CGX_CreateDevice(int devindex)
{
SDL_VideoDevice *device;
/* Initialize all variables that we clean on shutdown */
Feb 7, 2006
Feb 7, 2006
184
device = (SDL_VideoDevice *)SDL_malloc(sizeof(SDL_VideoDevice));
Apr 26, 2001
Apr 26, 2001
185
if ( device ) {
Feb 7, 2006
Feb 7, 2006
186
SDL_memset(device, 0, (sizeof *device));
Apr 26, 2001
Apr 26, 2001
187
device->hidden = (struct SDL_PrivateVideoData *)
Feb 7, 2006
Feb 7, 2006
188
SDL_malloc((sizeof *device->hidden));
Apr 26, 2001
Apr 26, 2001
189
device->gl_data = (struct SDL_PrivateGLData *)
Feb 7, 2006
Feb 7, 2006
190
SDL_malloc((sizeof *device->gl_data));
Apr 26, 2001
Apr 26, 2001
191
192
193
}
if ( (device == NULL) || (device->hidden == NULL) ||
(device->gl_data == NULL) ) {
Dec 16, 2001
Dec 16, 2001
194
D(bug("Unable to create video device!\n"));
Apr 26, 2001
Apr 26, 2001
195
196
197
198
SDL_OutOfMemory();
CGX_DeleteDevice(device);
return(0);
}
Feb 7, 2006
Feb 7, 2006
199
200
SDL_memset(device->hidden, 0, sizeof(*device->hidden));
SDL_memset(device->gl_data, 0, sizeof(*device->gl_data));
Apr 26, 2001
Apr 26, 2001
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
/* Set the driver flags */
device->handles_any_size = 1;
/* Set the function pointers */
device->VideoInit = CGX_VideoInit;
device->ListModes = CGX_ListModes;
device->SetVideoMode = CGX_SetVideoMode;
device->ToggleFullScreen = CGX_ToggleFullScreen;
device->UpdateMouse = CGX_UpdateMouse;
device->SetColors = CGX_SetColors;
device->UpdateRects = NULL;
device->VideoQuit = CGX_VideoQuit;
device->AllocHWSurface = CGX_AllocHWSurface;
device->CheckHWBlit = CGX_CheckHWBlit;
device->FillHWRect = CGX_FillHWRect;
device->SetHWColorKey = CGX_SetHWColorKey;
device->SetHWAlpha = NULL;
device->LockHWSurface = CGX_LockHWSurface;
device->UnlockHWSurface = CGX_UnlockHWSurface;
device->FlipHWSurface = CGX_FlipHWSurface;
device->FreeHWSurface = CGX_FreeHWSurface;
Dec 16, 2001
Dec 16, 2001
223
224
225
226
device->SetGamma = CGX_SetGamma;
device->GetGamma = CGX_GetGamma;
device->SetGammaRamp = CGX_SetGammaRamp;
device->GetGammaRamp = NULL;
Feb 16, 2006
Feb 16, 2006
227
#if SDL_VIDEO_OPENGL
Dec 16, 2001
Dec 16, 2001
228
229
230
231
232
device->GL_LoadLibrary = CGX_GL_LoadLibrary;
device->GL_GetProcAddress = CGX_GL_GetProcAddress;
device->GL_GetAttribute = CGX_GL_GetAttribute;
device->GL_MakeCurrent = CGX_GL_MakeCurrent;
device->GL_SwapBuffers = CGX_GL_SwapBuffers;
Apr 26, 2001
Apr 26, 2001
233
234
#endif
device->SetIcon = CGX_SetIcon;
May 10, 2001
May 10, 2001
235
device->SetCaption = CGX_SetCaption;
Apr 26, 2001
Apr 26, 2001
236
device->IconifyWindow = NULL; /* CGX_IconifyWindow; */
Dec 16, 2001
Dec 16, 2001
237
device->GrabInput = NULL /* CGX_GrabInput*/;
Apr 26, 2001
Apr 26, 2001
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
device->GetWMInfo = CGX_GetWMInfo;
device->FreeWMCursor = amiga_FreeWMCursor;
device->CreateWMCursor = amiga_CreateWMCursor;
device->ShowWMCursor = amiga_ShowWMCursor;
device->WarpWMCursor = amiga_WarpWMCursor;
device->CheckMouseMode = amiga_CheckMouseMode;
device->InitOSKeymap = amiga_InitOSKeymap;
device->PumpEvents = amiga_PumpEvents;
device->free = CGX_DeleteDevice;
return device;
}
VideoBootStrap CGX_bootstrap = {
May 10, 2001
May 10, 2001
253
"CGX", "AmigaOS CyberGraphics", CGX_Available, CGX_CreateDevice
Apr 26, 2001
Apr 26, 2001
254
255
256
257
258
259
260
261
};
Uint32 MakeBitMask(_THIS,int type,int format,int *bpp)
{
D(if(type==0)bug("REAL pixel format: "));
if(this->hidden->depth==*bpp)
{
Dec 16, 2001
Dec 16, 2001
262
Apr 26, 2001
Apr 26, 2001
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
310
311
312
313
314
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
switch(format)
{
case PIXFMT_LUT8:
D(if(type==0)bug("LUT8\n"));
return 0;
case PIXFMT_BGR15:
case PIXFMT_RGB15PC:
switch(type)
{
case 0:
D(bug("RGB15PC/BGR15\n"));
return 31;
case 1:
return 992;
case 2:
return 31744;
}
case PIXFMT_RGB15:
case PIXFMT_BGR15PC:
switch(type)
{
case 0:
D(bug("RGB15/BGR15PC\n"));
return 31744;
case 1:
return 992;
case 2:
return 31;
}
case PIXFMT_BGR16PC:
case PIXFMT_RGB16:
switch(type)
{
case 0:
D(bug("RGB16PC\n"));
return 63488;
case 1:
return 2016;
case 2:
return 31;
}
case PIXFMT_BGR16:
case PIXFMT_RGB16PC:
switch(type)
{
case 0:
D(bug("RGB16PC/BGR16\n"));
return 31;
case 1:
return 2016;
case 2:
return 63488;
}
case PIXFMT_RGB24:
switch(type)
{
case 0:
D(bug("RGB24/BGR24\n"));
return 0xff0000;
case 1:
return 0xff00;
case 2:
return 0xff;
}
case PIXFMT_BGR24:
switch(type)
{
case 0:
D(bug("BGR24\n"));
return 0xff;
case 1:
return 0xff00;
case 2:
return 0xff0000;
}
case PIXFMT_ARGB32:
switch(type)
{
case 0:
D(bug("ARGB32\n"));
return 0xff0000;
case 1:
return 0xff00;
case 2:
return 0xff;
}
case PIXFMT_BGRA32:
switch(type)
{
case 0:
D(bug("BGRA32\n"));
return 0xff00;
case 1:
return 0xff0000;
case 2:
return 0xff000000;
}
case PIXFMT_RGBA32:
switch(type)
{
case 0:
D(bug("RGBA32\n"));
return 0xff000000;
case 1:
return 0xff0000;
case 2:
return 0xff00;
}
default:
D(bug("Unknown pixel format! Default to 24bit\n"));
return (Uint32) (255<<(type*8));
}
}
else
{
D(if(type==0)bug("DIFFERENT from screen.\nAllocated screen format: "));
Dec 16, 2001
Dec 16, 2001
380
Apr 26, 2001
Apr 26, 2001
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
switch(*bpp)
{
case 32:
D(if(type==0) bug("RGBA32\n"));
switch(type)
{
case 0:
return 0xff000000;
case 1:
return 0xff0000;
case 2:
return 0xff00;
}
break;
case 24:
use_truecolor:
switch(type)
{
case 0:
D(bug("RGB24\n"));
return 0xff0000;
case 1:
return 0xff00;
case 2:
return 0xff;
}
case 16:
case 15:
D(if(type==0) bug("Not supported, switching to 24bit!\n"));
*bpp=24;
goto use_truecolor;
Dec 16, 2001
Dec 16, 2001
412
break;
Apr 26, 2001
Apr 26, 2001
413
414
415
416
417
default:
D(if(type==0)bug("This is a chunky display\n"));
// For chunky display mask is always 0;
return 0;
}
Dec 16, 2001
Dec 16, 2001
418
}
Apr 26, 2001
Apr 26, 2001
419
420
421
422
423
424
return 0;
}
static int CGX_VideoInit(_THIS, SDL_PixelFormat *vformat)
{
int i;
Dec 16, 2001
Dec 16, 2001
425
struct Library *RTGBase;
Apr 26, 2001
Apr 26, 2001
426
Dec 16, 2001
Dec 16, 2001
427
428
429
430
431
432
433
D(bug("VideoInit... Opening libraries\n"));
if(!IntuitionBase) {
if( !(IntuitionBase=(struct IntuitionBase *)OpenLibrary("intuition.library",39L))) {
SDL_SetError("Couldn't open intuition V39+");
return -1;
}
Apr 26, 2001
Apr 26, 2001
434
}
Dec 16, 2001
Dec 16, 2001
435
436
437
438
439
440
if(!GfxBase) {
if( !(GfxBase=(struct GfxBase *)OpenLibrary("graphics.library",39L))) {
SDL_SetError("Couldn't open graphics V39+");
return -1;
}
Apr 26, 2001
Apr 26, 2001
441
}
Dec 16, 2001
Dec 16, 2001
442
443
444
445
446
447
448
449
450
451
452
453
454
if(!CyberGfxBase) {
if( !(CyberGfxBase=OpenLibrary("cybergraphics.library",40L))) {
SDL_SetError("Couldn't open cybergraphics.");
return(-1);
}
}
if(RTGBase=OpenLibrary("libs:picasso96/rtg.library",0L)) {
extern int use_picasso96;
CloseLibrary(RTGBase);
use_picasso96=1;
Apr 26, 2001
Apr 26, 2001
455
456
}
Dec 16, 2001
Dec 16, 2001
457
458
D(bug("Library intialized, locking screen...\n"));
Apr 26, 2001
Apr 26, 2001
459
460
461
SDL_Display = LockPubScreen(NULL);
if ( SDL_Display == NULL ) {
Dec 16, 2001
Dec 16, 2001
462
D(bug("Cannot lock display...\n"));
Apr 26, 2001
Apr 26, 2001
463
464
465
SDL_SetError("Couldn't lock the display");
return(-1);
}
Mar 15, 2006
Mar 15, 2006
466
467
this->info.current_w = SDL_Display->Width;
this->info.current_h = SDL_Display->Height;
Apr 26, 2001
Apr 26, 2001
468
Dec 16, 2001
Dec 16, 2001
469
470
D(bug("Checking if we are using a CGX native display...\n"));
Apr 26, 2001
Apr 26, 2001
471
472
473
474
475
476
477
if(!IsCyberModeID(GetVPModeID(&SDL_Display->ViewPort)))
{
Uint32 okid=BestCModeIDTags(CYBRBIDTG_NominalWidth,SDL_Display->Width,
CYBRBIDTG_NominalHeight,SDL_Display->Height,
CYBRBIDTG_Depth,8,
TAG_DONE);
Dec 16, 2001
Dec 16, 2001
478
479
D(bug("Default visual is not CGX native!\n"));
Apr 26, 2001
Apr 26, 2001
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
UnlockPubScreen(NULL,SDL_Display);
GFX_Display=NULL;
if(okid!=INVALID_ID)
{
GFX_Display=OpenScreenTags(NULL,
SA_Width,SDL_Display->Width,
SA_Height,SDL_Display->Height,
SA_Depth,8,SA_Quiet,TRUE,
SA_ShowTitle,FALSE,
SA_DisplayID,okid,
TAG_DONE);
}
if(!GFX_Display)
{
SDL_SetError("Unable to open a suited CGX display");
return -1;
}
else SDL_Display=GFX_Display;
}
else GFX_Display = SDL_Display;
/* See whether or not we need to swap pixels */
swap_pixels = 0;
// Non e' detto che sia cosi' pero', alcune schede potrebbero gestire i modi in modo differente
if ( SDL_BYTEORDER == SDL_LIL_ENDIAN ) {
Dec 16, 2001
Dec 16, 2001
513
swap_pixels = 1;
Apr 26, 2001
Apr 26, 2001
514
515
}
Dec 16, 2001
Dec 16, 2001
516
517
D(bug("Before GetVideoModes....\n"));
Apr 26, 2001
Apr 26, 2001
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
/* Get the available video modes */
if(CGX_GetVideoModes(this) < 0)
return -1;
/* Determine the default screen depth:
Use the default visual (or at least one with the same depth) */
for(i = 0; i < this->hidden->nvisuals; i++)
if(this->hidden->visuals[i].depth == GetCyberMapAttr(SDL_Display->RastPort.BitMap,CYBRMATTR_DEPTH))
break;
if(i == this->hidden->nvisuals) {
/* default visual was useless, take the deepest one instead */
i = 0;
}
SDL_Visual = this->hidden->visuals[i].visual;
May 10, 2001
May 10, 2001
534
535
// SDL_XColorMap = SDL_DisplayColormap;
Apr 26, 2001
Apr 26, 2001
536
this->hidden->depth = this->hidden->visuals[i].depth;
Dec 16, 2001
Dec 16, 2001
537
D(bug("Init: Setting screen depth to: %ld\n",this->hidden->depth));
Apr 26, 2001
Apr 26, 2001
538
539
540
541
542
543
544
545
vformat->BitsPerPixel = this->hidden->visuals[i].depth; /* this->hidden->visuals[i].bpp; */
{
int form;
APTR handle;
struct DisplayInfo info;
if(!(handle=FindDisplayInfo(this->hidden->visuals[i].visual)))
Dec 16, 2001
Dec 16, 2001
546
547
{
D(bug("Unable to get visual info...\n"));
Apr 26, 2001
Apr 26, 2001
548
return -1;
Dec 16, 2001
Dec 16, 2001
549
}
Apr 26, 2001
Apr 26, 2001
550
Dec 16, 2001
Dec 16, 2001
551
552
if(!GetDisplayInfoData(handle,(char *)&info,sizeof(struct DisplayInfo),DTAG_DISP,NULL)) {
D(bug("Unable to get visual info data...\n"));
Apr 26, 2001
Apr 26, 2001
553
return -1;
Dec 16, 2001
Dec 16, 2001
554
}
Apr 26, 2001
Apr 26, 2001
555
556
557
558
559
form=GetCyberIDAttr(CYBRIDATTR_PIXFMT,SDL_Visual);
// In this case I use makebitmask in a way that I'm sure I'll get PIXFMT pixel mask
Dec 16, 2001
Dec 16, 2001
560
if ( vformat->BitsPerPixel > 8 )
Apr 26, 2001
Apr 26, 2001
561
562
563
564
565
566
567
{
vformat->Rmask = MakeBitMask(this,0,form,&this->hidden->depth);
vformat->Gmask = MakeBitMask(this,1,form,&this->hidden->depth);
vformat->Bmask = MakeBitMask(this,2,form,&this->hidden->depth);
}
}
May 10, 2001
May 10, 2001
568
/* See if we have been passed a window to use */
Feb 7, 2006
Feb 7, 2006
569
/* SDL_windowid = SDL_getenv("SDL_WINDOWID"); */
May 10, 2001
May 10, 2001
570
571
SDL_windowid=NULL;
Apr 26, 2001
Apr 26, 2001
572
573
574
575
576
577
578
579
580
581
582
583
584
585
/* Create the blank cursor */
SDL_BlankCursor = AllocMem(16,MEMF_CHIP|MEMF_CLEAR);
/* Fill in some window manager capabilities */
this->info.wm_available = 1;
this->info.blit_hw = 1;
this->info.blit_hw_CC = 1;
this->info.blit_sw = 1;
this->info.blit_fill = 1;
this->info.video_mem=2000000; // Not always true but almost any Amiga card has this memory!
this->hidden->same_format=0;
SDL_RastPort=&SDL_Display->RastPort;
/* We're done! */
Dec 16, 2001
Dec 16, 2001
586
587
D(bug("End of CGX_VideoInit\n"));
Apr 26, 2001
Apr 26, 2001
588
589
590
591
592
return(0);
}
void CGX_DestroyWindow(_THIS, SDL_Surface *screen)
{
Dec 16, 2001
Dec 16, 2001
593
594
D(bug("Destroy Window...\n"));
May 10, 2001
May 10, 2001
595
596
597
if ( ! SDL_windowid ) {
/* Hide the managed window */
int was_fullscreen=0;
Apr 26, 2001
Apr 26, 2001
598
Dec 16, 2001
Dec 16, 2001
599
600
/* Clean up OpenGL */
if ( screen ) {
Apr 27, 2006
Apr 27, 2006
601
screen->flags &= ~SDL_OPENGL;
Dec 16, 2001
Dec 16, 2001
602
603
604
}
if ( screen && (screen->flags & SDL_FULLSCREEN) ) {
May 10, 2001
May 10, 2001
605
606
607
608
was_fullscreen=1;
screen->flags &= ~SDL_FULLSCREEN;
// CGX_LeaveFullScreen(this); tolto x crash
}
Apr 26, 2001
Apr 26, 2001
609
May 10, 2001
May 10, 2001
610
611
612
613
614
/* Destroy the output window */
if ( SDL_Window ) {
CloseWindow(SDL_Window);
SDL_Window=NULL;
}
Apr 26, 2001
Apr 26, 2001
615
May 10, 2001
May 10, 2001
616
617
618
619
/* Free the colormap entries */
if ( SDL_XPixels ) {
int numcolors;
unsigned long pixel;
Apr 26, 2001
Apr 26, 2001
620
May 10, 2001
May 10, 2001
621
622
623
if(this->screen->format&&this->hidden->depth==8&&!was_fullscreen)
{
numcolors = 1<<this->screen->format->BitsPerPixel;
Apr 26, 2001
Apr 26, 2001
624
May 10, 2001
May 10, 2001
625
626
if(numcolors>256)
numcolors=256;
Apr 26, 2001
Apr 26, 2001
627
May 10, 2001
May 10, 2001
628
if(!was_fullscreen&&this->hidden->depth==8)
Apr 26, 2001
Apr 26, 2001
629
{
Dec 16, 2001
Dec 16, 2001
630
for ( pixel=0; pixel<numcolors; pixel++ )
May 10, 2001
May 10, 2001
631
632
633
634
{
if(SDL_XPixels[pixel]>=0)
ReleasePen(GFX_Display->ViewPort.ColorMap,SDL_XPixels[pixel]);
}
Apr 26, 2001
Apr 26, 2001
635
636
}
}
Feb 7, 2006
Feb 7, 2006
637
SDL_free(SDL_XPixels);
May 10, 2001
May 10, 2001
638
SDL_XPixels = NULL;
Dec 16, 2001
Dec 16, 2001
639
}
May 10, 2001
May 10, 2001
640
}
Apr 26, 2001
Apr 26, 2001
641
642
643
644
645
646
647
648
649
650
651
}
static void CGX_SetSizeHints(_THIS, int w, int h, Uint32 flags)
{
if ( flags & SDL_RESIZABLE ) {
WindowLimits(SDL_Window, 32, 32,4096,4096);
} else {
WindowLimits(SDL_Window, w,h,w,h);
}
if ( flags & SDL_FULLSCREEN ) {
flags&=~SDL_RESIZABLE;
Feb 7, 2006
Feb 7, 2006
652
} else if ( SDL_getenv("SDL_VIDEO_CENTERED") ) {
Apr 26, 2001
Apr 26, 2001
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
int display_w, display_h;
display_w = SDL_Display->Width;
display_h = SDL_Display->Height;
ChangeWindowBox(SDL_Window,(display_w - w - SDL_Window->BorderLeft-SDL_Window->BorderRight)/2,
(display_h - h - SDL_Window->BorderTop-SDL_Window->BorderBottom)/2,
w+SDL_Window->BorderLeft+SDL_Window->BorderRight,
h+SDL_Window->BorderTop+SDL_Window->BorderBottom);
}
}
int CGX_CreateWindow(_THIS, SDL_Surface *screen,
int w, int h, int bpp, Uint32 flags)
{
#if 0
int i, depth;
Uint32 vis;
#endif
Dec 16, 2001
Dec 16, 2001
671
672
D(bug("CGX_CreateWindow\n"));
Apr 26, 2001
Apr 26, 2001
673
674
675
676
/* If a window is already present, destroy it and start fresh */
if ( SDL_Window ) {
CGX_DestroyWindow(this, screen);
}
May 10, 2001
May 10, 2001
677
678
679
680
681
682
683
/* See if we have been given a window id */
if ( SDL_windowid ) {
SDL_Window = (struct Window *)atol(SDL_windowid);
} else {
SDL_Window = 0;
}
Apr 26, 2001
Apr 26, 2001
684
685
686
687
688
689
/* find out which visual we are going to use */
#if 0
/* questo l'ho spostato nell'apertura dello schermo, in quanto su Amiga le finestre
hanno il pixel mode degli schermi.
*/
Dec 16, 2001
Dec 16, 2001
690
/*if ( flags & SDL_OPENGL ) {
Apr 26, 2001
Apr 26, 2001
691
692
SDL_SetError("OpenGL not supported by the Amiga SDL!");
return -1;
Dec 16, 2001
Dec 16, 2001
693
694
}
else {*/
Apr 26, 2001
Apr 26, 2001
695
696
697
698
699
700
701
702
703
704
for ( i = 0; i < this->hidden->nvisuals; i++ ) {
if ( this->hidden->visuals[i].depth == bpp ) /* era .depth */
break;
}
if ( i == this->hidden->nvisuals ) {
SDL_SetError("No matching visual for requested depth");
return -1; /* should never happen */
}
vis = this->hidden->visuals[i].visual;
depth = this->hidden->visuals[i].depth;
Dec 16, 2001
Dec 16, 2001
705
// }
Apr 26, 2001
Apr 26, 2001
706
707
SDL_Visual = vis;
this->hidden->depth = depth;
Dec 16, 2001
Dec 16, 2001
708
D(bug("Setting screen depth to: %ld\n",this->hidden->depth));
Apr 26, 2001
Apr 26, 2001
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
#endif
/* Allocate the new pixel format for this video mode */
{
Uint32 form;
APTR handle;
struct DisplayInfo info;
if(!(handle=FindDisplayInfo(SDL_Visual)))
return -1;
if(!GetDisplayInfoData(handle,(char *)&info,sizeof(struct DisplayInfo),DTAG_DISP,NULL))
return -1;
form=GetCyberIDAttr(CYBRIDATTR_PIXFMT,SDL_Visual);
if(flags&SDL_HWSURFACE)
{
if(bpp!=this->hidden->depth)
{
bpp=this->hidden->depth;
D(bug("Accel forces bpp to be equal (%ld)\n",bpp));
}
}
D(bug("BEFORE screen allocation: bpp:%ld (real:%ld)\n",bpp,this->hidden->depth));
/* With this call if needed I'll revert the wanted bpp to a bpp best suited for the display, actually occurs
only with requested format 15/16bit and display format != 15/16bit
Dec 16, 2001
Dec 16, 2001
738
*/
Apr 26, 2001
Apr 26, 2001
739
740
741
742
743
744
745
746
747
748
if ( ! SDL_ReallocFormat(screen, bpp,
MakeBitMask(this,0,form,&bpp), MakeBitMask(this,1,form,&bpp), MakeBitMask(this,2,form,&bpp), 0) )
return -1;
D(bug("AFTER screen allocation: bpp:%ld (real:%ld)\n",bpp,this->hidden->depth));
}
/* Create the appropriate colormap */
May 10, 2001
May 10, 2001
749
750
751
752
753
/*
if ( SDL_XColorMap != SDL_DisplayColormap ) {
XFreeColormap(SDL_Display, SDL_XColorMap);
}
*/
Apr 26, 2001
Apr 26, 2001
754
if ( GetCyberMapAttr(SDL_Display->RastPort.BitMap,CYBRMATTR_PIXFMT)==PIXFMT_LUT8 || bpp==8 ) {
Dec 16, 2001
Dec 16, 2001
755
756
int ncolors,i;
D(bug("XPixels palette allocation...\n"));
Apr 26, 2001
Apr 26, 2001
757
758
759
760
761
762
763
764
/* Allocate the pixel flags */
if(bpp==8)
ncolors=256;
else
ncolors = 1 << screen->format->BitsPerPixel;
Feb 7, 2006
Feb 7, 2006
765
SDL_XPixels = (Sint32 *)SDL_malloc(ncolors * sizeof(Sint32));
Dec 16, 2001
Dec 16, 2001
766
Apr 26, 2001
Apr 26, 2001
767
768
769
770
771
if(SDL_XPixels == NULL) {
SDL_OutOfMemory();
return -1;
}
Dec 16, 2001
Dec 16, 2001
772
773
774
for(i=0;i<ncolors;i++)
SDL_XPixels[i]=-1;
Apr 26, 2001
Apr 26, 2001
775
776
777
778
779
/* always allocate a private colormap on non-default visuals */
if(bpp==8)
flags |= SDL_HWPALETTE;
Dec 16, 2001
Dec 16, 2001
780
if ( flags & SDL_HWPALETTE )
May 10, 2001
May 10, 2001
781
screen->flags |= SDL_HWPALETTE;
Dec 16, 2001
Dec 16, 2001
782
}
May 10, 2001
May 10, 2001
783
Apr 26, 2001
Apr 26, 2001
784
785
786
/* resize the (possibly new) window manager window */
/* Create (or use) the X11 display window */
Dec 16, 2001
Dec 16, 2001
787
May 10, 2001
May 10, 2001
788
if ( !SDL_windowid ) {
Dec 16, 2001
Dec 16, 2001
789
if( flags & SDL_FULLSCREEN )
May 10, 2001
May 10, 2001
790
791
{
SDL_Window = OpenWindowTags(NULL,WA_Width,w,WA_Height,h,
Apr 26, 2001
Apr 26, 2001
792
793
794
795
WA_Flags,WFLG_ACTIVATE|WFLG_RMBTRAP|WFLG_BORDERLESS|WFLG_BACKDROP|WFLG_REPORTMOUSE,
WA_IDCMP,IDCMP_RAWKEY|IDCMP_MOUSEBUTTONS|IDCMP_MOUSEMOVE,
WA_CustomScreen,(ULONG)SDL_Display,
TAG_DONE);
May 10, 2001
May 10, 2001
796
Dec 16, 2001
Dec 16, 2001
797
D(bug("Opening backdrop window %ldx%ld on display %lx!\n",w,h,SDL_Display));
May 10, 2001
May 10, 2001
798
799
800
}
else
{
Dec 16, 2001
Dec 16, 2001
801
802
803
804
805
806
/* Create GimmeZeroZero window when OpenGL is used */
unsigned long gzz = FALSE;
if( flags & SDL_OPENGL ) {
gzz = TRUE;
}
May 10, 2001
May 10, 2001
807
808
SDL_Window = OpenWindowTags(NULL,WA_InnerWidth,w,WA_InnerHeight,h,
WA_Flags,WFLG_REPORTMOUSE|WFLG_ACTIVATE|WFLG_RMBTRAP | ((flags&SDL_NOFRAME) ? 0 : (WFLG_DEPTHGADGET|WFLG_CLOSEGADGET|WFLG_DRAGBAR | ((flags&SDL_RESIZABLE) ? WFLG_SIZEGADGET|WFLG_SIZEBBOTTOM : 0))),
Apr 26, 2001
Apr 26, 2001
809
810
WA_IDCMP,IDCMP_RAWKEY|IDCMP_CLOSEWINDOW|IDCMP_MOUSEBUTTONS|IDCMP_NEWSIZE|IDCMP_MOUSEMOVE,
WA_PubScreen,(ULONG)SDL_Display,
Dec 16, 2001
Dec 16, 2001
811
WA_GimmeZeroZero, gzz,
May 10, 2001
May 10, 2001
812
TAG_DONE);
Dec 16, 2001
Dec 16, 2001
813
D(bug("Opening WB window of size: %ldx%ld!\n",w,h));
May 10, 2001
May 10, 2001
814
815
816
817
}
if(!SDL_Window)
return -1;
Apr 26, 2001
Apr 26, 2001
818
819
820
821
822
823
}
this->hidden->BytesPerPixel=GetCyberMapAttr(SDL_Window->RPort->BitMap,CYBRMATTR_BPPIX);
if(screen->flags & SDL_DOUBLEBUF)
{
Feb 7, 2006
Feb 7, 2006
824
if(SDL_RastPort=SDL_malloc(sizeof(struct RastPort)))
Apr 26, 2001
Apr 26, 2001
825
826
827
828
829
830
831
832
833
834
835
836
{
InitRastPort(SDL_RastPort);
SDL_RastPort->BitMap=this->hidden->SB[1]->sb_BitMap;
}
else
return -1;
}
else SDL_RastPort=SDL_Window->RPort;
if(flags&SDL_HWSURFACE)
screen->flags|=SDL_HWSURFACE;
May 10, 2001
May 10, 2001
837
838
839
840
841
842
843
844
845
846
if( !SDL_windowid ) {
CGX_SetSizeHints(this, w, h, flags);
}
/* Set our colormaps when not setting a GL mode */
/*
if ( ! (flags & SDL_OPENGL) ) {
XSetWindowColormap(SDL_Display, SDL_Window, SDL_XColorMap);
}
*/
Apr 26, 2001
Apr 26, 2001
847
848
/* Map them both and go fullscreen, if requested */
May 10, 2001
May 10, 2001
849
850
851
852
853
854
855
856
if ( ! SDL_windowid ) {
if ( flags & SDL_FULLSCREEN ) {
screen->flags |= SDL_FULLSCREEN;
currently_fullscreen=1;
// CGX_EnterFullScreen(this); Ci siamo gia'!
} else {
screen->flags &= ~SDL_FULLSCREEN;
}
Apr 26, 2001
Apr 26, 2001
857
}
May 10, 2001
May 10, 2001
858
859
860
861
862
screen->w = w;
screen->h = h;
screen->pitch = SDL_CalculatePitch(screen);
CGX_ResizeImage(this, screen, flags);
Dec 16, 2001
Dec 16, 2001
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
/* Make OpenGL Context if needed*/
if(flags & SDL_OPENGL) {
if(this->gl_data->gl_active == 0) {
if(CGX_GL_Init(this) < 0)
return -1;
else
screen->flags |= SDL_OPENGL;
}
else {
if(CGX_GL_Update(this) < 0)
return -1;
else
screen->flags |= SDL_OPENGL;
}
}
Apr 26, 2001
Apr 26, 2001
878
879
880
881
882
}
int CGX_ResizeWindow(_THIS,
SDL_Surface *screen, int w, int h, Uint32 flags)
{
Dec 16, 2001
Dec 16, 2001
883
884
D(bug("CGX_ResizeWindow\n"));
May 10, 2001
May 10, 2001
885
886
887
if ( ! SDL_windowid ) {
/* Resize the window manager window */
CGX_SetSizeHints(this, w, h, flags);
Apr 26, 2001
Apr 26, 2001
888
May 10, 2001
May 10, 2001
889
890
ChangeWindowBox(SDL_Window,SDL_Window->LeftEdge,SDL_Window->TopEdge, w+SDL_Window->BorderLeft+SDL_Window->BorderRight,
h+SDL_Window->BorderTop+SDL_Window->BorderBottom);
Apr 26, 2001
Apr 26, 2001
891
May 10, 2001
May 10, 2001
892
893
894
895
screen->w = w;
screen->h = h;
screen->pitch = SDL_CalculatePitch(screen);
CGX_ResizeImage(this, screen, flags);
Apr 26, 2001
Apr 26, 2001
896
897
898
899
900
901
902
903
}
return(0);
}
static SDL_Surface *CGX_SetVideoMode(_THIS, SDL_Surface *current,
int width, int height, int bpp, Uint32 flags)
{
Uint32 saved_flags;
May 10, 2001
May 10, 2001
904
int needcreate=0;
Apr 26, 2001
Apr 26, 2001
905
Dec 16, 2001
Dec 16, 2001
906
907
D(bug("CGX_SetVideoMode current:%lx\n",current));
Apr 26, 2001
Apr 26, 2001
908
909
910
/* Lock the event thread, in multi-threading environments */
SDL_Lock_EventThread();
May 10, 2001
May 10, 2001
911
912
// Check if the window needs to be closed or can be resized
Dec 16, 2001
Dec 16, 2001
913
if( (flags&SDL_FULLSCREEN) || (current && current->flags&SDL_FULLSCREEN && !(flags&SDL_FULLSCREEN)))
May 10, 2001
May 10, 2001
914
915
needcreate=1;
Dec 16, 2001
Dec 16, 2001
916
// Check if we need to close an already existing videomode...
Apr 26, 2001
Apr 26, 2001
917
Dec 16, 2001
Dec 16, 2001
918
if(current && current->flags&SDL_FULLSCREEN && !(flags&SDL_FULLSCREEN)) {
May 10, 2001
May 10, 2001
919
unsigned long i;
Dec 16, 2001
Dec 16, 2001
920
921
D(bug("Destroying image, window & screen!\n"));
Apr 26, 2001
Apr 26, 2001
922
923
924
CGX_DestroyImage(this,current);
CGX_DestroyWindow(this,current);
DestroyScreen(this);
May 10, 2001
May 10, 2001
925
926
927
928
929
930
931
932
933
934
935
936
937
938
GFX_Display=SDL_Display=LockPubScreen(NULL);
bpp=this->hidden->depth=GetCyberMapAttr(SDL_Display->RastPort.BitMap,CYBRMATTR_DEPTH);
for ( i = 0; i < this->hidden->nvisuals; i++ ) {
if ( this->hidden->visuals[i].depth == bpp ) /* era .depth */
break;
}
if ( i == this->hidden->nvisuals ) {
SDL_SetError("No matching visual for requested depth");
return NULL; /* should never happen */
}
SDL_Visual = this->hidden->visuals[i].visual;
Dec 16, 2001
Dec 16, 2001
939
940
D(bug("Setting screen depth to: %ld\n",this->hidden->depth));
Apr 26, 2001
Apr 26, 2001
941
942
943
944
}
/* Check the combination of flags we were passed */
if ( flags & SDL_FULLSCREEN ) {
int i;
Dec 16, 2001
Dec 16, 2001
945
Apr 26, 2001
Apr 26, 2001
946
/* Clear fullscreen flag if not supported */
May 10, 2001
May 10, 2001
947
948
949
if ( SDL_windowid ) {
flags &= ~SDL_FULLSCREEN;
}
Dec 16, 2001
Dec 16, 2001
950
else if(current && current->flags&SDL_FULLSCREEN ) {
Apr 26, 2001
Apr 26, 2001
951
952
if(current->w!=width ||
current->h!=height ||
Dec 16, 2001
Dec 16, 2001
953
(this->hidden && this->hidden->depth!=bpp))
Apr 26, 2001
Apr 26, 2001
954
{
Dec 16, 2001
Dec 16, 2001
955
D(bug("Deleting previous window...\n"));
Apr 26, 2001
Apr 26, 2001
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
CGX_DestroyImage(this,current);
CGX_DestroyWindow(this,current);
DestroyScreen(this);
goto buildnewscreen;
}
}
else
buildnewscreen:
{
Uint32 okid=BestCModeIDTags(CYBRBIDTG_NominalWidth,width,
CYBRBIDTG_NominalHeight,height,
CYBRBIDTG_Depth,bpp,
TAG_DONE);
GFX_Display=NULL;
Dec 16, 2001
Dec 16, 2001
972
973
D(bug("Opening screen...\n"));
Apr 26, 2001
Apr 26, 2001
974
975
976
977
978
979
980
981
982
if(okid!=INVALID_ID)
GFX_Display=OpenScreenTags(NULL,
SA_Width,width,
SA_Height,height,
SA_Quiet,TRUE,SA_ShowTitle,FALSE,
SA_Depth,bpp,
SA_DisplayID,okid,
TAG_DONE);
Dec 16, 2001
Dec 16, 2001
983
if(!GFX_Display) {
Apr 26, 2001
Apr 26, 2001
984
985
986
987
GFX_Display=SDL_Display;
flags &= ~SDL_FULLSCREEN;
flags &= ~SDL_DOUBLEBUF;
}
Dec 16, 2001
Dec 16, 2001
988
else {
Apr 26, 2001
Apr 26, 2001
989
990
UnlockPubScreen(NULL,SDL_Display);
SDL_Display=GFX_Display;
Dec 16, 2001
Dec 16, 2001
991
992
D(bug("Screen opened.\n"));
Apr 26, 2001
Apr 26, 2001
993
Dec 16, 2001
Dec 16, 2001
994
if(flags&SDL_DOUBLEBUF) {
Apr 26, 2001
Apr 26, 2001
995
int ok=0;
Dec 16, 2001
Dec 16, 2001
996
D(bug("Start of DBuffering allocations...\n"));
Apr 26, 2001
Apr 26, 2001
997
Dec 16, 2001
Dec 16, 2001
998
999
1000
if(this->hidden->SB[0]=AllocScreenBuffer(SDL_Display,NULL,SB_SCREEN_BITMAP)) {
if(this->hidden->SB[1]=AllocScreenBuffer(SDL_Display,NULL,0L)) {