2016-12-18 04:43:04 +00:00
|
|
|
/*
|
|
|
|
===========================================================================
|
|
|
|
Copyright (C) 1999-2005 Id Software, Inc.
|
|
|
|
|
|
|
|
This file is part of Quake III Arena source code.
|
|
|
|
|
|
|
|
Quake III Arena source code is free software; you can redistribute it
|
|
|
|
and/or modify it under the terms of the GNU General Public License as
|
|
|
|
published by the Free Software Foundation; either version 2 of the License,
|
|
|
|
or (at your option) any later version.
|
|
|
|
|
|
|
|
Quake III Arena source code 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 General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Quake III Arena source code; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
===========================================================================
|
|
|
|
*/
|
|
|
|
// win_local.h: Win32-specific Quake3 header file
|
|
|
|
|
2016-12-30 04:13:59 +00:00
|
|
|
#include "windows.h"
|
2016-12-18 04:43:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
void Sys_QueEvent( int time, sysEventType_t type, int value, int value2, int ptrLength, void *ptr );
|
|
|
|
|
|
|
|
void Sys_CreateConsole( void );
|
|
|
|
void Sys_DestroyConsole( void );
|
|
|
|
const char* Sys_ConsoleInput();
|
|
|
|
void Conbuf_AppendText( const char *msg );
|
|
|
|
|
|
|
|
|
|
|
|
void IN_Init();
|
|
|
|
void IN_Activate( qbool active );
|
2017-03-07 22:09:17 +00:00
|
|
|
void IN_WindowMoved();
|
|
|
|
qbool IN_ShouldBeActive();
|
2016-12-30 04:13:59 +00:00
|
|
|
qbool IN_ProcessMessage( UINT msg, WPARAM wParam, LPARAM lParam ); // returns true if the event was handled
|
2016-12-18 04:43:04 +00:00
|
|
|
void IN_Frame();
|
|
|
|
void IN_Shutdown();
|
|
|
|
|
2017-03-05 21:48:02 +00:00
|
|
|
void WIN_GetStartUpMonitorIndex();
|
|
|
|
void WIN_GetMonitorIndexFromMainWindow();
|
|
|
|
void WIN_UpdateHardwareGammaRamp( qbool enable );
|
2017-03-07 22:32:50 +00:00
|
|
|
void WIN_UpdateResolution( int width, int height );
|
2016-12-18 04:43:04 +00:00
|
|
|
|
|
|
|
void SNDDMA_Activate();
|
|
|
|
|
2017-01-11 13:24:58 +00:00
|
|
|
LRESULT CALLBACK MainWndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam );
|
2017-03-05 21:48:02 +00:00
|
|
|
|
2017-03-14 04:11:12 +00:00
|
|
|
// crash handling
|
|
|
|
LONG CALLBACK WIN_HandleException( EXCEPTION_POINTERS* ep );
|
|
|
|
void WIN_HandleExit();
|
2017-03-05 19:10:48 +00:00
|
|
|
void GLW_RestoreGamma();
|
2017-03-14 04:11:12 +00:00
|
|
|
void WIN_EndTimePeriod();
|
2017-03-05 21:48:02 +00:00
|
|
|
|
|
|
|
#define MAX_MONITOR_COUNT 16
|
2017-03-05 19:10:48 +00:00
|
|
|
|
2016-12-18 04:43:04 +00:00
|
|
|
typedef struct
|
2016-12-30 04:13:59 +00:00
|
|
|
{
|
2016-12-18 04:43:04 +00:00
|
|
|
HWND hWnd;
|
2016-12-30 04:13:59 +00:00
|
|
|
HINSTANCE hInstance;
|
2016-12-18 04:43:04 +00:00
|
|
|
qbool activeApp;
|
|
|
|
qbool isMinimized;
|
|
|
|
|
2016-12-30 04:13:59 +00:00
|
|
|
// when we get a windows message, we store the time off
|
2016-12-18 04:43:04 +00:00
|
|
|
// so keyboard processing can know the exact time of an event
|
2017-03-05 21:48:02 +00:00
|
|
|
unsigned sysMsgTime;
|
|
|
|
|
|
|
|
HMONITOR hGammaMonitor;
|
|
|
|
char gammaMonitorName[CCHDEVICENAME];
|
|
|
|
|
|
|
|
RECT monitorRects[MAX_MONITOR_COUNT];
|
|
|
|
HMONITOR hMonitors[MAX_MONITOR_COUNT];
|
|
|
|
int monitor; // index of the monitor currently used for display
|
|
|
|
int primaryMonitor;
|
|
|
|
int monitorCount;
|
2016-12-18 04:43:04 +00:00
|
|
|
} WinVars_t;
|
|
|
|
|
|
|
|
extern WinVars_t g_wv;
|