Skip to content

Latest commit

 

History

History
719 lines (618 loc) · 20.4 KB

SDL_ph_video.c

File metadata and controls

719 lines (618 loc) · 20.4 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Mar 6, 2002
Mar 6, 2002
3
Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
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
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
*/
#ifdef SAVE_RCSID
static char rcsid =
"@(#) $Id$";
#endif
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <sys/ioctl.h>
#include "SDL.h"
#include "SDL_error.h"
#include "SDL_timer.h"
#include "SDL_thread.h"
#include "SDL_video.h"
#include "SDL_mouse.h"
#include "SDL_endian.h"
#include "SDL_sysvideo.h"
#include "SDL_pixels_c.h"
#include "SDL_events_c.h"
#include "SDL_ph_video.h"
#include "SDL_ph_modes_c.h"
#include "SDL_ph_image_c.h"
#include "SDL_ph_events_c.h"
#include "SDL_ph_mouse_c.h"
May 10, 2001
May 10, 2001
49
#include "SDL_ph_wm_c.h"
Apr 26, 2001
Apr 26, 2001
50
51
52
53
54
55
56
57
58
#include "SDL_phyuv_c.h"
#include "blank_cursor.h"
static int ph_VideoInit(_THIS, SDL_PixelFormat *vformat);
static SDL_Surface *ph_SetVideoMode(_THIS, SDL_Surface *current,
int width, int height, int bpp, Uint32 flags);
static int ph_SetColors(_THIS, int firstcolor, int ncolors, SDL_Color *colors);
static void ph_VideoQuit(_THIS);
static void ph_DeleteDevice(SDL_VideoDevice *device);
Mar 2, 2002
Mar 2, 2002
59
60
#ifdef HAVE_OPENGL
Mar 11, 2002
Mar 11, 2002
61
int ph_SetupOpenGLContext(_THIS, int width, int height, int bpp, Uint32 flags);
Jan 18, 2002
Jan 18, 2002
62
static void ph_GL_SwapBuffers(_THIS);
Mar 2, 2002
Mar 2, 2002
63
64
static int ph_GL_GetAttribute(_THIS, SDL_GLattr attrib, int* value);
#endif /* HAVE_OPENGL */
Jan 18, 2002
Jan 18, 2002
65
Apr 26, 2001
Apr 26, 2001
66
67
static int ph_Available(void)
{
Mar 11, 2002
Mar 11, 2002
68
69
70
71
72
73
74
75
76
77
78
int phstat=-1;
phstat=PtInit(0);
if (phstat==0)
{
return 1;
}
else
{
return 0;
}
Apr 26, 2001
Apr 26, 2001
79
80
81
82
83
84
85
86
}
static SDL_VideoDevice *ph_CreateDevice(int devindex)
{
SDL_VideoDevice *device;
/* Initialize all variables that we clean on shutdown */
device = (SDL_VideoDevice *)malloc(sizeof(SDL_VideoDevice));
Mar 11, 2002
Mar 11, 2002
87
if (device) {
Apr 26, 2001
Apr 26, 2001
88
89
90
91
92
93
94
95
96
97
98
99
100
memset(device, 0, (sizeof *device));
device->hidden = (struct SDL_PrivateVideoData *)
malloc((sizeof *device->hidden));
device->gl_data = NULL;
}
if ( (device == NULL) || (device->hidden == NULL) ) {
SDL_OutOfMemory();
ph_DeleteDevice(device);
return(0);
}
memset(device->hidden, 0, (sizeof *device->hidden));
/* Set the driver flags */
Feb 14, 2002
Feb 14, 2002
101
device->handles_any_size = 1; /* JB not true for fullscreen */
Apr 26, 2001
Apr 26, 2001
102
103
/* Set the function pointers */
Jan 18, 2002
Jan 18, 2002
104
device->CreateYUVOverlay = ph_CreateYUVOverlay;
Apr 26, 2001
Apr 26, 2001
105
106
107
device->VideoInit = ph_VideoInit;
device->ListModes = ph_ListModes;
device->SetVideoMode = ph_SetVideoMode;
Mar 11, 2002
Mar 11, 2002
108
device->ToggleFullScreen = ph_ToggleFullScreen;
Apr 26, 2001
Apr 26, 2001
109
110
device->UpdateMouse = NULL;
device->SetColors = ph_SetColors;
Mar 11, 2002
Mar 11, 2002
111
device->UpdateRects = NULL; /* ph_ResizeImage */
Apr 26, 2001
Apr 26, 2001
112
113
114
115
116
117
118
119
120
121
device->VideoQuit = ph_VideoQuit;
device->AllocHWSurface = ph_AllocHWSurface;
device->CheckHWBlit = NULL;
device->FillHWRect = NULL;
device->SetHWColorKey = NULL;
device->SetHWAlpha = NULL;
device->LockHWSurface = ph_LockHWSurface;
device->UnlockHWSurface = ph_UnlockHWSurface;
device->FlipHWSurface = ph_FlipHWSurface;
device->FreeHWSurface = ph_FreeHWSurface;
May 10, 2001
May 10, 2001
122
device->SetCaption = ph_SetCaption;
Apr 26, 2001
Apr 26, 2001
123
device->SetIcon = NULL;
May 10, 2001
May 10, 2001
124
device->IconifyWindow = ph_IconifyWindow;
Feb 20, 2002
Feb 20, 2002
125
device->GrabInput = ph_GrabInput;
Mar 2, 2002
Mar 2, 2002
126
device->GetWMInfo = ph_GetWMInfo;
Apr 26, 2001
Apr 26, 2001
127
128
129
130
131
132
133
134
device->FreeWMCursor = ph_FreeWMCursor;
device->CreateWMCursor = ph_CreateWMCursor;
device->ShowWMCursor = ph_ShowWMCursor;
device->WarpWMCursor = ph_WarpWMCursor;
device->CheckMouseMode = ph_CheckMouseMode;
device->InitOSKeymap = ph_InitOSKeymap;
device->PumpEvents = ph_PumpEvents;
Feb 14, 2002
Feb 14, 2002
135
/* OpenGL support. */
Jan 18, 2002
Jan 18, 2002
136
137
138
device->GL_LoadLibrary = NULL;
device->GL_GetProcAddress = NULL;
device->GL_MakeCurrent = NULL;
Feb 14, 2002
Feb 14, 2002
139
#ifdef HAVE_OPENGL
Jan 18, 2002
Jan 18, 2002
140
device->GL_SwapBuffers = ph_GL_SwapBuffers;
Mar 2, 2002
Mar 2, 2002
141
device->GL_GetAttribute = ph_GL_GetAttribute;
Feb 14, 2002
Feb 14, 2002
142
143
#else
device->GL_SwapBuffers = NULL;
Mar 2, 2002
Mar 2, 2002
144
device->GL_GetAttribute = NULL;
Feb 14, 2002
Feb 14, 2002
145
#endif /* HAVE_OPENGL */
Jan 18, 2002
Jan 18, 2002
146
Apr 26, 2001
Apr 26, 2001
147
148
149
150
151
device->free = ph_DeleteDevice;
return device;
}
May 10, 2001
May 10, 2001
152
VideoBootStrap ph_bootstrap = {
Mar 23, 2002
Mar 23, 2002
153
154
"photon", "QNX Photon video output",
ph_Available, ph_CreateDevice
Apr 26, 2001
Apr 26, 2001
155
156
157
158
};
static void ph_DeleteDevice(SDL_VideoDevice *device)
{
Mar 11, 2002
Mar 11, 2002
159
160
161
162
if (device)
{
if (device->hidden)
{
Apr 26, 2001
Apr 26, 2001
163
164
165
free(device->hidden);
device->hidden = NULL;
}
Mar 11, 2002
Mar 11, 2002
166
167
if (device->gl_data)
{
Apr 26, 2001
Apr 26, 2001
168
169
170
171
172
173
174
175
176
177
free(device->gl_data);
device->gl_data = NULL;
}
free(device);
device = NULL;
}
}
static int ph_VideoInit(_THIS, SDL_PixelFormat *vformat)
{
Mar 11, 2002
Mar 11, 2002
178
179
PgVideoModeInfo_t my_mode_info;
PgHWCaps_t my_hwcaps;
Apr 26, 2001
Apr 26, 2001
180
Mar 11, 2002
Mar 11, 2002
181
window=NULL;
Mar 23, 2002
Mar 23, 2002
182
desktoppal=SDLPH_PAL_NONE;
Mar 28, 2002
Mar 28, 2002
183
184
185
#ifdef HAVE_OPENGL
oglctx=NULL;
#endif /* HAVE_OPENGL */
Mar 23, 2002
Mar 23, 2002
186
187
188
189
captionflag=0;
old_video_mode=-1;
old_refresh_rate=-1;
Apr 26, 2001
Apr 26, 2001
190
Mar 11, 2002
Mar 11, 2002
191
192
193
194
if (NULL == (event = malloc(EVENT_SIZE)))
{
exit(EXIT_FAILURE);
}
May 28, 2002
May 28, 2002
195
memset(event, 0x00, EVENT_SIZE);
Mar 11, 2002
Mar 11, 2002
196
197
198
199
200
201
202
203
/* Create the blank cursor */
SDL_BlankCursor = this->CreateWMCursor(this, blank_cdata, blank_cmask,
(int)BLANK_CWIDTH, (int)BLANK_CHEIGHT,
(int)BLANK_CHOTX, (int)BLANK_CHOTY);
if (SDL_BlankCursor == NULL)
{
May 28, 2002
May 28, 2002
204
printf("ph_VideoInit(): could not create blank cursor !\n");
Mar 11, 2002
Mar 11, 2002
205
206
207
208
}
if (PgGetGraphicsHWCaps(&my_hwcaps) < 0)
{
May 28, 2002
May 28, 2002
209
fprintf(stderr,"ph_VideoInit(): GetGraphicsHWCaps failed !\n");
Mar 11, 2002
Mar 11, 2002
210
211
212
213
}
if (PgGetVideoModeInfo(my_hwcaps.current_video_mode, &my_mode_info) < 0)
{
May 28, 2002
May 28, 2002
214
fprintf(stderr,"ph_VideoInit(): PgGetVideoModeInfo failed !\n");
Mar 11, 2002
Mar 11, 2002
215
216
217
218
219
}
/* We need to return BytesPerPixel as it in used by CreateRGBsurface */
vformat->BitsPerPixel = my_mode_info.bits_per_pixel;
vformat->BytesPerPixel = my_mode_info.bytes_per_scanline/my_mode_info.width;
Mar 23, 2002
Mar 23, 2002
220
desktopbpp = my_mode_info.bits_per_pixel;
Mar 28, 2002
Mar 28, 2002
221
222
223
/* save current palette */
if (desktopbpp==8)
Mar 11, 2002
Mar 11, 2002
224
{
Mar 28, 2002
Mar 28, 2002
225
PgGetPalette(ph_palette);
Mar 11, 2002
Mar 11, 2002
226
}
Mar 28, 2002
Mar 28, 2002
227
May 10, 2001
May 10, 2001
228
229
230
231
currently_fullscreen = 0;
this->info.wm_available = 1;
Apr 26, 2001
Apr 26, 2001
232
233
234
235
236
237
238
return 0;
}
static SDL_Surface *ph_SetVideoMode(_THIS, SDL_Surface *current,
int width, int height, int bpp, Uint32 flags)
{
PgDisplaySettings_t settings;
Mar 11, 2002
Mar 11, 2002
239
240
241
int mode;
PtArg_t arg[32];
PhDim_t dim;
Jan 18, 2002
Jan 18, 2002
242
243
244
int rtnval;
int i;
unsigned long *tempptr;
Mar 11, 2002
Mar 11, 2002
245
int pargc;
Apr 26, 2001
Apr 26, 2001
246
Jan 18, 2002
Jan 18, 2002
247
248
dim.w=width;
dim.h=height;
Apr 26, 2001
Apr 26, 2001
249
250
251
252
/* Lock the event thread, in multi-threading environments */
SDL_Lock_EventThread();
Mar 28, 2002
Mar 28, 2002
253
254
current->flags = flags;
Mar 11, 2002
Mar 11, 2002
255
256
/* create window if no OpenGL support selected */
if ((flags & SDL_OPENGL)!=SDL_OPENGL)
Apr 26, 2001
Apr 26, 2001
257
{
Mar 11, 2002
Mar 11, 2002
258
pargc=0;
May 19, 2002
May 19, 2002
259
260
261
262
263
264
265
266
267
268
// prevent using HWSURFACE in window mode if desktop bpp != chosen bpp
if ((flags & SDL_HWSURFACE) && (!(flags & SDL_FULLSCREEN)))
{
if (desktopbpp!=bpp)
{
fprintf(stderr, "ph_SetVideoMode(): SDL_HWSURFACE available only with chosen bpp equal desktop bpp !\n");
return NULL;
}
}
Mar 11, 2002
Mar 11, 2002
269
270
271
PtSetArg(&arg[pargc++], Pt_ARG_DIM, &dim, 0);
PtSetArg(&arg[pargc++], Pt_ARG_RESIZE_FLAGS, Pt_FALSE, Pt_RESIZE_XY_AS_REQUIRED);
Jan 18, 2002
Jan 18, 2002
272
Mar 28, 2002
Mar 28, 2002
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
/* enable window minimizing */
PtSetArg(&arg[pargc++], Pt_ARG_WINDOW_MANAGED_FLAGS, Pt_TRUE, Ph_WM_HIDE);
/* remove border and caption if no frame flag selected */
if ((flags & SDL_NOFRAME) == SDL_NOFRAME)
{
PtSetArg(&arg[pargc++], Pt_ARG_WINDOW_RENDER_FLAGS, Pt_FALSE, Ph_WM_RENDER_TITLE | Ph_WM_RENDER_BORDER);
}
else
{
PtSetArg(&arg[pargc++], Pt_ARG_WINDOW_RENDER_FLAGS, Pt_TRUE, Ph_WM_RENDER_TITLE | Ph_WM_RENDER_BORDER);
}
/* if window is not resizable then remove resize handles and maximize button */
if ((flags & SDL_RESIZABLE) != SDL_RESIZABLE)
{
PtSetArg(&arg[pargc++], Pt_ARG_WINDOW_RENDER_FLAGS, Pt_FALSE, Ph_WM_RENDER_RESIZE | Ph_WM_RENDER_MAX);
PtSetArg(&arg[pargc++], Pt_ARG_WINDOW_MANAGED_FLAGS, Pt_FALSE, Ph_WM_RESIZE | Ph_WM_MAX);
PtSetArg(&arg[pargc++], Pt_ARG_WINDOW_NOTIFY_FLAGS, Pt_FALSE, Ph_WM_RESIZE | Ph_WM_MAX);
}
else
{
PtSetArg(&arg[pargc++], Pt_ARG_WINDOW_RENDER_FLAGS, Pt_TRUE, Ph_WM_RENDER_RESIZE | Ph_WM_RENDER_MAX);
/* it is need to be Pt_FALSE to allow the application to process the resize callback */
PtSetArg(&arg[pargc++], Pt_ARG_WINDOW_MANAGED_FLAGS, Pt_FALSE, Ph_WM_RESIZE | Ph_WM_MAX);
PtSetArg(&arg[pargc++], Pt_ARG_WINDOW_NOTIFY_FLAGS, Pt_TRUE, Ph_WM_RESIZE | Ph_WM_MAX);
}
Mar 11, 2002
Mar 11, 2002
301
if (window!=NULL)
Apr 26, 2001
Apr 26, 2001
302
{
Mar 11, 2002
Mar 11, 2002
303
304
305
PtUnrealizeWidget(window);
PtDestroyWidget(window);
window=NULL;
Apr 26, 2001
Apr 26, 2001
306
307
}
Mar 28, 2002
Mar 28, 2002
308
window=PtCreateWidget(PtWindow, NULL, pargc, arg);
Mar 11, 2002
Mar 11, 2002
309
PtRealizeWidget(window);
Mar 23, 2002
Mar 23, 2002
310
Mar 11, 2002
Mar 11, 2002
311
312
PtFlush();
}
Apr 26, 2001
Apr 26, 2001
313
Mar 11, 2002
Mar 11, 2002
314
315
#ifdef HAVE_OPENGL
if (flags & SDL_OPENGL)
Apr 26, 2001
Apr 26, 2001
316
{
Mar 11, 2002
Mar 11, 2002
317
318
319
320
321
322
323
324
325
326
327
/* ph_SetupOpenGLContext creates also window as need */
if (ph_SetupOpenGLContext(this, width, height, bpp, flags)==0)
{
/* setup OGL update function ... ugly method */
ph_ResizeImage(this, current, flags);
}
else
{
/* if context creation fail, report no OpenGL to high level */
current->flags=(flags & (~SDL_OPENGL));
}
Mar 2, 2002
Mar 2, 2002
328
#else
Mar 11, 2002
Mar 11, 2002
329
330
if (flags & SDL_OPENGL) /* if no built-in OpenGL support */
{
May 19, 2002
May 19, 2002
331
fprintf(stderr, "ph_SetVideoMode(): no OpenGL support, try to recompile library.\n");
Mar 11, 2002
Mar 11, 2002
332
333
current->flags=(flags & (~SDL_OPENGL));
return NULL;
Feb 14, 2002
Feb 14, 2002
334
#endif /* HAVE_OPENGL */
Apr 26, 2001
Apr 26, 2001
335
}
Mar 11, 2002
Mar 11, 2002
336
337
338
339
340
341
342
343
344
345
else
{
/* Initialize the window */
if (flags & SDL_FULLSCREEN) /* Direct Context , assume SDL_HWSURFACE also set */
{
/* Get the video mode and set it */
if (flags & SDL_ANYFORMAT)
{
if ((mode = get_mode_any_format(width, height, bpp)) == 0)
{
May 19, 2002
May 19, 2002
346
fprintf(stderr,"ph_SetVideoMode(): get_mode_any_format failed !\n");
Mar 11, 2002
Mar 11, 2002
347
348
349
350
351
352
353
exit(1);
}
}
else
{
if ((mode = get_mode(width, height, bpp)) == 0)
{
May 19, 2002
May 19, 2002
354
fprintf(stderr,"ph_SetVideoMode(): get_mode failed !\n");
Mar 11, 2002
Mar 11, 2002
355
356
357
exit(1);
}
}
Mar 23, 2002
Mar 23, 2002
358
359
360
361
362
363
364
365
366
367
368
369
if (bpp==8)
{
desktoppal=SDLPH_PAL_SYSTEM;
}
/* save old video mode caps */
PgGetVideoMode(&settings);
old_video_mode=settings.mode;
old_refresh_rate=settings.refresh;
/* setup new video mode */
Mar 11, 2002
Mar 11, 2002
370
371
settings.mode = mode;
settings.refresh = 0;
Mar 23, 2002
Mar 23, 2002
372
settings.flags = 0;
Apr 26, 2001
Apr 26, 2001
373
Mar 23, 2002
Mar 23, 2002
374
if (PgSetVideoMode(&settings) < 0)
Mar 11, 2002
Mar 11, 2002
375
{
May 19, 2002
May 19, 2002
376
fprintf(stderr,"ph_SetVideoMode(): PgSetVideoMode failed !\n");
Mar 11, 2002
Mar 11, 2002
377
}
Apr 26, 2001
Apr 26, 2001
378
Mar 11, 2002
Mar 11, 2002
379
current->flags = (flags & (~SDL_RESIZABLE)); /* no resize for Direct Context */
Apr 26, 2001
Apr 26, 2001
380
Mar 11, 2002
Mar 11, 2002
381
382
/* Begin direct mode */
ph_EnterFullScreen(this);
Apr 26, 2001
Apr 26, 2001
383
Mar 11, 2002
Mar 11, 2002
384
385
386
} /* end fullscreen flag */
else
{
Mar 28, 2002
Mar 28, 2002
387
388
/* Use offscreen memory iff SDL_HWSURFACE flag is set */
if (flags & SDL_HWSURFACE)
Mar 11, 2002
Mar 11, 2002
389
{
Mar 28, 2002
Mar 28, 2002
390
391
/* no stretch blit in offscreen context */
current->flags = (flags & (~SDL_RESIZABLE));
Mar 11, 2002
Mar 11, 2002
392
}
Mar 28, 2002
Mar 28, 2002
393
Mar 23, 2002
Mar 23, 2002
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
/* using palette emulation code in window mode */
if (bpp==8)
{
if (desktopbpp>=15)
{
desktoppal=SDLPH_PAL_EMULATE;
}
else
{
desktoppal=SDLPH_PAL_SYSTEM;
}
}
else
{
desktoppal=SDLPH_PAL_NONE;
}
Mar 11, 2002
Mar 11, 2002
410
}
Feb 14, 2002
Feb 14, 2002
411
Mar 11, 2002
Mar 11, 2002
412
413
/* If we are setting video to use the palette make sure we have allocated memory for it */
if (bpp==8)
Apr 26, 2001
Apr 26, 2001
414
{
Mar 11, 2002
Mar 11, 2002
415
416
417
418
419
420
421
422
423
424
425
426
427
428
current->format->palette = malloc(sizeof(SDL_Palette));
memset(current->format->palette, 0, sizeof(SDL_Palette));
current->format->palette->ncolors = 256;
current->format->palette->colors = (SDL_Color *)malloc(256 *sizeof(SDL_Color));
/* fill the palette */
rtnval = PgGetPalette(ph_palette);
tempptr = (unsigned long *)current->format->palette->colors;
for(i=0; i<256; i++)
{
*tempptr = (((unsigned long)ph_palette[i]) << 8);
tempptr++;
}
Jan 18, 2002
Jan 18, 2002
429
}
Apr 26, 2001
Apr 26, 2001
430
Mar 11, 2002
Mar 11, 2002
431
432
433
434
435
436
437
}
current->w = width;
current->h = height;
current->format->BitsPerPixel = bpp;
current->format->BytesPerPixel = (bpp+7)/8;
current->pitch = SDL_CalculatePitch(current);
May 19, 2002
May 19, 2002
438
Mar 11, 2002
Mar 11, 2002
439
/* Must call at least once it setup image planes */
May 19, 2002
May 19, 2002
440
441
442
443
444
445
446
rtnval = ph_ResizeImage(this, current, flags);
if (rtnval==-1)
{
fprintf(stderr,"ph_SetVideoMode(): ph_ResizeImage failed !\n");
return NULL;
}
Mar 11, 2002
Mar 11, 2002
447
Mar 23, 2002
Mar 23, 2002
448
449
450
451
452
453
/* delayed set caption call */
if (captionflag)
{
ph_SetCaption(this, this->wm_title, NULL);
}
Mar 28, 2002
Mar 28, 2002
454
455
456
/* finish window drawing */
PtFlush();
Apr 26, 2001
Apr 26, 2001
457
458
459
SDL_Unlock_EventThread();
/* We're done! */
Mar 23, 2002
Mar 23, 2002
460
return (current);
Apr 26, 2001
Apr 26, 2001
461
462
463
464
}
static void ph_VideoQuit(_THIS)
{
Mar 28, 2002
Mar 28, 2002
465
#ifdef HAVE_OPENGL
Mar 11, 2002
Mar 11, 2002
466
PhRegion_t region_info;
Mar 28, 2002
Mar 28, 2002
467
#endif /* HAVE_OPENGL */
Mar 11, 2002
Mar 11, 2002
468
Feb 20, 2002
Feb 20, 2002
469
ph_DestroyImage(this, SDL_VideoSurface);
Apr 26, 2001
Apr 26, 2001
470
Feb 14, 2002
Feb 14, 2002
471
472
if (currently_fullscreen)
{
Mar 23, 2002
Mar 23, 2002
473
ph_LeaveFullScreen(this);
Feb 14, 2002
Feb 14, 2002
474
}
Apr 26, 2001
Apr 26, 2001
475
Mar 11, 2002
Mar 11, 2002
476
#ifdef HAVE_OPENGL
Mar 28, 2002
Mar 28, 2002
477
/* prevent double SEGFAULT during parachute mode */
Mar 23, 2002
Mar 23, 2002
478
if (this->screen)
Mar 11, 2002
Mar 11, 2002
479
{
Mar 23, 2002
Mar 23, 2002
480
481
482
483
484
485
486
if (((this->screen->flags & SDL_FULLSCREEN)==SDL_FULLSCREEN) &&
((this->screen->flags & SDL_OPENGL)==SDL_OPENGL))
{
region_info.cursor_type=Ph_CURSOR_POINTER;
region_info.rid=PtWidgetRid(window);
PhRegionChange(Ph_REGION_CURSOR, 0, &region_info, NULL, NULL);
}
Mar 11, 2002
Mar 11, 2002
487
488
489
490
491
492
493
494
495
496
497
}
PtFlush();
#endif /* HAVE_OPENGL */
if (window)
{
PtUnrealizeWidget(window);
PtDestroyWidget(window);
window=NULL;
}
Mar 23, 2002
Mar 23, 2002
498
499
500
501
502
503
/* restore palette */
if (desktoppal!=SDLPH_PAL_NONE)
{
PgSetPalette(ph_palette, 0, 0, _Pg_MAX_PALETTE, Pg_PALSET_GLOBAL | Pg_PALSET_FORCE_EXPOSE, 0);
}
Mar 11, 2002
Mar 11, 2002
504
505
506
507
508
509
510
511
512
513
#ifdef HAVE_OPENGL
if (oglctx)
{
PhDCSetCurrent(NULL);
PhDCRelease(oglctx);
oglctx=NULL;
}
#endif /* HAVE_OPENGL */
}
Apr 26, 2001
Apr 26, 2001
514
515
516
static int ph_SetColors(_THIS, int firstcolor, int ncolors, SDL_Color *colors)
{
Mar 23, 2002
Mar 23, 2002
517
518
519
int i;
PhPoint_t point={0, 0};
PgColor_t syspalph[_Pg_MAX_PALETTE];
Apr 26, 2001
Apr 26, 2001
520
Mar 23, 2002
Mar 23, 2002
521
522
523
524
525
526
527
528
529
530
531
532
/* palette emulation code, using palette of the PhImage_t struct */
if (desktoppal==SDLPH_PAL_EMULATE)
{
if ((SDL_Image) && (SDL_Image->palette))
{
for (i=firstcolor; i<firstcolor+ncolors; i++)
{
SDL_Image->palette[i] = 0x00000000UL;
SDL_Image->palette[i] |= colors[i-firstcolor].r<<16;
SDL_Image->palette[i] |= colors[i-firstcolor].g<<8;
SDL_Image->palette[i] |= colors[i-firstcolor].b;
}
May 19, 2002
May 19, 2002
533
534
535
/* image needs to be redrawed, very slow method */
PgDrawPhImage(&point, SDL_Image, 0);
Mar 23, 2002
Mar 23, 2002
536
}
Apr 26, 2001
Apr 26, 2001
537
}
Mar 23, 2002
Mar 23, 2002
538
539
540
else
{
if (desktoppal==SDLPH_PAL_SYSTEM)
Apr 26, 2001
Apr 26, 2001
541
{
Mar 23, 2002
Mar 23, 2002
542
543
544
545
546
547
548
549
550
551
552
for (i=firstcolor; i<firstcolor+ncolors; i++)
{
syspalph[i] = 0x00000000UL;
syspalph[i] |= colors[i-firstcolor].r<<16;
syspalph[i] |= colors[i-firstcolor].g<<8;
syspalph[i] |= colors[i-firstcolor].b;
}
if ((this->screen->flags & SDL_FULLSCREEN) != SDL_FULLSCREEN)
{
/* window mode must use soft palette */
Mar 28, 2002
Mar 28, 2002
553
PgSetPalette((PgColor_t*)&syspalph[firstcolor], 0, firstcolor, ncolors, Pg_PALSET_SOFT, 0);
Mar 23, 2002
Mar 23, 2002
554
/* image needs to be redrawed, very slow method */
May 19, 2002
May 19, 2002
555
556
557
558
if (SDL_Image)
{
PgDrawPhImage(&point, SDL_Image, 0);
}
Mar 23, 2002
Mar 23, 2002
559
560
561
562
}
else
{
/* fullscreen mode must use hardware palette */
Mar 28, 2002
Mar 28, 2002
563
PgSetPalette((PgColor_t*)&syspalph[firstcolor], 0, firstcolor, ncolors, Pg_PALSET_GLOBAL, 0);
Mar 23, 2002
Mar 23, 2002
564
}
Apr 26, 2001
Apr 26, 2001
565
}
Mar 23, 2002
Mar 23, 2002
566
else
Apr 26, 2001
Apr 26, 2001
567
{
Mar 23, 2002
Mar 23, 2002
568
/* SDLPH_PAL_NONE do nothing */
Apr 26, 2001
Apr 26, 2001
569
}
Mar 23, 2002
Mar 23, 2002
570
571
572
}
return 1;
Apr 26, 2001
Apr 26, 2001
573
574
}
Feb 14, 2002
Feb 14, 2002
575
#ifdef HAVE_OPENGL
Mar 11, 2002
Mar 11, 2002
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
int ph_SetupOpenGLContext(_THIS, int width, int height, int bpp, Uint32 flags)
{
PtArg_t args[8];
PhDim_t dim;
uint64_t OGLAttrib[PH_OGL_MAX_ATTRIBS];
int OGLargc;
int pargc;
dim.w=width;
dim.h=height;
if (oglctx!=NULL)
{
PhDCSetCurrent(NULL);
PhDCRelease(oglctx);
oglctx=NULL;
}
OGLargc=0;
if (this->gl_config.depth_size)
{
OGLAttrib[OGLargc++]=PHOGL_ATTRIB_DEPTH_BITS;
OGLAttrib[OGLargc++]=this->gl_config.depth_size;
}
if (this->gl_config.stencil_size)
{
OGLAttrib[OGLargc++]=PHOGL_ATTRIB_STENCIL_BITS;
OGLAttrib[OGLargc++]=this->gl_config.stencil_size;
}
OGLAttrib[OGLargc++]=PHOGL_ATTRIB_FORCE_SW;
if (flags & SDL_FULLSCREEN)
{
OGLAttrib[OGLargc++]=PHOGL_ATTRIB_FULLSCREEN;
OGLAttrib[OGLargc++]=PHOGL_ATTRIB_DIRECT;
OGLAttrib[OGLargc++]=PHOGL_ATTRIB_FULLSCREEN_BEST;
OGLAttrib[OGLargc++]=PHOGL_ATTRIB_FULLSCREEN_CENTER;
}
OGLAttrib[OGLargc++]=PHOGL_ATTRIB_NONE;
if (this->gl_config.double_buffer)
{
oglctx=PdCreateOpenGLContext(2, &dim, 0, OGLAttrib);
}
else
{
oglctx=PdCreateOpenGLContext(1, &dim, 0, OGLAttrib);
}
Mar 28, 2002
Mar 28, 2002
624
Mar 11, 2002
Mar 11, 2002
625
626
if (oglctx==NULL)
{
May 19, 2002
May 19, 2002
627
fprintf(stderr,"ph_SetupOpenGLContext(): cannot create OpenGL context.\n");
Mar 11, 2002
Mar 11, 2002
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
return (-1);
}
PhDCSetCurrent(oglctx);
pargc=0;
PtSetArg(&args[pargc++], Pt_ARG_DIM, &dim, 0);
PtSetArg(&args[pargc++], Pt_ARG_RESIZE_FLAGS, Pt_FALSE, Pt_RESIZE_XY_AS_REQUIRED);
PtSetArg(&args[pargc++], Pt_ARG_FILL_COLOR, Pg_BLACK, 0);
if (flags & SDL_FULLSCREEN)
{
PhPoint_t pos;
pos.x=0;
pos.y=0;
PtSetArg(&args[pargc++], Pt_ARG_WINDOW_RENDER_FLAGS, Pt_FALSE, ~0);
Mar 28, 2002
Mar 28, 2002
647
PtSetArg(&args[pargc++], Pt_ARG_WINDOW_MANAGED_FLAGS, Pt_TRUE, Ph_WM_FFRONT | Ph_WM_CLOSE | Ph_WM_TOFRONT | Ph_WM_CONSWITCH);
Mar 11, 2002
Mar 11, 2002
648
649
650
PtSetArg(&args[pargc++], Pt_ARG_WINDOW_STATE, Pt_TRUE, Ph_WM_STATE_ISFRONT | Ph_WM_STATE_ISFOCUS);
PtSetArg(&args[pargc++], Pt_ARG_POS, &pos, 0);
}
Mar 28, 2002
Mar 28, 2002
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
else
{
/* remove border and caption if no frame flag selected */
if ((flags & SDL_NOFRAME) == SDL_NOFRAME)
{
PtSetArg(&args[pargc++], Pt_ARG_WINDOW_RENDER_FLAGS, 0, Ph_WM_RENDER_TITLE | Ph_WM_RENDER_BORDER);
}
else
{
/* if window is not resizable then remove resize handles */
if ((flags & SDL_RESIZABLE) != SDL_RESIZABLE)
{
PtSetArg(&args[pargc++], Pt_ARG_WINDOW_RENDER_FLAGS, 0, Ph_WM_RENDER_RESIZE);
}
}
}
Mar 11, 2002
Mar 11, 2002
667
668
669
670
671
672
673
674
if (window!=NULL)
{
PtUnrealizeWidget(window);
PtDestroyWidget(window);
window=NULL;
}
Mar 28, 2002
Mar 28, 2002
675
window=PtCreateWidget(PtWindow, NULL, pargc, args);
Mar 11, 2002
Mar 11, 2002
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
PtRealizeWidget(window);
/* disable mouse for fullscreen */
if (flags & SDL_FULLSCREEN)
{
PhRegion_t region_info;
region_info.cursor_type=Ph_CURSOR_NONE;
region_info.rid=PtWidgetRid(window);
PhRegionChange(Ph_REGION_CURSOR, 0, &region_info, NULL, NULL);
}
PtFlush();
return 0;
}
Jan 18, 2002
Jan 18, 2002
693
694
void ph_GL_SwapBuffers(_THIS)
{
Mar 2, 2002
Mar 2, 2002
695
PgSetRegion(PtWidgetRid(window));
Mar 11, 2002
Mar 11, 2002
696
PdOpenGLContextSwapBuffers(oglctx);
Jan 18, 2002
Jan 18, 2002
697
698
}
Mar 2, 2002
Mar 2, 2002
699
int ph_GL_GetAttribute(_THIS, SDL_GLattr attrib, int* value)
Apr 26, 2001
Apr 26, 2001
700
{
Mar 2, 2002
Mar 2, 2002
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
switch (attrib)
{
case SDL_GL_DOUBLEBUFFER:
*value=this->gl_config.double_buffer;
break;
case SDL_GL_STENCIL_SIZE:
*value=this->gl_config.stencil_size;
break;
case SDL_GL_DEPTH_SIZE:
*value=this->gl_config.depth_size;
break;
default:
*value=0;
return(-1);
}
return 0;
Apr 26, 2001
Apr 26, 2001
717
}
Mar 2, 2002
Mar 2, 2002
718
719
#endif /* HAVE_OPENGL */