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

Latest commit

 

History

History
176 lines (146 loc) · 5.15 KB

SDL_nullvideo.c

File metadata and controls

176 lines (146 loc) · 5.15 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
24
25
26
27
28
29
30
31
32
33
/* Dummy SDL video driver implementation; this is just enough to make an
* SDL-based application THINK it's got a working video driver, for
* applications that call SDL_Init(SDL_INIT_VIDEO) when they don't need it,
* and also for use as a collection of stubs when porting SDL to a new
* platform for which you haven't yet written a valid video driver.
*
* This is also a great way to determine bottlenecks: if you think that SDL
* is a performance problem for a given platform, enable this driver, and
* then see if your application runs faster without video overhead.
*
Mar 23, 2006
Mar 23, 2006
34
* Initial work by Ryan C. Gordon (icculus@icculus.org). A good portion
Apr 26, 2001
Apr 26, 2001
35
36
37
38
39
40
* of this was cut-and-pasted from Stephane Peter's work in the AAlib
* SDL video driver. Renamed to "DUMMY" by Sam Lantinga.
*/
#include "SDL_video.h"
#include "SDL_mouse.h"
Feb 16, 2006
Feb 16, 2006
41
42
43
#include "../SDL_sysvideo.h"
#include "../SDL_pixels_c.h"
#include "../../events/SDL_events_c.h"
Apr 26, 2001
Apr 26, 2001
44
45
46
47
48
#include "SDL_nullvideo.h"
#include "SDL_nullevents_c.h"
#include "SDL_nullmouse_c.h"
Jul 2, 2001
Jul 2, 2001
49
50
#define DUMMYVID_DRIVER_NAME "dummy"
Apr 26, 2001
Apr 26, 2001
51
/* Initialization/Query functions */
May 29, 2006
May 29, 2006
52
53
54
55
static int DUMMY_VideoInit(_THIS);
static int DUMMY_SetDisplayMode(_THIS, const SDL_DisplayMode * mode);
static void DUMMY_CreateWindowSurface(_THIS, SDL_Window * window,
Uint32 flags);
May 29, 2006
May 29, 2006
56
57
static void DUMMY_UpdateWindowSurface(_THIS, SDL_Window * window,
int numrects, SDL_Rect * rects);
May 29, 2006
May 29, 2006
58
static void DUMMY_VideoQuit(_THIS);
Apr 26, 2001
Apr 26, 2001
59
60
61
/* DUMMY driver bootstrap functions */
May 28, 2006
May 28, 2006
62
static int
May 29, 2006
May 29, 2006
63
DUMMY_Available(void)
Apr 26, 2001
Apr 26, 2001
64
{
May 29, 2006
May 29, 2006
65
66
const char *envr = SDL_getenv("SDL_VIDEODRIVER");
if ((envr) && (SDL_strcmp(envr, DUMMYVID_DRIVER_NAME) == 0)) {
May 28, 2006
May 28, 2006
67
68
return (1);
}
Jul 2, 2001
Jul 2, 2001
69
May 28, 2006
May 28, 2006
70
return (0);
Apr 26, 2001
Apr 26, 2001
71
72
}
May 28, 2006
May 28, 2006
73
static void
May 29, 2006
May 29, 2006
74
DUMMY_DeleteDevice(SDL_VideoDevice * device)
Apr 26, 2001
Apr 26, 2001
75
{
May 29, 2006
May 29, 2006
76
77
SDL_free(device->hidden);
SDL_free(device);
Apr 26, 2001
Apr 26, 2001
78
79
}
May 28, 2006
May 28, 2006
80
static SDL_VideoDevice *
May 29, 2006
May 29, 2006
81
DUMMY_CreateDevice(int devindex)
Apr 26, 2001
Apr 26, 2001
82
{
May 28, 2006
May 28, 2006
83
84
85
SDL_VideoDevice *device;
/* Initialize all variables that we clean on shutdown */
May 29, 2006
May 29, 2006
86
device = (SDL_VideoDevice *) SDL_malloc(sizeof(SDL_VideoDevice));
May 28, 2006
May 28, 2006
87
if (device) {
May 29, 2006
May 29, 2006
88
SDL_memset(device, 0, (sizeof *device));
May 28, 2006
May 28, 2006
89
device->hidden = (struct SDL_PrivateVideoData *)
May 29, 2006
May 29, 2006
90
SDL_malloc((sizeof *device->hidden));
May 28, 2006
May 28, 2006
91
92
}
if ((device == NULL) || (device->hidden == NULL)) {
May 29, 2006
May 29, 2006
93
SDL_OutOfMemory();
May 28, 2006
May 28, 2006
94
if (device) {
May 29, 2006
May 29, 2006
95
SDL_free(device);
May 28, 2006
May 28, 2006
96
97
98
}
return (0);
}
May 29, 2006
May 29, 2006
99
SDL_memset(device->hidden, 0, (sizeof *device->hidden));
May 28, 2006
May 28, 2006
100
101
102
103
/* Set the function pointers */
device->VideoInit = DUMMY_VideoInit;
device->SetDisplayMode = DUMMY_SetDisplayMode;
May 28, 2006
May 28, 2006
104
device->CreateWindowSurface = DUMMY_CreateWindowSurface;
May 29, 2006
May 29, 2006
105
device->UpdateWindowSurface = DUMMY_UpdateWindowSurface;
May 28, 2006
May 28, 2006
106
107
108
109
110
111
112
device->VideoQuit = DUMMY_VideoQuit;
device->InitOSKeymap = DUMMY_InitOSKeymap;
device->PumpEvents = DUMMY_PumpEvents;
device->free = DUMMY_DeleteDevice;
return device;
Apr 26, 2001
Apr 26, 2001
113
114
115
}
VideoBootStrap DUMMY_bootstrap = {
May 28, 2006
May 28, 2006
116
117
DUMMYVID_DRIVER_NAME, "SDL dummy video driver",
DUMMY_Available, DUMMY_CreateDevice
Apr 26, 2001
Apr 26, 2001
118
119
120
};
May 28, 2006
May 28, 2006
121
int
May 29, 2006
May 29, 2006
122
DUMMY_VideoInit(_THIS)
Apr 26, 2001
Apr 26, 2001
123
{
May 29, 2006
May 29, 2006
124
125
SDL_DisplayMode mode;
May 29, 2006
May 29, 2006
126
SDL_AddBasicVideoDisplay(NULL);
Apr 26, 2001
Apr 26, 2001
127
May 29, 2006
May 29, 2006
128
129
130
SDL_zero(mode);
SDL_AddDisplayMode(0, &mode);
May 28, 2006
May 28, 2006
131
132
/* We're done! */
return 0;
Apr 26, 2001
Apr 26, 2001
133
134
}
May 28, 2006
May 28, 2006
135
static int
May 29, 2006
May 29, 2006
136
DUMMY_SetDisplayMode(_THIS, const SDL_DisplayMode * mode)
Apr 26, 2001
Apr 26, 2001
137
{
May 29, 2006
May 29, 2006
138
SDL_CurrentDisplay.current_mode = *mode;
May 28, 2006
May 28, 2006
139
return 0;
Apr 26, 2001
Apr 26, 2001
140
141
}
May 28, 2006
May 28, 2006
142
static void
May 29, 2006
May 29, 2006
143
DUMMY_CreateWindowSurface(_THIS, SDL_Window * window, Uint32 flags)
Apr 26, 2001
Apr 26, 2001
144
{
May 28, 2006
May 28, 2006
145
146
int bpp;
Uint32 Rmask, Gmask, Bmask, Amask;
Apr 26, 2001
Apr 26, 2001
147
May 29, 2006
May 29, 2006
148
149
SDL_PixelFormatEnumToMasks(SDL_GetCurrentDisplayMode()->format, &bpp,
&Rmask, &Gmask, &Bmask, &Amask);
May 28, 2006
May 28, 2006
150
window->surface =
May 29, 2006
May 29, 2006
151
152
SDL_CreateRGBSurface(flags, window->w, window->h, bpp, Rmask, Gmask,
Bmask, Amask);
Apr 26, 2001
Apr 26, 2001
153
154
}
May 29, 2006
May 29, 2006
155
156
157
158
159
160
161
162
163
164
165
166
167
static void
DUMMY_UpdateWindowSurface(_THIS, SDL_Window * window, int numrects,
SDL_Rect * rects)
{
static int frame_number;
if (SDL_getenv("SDL_VIDEO_DUMMY_SAVE_FRAMES")) {
char file[128];
SDL_snprintf(file, sizeof(file), "SDL_screen-%8.8d.bmp",
++frame_number);
SDL_SaveBMP(window->surface, file);
}
}
Apr 26, 2001
Apr 26, 2001
168
169
170
/* Note: If we are terminated, this could be called in the middle of
another SDL video routine -- notably UpdateRects.
*/
May 28, 2006
May 28, 2006
171
void
May 29, 2006
May 29, 2006
172
DUMMY_VideoQuit(_THIS)
Apr 26, 2001
Apr 26, 2001
173
174
{
}
May 28, 2006
May 28, 2006
175
176
/* vi: set ts=4 sw=4 expandtab: */