Skip to content

Latest commit

 

History

History
584 lines (515 loc) · 14.5 KB

SDL_svgavideo.c

File metadata and controls

584 lines (515 loc) · 14.5 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Dec 31, 2011
Dec 31, 2011
3
Copyright (C) 1997-2012 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
24
25
26
27
28
/* SVGAlib based SDL video driver implementation.
*/
#include <unistd.h>
#include <sys/stat.h>
Jun 16, 2001
Jun 16, 2001
29
30
31
#include <sys/types.h>
#include <sys/ioctl.h>
#include <fcntl.h>
Apr 26, 2001
Apr 26, 2001
32
Feb 21, 2006
Feb 21, 2006
33
#if defined(__LINUX__)
Apr 26, 2001
Apr 26, 2001
34
#include <linux/vt.h>
Feb 21, 2006
Feb 21, 2006
35
#elif defined(__FREEBSD__)
Apr 26, 2001
Apr 26, 2001
36
37
38
39
40
41
42
43
44
45
#include <sys/consio.h>
#else
#error You must choose your operating system here
#endif
#include <vga.h>
#include <vgamouse.h>
#include <vgakeyboard.h>
#include "SDL_video.h"
#include "SDL_mouse.h"
Feb 16, 2006
Feb 16, 2006
46
47
48
#include "../SDL_sysvideo.h"
#include "../SDL_pixels_c.h"
#include "../../events/SDL_events_c.h"
Apr 26, 2001
Apr 26, 2001
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#include "SDL_svgavideo.h"
#include "SDL_svgaevents_c.h"
#include "SDL_svgamouse_c.h"
/* Initialization/Query functions */
static int SVGA_VideoInit(_THIS, SDL_PixelFormat *vformat);
static SDL_Rect **SVGA_ListModes(_THIS, SDL_PixelFormat *format, Uint32 flags);
static SDL_Surface *SVGA_SetVideoMode(_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags);
static int SVGA_SetColors(_THIS, int firstcolor, int ncolors,
SDL_Color *colors);
static void SVGA_VideoQuit(_THIS);
/* Hardware surface functions */
static int SVGA_AllocHWSurface(_THIS, SDL_Surface *surface);
static int SVGA_LockHWSurface(_THIS, SDL_Surface *surface);
static int SVGA_FlipHWSurface(_THIS, SDL_Surface *surface);
static void SVGA_UnlockHWSurface(_THIS, SDL_Surface *surface);
static void SVGA_FreeHWSurface(_THIS, SDL_Surface *surface);
/* SVGAlib driver bootstrap functions */
static int SVGA_Available(void)
{
/* Check to see if we are root and stdin is a virtual console */
int console;
Jun 16, 2001
Jun 16, 2001
74
75
76
/* SVGALib 1.9.x+ doesn't require root (via /dev/svga) */
int svgalib2 = -1;
Apr 26, 2001
Apr 26, 2001
77
Jun 16, 2001
Jun 16, 2001
78
/* See if we are connected to a virtual terminal */
Apr 26, 2001
Apr 26, 2001
79
console = STDIN_FILENO;
Nov 2, 2001
Nov 2, 2001
80
#if 0 /* This is no longer needed, SVGAlib can switch consoles for us */
Apr 26, 2001
Apr 26, 2001
81
82
83
84
85
86
87
88
89
if ( console >= 0 ) {
struct stat sb;
struct vt_mode dummy;
if ( (fstat(console, &sb) < 0) ||
(ioctl(console, VT_GETMODE, &dummy) < 0) ) {
console = -1;
}
}
Nov 2, 2001
Nov 2, 2001
90
#endif /* 0 */
Jun 16, 2001
Jun 16, 2001
91
92
93
94
95
96
97
98
/* See if SVGAlib 2.0 is available */
svgalib2 = open("/dev/svga", O_RDONLY);
if (svgalib2 != -1) {
close(svgalib2);
}
return(((svgalib2 != -1) || (geteuid() == 0)) && (console >= 0));
Apr 26, 2001
Apr 26, 2001
99
100
101
102
}
static void SVGA_DeleteDevice(SDL_VideoDevice *device)
{
Feb 7, 2006
Feb 7, 2006
103
104
SDL_free(device->hidden);
SDL_free(device);
Apr 26, 2001
Apr 26, 2001
105
106
107
108
109
110
111
}
static SDL_VideoDevice *SVGA_CreateDevice(int devindex)
{
SDL_VideoDevice *device;
/* Initialize all variables that we clean on shutdown */
Feb 7, 2006
Feb 7, 2006
112
device = (SDL_VideoDevice *)SDL_malloc(sizeof(SDL_VideoDevice));
Apr 26, 2001
Apr 26, 2001
113
if ( device ) {
Feb 7, 2006
Feb 7, 2006
114
SDL_memset(device, 0, (sizeof *device));
Apr 26, 2001
Apr 26, 2001
115
device->hidden = (struct SDL_PrivateVideoData *)
Feb 7, 2006
Feb 7, 2006
116
SDL_malloc((sizeof *device->hidden));
Apr 26, 2001
Apr 26, 2001
117
118
119
120
}
if ( (device == NULL) || (device->hidden == NULL) ) {
SDL_OutOfMemory();
if ( device ) {
Feb 7, 2006
Feb 7, 2006
121
SDL_free(device);
Apr 26, 2001
Apr 26, 2001
122
123
124
}
return(0);
}
Feb 7, 2006
Feb 7, 2006
125
SDL_memset(device->hidden, 0, (sizeof *device->hidden));
Apr 26, 2001
Apr 26, 2001
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/* Set the function pointers */
device->VideoInit = SVGA_VideoInit;
device->ListModes = SVGA_ListModes;
device->SetVideoMode = SVGA_SetVideoMode;
device->SetColors = SVGA_SetColors;
device->UpdateRects = NULL;
device->VideoQuit = SVGA_VideoQuit;
device->AllocHWSurface = SVGA_AllocHWSurface;
device->CheckHWBlit = NULL;
device->FillHWRect = NULL;
device->SetHWColorKey = NULL;
device->SetHWAlpha = NULL;
device->LockHWSurface = SVGA_LockHWSurface;
device->UnlockHWSurface = SVGA_UnlockHWSurface;
Oct 14, 2001
Oct 14, 2001
141
device->FlipHWSurface = SVGA_FlipHWSurface;
Apr 26, 2001
Apr 26, 2001
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
device->FreeHWSurface = SVGA_FreeHWSurface;
device->SetCaption = NULL;
device->SetIcon = NULL;
device->IconifyWindow = NULL;
device->GrabInput = NULL;
device->GetWMInfo = NULL;
device->InitOSKeymap = SVGA_InitOSKeymap;
device->PumpEvents = SVGA_PumpEvents;
device->free = SVGA_DeleteDevice;
return device;
}
VideoBootStrap SVGALIB_bootstrap = {
"svgalib", "SVGAlib",
SVGA_Available, SVGA_CreateDevice
};
Mar 19, 2006
Mar 19, 2006
161
static int SVGA_AddMode(_THIS, int mode, int actually_add)
Apr 26, 2001
Apr 26, 2001
162
{
Mar 19, 2006
Mar 19, 2006
163
int i, j;
Apr 26, 2001
Apr 26, 2001
164
165
166
167
vga_modeinfo *modeinfo;
modeinfo = vga_getmodeinfo(mode);
Mar 19, 2006
Mar 19, 2006
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
i = modeinfo->bytesperpixel-1;
if ( i < 0 ) {
return 0;
}
if ( actually_add ) {
SDL_Rect saved_rect[2];
int saved_mode[2];
int b;
/* Add the mode, sorted largest to smallest */
b = 0;
j = 0;
while ( (SDL_modelist[i][j]->w > modeinfo->width) ||
(SDL_modelist[i][j]->h > modeinfo->height) ) {
++j;
Mar 19, 2006
Mar 19, 2006
183
}
Mar 19, 2006
Mar 19, 2006
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
/* Skip modes that are already in our list */
if ( (SDL_modelist[i][j]->w == modeinfo->width) &&
(SDL_modelist[i][j]->h == modeinfo->height) ) {
return(0);
}
/* Insert the new mode */
saved_rect[b] = *SDL_modelist[i][j];
saved_mode[b] = SDL_vgamode[i][j];
SDL_modelist[i][j]->w = modeinfo->width;
SDL_modelist[i][j]->h = modeinfo->height;
SDL_vgamode[i][j] = mode;
/* Everybody scoot down! */
if ( saved_rect[b].w && saved_rect[b].h ) {
for ( ++j; SDL_modelist[i][j]->w; ++j ) {
saved_rect[!b] = *SDL_modelist[i][j];
saved_mode[!b] = SDL_vgamode[i][j];
*SDL_modelist[i][j] = saved_rect[b];
SDL_vgamode[i][j] = saved_mode[b];
b = !b;
}
*SDL_modelist[i][j] = saved_rect[b];
SDL_vgamode[i][j] = saved_mode[b];
Apr 26, 2001
Apr 26, 2001
206
}
Mar 19, 2006
Mar 19, 2006
207
208
} else {
++SDL_nummodes[i];
Apr 26, 2001
Apr 26, 2001
209
}
Mar 19, 2006
Mar 19, 2006
210
return(1);
Apr 26, 2001
Apr 26, 2001
211
212
213
214
215
216
217
}
static void SVGA_UpdateVideoInfo(_THIS)
{
vga_modeinfo *modeinfo;
this->info.wm_available = 0;
Mar 19, 2006
Mar 19, 2006
218
this->info.hw_available = (banked ? 0 : 1);
Apr 26, 2001
Apr 26, 2001
219
modeinfo = vga_getmodeinfo(vga_getcurrentmode());
Oct 14, 2001
Oct 14, 2001
220
this->info.video_mem = modeinfo->memory;
Apr 26, 2001
Apr 26, 2001
221
/* FIXME: Add hardware accelerated blit information */
Nov 2, 2001
Nov 2, 2001
222
223
#ifdef SVGALIB_DEBUG
printf("Hardware accelerated blit: %savailable\n", modeinfo->haveblit ? "" : "not ");
Apr 26, 2001
Apr 26, 2001
224
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
#endif
}
int SVGA_VideoInit(_THIS, SDL_PixelFormat *vformat)
{
int keyboard;
int i, j;
int mode, total_modes;
/* Initialize all variables that we clean on shutdown */
for ( i=0; i<NUM_MODELISTS; ++i ) {
SDL_nummodes[i] = 0;
SDL_modelist[i] = NULL;
SDL_vgamode[i] = NULL;
}
/* Initialize the library */
vga_disabledriverreport();
if ( vga_init() < 0 ) {
SDL_SetError("Unable to initialize SVGAlib");
return(-1);
}
vga_setmode(TEXT);
/* Enable mouse and keyboard support */
vga_setmousesupport(1);
keyboard = keyboard_init_return_fd();
if ( keyboard < 0 ) {
SDL_SetError("Unable to initialize keyboard");
return(-1);
}
if ( SVGA_initkeymaps(keyboard) < 0 ) {
return(-1);
}
keyboard_seteventhandler(SVGA_keyboardcallback);
Mar 15, 2006
Mar 15, 2006
260
261
262
263
/* Determine the current screen size */
this->info.current_w = 0;
this->info.current_h = 0;
Apr 26, 2001
Apr 26, 2001
264
265
266
267
268
269
270
/* Determine the screen depth (use default 8-bit depth) */
vformat->BitsPerPixel = 8;
/* Enumerate the available fullscreen modes */
total_modes = 0;
for ( mode=vga_lastmodenumber(); mode; --mode ) {
if ( vga_hasmode(mode) ) {
Mar 19, 2006
Mar 19, 2006
271
if ( SVGA_AddMode(this, mode, 0) ) {
Apr 26, 2001
Apr 26, 2001
272
273
274
275
++total_modes;
}
}
}
Mar 19, 2006
Mar 19, 2006
276
if ( SVGA_AddMode(this, G320x200x256, 0) ) ++total_modes;
Apr 26, 2001
Apr 26, 2001
277
278
279
280
281
if ( total_modes == 0 ) {
SDL_SetError("No linear video modes available");
return(-1);
}
for ( i=0; i<NUM_MODELISTS; ++i ) {
Feb 7, 2006
Feb 7, 2006
282
SDL_vgamode[i] = (int *)SDL_malloc(SDL_nummodes[i]*sizeof(int));
Apr 26, 2001
Apr 26, 2001
283
284
285
286
287
if ( SDL_vgamode[i] == NULL ) {
SDL_OutOfMemory();
return(-1);
}
SDL_modelist[i] = (SDL_Rect **)
Feb 7, 2006
Feb 7, 2006
288
SDL_malloc((SDL_nummodes[i]+1)*sizeof(SDL_Rect *));
Apr 26, 2001
Apr 26, 2001
289
290
291
292
293
if ( SDL_modelist[i] == NULL ) {
SDL_OutOfMemory();
return(-1);
}
for ( j=0; j<SDL_nummodes[i]; ++j ) {
Feb 7, 2006
Feb 7, 2006
294
SDL_modelist[i][j]=(SDL_Rect *)SDL_malloc(sizeof(SDL_Rect));
Apr 26, 2001
Apr 26, 2001
295
296
297
298
if ( SDL_modelist[i][j] == NULL ) {
SDL_OutOfMemory();
return(-1);
}
Feb 7, 2006
Feb 7, 2006
299
SDL_memset(SDL_modelist[i][j], 0, sizeof(SDL_Rect));
Apr 26, 2001
Apr 26, 2001
300
301
302
303
304
}
SDL_modelist[i][j] = NULL;
}
for ( mode=vga_lastmodenumber(); mode; --mode ) {
if ( vga_hasmode(mode) ) {
Mar 19, 2006
Mar 19, 2006
305
SVGA_AddMode(this, mode, 1);
Apr 26, 2001
Apr 26, 2001
306
307
}
}
Mar 19, 2006
Mar 19, 2006
308
SVGA_AddMode(this, G320x200x256, 1);
Apr 26, 2001
Apr 26, 2001
309
310
311
312
313
314
315
316
/* Free extra (duplicated) modes */
for ( i=0; i<NUM_MODELISTS; ++i ) {
j = 0;
while ( SDL_modelist[i][j] && SDL_modelist[i][j]->w ) {
j++;
}
while ( SDL_modelist[i][j] ) {
Feb 7, 2006
Feb 7, 2006
317
SDL_free(SDL_modelist[i][j]);
Apr 26, 2001
Apr 26, 2001
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
SDL_modelist[i][j] = NULL;
j++;
}
}
/* Fill in our hardware acceleration capabilities */
SVGA_UpdateVideoInfo(this);
/* We're done! */
return(0);
}
SDL_Rect **SVGA_ListModes(_THIS, SDL_PixelFormat *format, Uint32 flags)
{
return(SDL_modelist[((format->BitsPerPixel+7)/8)-1]);
}
/* Various screen update functions available */
static void SVGA_DirectUpdate(_THIS, int numrects, SDL_Rect *rects);
static void SVGA_BankedUpdate(_THIS, int numrects, SDL_Rect *rects);
SDL_Surface *SVGA_SetVideoMode(_THIS, SDL_Surface *current,
int width, int height, int bpp, Uint32 flags)
{
int mode;
int vgamode;
vga_modeinfo *modeinfo;
Oct 14, 2001
Oct 14, 2001
345
int screenpage_len;
Apr 26, 2001
Apr 26, 2001
346
Mar 19, 2006
Mar 19, 2006
347
348
349
350
/* Free old pixels if we were in banked mode */
if ( banked && current->pixels ) {
free(current->pixels);
current->pixels = NULL;
Mar 19, 2006
Mar 19, 2006
351
352
}
Apr 26, 2001
Apr 26, 2001
353
354
355
356
357
358
359
360
361
362
363
364
/* Try to set the requested linear video mode */
bpp = (bpp+7)/8-1;
for ( mode=0; SDL_modelist[bpp][mode]; ++mode ) {
if ( (SDL_modelist[bpp][mode]->w == width) &&
(SDL_modelist[bpp][mode]->h == height) ) {
break;
}
}
if ( SDL_modelist[bpp][mode] == NULL ) {
SDL_SetError("Couldn't find requested mode in list");
return(NULL);
}
Mar 19, 2006
Mar 19, 2006
365
366
vgamode = SDL_vgamode[bpp][mode];
vga_setmode(vgamode);
Apr 26, 2001
Apr 26, 2001
367
368
vga_setpage(0);
Mar 19, 2006
Mar 19, 2006
369
if ( (vga_setlinearaddressing() < 0) && (vgamode != G320x200x256) ) {
Mar 19, 2006
Mar 19, 2006
370
371
372
banked = 1;
} else {
banked = 0;
Apr 26, 2001
Apr 26, 2001
373
}
Mar 19, 2006
Mar 19, 2006
374
Apr 26, 2001
Apr 26, 2001
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
modeinfo = vga_getmodeinfo(SDL_vgamode[bpp][mode]);
/* Update hardware acceleration info */
SVGA_UpdateVideoInfo(this);
/* Allocate the new pixel format for the screen */
bpp = (bpp+1)*8;
if ( (bpp == 16) && (modeinfo->colors == 32768) ) {
bpp = 15;
}
if ( ! SDL_ReallocFormat(current, bpp, 0, 0, 0, 0) ) {
return(NULL);
}
/* Set up the new mode framebuffer */
Mar 19, 2006
Mar 19, 2006
390
current->flags = SDL_FULLSCREEN;
Mar 19, 2006
Mar 19, 2006
391
if ( !banked ) {
Mar 19, 2006
Mar 19, 2006
392
393
current->flags |= SDL_HWSURFACE;
}
Apr 26, 2001
Apr 26, 2001
394
395
396
397
if ( bpp == 8 ) {
/* FIXME: What about DirectColor? */
current->flags |= SDL_HWPALETTE;
}
Apr 26, 2001
Apr 26, 2001
398
399
400
current->w = width;
current->h = height;
current->pitch = modeinfo->linewidth;
Mar 19, 2006
Mar 19, 2006
401
402
403
404
405
406
if ( banked ) {
current->pixels = SDL_malloc(current->h * current->pitch);
if ( !current->pixels ) {
SDL_OutOfMemory();
return(NULL);
}
Mar 19, 2006
Mar 19, 2006
407
408
409
} else {
current->pixels = vga_getgraphmem();
}
Apr 26, 2001
Apr 26, 2001
410
Oct 14, 2001
Oct 14, 2001
411
/* set double-buffering */
Mar 19, 2006
Mar 19, 2006
412
if ( (flags & SDL_DOUBLEBUF) && !banked )
Oct 14, 2001
Oct 14, 2001
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
{
/* length of one screen page in bytes */
screenpage_len=current->h*modeinfo->linewidth;
/* if start address should be aligned */
if ( modeinfo->linewidth_unit )
{
if ( screenpage_len % modeinfo->linewidth_unit )
{
screenpage_len += modeinfo->linewidth_unit - ( screenpage_len % modeinfo->linewidth_unit );
}
}
/* if we heve enough videomemory = ak je dost videopamete */
if ( modeinfo->memory > ( screenpage_len * 2 / 1024 ) )
{
current->flags |= SDL_DOUBLEBUF;
flip_page = 0;
flip_offset[0] = 0;
flip_offset[1] = screenpage_len;
flip_address[0] = vga_getgraphmem();
flip_address[1] = flip_address[0]+screenpage_len;
SVGA_FlipHWSurface(this,current);
}
}
Apr 26, 2001
Apr 26, 2001
439
/* Set the blit function */
Mar 19, 2006
Mar 19, 2006
440
if ( banked ) {
Mar 19, 2006
Mar 19, 2006
441
442
443
444
this->UpdateRects = SVGA_BankedUpdate;
} else {
this->UpdateRects = SVGA_DirectUpdate;
}
Apr 26, 2001
Apr 26, 2001
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
/* Set up the mouse handler again (buggy SVGAlib 1.40) */
mouse_seteventhandler(SVGA_mousecallback);
/* We're done */
return(current);
}
/* We don't actually allow hardware surfaces other than the main one */
static int SVGA_AllocHWSurface(_THIS, SDL_Surface *surface)
{
return(-1);
}
static void SVGA_FreeHWSurface(_THIS, SDL_Surface *surface)
{
return;
}
/* We need to wait for vertical retrace on page flipped displays */
static int SVGA_LockHWSurface(_THIS, SDL_Surface *surface)
{
Oct 14, 2001
Oct 14, 2001
466
/* The waiting is done in SVGA_FlipHWSurface() */
Apr 26, 2001
Apr 26, 2001
467
468
469
470
471
472
473
474
475
return(0);
}
static void SVGA_UnlockHWSurface(_THIS, SDL_Surface *surface)
{
return;
}
static int SVGA_FlipHWSurface(_THIS, SDL_Surface *surface)
{
Mar 19, 2006
Mar 19, 2006
476
if ( !banked ) {
Mar 19, 2006
Mar 19, 2006
477
478
479
480
481
vga_setdisplaystart(flip_offset[flip_page]);
flip_page=!flip_page;
surface->pixels=flip_address[flip_page];
vga_waitretrace();
}
Apr 26, 2001
Apr 26, 2001
482
483
484
485
486
487
488
489
490
491
return(0);
}
static void SVGA_DirectUpdate(_THIS, int numrects, SDL_Rect *rects)
{
return;
}
static void SVGA_BankedUpdate(_THIS, int numrects, SDL_Rect *rects)
{
Mar 19, 2006
Mar 19, 2006
492
int i, j;
Mar 19, 2006
Mar 19, 2006
493
SDL_Rect *rect;
Mar 19, 2006
Mar 19, 2006
494
495
496
497
498
499
500
501
int page, vp;
int x, y, w, h;
unsigned char *src;
unsigned char *dst;
int bpp = this->screen->format->BytesPerPixel;
int pitch = this->screen->pitch;
dst = vga_getgraphmem();
Mar 19, 2006
Mar 19, 2006
502
503
for ( i=0; i < numrects; ++i ) {
rect = &rects[i];
Mar 19, 2006
Mar 19, 2006
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
x = rect->x;
y = rect->y;
w = rect->w * bpp;
h = rect->h;
vp = y * pitch + x * bpp;
src = (unsigned char *)this->screen->pixels + vp;
page = vp >> 16;
vp &= 0xffff;
vga_setpage(page);
for (j = 0; j < h; j++) {
if (vp + w > 0x10000) {
if (vp >= 0x10000) {
page++;
vga_setpage(page);
vp &= 0xffff;
} else {
SDL_memcpy(dst + vp, src, 0x10000 - vp);
page++;
vga_setpage(page);
SDL_memcpy(dst, src + 0x10000 - vp,
(vp + w) & 0xffff);
vp = (vp + pitch) & 0xffff;
src += pitch;
continue;
}
}
SDL_memcpy(dst + vp, src, w);
src += pitch;
vp += pitch;
}
Mar 19, 2006
Mar 19, 2006
535
}
Apr 26, 2001
Apr 26, 2001
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
}
int SVGA_SetColors(_THIS, int firstcolor, int ncolors, SDL_Color *colors)
{
int i;
for(i = 0; i < ncolors; i++) {
vga_setpalette(firstcolor + i,
colors[i].r>>2,
colors[i].g>>2,
colors[i].b>>2);
}
return(1);
}
/* Note: If we are terminated, this could be called in the middle of
another SDL video routine -- notably UpdateRects.
*/
void SVGA_VideoQuit(_THIS)
{
int i, j;
/* Reset the console video mode */
if ( this->screen && (this->screen->w && this->screen->h) ) {
vga_setmode(TEXT);
}
keyboard_close();
/* Free video mode lists */
for ( i=0; i<NUM_MODELISTS; ++i ) {
if ( SDL_modelist[i] != NULL ) {
for ( j=0; SDL_modelist[i][j]; ++j )
Feb 7, 2006
Feb 7, 2006
568
569
SDL_free(SDL_modelist[i][j]);
SDL_free(SDL_modelist[i]);
Apr 26, 2001
Apr 26, 2001
570
571
572
SDL_modelist[i] = NULL;
}
if ( SDL_vgamode[i] != NULL ) {
Feb 7, 2006
Feb 7, 2006
573
SDL_free(SDL_vgamode[i]);
Apr 26, 2001
Apr 26, 2001
574
575
576
SDL_vgamode[i] = NULL;
}
}
Mar 19, 2006
Mar 19, 2006
577
578
579
580
if ( this->screen ) {
if ( banked && this->screen->pixels ) {
SDL_free(this->screen->pixels);
}
Apr 26, 2001
Apr 26, 2001
581
582
583
this->screen->pixels = NULL;
}
}