2 Copyright (C) 1996-1997 Id Software, Inc.
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 See the GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 // gl_vidnt.c -- NT GL vid component
27 int cl_available = true;
29 int (WINAPI *qwglChoosePixelFormat)(HDC, CONST PIXELFORMATDESCRIPTOR *);
30 int (WINAPI *qwglDescribePixelFormat)(HDC, int, UINT, LPPIXELFORMATDESCRIPTOR);
31 //int (WINAPI *qwglGetPixelFormat)(HDC);
32 BOOL (WINAPI *qwglSetPixelFormat)(HDC, int, CONST PIXELFORMATDESCRIPTOR *);
33 BOOL (WINAPI *qwglSwapBuffers)(HDC);
34 HGLRC (WINAPI *qwglCreateContext)(HDC);
35 BOOL (WINAPI *qwglDeleteContext)(HGLRC);
36 HGLRC (WINAPI *qwglGetCurrentContext)(VOID);
37 HDC (WINAPI *qwglGetCurrentDC)(VOID);
38 PROC (WINAPI *qwglGetProcAddress)(LPCSTR);
39 BOOL (WINAPI *qwglMakeCurrent)(HDC, HGLRC);
40 BOOL (WINAPI *qwglSwapIntervalEXT)(int interval);
41 const char *(WINAPI *qwglGetExtensionsStringARB)(HDC hdc);
43 static dllfunction_t wglfuncs[] =
45 {"wglChoosePixelFormat", (void **) &qwglChoosePixelFormat},
46 {"wglDescribePixelFormat", (void **) &qwglDescribePixelFormat},
47 // {"wglGetPixelFormat", (void **) &qwglGetPixelFormat},
48 {"wglSetPixelFormat", (void **) &qwglSetPixelFormat},
49 {"wglSwapBuffers", (void **) &qwglSwapBuffers},
50 {"wglCreateContext", (void **) &qwglCreateContext},
51 {"wglDeleteContext", (void **) &qwglDeleteContext},
52 {"wglGetProcAddress", (void **) &qwglGetProcAddress},
53 {"wglMakeCurrent", (void **) &qwglMakeCurrent},
54 {"wglGetCurrentContext", (void **) &qwglGetCurrentContext},
55 {"wglGetCurrentDC", (void **) &qwglGetCurrentDC},
59 static dllfunction_t wglswapintervalfuncs[] =
61 {"wglSwapIntervalEXT", (void **) &qwglSwapIntervalEXT},
65 qboolean scr_skipupdate;
67 static DEVMODE gdevmode;
68 static qboolean vid_initialized = false;
69 static qboolean vid_wassuspended = false;
70 static int vid_usingmouse;
71 extern qboolean mouseactive; // from in_win.c
76 //HWND WINAPI InitializeWindow (HINSTANCE hInstance, int nCmdShow);
78 static int vid_isfullscreen;
80 //void VID_MenuDraw (void);
81 //void VID_MenuKey (int key);
83 //LONG WINAPI MainWndProc (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
84 //void AppActivate(BOOL fActive, BOOL minimize);
85 //void ClearAllStates (void);
86 //void VID_UpdateWindowStatus (void);
88 //====================================
90 int window_x, window_y, window_width, window_height;
91 int window_center_x, window_center_y;
93 void IN_ShowMouse (void);
94 void IN_DeactivateMouse (void);
95 void IN_HideMouse (void);
96 void IN_ActivateMouse (void);
97 void IN_MouseEvent (int mstate);
98 void IN_UpdateClipCursor (void);
100 qboolean mouseinitialized;
101 static qboolean dinput;
107 #define DINPUT_BUFFERSIZE 16
108 #define iDirectInputCreate(a,b,c,d) pDirectInputCreate(a,b,c,d)
110 HRESULT (WINAPI *pDirectInputCreate)(HINSTANCE hinst, DWORD dwVersion,
111 LPDIRECTINPUT * lplpDirectInput, LPUNKNOWN punkOuter);
113 // LordHavoc: thanks to backslash for this support for mouse buttons 4 and 5
114 /* backslash :: imouse explorer buttons */
115 /* These are #ifdefed out for non-Win2K in the February 2001 version of
116 MS's platform SDK, but we need them for compilation. . . */
117 #ifndef WM_XBUTTONDOWN
118 #define WM_XBUTTONDOWN 0x020B
119 #define WM_XBUTTONUP 0x020C
122 #define MK_XBUTTON1 0x0020
123 #define MK_XBUTTON2 0x0040
124 // LordHavoc: lets hope this allows more buttons in the future...
125 #define MK_XBUTTON3 0x0080
126 #define MK_XBUTTON4 0x0100
127 #define MK_XBUTTON5 0x0200
128 #define MK_XBUTTON6 0x0400
129 #define MK_XBUTTON7 0x0800
135 int mouse_oldbuttonstate;
137 int mouse_x, mouse_y, old_mouse_x, old_mouse_y, mx_accum, my_accum;
139 static qboolean restore_spi;
140 static int originalmouseparms[3], newmouseparms[3] = {0, 0, 1};
142 unsigned int uiWheelMessage;
143 qboolean mouseactive;
144 //qboolean mouseinitialized;
145 static qboolean mouseparmsvalid, mouseactivatetoggle;
146 static qboolean mouseshowtoggle = 1;
147 static qboolean dinput_acquired;
149 static unsigned int mstate_di;
151 // joystick defines and variables
152 // where should defines be moved?
153 #define JOY_ABSOLUTE_AXIS 0x00000000 // control like a joystick
154 #define JOY_RELATIVE_AXIS 0x00000010 // control like a mouse, spinner, trackball
155 #define JOY_MAX_AXES 6 // X, Y, Z, R, U, V
165 AxisNada = 0, AxisForward, AxisLook, AxisSide, AxisTurn
168 DWORD dwAxisFlags[JOY_MAX_AXES] =
170 JOY_RETURNX, JOY_RETURNY, JOY_RETURNZ, JOY_RETURNR, JOY_RETURNU, JOY_RETURNV
173 DWORD dwAxisMap[JOY_MAX_AXES];
174 DWORD dwControlMap[JOY_MAX_AXES];
175 PDWORD pdwRawValue[JOY_MAX_AXES];
177 // none of these cvars are saved over a session
178 // this means that advanced controller configuration needs to be executed
179 // each time. this avoids any problems with getting back to a default usage
180 // or when changing from one controller to another. this way at least something
182 cvar_t in_joystick = {CVAR_SAVE, "joystick","0"};
183 cvar_t joy_name = {0, "joyname", "joystick"};
184 cvar_t joy_advanced = {0, "joyadvanced", "0"};
185 cvar_t joy_advaxisx = {0, "joyadvaxisx", "0"};
186 cvar_t joy_advaxisy = {0, "joyadvaxisy", "0"};
187 cvar_t joy_advaxisz = {0, "joyadvaxisz", "0"};
188 cvar_t joy_advaxisr = {0, "joyadvaxisr", "0"};
189 cvar_t joy_advaxisu = {0, "joyadvaxisu", "0"};
190 cvar_t joy_advaxisv = {0, "joyadvaxisv", "0"};
191 cvar_t joy_forwardthreshold = {0, "joyforwardthreshold", "0.15"};
192 cvar_t joy_sidethreshold = {0, "joysidethreshold", "0.15"};
193 cvar_t joy_pitchthreshold = {0, "joypitchthreshold", "0.15"};
194 cvar_t joy_yawthreshold = {0, "joyyawthreshold", "0.15"};
195 cvar_t joy_forwardsensitivity = {0, "joyforwardsensitivity", "-1.0"};
196 cvar_t joy_sidesensitivity = {0, "joysidesensitivity", "-1.0"};
197 cvar_t joy_pitchsensitivity = {0, "joypitchsensitivity", "1.0"};
198 cvar_t joy_yawsensitivity = {0, "joyyawsensitivity", "-1.0"};
199 cvar_t joy_wwhack1 = {0, "joywwhack1", "0.0"};
200 cvar_t joy_wwhack2 = {0, "joywwhack2", "0.0"};
202 qboolean joy_avail, joy_advancedinit, joy_haspov;
203 DWORD joy_oldbuttonstate, joy_oldpovstate;
207 DWORD joy_numbuttons;
209 static LPDIRECTINPUT g_pdi;
210 static LPDIRECTINPUTDEVICE g_pMouse;
214 static HINSTANCE hInstDI;
216 //static qboolean dinput;
218 typedef struct MYDATA {
219 LONG lX; // X axis goes here
220 LONG lY; // Y axis goes here
221 LONG lZ; // Z axis goes here
222 BYTE bButtonA; // One button goes here
223 BYTE bButtonB; // Another button goes here
224 BYTE bButtonC; // Another button goes here
225 BYTE bButtonD; // Another button goes here
228 static DIOBJECTDATAFORMAT rgodf[] = {
229 { &GUID_XAxis, FIELD_OFFSET(MYDATA, lX), DIDFT_AXIS | DIDFT_ANYINSTANCE, 0,},
230 { &GUID_YAxis, FIELD_OFFSET(MYDATA, lY), DIDFT_AXIS | DIDFT_ANYINSTANCE, 0,},
231 { &GUID_ZAxis, FIELD_OFFSET(MYDATA, lZ), 0x80000000 | DIDFT_AXIS | DIDFT_ANYINSTANCE, 0,},
232 { 0, FIELD_OFFSET(MYDATA, bButtonA), DIDFT_BUTTON | DIDFT_ANYINSTANCE, 0,},
233 { 0, FIELD_OFFSET(MYDATA, bButtonB), DIDFT_BUTTON | DIDFT_ANYINSTANCE, 0,},
234 { 0, FIELD_OFFSET(MYDATA, bButtonC), 0x80000000 | DIDFT_BUTTON | DIDFT_ANYINSTANCE, 0,},
235 { 0, FIELD_OFFSET(MYDATA, bButtonD), 0x80000000 | DIDFT_BUTTON | DIDFT_ANYINSTANCE, 0,},
238 #define NUM_OBJECTS (sizeof(rgodf) / sizeof(rgodf[0]))
240 static DIDATAFORMAT df = {
241 sizeof(DIDATAFORMAT), // this structure
242 sizeof(DIOBJECTDATAFORMAT), // size of object data format
243 DIDF_RELAXIS, // absolute axis coordinates
244 sizeof(MYDATA), // device data size
245 NUM_OBJECTS, // number of objects
246 rgodf, // and here they are
249 // forward-referenced functions
250 void IN_StartupJoystick (void);
251 void Joy_AdvancedUpdate_f (void);
252 void IN_JoyMove (usercmd_t *cmd);
253 void IN_StartupMouse (void);
257 VID_UpdateWindowStatus
260 void VID_UpdateWindowStatus (void)
262 window_center_x = window_x + window_width / 2;
263 window_center_y = window_y + window_height / 2;
265 if (mouseinitialized && mouseactive && !dinput)
268 window_rect.left = window_x;
269 window_rect.top = window_y;
270 window_rect.right = window_x + window_width;
271 window_rect.bottom = window_y + window_height;
272 ClipCursor (&window_rect);
277 //====================================
284 void VID_GetWindowSize (int *x, int *y, int *width, int *height)
288 *width = window_width;
289 *height = window_height;
293 void VID_Finish (void)
297 if (r_render.integer && !scr_skipupdate)
300 hdc = GetDC(mainwindow);
302 ReleaseDC(mainwindow, hdc);
305 // handle the mouse state when windowed if that's changed
306 vid_usemouse = false;
307 if (vid_mouse.integer && !key_consoleactive)
309 if (vid_isfullscreen)
311 if (!vid_activewindow)
312 vid_usemouse = false;
317 vid_usingmouse = true;
326 vid_usingmouse = false;
327 IN_DeactivateMouse ();
333 //==========================================================================
338 qbyte scantokey[128] =
340 // 0 1 2 3 4 5 6 7 8 9 A B C D E F
341 0 ,27 ,'1' ,'2' ,'3' ,'4' ,'5' ,'6' ,'7' ,'8' ,'9' ,'0' ,'-' ,'=' ,K_BACKSPACE,9 ,//0
342 'q' ,'w' ,'e' ,'r' ,'t' ,'y' ,'u' ,'i' ,'o' ,'p' ,'[' ,']' ,13 ,K_CTRL ,'a' ,'s' ,//1
343 'd' ,'f' ,'g' ,'h' ,'j' ,'k' ,'l' ,';' ,'\'' ,'`' ,K_SHIFT ,'\\' ,'z' ,'x' ,'c' ,'v' ,//2
344 'b' ,'n' ,'m' ,',' ,'.' ,'/' ,K_SHIFT,'*' ,K_ALT ,' ' ,0 ,K_F1 ,K_F2 ,K_F3 ,K_F4 ,K_F5 ,//3
345 K_F6 ,K_F7 ,K_F8 ,K_F9 ,K_F10,K_PAUSE,0 ,K_HOME,K_UPARROW,K_PGUP,K_KP_MINUS,K_LEFTARROW,K_KP_5,K_RIGHTARROW,K_KP_PLUS ,K_END,//4
346 K_DOWNARROW,K_PGDN,K_INS,K_DEL,0 ,0 ,0 ,K_F11 ,K_F12 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,//5
347 0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,//6
348 0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 //7
356 Map from windows to quake keynums
359 int MapKey (int key, int virtualkey)
362 int modified = (key >> 16) & 255;
363 qboolean is_extended = false;
365 if (modified < 128 && scantokey[modified])
366 result = scantokey[modified];
370 Con_DPrintf("key 0x%02x (0x%8x, 0x%8x) has no translation\n", modified, key, virtualkey);
387 return K_KP_LEFTARROW;
389 return K_KP_RIGHTARROW;
393 return K_KP_DOWNARROW;
420 ===================================================================
424 ===================================================================
432 void ClearAllStates (void)
436 // send an up event for each key, to make sure the server clears them all
437 for (i=0 ; i<256 ; i++)
439 Key_Event (i, false);
446 extern qboolean host_loopactive;
448 void AppActivate(BOOL fActive, BOOL minimize)
449 /****************************************************************************
451 * Function: AppActivate
452 * Parameters: fActive - True if app is activating
454 * Description: If the application is activating, then swap the system
455 * into SYSPAL_NOSTATIC mode so that our palettes will display
458 ****************************************************************************/
460 static BOOL sound_active;
462 vid_activewindow = fActive;
463 vid_hidden = minimize;
465 // enable/disable sound on focus gain/loss
466 if (!vid_activewindow && sound_active)
469 sound_active = false;
471 else if (vid_activewindow && !sound_active)
479 vid_allowhwgamma = true;
480 if (vid_isfullscreen)
482 if (vid_wassuspended)
484 vid_wassuspended = false;
485 ChangeDisplaySettings (&gdevmode, CDS_FULLSCREEN);
486 ShowWindow(mainwindow, SW_SHOWNORMAL);
489 // LordHavoc: from dabb, fix for alt-tab bug in NVidia drivers
490 MoveWindow(mainwindow,0,0,gdevmode.dmPelsWidth,gdevmode.dmPelsHeight,false);
496 vid_allowhwgamma = false;
497 vid_usingmouse = false;
498 IN_DeactivateMouse ();
500 if (vid_isfullscreen)
502 ChangeDisplaySettings (NULL, 0);
503 vid_wassuspended = true;
505 VID_RestoreSystemGamma();
509 LONG CDAudio_MessageHandler(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
511 /* main window procedure */
512 LONG WINAPI MainWndProc (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
515 int fActive, fMinimized, temp;
516 extern unsigned int uiWheelMessage;
518 if ( uMsg == uiWheelMessage )
519 uMsg = WM_MOUSEWHEEL;
524 if (vid_isfullscreen)
525 ShowWindow(mainwindow, SW_SHOWMINNOACTIVE);
532 window_x = (int) LOWORD(lParam);
533 window_y = (int) HIWORD(lParam);
534 VID_UpdateWindowStatus ();
539 Key_Event (MapKey(lParam, wParam), true);
544 Key_Event (MapKey(lParam, wParam), false);
548 // keep Alt-Space from happening
551 // this is complicated because Win32 seems to pack multiple mouse events into
552 // one update sometimes, so we always check all states and look for events
559 case WM_XBUTTONDOWN: // backslash :: imouse explorer buttons
560 case WM_XBUTTONUP: // backslash :: imouse explorer buttons
564 if (wParam & MK_LBUTTON)
567 if (wParam & MK_RBUTTON)
570 if (wParam & MK_MBUTTON)
573 /* backslash :: imouse explorer buttons */
574 if (wParam & MK_XBUTTON1)
577 if (wParam & MK_XBUTTON2)
581 // LordHavoc: lets hope this allows more buttons in the future...
582 if (wParam & MK_XBUTTON3)
584 if (wParam & MK_XBUTTON4)
586 if (wParam & MK_XBUTTON5)
588 if (wParam & MK_XBUTTON6)
590 if (wParam & MK_XBUTTON7)
593 IN_MouseEvent (temp);
597 // JACK: This is the mouse wheel with the Intellimouse
598 // Its delta is either positive or neg, and we generate the proper
601 if ((short) HIWORD(wParam) > 0) {
602 Key_Event(K_MWHEELUP, true);
603 Key_Event(K_MWHEELUP, false);
605 Key_Event(K_MWHEELDOWN, true);
606 Key_Event(K_MWHEELDOWN, false);
614 if (MessageBox (mainwindow, "Are you sure you want to quit?", "Confirm Exit", MB_YESNO | MB_SETFOREGROUND | MB_ICONQUESTION) == IDYES)
620 fActive = LOWORD(wParam);
621 fMinimized = (BOOL) HIWORD(wParam);
622 AppActivate(!(fActive == WA_INACTIVE), fMinimized);
624 // fix the leftover Alt from any Alt-Tab or the like that switched us away
630 // PostQuitMessage (0);
634 lRet = CDAudio_MessageHandler (hWnd, uMsg, wParam, lParam);
638 /* pass all unhandled messages to DefWindowProc */
639 lRet = DefWindowProc (hWnd, uMsg, wParam, lParam);
643 /* return 1 if handled message, 0 if not */
647 int VID_SetGamma(unsigned short *ramps)
649 HDC hdc = GetDC (NULL);
650 int i = SetDeviceGammaRamp(hdc, ramps);
651 ReleaseDC (NULL, hdc);
652 return i; // return success or failure
655 int VID_GetGamma(unsigned short *ramps)
657 HDC hdc = GetDC (NULL);
658 int i = GetDeviceGammaRamp(hdc, ramps);
659 ReleaseDC (NULL, hdc);
660 return i; // return success or failure
663 static HINSTANCE gldll;
665 int GL_OpenLibrary(const char *name)
667 Con_Printf("Loading OpenGL driver %s\n", name);
669 if (!(gldll = LoadLibrary(name)))
671 Con_Printf("Unable to LoadLibrary %s\n", name);
674 strcpy(gl_driver, name);
678 void GL_CloseLibrary(void)
683 qwglGetProcAddress = NULL;
686 gl_platformextensions = "";
689 void *GL_GetProcAddress(const char *name)
692 if (qwglGetProcAddress != NULL)
693 p = (void *) qwglGetProcAddress(name);
695 p = (void *) GetProcAddress(gldll, name);
699 static void IN_Init(void);
704 InitCommonControls();
705 hIcon = LoadIcon (global_hInstance, MAKEINTRESOURCE (IDI_ICON2));
707 // Register the frame class
709 wc.lpfnWndProc = (WNDPROC)MainWndProc;
712 wc.hInstance = global_hInstance;
714 wc.hCursor = LoadCursor (NULL,IDC_ARROW);
715 wc.hbrBackground = NULL;
717 wc.lpszClassName = "DarkPlacesWindowClass";
719 if (!RegisterClass (&wc))
720 Sys_Error("Couldn't register window class\n");
725 int VID_InitMode (int fullscreen, int width, int height, int bpp)
731 PIXELFORMATDESCRIPTOR pfd =
733 sizeof(PIXELFORMATDESCRIPTOR), // size of this pfd
735 PFD_DRAW_TO_WINDOW // support window
736 | PFD_SUPPORT_OPENGL // support OpenGL
737 | PFD_DOUBLEBUFFER , // double buffered
738 PFD_TYPE_RGBA, // RGBA type
739 24, // 24-bit color depth
740 0, 0, 0, 0, 0, 0, // color bits ignored
741 0, // no alpha buffer
742 0, // shift bit ignored
743 0, // no accumulation buffer
744 0, 0, 0, 0, // accum bits ignored
745 32, // 32-bit z-buffer
746 0, // no stencil buffer
747 0, // no auxiliary buffer
748 PFD_MAIN_PLANE, // main layer
750 0, 0, 0 // layer masks ignored
753 DWORD WindowStyle, ExWindowStyle;
755 int CenterX, CenterY;
756 const char *gldrivername;
759 Sys_Error("VID_InitMode called when video is already initialised\n");
761 // if stencil is enabled, ask for alpha too
764 pfd.cStencilBits = 8;
769 pfd.cStencilBits = 0;
773 gldrivername = "opengl32.dll";
774 i = COM_CheckParm("-gl_driver");
775 if (i && i < com_argc - 1)
776 gldrivername = com_argv[i + 1];
777 if (!GL_OpenLibrary(gldrivername))
779 Con_Printf("Unable to load GL driver %s\n", gldrivername);
783 memset(&gdevmode, 0, sizeof(gdevmode));
785 vid_isfullscreen = false;
788 gdevmode.dmFields = DM_BITSPERPEL | DM_PELSWIDTH | DM_PELSHEIGHT;
789 gdevmode.dmBitsPerPel = bpp;
790 gdevmode.dmPelsWidth = width;
791 gdevmode.dmPelsHeight = height;
792 gdevmode.dmSize = sizeof (gdevmode);
793 if (ChangeDisplaySettings (&gdevmode, CDS_FULLSCREEN) != DISP_CHANGE_SUCCESSFUL)
796 Con_Printf("Unable to change to requested mode %dx%dx%dbpp\n", width, height, bpp);
800 vid_isfullscreen = true;
801 WindowStyle = WS_POPUP;
802 ExWindowStyle = WS_EX_TOPMOST;
807 i = GetDeviceCaps(hdc, RASTERCAPS);
808 ReleaseDC (NULL, hdc);
812 Con_Printf ("Can't run in non-RGB mode\n");
816 WindowStyle = WS_OVERLAPPED | WS_BORDER | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX;
823 rect.bottom = height;
824 AdjustWindowRectEx(&rect, WindowStyle, false, 0);
833 CenterX = (GetSystemMetrics(SM_CXSCREEN) - (rect.right - rect.left)) / 2;
834 CenterY = (GetSystemMetrics(SM_CYSCREEN) - (rect.bottom - rect.top)) / 2;
836 CenterX = max(0, CenterX);
837 CenterY = max(0, CenterY);
839 // x and y may be changed by WM_MOVE messages
842 window_width = width;
843 window_height = height;
844 rect.left += CenterX;
845 rect.right += CenterX;
847 rect.bottom += CenterY;
849 mainwindow = CreateWindowEx (ExWindowStyle, "DarkPlacesWindowClass", gamename, WindowStyle, rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.top, NULL, NULL, global_hInstance, NULL);
852 Con_Printf("CreateWindowEx(%d, %s, %s, %d, %d, %d, %d, %d, %p, %p, %d, %p) failed\n", ExWindowStyle, "DarkPlacesWindowClass", gamename, WindowStyle, rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.top, NULL, NULL, global_hInstance, NULL);
859 SetWindowPos (mainwindow, NULL, CenterX, CenterY, 0, 0,SWP_NOSIZE | SWP_NOZORDER | SWP_SHOWWINDOW | SWP_DRAWFRAME);
862 ShowWindow (mainwindow, SW_SHOWDEFAULT);
863 UpdateWindow (mainwindow);
865 SendMessage (mainwindow, WM_SETICON, (WPARAM)true, (LPARAM)hIcon);
866 SendMessage (mainwindow, WM_SETICON, (WPARAM)false, (LPARAM)hIcon);
868 VID_UpdateWindowStatus ();
870 // now we try to make sure we get the focus on the mode switch, because
871 // sometimes in some systems we don't. We grab the foreground, then
872 // finish setting up, pump all our messages, and sleep for a little while
873 // to let messages finish bouncing around the system, then we put
874 // ourselves at the top of the z order, then grab the foreground again,
875 // Who knows if it helps, but it probably doesn't hurt
876 SetForegroundWindow (mainwindow);
878 while (PeekMessage (&msg, NULL, 0, 0, PM_REMOVE))
880 TranslateMessage (&msg);
881 DispatchMessage (&msg);
886 SetWindowPos (mainwindow, HWND_TOP, 0, 0, 0, 0, SWP_DRAWFRAME | SWP_NOMOVE | SWP_NOSIZE | SWP_SHOWWINDOW | SWP_NOCOPYBITS);
888 SetForegroundWindow (mainwindow);
890 // fix the leftover Alt from any Alt-Tab or the like that switched us away
893 hdc = GetDC(mainwindow);
895 if ((pixelformat = ChoosePixelFormat(hdc, &pfd)) == 0)
898 Con_Printf("ChoosePixelFormat(%d, %p) failed\n", hdc, &pfd);
902 if (SetPixelFormat(hdc, pixelformat, &pfd) == false)
905 Con_Printf("SetPixelFormat(%d, %d, %p) failed\n", hdc, pixelformat, &pfd);
909 if (!GL_CheckExtension("wgl", wglfuncs, NULL, false))
912 Con_Printf("wgl functions not found\n");
916 baseRC = qwglCreateContext(hdc);
920 Con_Printf("Could not initialize GL (wglCreateContext failed).\n\nMake sure you are in 65536 color mode, and try running -window.\n");
923 if (!qwglMakeCurrent(hdc, baseRC))
926 Con_Printf("wglMakeCurrent(%d, %d) failed\n", hdc, baseRC);
930 qglGetString = GL_GetProcAddress("glGetString");
931 qwglGetExtensionsStringARB = GL_GetProcAddress("wglGetExtensionsStringARB");
932 if (qglGetString == NULL)
935 Con_Printf("glGetString not found\n");
938 gl_renderer = qglGetString(GL_RENDERER);
939 gl_vendor = qglGetString(GL_VENDOR);
940 gl_version = qglGetString(GL_VERSION);
941 gl_extensions = qglGetString(GL_EXTENSIONS);
943 gl_platformextensions = "";
945 if (qwglGetExtensionsStringARB)
946 gl_platformextensions = qwglGetExtensionsStringARB(hdc);
948 gl_videosyncavailable = GL_CheckExtension("WGL_EXT_swap_control", wglswapintervalfuncs, NULL, false);
949 ReleaseDC(mainwindow, hdc);
953 // LordHavoc: special differences for ATI (broken 8bit color when also using 32bit? weird!)
954 if (strncasecmp(gl_vendor,"ATI",3)==0)
956 if (strncasecmp(gl_renderer,"Rage Pro",8)==0)
959 if (strncasecmp(gl_renderer,"Matrox G200 Direct3D",20)==0) // a D3D driver for GL? sigh...
962 //vid_menudrawfn = VID_MenuDraw;
963 //vid_menukeyfn = VID_MenuKey;
965 vid_initialized = true;
968 IN_StartupJoystick ();
973 static void IN_Shutdown(void);
974 void VID_Shutdown (void)
979 if(vid_initialized == false)
982 VID_RestoreSystemGamma();
984 vid_initialized = false;
986 if (qwglGetCurrentContext)
987 hRC = qwglGetCurrentContext();
988 if (qwglGetCurrentDC)
989 hDC = qwglGetCurrentDC();
991 qwglMakeCurrent(NULL, NULL);
992 if (hRC && qwglDeleteContext)
993 qwglDeleteContext(hRC);
994 // close the library before we get rid of the window
996 if (hDC && mainwindow)
997 ReleaseDC(mainwindow, hDC);
998 AppActivate(false, false);
1000 DestroyWindow(mainwindow);
1002 if (vid_isfullscreen)
1003 ChangeDisplaySettings (NULL, 0);
1004 vid_isfullscreen = false;
1013 void IN_ShowMouse (void)
1015 if (!mouseshowtoggle)
1018 mouseshowtoggle = 1;
1028 void IN_HideMouse (void)
1030 if (mouseshowtoggle)
1033 mouseshowtoggle = 0;
1043 void IN_ActivateMouse (void)
1046 mouseactivatetoggle = true;
1048 if (mouseinitialized)
1054 if (!dinput_acquired)
1056 IDirectInputDevice_Acquire(g_pMouse);
1057 dinput_acquired = true;
1068 window_rect.left = window_x;
1069 window_rect.top = window_y;
1070 window_rect.right = window_x + window_width;
1071 window_rect.bottom = window_y + window_height;
1073 if (mouseparmsvalid)
1074 restore_spi = SystemParametersInfo (SPI_SETMOUSE, 0, newmouseparms, 0);
1076 SetCursorPos (window_center_x, window_center_y);
1077 SetCapture (mainwindow);
1078 ClipCursor (&window_rect);
1091 void IN_DeactivateMouse (void)
1094 mouseactivatetoggle = false;
1096 if (mouseinitialized)
1102 if (dinput_acquired)
1104 IDirectInputDevice_Unacquire(g_pMouse);
1105 dinput_acquired = false;
1112 SystemParametersInfo (SPI_SETMOUSE, 0, originalmouseparms, 0);
1118 mouseactive = false;
1128 qboolean IN_InitDInput (void)
1131 DIPROPDWORD dipdw = {
1133 sizeof(DIPROPDWORD), // diph.dwSize
1134 sizeof(DIPROPHEADER), // diph.dwHeaderSize
1136 DIPH_DEVICE, // diph.dwHow
1138 DINPUT_BUFFERSIZE, // dwData
1143 hInstDI = LoadLibrary("dinput.dll");
1145 if (hInstDI == NULL)
1147 Con_SafePrintf ("Couldn't load dinput.dll\n");
1152 if (!pDirectInputCreate)
1154 pDirectInputCreate = (void *)GetProcAddress(hInstDI,"DirectInputCreateA");
1156 if (!pDirectInputCreate)
1158 Con_SafePrintf ("Couldn't get DI proc addr\n");
1163 // register with DirectInput and get an IDirectInput to play with.
1164 hr = iDirectInputCreate(global_hInstance, DIRECTINPUT_VERSION, &g_pdi, NULL);
1171 // obtain an interface to the system mouse device.
1172 hr = IDirectInput_CreateDevice(g_pdi, &GUID_SysMouse, &g_pMouse, NULL);
1176 Con_SafePrintf ("Couldn't open DI mouse device\n");
1180 // set the data format to "mouse format".
1181 hr = IDirectInputDevice_SetDataFormat(g_pMouse, &df);
1185 Con_SafePrintf ("Couldn't set DI mouse format\n");
1189 // set the cooperativity level.
1190 hr = IDirectInputDevice_SetCooperativeLevel(g_pMouse, mainwindow,
1191 DISCL_EXCLUSIVE | DISCL_FOREGROUND);
1195 Con_SafePrintf ("Couldn't set DI coop level\n");
1200 // set the buffer size to DINPUT_BUFFERSIZE elements.
1201 // the buffer size is a DWORD property associated with the device
1202 hr = IDirectInputDevice_SetProperty(g_pMouse, DIPROP_BUFFERSIZE, &dipdw.diph);
1206 Con_SafePrintf ("Couldn't set DI buffersize\n");
1219 void IN_StartupMouse (void)
1221 if (COM_CheckParm ("-nomouse") || COM_CheckParm("-safe"))
1224 mouseinitialized = true;
1226 if (COM_CheckParm ("-dinput"))
1228 dinput = IN_InitDInput ();
1232 Con_SafePrintf ("DirectInput initialized\n");
1236 Con_SafePrintf ("DirectInput not initialized\n");
1242 mouseparmsvalid = SystemParametersInfo (SPI_GETMOUSE, 0, originalmouseparms, 0);
1244 if (mouseparmsvalid)
1246 if ( COM_CheckParm ("-noforcemspd") )
1247 newmouseparms[2] = originalmouseparms[2];
1249 if ( COM_CheckParm ("-noforcemaccel") )
1251 newmouseparms[0] = originalmouseparms[0];
1252 newmouseparms[1] = originalmouseparms[1];
1255 if ( COM_CheckParm ("-noforcemparms") )
1257 newmouseparms[0] = originalmouseparms[0];
1258 newmouseparms[1] = originalmouseparms[1];
1259 newmouseparms[2] = originalmouseparms[2];
1266 // if a fullscreen video mode was set before the mouse was initialized,
1267 // set the mouse state appropriately
1268 if (mouseactivatetoggle)
1269 IN_ActivateMouse ();
1278 void IN_MouseEvent (int mstate)
1282 if (mouseactive && !dinput)
1284 // perform button actions
1285 for (i=0 ; i<mouse_buttons ; i++)
1287 if ( (mstate & (1<<i)) &&
1288 !(mouse_oldbuttonstate & (1<<i)) )
1290 Key_Event (K_MOUSE1 + i, true);
1293 if ( !(mstate & (1<<i)) &&
1294 (mouse_oldbuttonstate & (1<<i)) )
1296 Key_Event (K_MOUSE1 + i, false);
1300 mouse_oldbuttonstate = mstate;
1310 void IN_MouseMove (usercmd_t *cmd)
1313 DIDEVICEOBJECTDATA od;
1319 GetCursorPos (¤t_pos);
1320 ui_mouseupdate(current_pos.x - window_x, current_pos.y - window_y);
1333 hr = IDirectInputDevice_GetDeviceData(g_pMouse,
1334 sizeof(DIDEVICEOBJECTDATA), &od, &dwElements, 0);
1336 if ((hr == DIERR_INPUTLOST) || (hr == DIERR_NOTACQUIRED))
1338 dinput_acquired = true;
1339 IDirectInputDevice_Acquire(g_pMouse);
1343 /* Unable to read data or no data available */
1344 if (FAILED(hr) || dwElements == 0)
1347 /* Look at the element to see what happened */
1359 case DIMOFS_BUTTON0:
1360 if (od.dwData & 0x80)
1366 case DIMOFS_BUTTON1:
1367 if (od.dwData & 0x80)
1368 mstate_di |= (1<<1);
1370 mstate_di &= ~(1<<1);
1373 case DIMOFS_BUTTON2:
1374 if (od.dwData & 0x80)
1375 mstate_di |= (1<<2);
1377 mstate_di &= ~(1<<2);
1382 // perform button actions
1383 for (i=0 ; i<mouse_buttons ; i++)
1385 if ( (mstate_di & (1<<i)) &&
1386 !(mouse_oldbuttonstate & (1<<i)) )
1388 Key_Event (K_MOUSE1 + i, true);
1391 if ( !(mstate_di & (1<<i)) &&
1392 (mouse_oldbuttonstate & (1<<i)) )
1394 Key_Event (K_MOUSE1 + i, false);
1398 mouse_oldbuttonstate = mstate_di;
1402 GetCursorPos (¤t_pos);
1403 mx = current_pos.x - window_center_x + mx_accum;
1404 my = current_pos.y - window_center_y + my_accum;
1409 IN_Mouse(cmd, mx, my);
1411 // if the mouse has moved, force it to the center, so there's room to move
1412 if (!dinput && (mx || my))
1413 SetCursorPos (window_center_x, window_center_y);
1422 void IN_Move (usercmd_t *cmd)
1424 if (vid_activewindow && !vid_hidden)
1437 void IN_Accumulate (void)
1443 GetCursorPos (¤t_pos);
1445 mx_accum += current_pos.x - window_center_x;
1446 my_accum += current_pos.y - window_center_y;
1448 // force the mouse to the center, so there's room to move
1449 SetCursorPos (window_center_x, window_center_y);
1460 void IN_ClearStates (void)
1466 mouse_oldbuttonstate = 0;
1476 void IN_StartupJoystick (void)
1483 // assume no joystick
1486 // abort startup if user requests no joystick
1487 if (COM_CheckParm ("-nojoy") || COM_CheckParm("-safe"))
1490 // verify joystick driver is present
1491 if ((numdevs = joyGetNumDevs ()) == 0)
1493 Con_Printf ("\njoystick not found -- driver not present\n\n");
1497 // cycle through the joystick ids for the first valid one
1498 for (joy_id=0 ; joy_id<numdevs ; joy_id++)
1500 memset (&ji, 0, sizeof(ji));
1501 ji.dwSize = sizeof(ji);
1502 ji.dwFlags = JOY_RETURNCENTERED;
1504 if ((mmr = joyGetPosEx (joy_id, &ji)) == JOYERR_NOERROR)
1508 // abort startup if we didn't find a valid joystick
1509 if (mmr != JOYERR_NOERROR)
1511 Con_Printf ("\njoystick not found -- no valid joysticks (%x)\n\n", mmr);
1515 // get the capabilities of the selected joystick
1516 // abort startup if command fails
1517 memset (&jc, 0, sizeof(jc));
1518 if ((mmr = joyGetDevCaps (joy_id, &jc, sizeof(jc))) != JOYERR_NOERROR)
1520 Con_Printf ("\njoystick not found -- invalid joystick capabilities (%x)\n\n", mmr);
1524 // save the joystick's number of buttons and POV status
1525 joy_numbuttons = jc.wNumButtons;
1526 joy_haspov = jc.wCaps & JOYCAPS_HASPOV;
1528 // old button and POV states default to no buttons pressed
1529 joy_oldbuttonstate = joy_oldpovstate = 0;
1531 // mark the joystick as available and advanced initialization not completed
1532 // this is needed as cvars are not available during initialization
1535 joy_advancedinit = false;
1537 Con_Printf ("\njoystick detected\n\n");
1546 PDWORD RawValuePointer (int axis)
1563 return NULL; // LordHavoc: hush compiler warning
1569 Joy_AdvancedUpdate_f
1572 void Joy_AdvancedUpdate_f (void)
1575 // called once by IN_ReadJoystick and by user whenever an update is needed
1576 // cvars are now available
1580 // initialize all the maps
1581 for (i = 0; i < JOY_MAX_AXES; i++)
1583 dwAxisMap[i] = AxisNada;
1584 dwControlMap[i] = JOY_ABSOLUTE_AXIS;
1585 pdwRawValue[i] = RawValuePointer(i);
1588 if( joy_advanced.integer == 0)
1590 // default joystick initialization
1591 // 2 axes only with joystick control
1592 dwAxisMap[JOY_AXIS_X] = AxisTurn;
1593 // dwControlMap[JOY_AXIS_X] = JOY_ABSOLUTE_AXIS;
1594 dwAxisMap[JOY_AXIS_Y] = AxisForward;
1595 // dwControlMap[JOY_AXIS_Y] = JOY_ABSOLUTE_AXIS;
1599 if (strcmp (joy_name.string, "joystick") != 0)
1601 // notify user of advanced controller
1602 Con_Printf ("\n%s configured\n\n", joy_name.string);
1605 // advanced initialization here
1606 // data supplied by user via joy_axisn cvars
1607 dwTemp = (DWORD) joy_advaxisx.value;
1608 dwAxisMap[JOY_AXIS_X] = dwTemp & 0x0000000f;
1609 dwControlMap[JOY_AXIS_X] = dwTemp & JOY_RELATIVE_AXIS;
1610 dwTemp = (DWORD) joy_advaxisy.value;
1611 dwAxisMap[JOY_AXIS_Y] = dwTemp & 0x0000000f;
1612 dwControlMap[JOY_AXIS_Y] = dwTemp & JOY_RELATIVE_AXIS;
1613 dwTemp = (DWORD) joy_advaxisz.value;
1614 dwAxisMap[JOY_AXIS_Z] = dwTemp & 0x0000000f;
1615 dwControlMap[JOY_AXIS_Z] = dwTemp & JOY_RELATIVE_AXIS;
1616 dwTemp = (DWORD) joy_advaxisr.value;
1617 dwAxisMap[JOY_AXIS_R] = dwTemp & 0x0000000f;
1618 dwControlMap[JOY_AXIS_R] = dwTemp & JOY_RELATIVE_AXIS;
1619 dwTemp = (DWORD) joy_advaxisu.value;
1620 dwAxisMap[JOY_AXIS_U] = dwTemp & 0x0000000f;
1621 dwControlMap[JOY_AXIS_U] = dwTemp & JOY_RELATIVE_AXIS;
1622 dwTemp = (DWORD) joy_advaxisv.value;
1623 dwAxisMap[JOY_AXIS_V] = dwTemp & 0x0000000f;
1624 dwControlMap[JOY_AXIS_V] = dwTemp & JOY_RELATIVE_AXIS;
1627 // compute the axes to collect from DirectInput
1628 joy_flags = JOY_RETURNCENTERED | JOY_RETURNBUTTONS | JOY_RETURNPOV;
1629 for (i = 0; i < JOY_MAX_AXES; i++)
1631 if (dwAxisMap[i] != AxisNada)
1633 joy_flags |= dwAxisFlags[i];
1644 void IN_Commands (void)
1647 DWORD buttonstate, povstate;
1655 // loop through the joystick buttons
1656 // key a joystick event or auxillary event for higher number buttons for each state change
1657 buttonstate = ji.dwButtons;
1658 for (i=0 ; i < (int) joy_numbuttons ; i++)
1660 if ( (buttonstate & (1<<i)) && !(joy_oldbuttonstate & (1<<i)) )
1662 key_index = (i < 4) ? K_JOY1 : K_AUX1;
1663 Key_Event (key_index + i, true);
1666 if ( !(buttonstate & (1<<i)) && (joy_oldbuttonstate & (1<<i)) )
1668 key_index = (i < 4) ? K_JOY1 : K_AUX1;
1669 Key_Event (key_index + i, false);
1672 joy_oldbuttonstate = buttonstate;
1676 // convert POV information into 4 bits of state information
1677 // this avoids any potential problems related to moving from one
1678 // direction to another without going through the center position
1680 if(ji.dwPOV != JOY_POVCENTERED)
1682 if (ji.dwPOV == JOY_POVFORWARD)
1684 if (ji.dwPOV == JOY_POVRIGHT)
1686 if (ji.dwPOV == JOY_POVBACKWARD)
1688 if (ji.dwPOV == JOY_POVLEFT)
1691 // determine which bits have changed and key an auxillary event for each change
1692 for (i=0 ; i < 4 ; i++)
1694 if ( (povstate & (1<<i)) && !(joy_oldpovstate & (1<<i)) )
1696 Key_Event (K_AUX29 + i, true);
1699 if ( !(povstate & (1<<i)) && (joy_oldpovstate & (1<<i)) )
1701 Key_Event (K_AUX29 + i, false);
1704 joy_oldpovstate = povstate;
1714 qboolean IN_ReadJoystick (void)
1717 memset (&ji, 0, sizeof(ji));
1718 ji.dwSize = sizeof(ji);
1719 ji.dwFlags = joy_flags;
1721 if (joyGetPosEx (joy_id, &ji) == JOYERR_NOERROR)
1723 // this is a hack -- there is a bug in the Logitech WingMan Warrior DirectInput Driver
1724 // rather than having 32768 be the zero point, they have the zero point at 32668
1725 // go figure -- anyway, now we get the full resolution out of the device
1726 if (joy_wwhack1.integer != 0.0)
1734 // read error occurred
1735 // turning off the joystick seems too harsh for 1 read error,
1736 // but what should be done?
1747 void IN_JoyMove (usercmd_t *cmd)
1749 float speed, aspeed;
1750 float fAxisValue, fTemp;
1751 int i, mouselook = (in_mlook.state & 1) || freelook.integer;
1753 // complete initialization if first time in
1754 // this is needed as cvars are not available at initialization time
1755 if( joy_advancedinit != true )
1757 Joy_AdvancedUpdate_f();
1758 joy_advancedinit = true;
1761 // verify joystick is available and that the user wants to use it
1762 if (!joy_avail || !in_joystick.integer)
1767 // collect the joystick data, if possible
1768 if (IN_ReadJoystick () != true)
1773 if (in_speed.state & 1)
1774 speed = cl_movespeedkey.value;
1777 // LordHavoc: viewzoom affects sensitivity for sniping
1778 aspeed = speed * host_realframetime * cl.viewzoom;
1780 // loop through the axes
1781 for (i = 0; i < JOY_MAX_AXES; i++)
1783 // get the floating point zero-centered, potentially-inverted data for the current axis
1784 fAxisValue = (float) *pdwRawValue[i];
1785 // move centerpoint to zero
1786 fAxisValue -= 32768.0;
1788 if (joy_wwhack2.integer != 0.0)
1790 if (dwAxisMap[i] == AxisTurn)
1792 // this is a special formula for the Logitech WingMan Warrior
1793 // y=ax^b; where a = 300 and b = 1.3
1794 // also x values are in increments of 800 (so this is factored out)
1795 // then bounds check result to level out excessively high spin rates
1796 fTemp = 300.0 * pow(abs(fAxisValue) / 800.0, 1.3);
1797 if (fTemp > 14000.0)
1799 // restore direction information
1800 fAxisValue = (fAxisValue > 0.0) ? fTemp : -fTemp;
1804 // convert range from -32768..32767 to -1..1
1805 fAxisValue /= 32768.0;
1807 switch (dwAxisMap[i])
1810 if ((joy_advanced.integer == 0) && mouselook)
1812 // user wants forward control to become look control
1813 if (fabs(fAxisValue) > joy_pitchthreshold.value)
1815 // if mouse invert is on, invert the joystick pitch value
1816 // only absolute control support here (joy_advanced is false)
1817 if (m_pitch.value < 0.0)
1819 cl.viewangles[PITCH] -= (fAxisValue * joy_pitchsensitivity.value) * aspeed * cl_pitchspeed.value;
1823 cl.viewangles[PITCH] += (fAxisValue * joy_pitchsensitivity.value) * aspeed * cl_pitchspeed.value;
1829 // no pitch movement
1830 // disable pitch return-to-center unless requested by user
1831 // *** this code can be removed when the lookspring bug is fixed
1832 // *** the bug always has the lookspring feature on
1833 if(lookspring.value == 0.0)
1839 // user wants forward control to be forward control
1840 if (fabs(fAxisValue) > joy_forwardthreshold.value)
1842 cmd->forwardmove += (fAxisValue * joy_forwardsensitivity.value) * speed * cl_forwardspeed.value;
1848 if (fabs(fAxisValue) > joy_sidethreshold.value)
1850 cmd->sidemove += (fAxisValue * joy_sidesensitivity.value) * speed * cl_sidespeed.value;
1855 if ((in_strafe.state & 1) || (lookstrafe.integer && mouselook))
1857 // user wants turn control to become side control
1858 if (fabs(fAxisValue) > joy_sidethreshold.value)
1860 cmd->sidemove -= (fAxisValue * joy_sidesensitivity.value) * speed * cl_sidespeed.value;
1865 // user wants turn control to be turn control
1866 if (fabs(fAxisValue) > joy_yawthreshold.value)
1868 if(dwControlMap[i] == JOY_ABSOLUTE_AXIS)
1870 cl.viewangles[YAW] += (fAxisValue * joy_yawsensitivity.value) * aspeed * cl_yawspeed.value;
1874 cl.viewangles[YAW] += (fAxisValue * joy_yawsensitivity.value) * speed * 180.0;
1884 if (fabs(fAxisValue) > joy_pitchthreshold.value)
1886 // pitch movement detected and pitch movement desired by user
1887 if(dwControlMap[i] == JOY_ABSOLUTE_AXIS)
1889 cl.viewangles[PITCH] += (fAxisValue * joy_pitchsensitivity.value) * aspeed * cl_pitchspeed.value;
1893 cl.viewangles[PITCH] += (fAxisValue * joy_pitchsensitivity.value) * speed * 180.0;
1899 // no pitch movement
1900 // disable pitch return-to-center unless requested by user
1901 // *** this code can be removed when the lookspring bug is fixed
1902 // *** the bug always has the lookspring feature on
1903 if(lookspring.integer == 0)
1915 static void IN_Init(void)
1917 uiWheelMessage = RegisterWindowMessage ( "MSWHEEL_ROLLMSG" );
1919 // joystick variables
1920 Cvar_RegisterVariable (&in_joystick);
1921 Cvar_RegisterVariable (&joy_name);
1922 Cvar_RegisterVariable (&joy_advanced);
1923 Cvar_RegisterVariable (&joy_advaxisx);
1924 Cvar_RegisterVariable (&joy_advaxisy);
1925 Cvar_RegisterVariable (&joy_advaxisz);
1926 Cvar_RegisterVariable (&joy_advaxisr);
1927 Cvar_RegisterVariable (&joy_advaxisu);
1928 Cvar_RegisterVariable (&joy_advaxisv);
1929 Cvar_RegisterVariable (&joy_forwardthreshold);
1930 Cvar_RegisterVariable (&joy_sidethreshold);
1931 Cvar_RegisterVariable (&joy_pitchthreshold);
1932 Cvar_RegisterVariable (&joy_yawthreshold);
1933 Cvar_RegisterVariable (&joy_forwardsensitivity);
1934 Cvar_RegisterVariable (&joy_sidesensitivity);
1935 Cvar_RegisterVariable (&joy_pitchsensitivity);
1936 Cvar_RegisterVariable (&joy_yawsensitivity);
1937 Cvar_RegisterVariable (&joy_wwhack1);
1938 Cvar_RegisterVariable (&joy_wwhack2);
1939 Cmd_AddCommand ("joyadvancedupdate", Joy_AdvancedUpdate_f);
1942 static void IN_Shutdown(void)
1944 IN_DeactivateMouse ();
1948 IDirectInputDevice_Release(g_pMouse);
1952 IDirectInput_Release(g_pdi);