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

Latest commit

 

History

History
309 lines (267 loc) · 8.7 KB

SDL_x11video.c

File metadata and controls

309 lines (267 loc) · 8.7 KB
 
Jul 26, 2006
Jul 26, 2006
1
2
/*
SDL - Simple DirectMedia Layer
Jan 24, 2010
Jan 24, 2010
3
Copyright (C) 1997-2010 Sam Lantinga
Jul 26, 2006
Jul 26, 2006
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 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
Lesser General Public License for more details.
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
Sam Lantinga
slouken@libsdl.org
*/
#include "SDL_config.h"
Jul 12, 2010
Jul 12, 2010
24
25
#include <unistd.h> /* For getpid() and readlink() */
Jul 26, 2006
Jul 26, 2006
26
27
28
29
30
31
#include "SDL_video.h"
#include "SDL_mouse.h"
#include "../SDL_sysvideo.h"
#include "../SDL_pixels_c.h"
#include "SDL_x11video.h"
May 9, 2010
May 9, 2010
32
#include "SDL_x11render.h"
Aug 25, 2008
Aug 25, 2008
33
Jul 30, 2009
Jul 30, 2009
34
35
36
#if SDL_VIDEO_DRIVER_PANDORA
#include "SDL_x11opengles.h"
#endif
Jul 26, 2006
Jul 26, 2006
37
38
39
40
41
/* Initialization/Query functions */
static int X11_VideoInit(_THIS);
static void X11_VideoQuit(_THIS);
Jul 27, 2006
Jul 27, 2006
42
43
44
45
46
47
48
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
74
75
76
77
78
79
80
81
82
83
84
/* Find out what class name we should use */
static char *
get_classname()
{
char *spot;
#if defined(__LINUX__) || defined(__FREEBSD__)
char procfile[1024];
char linkfile[1024];
int linksize;
#endif
/* First allow environment variable override */
spot = SDL_getenv("SDL_VIDEO_X11_WMCLASS");
if (spot) {
return SDL_strdup(spot);
}
/* Next look at the application's executable name */
#if defined(__LINUX__) || defined(__FREEBSD__)
#if defined(__LINUX__)
SDL_snprintf(procfile, SDL_arraysize(procfile), "/proc/%d/exe", getpid());
#elif defined(__FREEBSD__)
SDL_snprintf(procfile, SDL_arraysize(procfile), "/proc/%d/file",
getpid());
#else
#error Where can we find the executable name?
#endif
linksize = readlink(procfile, linkfile, sizeof(linkfile) - 1);
if (linksize > 0) {
linkfile[linksize] = '\0';
spot = SDL_strrchr(linkfile, '/');
if (spot) {
return SDL_strdup(spot + 1);
} else {
return SDL_strdup(linkfile);
}
}
#endif /* __LINUX__ || __FREEBSD__ */
/* Finally use the default we've used forever */
return SDL_strdup("SDL_App");
}
Jul 26, 2006
Jul 26, 2006
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/* X11 driver bootstrap functions */
static int
X11_Available(void)
{
Display *display = NULL;
if (SDL_X11_LoadSymbols()) {
display = XOpenDisplay(NULL);
if (display != NULL) {
XCloseDisplay(display);
}
SDL_X11_UnloadSymbols();
}
return (display != NULL);
}
static void
X11_DeleteDevice(SDL_VideoDevice * device)
{
SDL_VideoData *data = (SDL_VideoData *) device->driverdata;
if (data->display) {
XCloseDisplay(data->display);
}
Mar 7, 2008
Mar 7, 2008
108
SDL_free(data->windowlist);
Jul 26, 2006
Jul 26, 2006
109
SDL_free(device->driverdata);
Jul 30, 2009
Jul 30, 2009
110
111
112
#if SDL_VIDEO_DRIVER_PANDORA
SDL_free(device->gles_data);
#endif
Jul 26, 2006
Jul 26, 2006
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
SDL_free(device);
SDL_X11_UnloadSymbols();
}
static SDL_VideoDevice *
X11_CreateDevice(int devindex)
{
SDL_VideoDevice *device;
SDL_VideoData *data;
const char *display = NULL; /* Use the DISPLAY environment variable */
if (!SDL_X11_LoadSymbols()) {
return NULL;
}
/* Initialize all variables that we clean on shutdown */
device = (SDL_VideoDevice *) SDL_calloc(1, sizeof(SDL_VideoDevice));
Mar 6, 2008
Mar 6, 2008
131
132
133
if (!device) {
SDL_OutOfMemory();
return NULL;
Jul 26, 2006
Jul 26, 2006
134
}
Mar 6, 2008
Mar 6, 2008
135
136
data = (struct SDL_VideoData *) SDL_calloc(1, sizeof(SDL_VideoData));
if (!data) {
Jul 26, 2006
Jul 26, 2006
137
SDL_OutOfMemory();
Mar 6, 2008
Mar 6, 2008
138
SDL_free(device);
Jul 26, 2006
Jul 26, 2006
139
140
141
142
return NULL;
}
device->driverdata = data;
Jul 30, 2009
Jul 30, 2009
143
144
145
146
147
148
149
150
#if SDL_VIDEO_DRIVER_PANDORA
device->gles_data = (struct SDL_PrivateGLESData *) SDL_calloc(1, sizeof(SDL_PrivateGLESData));
if (!device->gles_data) {
SDL_OutOfMemory();
return NULL;
}
#endif
Jul 26, 2006
Jul 26, 2006
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
/* FIXME: Do we need this?
if ( (SDL_strncmp(XDisplayName(display), ":", 1) == 0) ||
(SDL_strncmp(XDisplayName(display), "unix:", 5) == 0) ) {
local_X11 = 1;
} else {
local_X11 = 0;
}
*/
data->display = XOpenDisplay(display);
#if defined(__osf__) && defined(SDL_VIDEO_DRIVER_X11_DYNAMIC)
/* On Tru64 if linking without -lX11, it fails and you get following message.
* Xlib: connection to ":0.0" refused by server
* Xlib: XDM authorization key matches an existing client!
*
* It succeeds if retrying 1 second later
* or if running xhost +localhost on shell.
*/
if (data->display == NULL) {
SDL_Delay(1000);
data->display = XOpenDisplay(display);
}
#endif
if (data->display == NULL) {
SDL_free(device);
SDL_SetError("Couldn't open X11 display");
return NULL;
}
#ifdef X11_DEBUG
XSynchronize(data->display, True);
#endif
/* Set the function pointers */
device->VideoInit = X11_VideoInit;
device->VideoQuit = X11_VideoQuit;
device->GetDisplayModes = X11_GetDisplayModes;
device->SetDisplayMode = X11_SetDisplayMode;
Jul 10, 2007
Jul 10, 2007
187
188
device->SetDisplayGammaRamp = X11_SetDisplayGammaRamp;
device->GetDisplayGammaRamp = X11_GetDisplayGammaRamp;
Jan 12, 2009
Jan 12, 2009
189
device->SuspendScreenSaver = X11_SuspendScreenSaver;
Jul 27, 2006
Jul 27, 2006
190
device->PumpEvents = X11_PumpEvents;
Jul 26, 2006
Jul 26, 2006
191
192
193
194
device->CreateWindow = X11_CreateWindow;
device->CreateWindowFrom = X11_CreateWindowFrom;
device->SetWindowTitle = X11_SetWindowTitle;
Jan 2, 2009
Jan 2, 2009
195
device->SetWindowIcon = X11_SetWindowIcon;
Jul 26, 2006
Jul 26, 2006
196
197
198
199
200
201
202
203
204
205
206
device->SetWindowPosition = X11_SetWindowPosition;
device->SetWindowSize = X11_SetWindowSize;
device->ShowWindow = X11_ShowWindow;
device->HideWindow = X11_HideWindow;
device->RaiseWindow = X11_RaiseWindow;
device->MaximizeWindow = X11_MaximizeWindow;
device->MinimizeWindow = X11_MinimizeWindow;
device->RestoreWindow = X11_RestoreWindow;
device->SetWindowGrab = X11_SetWindowGrab;
device->DestroyWindow = X11_DestroyWindow;
device->GetWindowWMInfo = X11_GetWindowWMInfo;
Jul 28, 2006
Jul 28, 2006
207
#ifdef SDL_VIDEO_OPENGL_GLX
Jul 26, 2006
Jul 26, 2006
208
209
device->GL_LoadLibrary = X11_GL_LoadLibrary;
device->GL_GetProcAddress = X11_GL_GetProcAddress;
Feb 9, 2009
Feb 9, 2009
210
device->GL_UnloadLibrary = X11_GL_UnloadLibrary;
Jul 26, 2006
Jul 26, 2006
211
212
213
214
215
216
217
device->GL_CreateContext = X11_GL_CreateContext;
device->GL_MakeCurrent = X11_GL_MakeCurrent;
device->GL_SetSwapInterval = X11_GL_SetSwapInterval;
device->GL_GetSwapInterval = X11_GL_GetSwapInterval;
device->GL_SwapWindow = X11_GL_SwapWindow;
device->GL_DeleteContext = X11_GL_DeleteContext;
#endif
Jul 30, 2009
Jul 30, 2009
218
219
220
221
222
223
224
225
226
227
228
#if SDL_VIDEO_DRIVER_PANDORA
device->GL_LoadLibrary = X11_GLES_LoadLibrary;
device->GL_GetProcAddress = X11_GLES_GetProcAddress;
device->GL_UnloadLibrary = X11_GLES_UnloadLibrary;
device->GL_CreateContext = X11_GLES_CreateContext;
device->GL_MakeCurrent = X11_GLES_MakeCurrent;
device->GL_SetSwapInterval = X11_GLES_SetSwapInterval;
device->GL_GetSwapInterval = X11_GLES_GetSwapInterval;
device->GL_SwapWindow = X11_GLES_SwapWindow;
device->GL_DeleteContext = X11_GLES_DeleteContext;
#endif
Jul 26, 2006
Jul 26, 2006
229
Jul 12, 2010
Jul 12, 2010
230
231
232
233
device->SetClipboardText = X11_SetClipboardText;
device->GetClipboardText = X11_GetClipboardText;
device->HasClipboardText = X11_HasClipboardText;
Jul 26, 2006
Jul 26, 2006
234
235
236
237
238
239
240
241
242
243
244
245
246
247
device->free = X11_DeleteDevice;
return device;
}
VideoBootStrap X11_bootstrap = {
"x11", "SDL X11 video driver",
X11_Available, X11_CreateDevice
};
int
X11_VideoInit(_THIS)
{
Jul 27, 2006
Jul 27, 2006
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
SDL_VideoData *data = (SDL_VideoData *) _this->driverdata;
/* Get the window class name, usually the name of the application */
data->classname = get_classname();
/* Open a connection to the X input manager */
#ifdef X_HAVE_UTF8_STRING
if (SDL_X11_HAVE_UTF8) {
data->im =
XOpenIM(data->display, NULL, data->classname, data->classname);
}
#endif
/* Look up some useful Atoms */
data->WM_DELETE_WINDOW =
XInternAtom(data->display, "WM_DELETE_WINDOW", False);
Dec 4, 2009
Dec 4, 2009
265
266
267
if (X11_InitModes(_this) < 0) {
return -1;
}
Jul 26, 2006
Jul 26, 2006
268
Nov 30, 2008
Nov 30, 2008
269
270
271
272
#if SDL_VIDEO_RENDER_X11
X11_AddRenderDriver(_this);
#endif
Jan 8, 2008
Jan 8, 2008
273
274
275
if (X11_InitKeyboard(_this) != 0) {
return -1;
}
Jul 26, 2006
Jul 26, 2006
276
277
278
279
280
281
282
283
X11_InitMouse(_this);
return 0;
}
void
X11_VideoQuit(_THIS)
{
Jul 27, 2006
Jul 27, 2006
284
285
286
287
288
289
290
291
292
293
294
SDL_VideoData *data = (SDL_VideoData *) _this->driverdata;
if (data->classname) {
SDL_free(data->classname);
}
#ifdef X_HAVE_UTF8_STRING
if (data->im) {
XCloseIM(data->im);
}
#endif
Jul 26, 2006
Jul 26, 2006
295
296
297
298
299
X11_QuitModes(_this);
X11_QuitKeyboard(_this);
X11_QuitMouse(_this);
}
Jan 2, 2009
Jan 2, 2009
300
SDL_bool
Jun 26, 2010
Jun 26, 2010
301
X11_UseDirectColorVisuals(void)
Jan 2, 2009
Jan 2, 2009
302
{
Jan 10, 2009
Jan 10, 2009
303
304
305
306
/* Once we implement DirectColor colormaps and gamma ramp support...
return SDL_getenv("SDL_VIDEO_X11_NODIRECTCOLOR") ? SDL_FALSE : SDL_TRUE;
*/
return SDL_FALSE;
Jan 2, 2009
Jan 2, 2009
307
308
}
Jul 26, 2006
Jul 26, 2006
309
/* vim: set ts=4 sw=4 expandtab: */