2 * Copyright (C) Volition, Inc. 1999. All rights reserved.
4 * All source code herein is the property of Volition, Inc. You may not sell
5 * or otherwise commercially exploit the source or things you created based on
10 * $Logfile: /Freespace2/code/OsApi/OsApi.cpp $
15 * Low level Windows code
18 * Revision 1.18 2005/10/01 21:49:11 taylor
19 * don't use CTRL-Z for minimizing since it's an extrememly common key combo in the game
21 * Revision 1.17 2004/12/15 04:10:45 taylor
22 * outwnd_unix.cpp from fs2_open for logging to file in debug mode
23 * fixes for default function values
24 * always use vm_* functions for sanity sake
25 * make cfilearchiver 64-bit compatible
26 * fix crash on exit from double free()
27 * fix crash on startup from extra long GL extension string in debug
29 * Revision 1.16 2003/12/15 06:24:51 theoddone33
30 * Bumpy ride... hang on.
32 * Revision 1.15 2003/08/03 15:56:59 taylor
33 * simpler mouse usage; default ini settings in os_init(); cleanup
35 * Revision 1.14 2003/05/09 05:04:15 taylor
36 * better window min/max/focus support
38 * Revision 1.13 2003/05/04 04:56:53 taylor
39 * move SDL_Quit to os_deinit to fix fonttool segfault
41 * Revision 1.12 2003/02/20 17:41:07 theoddone33
42 * Userdir patch from Taylor Richards
44 * Revision 1.11 2002/07/28 21:45:30 theoddone33
45 * Add ctrl-z to iconify window
47 * Revision 1.10 2002/07/28 21:39:44 theoddone33
48 * Add alt-enter to toggle fullscreen and ctrl-g to toggle mouse grabbing
50 * Revision 1.9 2002/06/16 23:59:31 relnev
51 * untested joystick code
53 * Revision 1.8 2002/06/09 04:41:25 relnev
54 * added copyright header
56 * Revision 1.7 2002/06/05 04:03:32 relnev
57 * finished cfilesystem.
59 * removed some old code.
61 * fixed mouse save off-by-one.
65 * Revision 1.6 2002/05/31 03:34:02 theoddone33
69 * Revision 1.5 2002/05/30 23:46:29 theoddone33
70 * some minor key changes (not necessarily fixes)
72 * Revision 1.4 2002/05/30 16:50:24 theoddone33
73 * Keyboard partially fixed
75 * Revision 1.3 2002/05/29 06:25:13 theoddone33
76 * Keyboard input, mouse tracking now work
78 * Revision 1.2 2002/05/07 03:16:48 theoddone33
79 * The Great Newline Fix
81 * Revision 1.1.1.1 2002/05/03 03:28:10 root
85 * 7 6/30/99 5:53p Dave
86 * Put in new anti-camper code.
88 * 6 6/03/99 6:37p Dave
89 * More TNT fun. Made perspective bitmaps more flexible.
91 * 5 6/02/99 6:18p Dave
92 * Fixed TNT lockup problems! Wheeeee!
94 * 4 12/18/98 1:13a Dave
95 * Rough 1024x768 support for Direct3D. Proper detection and usage through
98 * 3 10/09/98 2:57p Dave
99 * Starting splitting up OS stuff.
101 * 2 10/08/98 2:38p Dave
102 * Cleanup up OsAPI code significantly. Removed old functions, centralized
103 * registry functions.
105 * 118 7/10/98 5:04p Dave
106 * Fix connection speed bug on standalone server.
108 * 117 5/24/98 2:28p Hoffoss
109 * Because we never really care about if the left or the right shift or
110 * alt key was used, but rather than either shift or alt was used, made
111 * both map to the left one. Solves some problems, causes none.
113 * 116 5/18/98 9:22p John
114 * Took out the annoying tab check.
116 * 115 5/18/98 11:17a John
117 * Fixed some bugs with software window and output window.
119 * 114 5/16/98 2:20p John
120 * Changed the os_suspend and resume to use a critical section to prevent
121 * threads from executing rather than just suspending the thread. Had to
122 * make sure gr_close was called before os_close.
124 * 113 5/15/98 4:49p John
126 * 112 5/15/98 3:36p John
127 * Fixed bug with new graphics window code and standalone server. Made
128 * hwndApp not be a global anymore.
130 * 111 5/14/98 5:42p John
131 * Revamped the whole window position/mouse code for the graphics windows.
133 * 110 5/04/98 11:08p Hoffoss
134 * Expanded on Force Feedback code, and moved it all into Joy_ff.cpp.
135 * Updated references everywhere to it.
149 #include "freespaceresource.h"
150 #include "managepilot.h"
153 #include "gamesequence.h"
154 #include "freespace.h"
155 #include "osregistry.h"
158 // ----------------------------------------------------------------------------------------------------
159 // OSAPI DEFINES/VARS
163 static int fAppActive = 1;
164 //static int main_window_inited = 0; // not used (here)
165 //static char szWinTitle[128]; // not used (here)
166 //static char szWinClass[128]; // not used (here)
167 //static int WinX, WinY, WinW, WinH; // not used (grsoft.cpp) in UNIX build
168 static int Os_inited = 0;
170 static SDL_mutex *Os_lock;
172 int Os_debugger_running = 0;
174 // ----------------------------------------------------------------------------------------------------
175 // OSAPI FORWARD DECLARATIONS
178 // Fills in the Os_debugger_running with non-zero if debugger detected.
179 void os_check_debugger();
181 // called at shutdown. Makes sure all thread processing terminates.
185 // ----------------------------------------------------------------------------------------------------
189 // initialization/shutdown functions -----------------------------------------------
191 // If app_name is NULL or ommited, then TITLE is used
192 // for the app name, which is where registry keys are stored.
193 void os_init(const char *wclass, const char *title, const char *app_name, const char *version_string)
195 /* set some sane defaults since we don't have a laucher... */
196 if (os_config_read_string(NULL, NOX("Videocard"), NULL) == NULL)
197 os_config_write_string(NULL, NOX("Videocard"), NOX("OpenGL (640x480)"));
199 if (os_config_read_string(NULL, NOX("NetworkConnection"), NULL) == NULL)
200 os_config_write_string(NULL, NOX("NetworkConnection"), NOX("lan"));
202 if (os_config_read_string(NULL, NOX("ConnectionSpeed"), NULL) == NULL)
203 os_config_write_string(NULL, NOX("ConnectionSpeed"), NOX("Slow"));
207 Os_lock = SDL_CreateMutex();
209 // check to see if we're running under msdev
215 // set the main window title
216 void os_set_title( const char *title )
218 // the title is already set by SDL in gropengl.cpp
221 // call at program end
232 // window management -----------------------------------------------------------------
234 // Returns 0 if app is not the foreground app.
240 // Returns the handle to the main window
243 // STUB_FUNCTION; // not used/needed with UNIX builds?
248 // process management -----------------------------------------------------------------
250 // Sleeps for n milliseconds or until app becomes active.
251 void os_sleep(int ms)
256 // Used to stop message processing
259 SDL_LockMutex(Os_lock);
262 // resume message processing
265 SDL_UnlockMutex(Os_lock);
269 // ----------------------------------------------------------------------------------------------------
270 // OSAPI FORWARD DECLARATIONS
273 // Fills in the Os_debugger_running with non-zero if debugger detected.
274 void os_check_debugger()
278 // called at shutdown. Makes sure all thread processing terminates.
281 SDL_DestroyMutex(Os_lock);
286 extern void gr_opengl_set_viewport(int width, int height);
287 extern void gr_opengl_force_windowed();
288 extern void gr_opengl_force_fullscreen();
295 while (SDL_PollEvent (&e)) {
297 case SDL_MOUSEBUTTONDOWN:
298 case SDL_MOUSEBUTTONUP: {
299 if (e.motion.windowID > 0) {
300 mouse_mark_button(e.button.button, e.button.state);
306 case SDL_MOUSEMOTION: {
307 if (e.motion.windowID > 0) {
308 mouse_update_pos(e.motion.x, e.motion.y, e.motion.xrel, e.motion.yrel);
314 case SDL_TEXTINPUT: {
315 key_set_text_input((int)e.text.text[0]);
321 if (e.key.keysym.mod & KMOD_GUI) {
322 if (e.key.keysym.sym == SDLK_f ) {
323 gr_opengl_force_fullscreen();
324 } else if (e.key.keysym.sym == SDLK_w) {
325 gr_opengl_force_windowed();
326 // } else if (e.key.keysym.sym == SDLK_z) {
327 // SDL_MinimizeWindow(GL_window);
330 key_mark(e.key.keysym.scancode, 1, e.key.keysym.mod, 0);
337 if (e.key.keysym.mod & KMOD_GUI) {
338 // blank, just don't want to process up keys we skipped
341 key_mark(e.key.keysym.scancode, 0, e.key.keysym.mod, 0);
347 case SDL_ACTIVEEVENT:
348 if (e.active.state & SDL_APPACTIVE) {
349 fAppActive = e.active.gain;
350 gr_activate(fAppActive);
352 if (e.active.state & SDL_APPINPUTFOCUS) {
353 gr_activate(e.active.gain);
357 case SDL_JOYDEVICEADDED: {
358 if ( !Is_standalone ) {
365 case SDL_JOYDEVICEREMOVED: {
366 if (e.jdevice.which == joystick_get_id()) {
373 case SDL_JOYAXISMOTION: {
374 if (e.jaxis.which == joystick_get_id()) {
375 joystick_update_axis(e.jaxis.axis, e.jaxis.value);
381 case SDL_JOYBUTTONDOWN:
382 case SDL_JOYBUTTONUP: {
383 if (e.jbutton.which == joystick_get_id()) {
384 state = (e.jbutton.state == SDL_PRESSED) ? 1 : 0;
385 joy_mark_button((int)e.jbutton.button, state);
391 case SDL_JOYHATMOTION: {
392 if (e.jhat.which == joystick_get_id()) {
393 // can only handle one hat
394 if (e.jhat.hat == 0) {
395 switch (e.jhat.value) {
397 button = JOY_HATFORWARD;
401 button = JOY_HATBACK;
405 button = JOY_HATLEFT;
409 button = JOY_HATRIGHT;
413 // special case - will toggle all hat positions off
414 button = JOY_HATBACK;
419 joy_mark_button(button, state);
426 case SDL_WINDOWEVENT: {
427 switch (e.window.event) {
428 case SDL_WINDOWEVENT_RESIZED:
429 gr_opengl_set_viewport(e.window.data1, e.window.data2);
432 case SDL_WINDOWEVENT_FOCUS_LOST:
436 case SDL_WINDOWEVENT_FOCUS_GAINED:
452 SDL_TriggerBreakpoint();