2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2008-05-06 15:11:33 +00:00
|
|
|
/** @file win32_v.cpp Implementation of the Windows (GDI) video driver. */
|
|
|
|
|
2005-07-25 07:16:10 +00:00
|
|
|
#include "../stdafx.h"
|
|
|
|
#include "../openttd.h"
|
2007-12-23 10:56:02 +00:00
|
|
|
#include "../gfx_func.h"
|
2005-07-25 07:16:10 +00:00
|
|
|
#include "../variables.h"
|
2005-07-27 19:22:38 +00:00
|
|
|
#include "../win32.h"
|
2008-05-04 21:53:36 +00:00
|
|
|
#include "../rev.h"
|
2007-06-17 20:40:02 +00:00
|
|
|
#include "../blitter/factory.hpp"
|
2007-12-22 23:30:28 +00:00
|
|
|
#include "../network/network.h"
|
2008-01-13 22:07:33 +00:00
|
|
|
#include "../core/math_func.hpp"
|
2008-01-29 00:45:24 +00:00
|
|
|
#include "../core/random_func.hpp"
|
2008-05-06 22:17:12 +00:00
|
|
|
#include "../functions.h"
|
|
|
|
#include "../texteff.hpp"
|
2005-07-25 07:16:10 +00:00
|
|
|
#include "win32_v.h"
|
2005-07-23 15:16:57 +00:00
|
|
|
#include <windows.h>
|
2006-11-28 19:58:13 +00:00
|
|
|
#include <tchar.h>
|
2005-07-23 15:16:57 +00:00
|
|
|
|
2008-08-13 19:09:27 +00:00
|
|
|
/** Only MSVC has this header, MinGW supplies the required constants itself */
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
# define COMPILE_MULTIMON_STUBS
|
|
|
|
# include <multimon.h>
|
|
|
|
#endif /* _MSC_VER */
|
|
|
|
|
2005-07-23 15:16:57 +00:00
|
|
|
static struct {
|
|
|
|
HWND main_wnd;
|
|
|
|
HBITMAP dib_sect;
|
2007-06-12 20:24:12 +00:00
|
|
|
void *buffer_bits;
|
2005-07-23 15:16:57 +00:00
|
|
|
HPALETTE gdi_palette;
|
2006-08-31 14:50:12 +00:00
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
int width_org;
|
|
|
|
int height_org;
|
2005-07-23 15:16:57 +00:00
|
|
|
bool fullscreen;
|
|
|
|
bool has_focus;
|
|
|
|
bool running;
|
|
|
|
} _wnd;
|
|
|
|
|
2006-02-20 23:01:58 +00:00
|
|
|
bool _force_full_redraw;
|
2006-08-13 10:22:34 +00:00
|
|
|
bool _window_maximize;
|
2006-02-20 23:01:58 +00:00
|
|
|
uint _display_hz;
|
|
|
|
uint _fullscreen_bpp;
|
2008-06-16 19:38:41 +00:00
|
|
|
static Dimension _bck_resolution;
|
2007-03-07 18:58:28 +00:00
|
|
|
#if !defined(UNICODE)
|
|
|
|
uint _codepage;
|
|
|
|
#endif
|
2006-02-20 23:01:58 +00:00
|
|
|
|
2007-03-07 11:47:46 +00:00
|
|
|
static void MakePalette()
|
2005-07-23 15:16:57 +00:00
|
|
|
{
|
|
|
|
LOGPALETTE *pal;
|
|
|
|
uint i;
|
|
|
|
|
2007-04-18 22:10:36 +00:00
|
|
|
pal = (LOGPALETTE*)alloca(sizeof(LOGPALETTE) + (256 - 1) * sizeof(PALETTEENTRY));
|
2005-07-23 15:16:57 +00:00
|
|
|
|
|
|
|
pal->palVersion = 0x300;
|
|
|
|
pal->palNumEntries = 256;
|
|
|
|
|
|
|
|
for (i = 0; i != 256; i++) {
|
|
|
|
pal->palPalEntry[i].peRed = _cur_palette[i].r;
|
|
|
|
pal->palPalEntry[i].peGreen = _cur_palette[i].g;
|
|
|
|
pal->palPalEntry[i].peBlue = _cur_palette[i].b;
|
|
|
|
pal->palPalEntry[i].peFlags = 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
_wnd.gdi_palette = CreatePalette(pal);
|
2008-06-05 20:54:52 +00:00
|
|
|
if (_wnd.gdi_palette == NULL) usererror("CreatePalette failed!\n");
|
2005-07-23 15:16:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void UpdatePalette(HDC dc, uint start, uint count)
|
|
|
|
{
|
|
|
|
RGBQUAD rgb[256];
|
|
|
|
uint i;
|
|
|
|
|
|
|
|
for (i = 0; i != count; i++) {
|
|
|
|
rgb[i].rgbRed = _cur_palette[start + i].r;
|
|
|
|
rgb[i].rgbGreen = _cur_palette[start + i].g;
|
|
|
|
rgb[i].rgbBlue = _cur_palette[start + i].b;
|
|
|
|
rgb[i].rgbReserved = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
SetDIBColorTable(dc, start, count, rgb);
|
|
|
|
}
|
|
|
|
|
2007-03-07 12:11:48 +00:00
|
|
|
struct VkMapping {
|
2005-07-23 15:16:57 +00:00
|
|
|
byte vk_from;
|
|
|
|
byte vk_count;
|
|
|
|
byte map_to;
|
2007-03-07 12:11:48 +00:00
|
|
|
};
|
2005-07-23 15:16:57 +00:00
|
|
|
|
|
|
|
#define AS(x, z) {x, 0, z}
|
|
|
|
#define AM(x, y, z, w) {x, y - x, z}
|
|
|
|
|
|
|
|
static const VkMapping _vk_mapping[] = {
|
2007-07-23 16:48:19 +00:00
|
|
|
/* Pageup stuff + up/down */
|
2005-07-23 15:16:57 +00:00
|
|
|
AM(VK_PRIOR,VK_DOWN, WKC_PAGEUP, WKC_DOWN),
|
2007-07-23 16:48:19 +00:00
|
|
|
/* Map letters & digits */
|
2005-07-23 15:16:57 +00:00
|
|
|
AM('A','Z','A','Z'),
|
|
|
|
AM('0','9','0','9'),
|
|
|
|
|
2006-08-28 18:53:03 +00:00
|
|
|
AS(VK_ESCAPE, WKC_ESC),
|
|
|
|
AS(VK_PAUSE, WKC_PAUSE),
|
|
|
|
AS(VK_BACK, WKC_BACKSPACE),
|
|
|
|
AM(VK_INSERT, VK_DELETE, WKC_INSERT, WKC_DELETE),
|
2005-07-23 15:16:57 +00:00
|
|
|
|
2006-08-28 18:53:03 +00:00
|
|
|
AS(VK_SPACE, WKC_SPACE),
|
|
|
|
AS(VK_RETURN, WKC_RETURN),
|
|
|
|
AS(VK_TAB, WKC_TAB),
|
2005-07-23 15:16:57 +00:00
|
|
|
|
2007-07-23 16:48:19 +00:00
|
|
|
/* Function keys */
|
2006-08-28 18:53:03 +00:00
|
|
|
AM(VK_F1, VK_F12, WKC_F1, WKC_F12),
|
2005-07-23 15:16:57 +00:00
|
|
|
|
2007-07-23 16:48:19 +00:00
|
|
|
/* Numeric part */
|
2006-08-28 18:53:03 +00:00
|
|
|
AM(VK_NUMPAD0, VK_NUMPAD9, WKC_NUM_0, WKC_NUM_9),
|
|
|
|
AS(VK_DIVIDE, WKC_NUM_DIV),
|
|
|
|
AS(VK_MULTIPLY, WKC_NUM_MUL),
|
|
|
|
AS(VK_SUBTRACT, WKC_NUM_MINUS),
|
|
|
|
AS(VK_ADD, WKC_NUM_PLUS),
|
2007-07-23 16:39:27 +00:00
|
|
|
AS(VK_DECIMAL, WKC_NUM_DECIMAL),
|
|
|
|
|
2007-07-23 16:48:19 +00:00
|
|
|
/* Other non-letter keys */
|
2007-07-23 16:39:27 +00:00
|
|
|
AS(0xBF, WKC_SLASH),
|
|
|
|
AS(0xBA, WKC_SEMICOLON),
|
|
|
|
AS(0xBB, WKC_EQUALS),
|
|
|
|
AS(0xDB, WKC_L_BRACKET),
|
|
|
|
AS(0xDC, WKC_BACKSLASH),
|
|
|
|
AS(0xDD, WKC_R_BRACKET),
|
|
|
|
|
|
|
|
AS(0xDE, WKC_SINGLEQUOTE),
|
|
|
|
AS(0xBC, WKC_COMMA),
|
|
|
|
AS(0xBD, WKC_MINUS),
|
|
|
|
AS(0xBE, WKC_PERIOD)
|
2005-07-23 15:16:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static uint MapWindowsKey(uint sym)
|
|
|
|
{
|
|
|
|
const VkMapping *map;
|
|
|
|
uint key = 0;
|
|
|
|
|
|
|
|
for (map = _vk_mapping; map != endof(_vk_mapping); ++map) {
|
|
|
|
if ((uint)(sym - map->vk_from) <= map->vk_count) {
|
|
|
|
key = sym - map->vk_from + map->map_to;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (GetAsyncKeyState(VK_SHIFT) < 0) key |= WKC_SHIFT;
|
|
|
|
if (GetAsyncKeyState(VK_CONTROL) < 0) key |= WKC_CTRL;
|
|
|
|
if (GetAsyncKeyState(VK_MENU) < 0) key |= WKC_ALT;
|
|
|
|
return key;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool AllocateDibSection(int w, int h);
|
|
|
|
|
|
|
|
static void ClientSizeChanged(int w, int h)
|
|
|
|
{
|
|
|
|
// allocate new dib section of the new size
|
|
|
|
if (AllocateDibSection(w, h)) {
|
|
|
|
// mark all palette colors dirty
|
|
|
|
_pal_first_dirty = 0;
|
2007-08-03 02:21:10 +00:00
|
|
|
_pal_count_dirty = 256;
|
2005-07-23 15:16:57 +00:00
|
|
|
GameSizeChanged();
|
|
|
|
|
|
|
|
// redraw screen
|
|
|
|
if (_wnd.running) {
|
|
|
|
_screen.dst_ptr = _wnd.buffer_bits;
|
|
|
|
UpdateWindows();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef _DEBUG
|
|
|
|
// Keep this function here..
|
|
|
|
// It allows you to redraw the screen from within the MSVC debugger
|
2007-03-07 11:47:46 +00:00
|
|
|
int RedrawScreenDebug()
|
2005-07-23 15:16:57 +00:00
|
|
|
{
|
|
|
|
HDC dc,dc2;
|
|
|
|
static int _fooctr;
|
|
|
|
HBITMAP old_bmp;
|
|
|
|
HPALETTE old_palette;
|
|
|
|
|
|
|
|
_screen.dst_ptr = _wnd.buffer_bits;
|
|
|
|
UpdateWindows();
|
|
|
|
|
|
|
|
dc = GetDC(_wnd.main_wnd);
|
|
|
|
dc2 = CreateCompatibleDC(dc);
|
|
|
|
|
2007-01-10 18:56:51 +00:00
|
|
|
old_bmp = (HBITMAP)SelectObject(dc2, _wnd.dib_sect);
|
2005-07-23 15:16:57 +00:00
|
|
|
old_palette = SelectPalette(dc, _wnd.gdi_palette, FALSE);
|
|
|
|
BitBlt(dc, 0, 0, _wnd.width, _wnd.height, dc2, 0, 0, SRCCOPY);
|
|
|
|
SelectPalette(dc, old_palette, TRUE);
|
|
|
|
SelectObject(dc2, old_bmp);
|
|
|
|
DeleteDC(dc2);
|
|
|
|
ReleaseDC(_wnd.main_wnd, dc);
|
|
|
|
|
|
|
|
return _fooctr++;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-11-05 01:53:12 +00:00
|
|
|
/* Windows 95 will not have a WM_MOUSELEAVE message, so define it if needed */
|
2006-03-24 00:42:35 +00:00
|
|
|
#if !defined(WM_MOUSELEAVE)
|
|
|
|
#define WM_MOUSELEAVE 0x02A3
|
|
|
|
#endif
|
|
|
|
#define TID_POLLMOUSE 1
|
|
|
|
#define MOUSE_POLL_DELAY 75
|
|
|
|
|
|
|
|
static void CALLBACK TrackMouseTimerProc(HWND hwnd, UINT msg, UINT event, DWORD time)
|
|
|
|
{
|
|
|
|
RECT rc;
|
|
|
|
POINT pt;
|
|
|
|
|
|
|
|
/* Get the rectangle of our window and translate it to screen coordinates.
|
|
|
|
* Compare this with the current screen coordinates of the mouse and if it
|
|
|
|
* falls outside of the area or our window we have left the window. */
|
|
|
|
GetClientRect(hwnd, &rc);
|
2006-05-09 17:24:08 +00:00
|
|
|
MapWindowPoints(hwnd, HWND_DESKTOP, (LPPOINT)(LPRECT)&rc, 2);
|
2006-03-24 00:42:35 +00:00
|
|
|
GetCursorPos(&pt);
|
|
|
|
|
|
|
|
if (!PtInRect(&rc, pt) || (WindowFromPoint(pt) != hwnd)) {
|
|
|
|
KillTimer(hwnd, event);
|
|
|
|
PostMessage(hwnd, WM_MOUSELEAVE, 0, 0L);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-01 14:20:48 +00:00
|
|
|
static bool MakeWindow(bool full_screen)
|
2007-06-21 15:48:00 +00:00
|
|
|
{
|
|
|
|
_fullscreen = full_screen;
|
|
|
|
|
|
|
|
// recreate window?
|
|
|
|
if ((full_screen || _wnd.fullscreen) && _wnd.main_wnd) {
|
2007-08-09 05:34:56 +00:00
|
|
|
DestroyWindow(_wnd.main_wnd);
|
2007-06-21 15:48:00 +00:00
|
|
|
_wnd.main_wnd = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(WINCE)
|
|
|
|
/* WinCE is always fullscreen */
|
|
|
|
#else
|
|
|
|
if (full_screen) {
|
|
|
|
DEVMODE settings;
|
|
|
|
|
|
|
|
/* Make sure we are always at least the screen-depth of the blitter */
|
|
|
|
if (_fullscreen_bpp < BlitterFactoryBase::GetCurrentBlitter()->GetScreenDepth()) _fullscreen_bpp = BlitterFactoryBase::GetCurrentBlitter()->GetScreenDepth();
|
|
|
|
|
|
|
|
memset(&settings, 0, sizeof(settings));
|
|
|
|
settings.dmSize = sizeof(settings);
|
|
|
|
settings.dmFields =
|
|
|
|
(_fullscreen_bpp != 0 ? DM_BITSPERPEL : 0) |
|
|
|
|
DM_PELSWIDTH |
|
|
|
|
DM_PELSHEIGHT |
|
|
|
|
(_display_hz != 0 ? DM_DISPLAYFREQUENCY : 0);
|
|
|
|
settings.dmBitsPerPel = _fullscreen_bpp;
|
|
|
|
settings.dmPelsWidth = _wnd.width_org;
|
|
|
|
settings.dmPelsHeight = _wnd.height_org;
|
|
|
|
settings.dmDisplayFrequency = _display_hz;
|
|
|
|
|
|
|
|
if (ChangeDisplaySettings(&settings, CDS_FULLSCREEN) != DISP_CHANGE_SUCCESSFUL) {
|
2008-01-01 14:20:48 +00:00
|
|
|
MakeWindow(false); // don't care about the result
|
|
|
|
return false; // the request failed
|
2007-06-21 15:48:00 +00:00
|
|
|
}
|
|
|
|
} else if (_wnd.fullscreen) {
|
|
|
|
// restore display?
|
|
|
|
ChangeDisplaySettings(NULL, 0);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
{
|
|
|
|
RECT r;
|
|
|
|
DWORD style, showstyle;
|
|
|
|
int x, y, w, h;
|
|
|
|
|
|
|
|
showstyle = SW_SHOWNORMAL;
|
|
|
|
_wnd.fullscreen = full_screen;
|
|
|
|
if (_wnd.fullscreen) {
|
|
|
|
style = WS_POPUP;
|
|
|
|
SetRect(&r, 0, 0, _wnd.width_org, _wnd.height_org);
|
|
|
|
} else {
|
|
|
|
style = WS_OVERLAPPEDWINDOW;
|
|
|
|
/* On window creation, check if we were in maximize mode before */
|
|
|
|
if (_window_maximize) showstyle = SW_SHOWMAXIMIZED;
|
|
|
|
SetRect(&r, 0, 0, _wnd.width, _wnd.height);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if !defined(WINCE)
|
|
|
|
AdjustWindowRect(&r, style, FALSE);
|
|
|
|
#endif
|
|
|
|
w = r.right - r.left;
|
|
|
|
h = r.bottom - r.top;
|
2008-08-13 19:09:27 +00:00
|
|
|
x = ((GetSystemMetrics(SM_CXVIRTUALSCREEN) - w) / 2) - GetSystemMetrics(SM_XVIRTUALSCREEN);
|
|
|
|
y = ((GetSystemMetrics(SM_CYVIRTUALSCREEN) - h) / 2) - GetSystemMetrics(SM_YVIRTUALSCREEN);
|
2007-06-21 15:48:00 +00:00
|
|
|
|
|
|
|
if (_wnd.main_wnd) {
|
|
|
|
ShowWindow(_wnd.main_wnd, SW_SHOWNORMAL); // remove maximize-flag
|
|
|
|
SetWindowPos(_wnd.main_wnd, 0, x, y, w, h, SWP_NOACTIVATE | SWP_NOOWNERZORDER | SWP_NOZORDER);
|
|
|
|
} else {
|
|
|
|
TCHAR Windowtitle[50];
|
|
|
|
|
|
|
|
_sntprintf(Windowtitle, sizeof(Windowtitle), _T("OpenTTD %s"), MB_TO_WIDE(_openttd_revision));
|
|
|
|
|
|
|
|
_wnd.main_wnd = CreateWindow(_T("OTTD"), Windowtitle, style, x, y, w, h, 0, 0, GetModuleHandle(NULL), 0);
|
2008-06-05 20:54:52 +00:00
|
|
|
if (_wnd.main_wnd == NULL) usererror("CreateWindow failed");
|
2007-06-21 15:48:00 +00:00
|
|
|
ShowWindow(_wnd.main_wnd, showstyle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
GameSizeChanged(); // invalidate all windows, force redraw
|
2008-01-01 14:20:48 +00:00
|
|
|
return true; // the request succedded
|
2007-06-21 15:48:00 +00:00
|
|
|
}
|
|
|
|
|
2005-07-23 15:16:57 +00:00
|
|
|
static LRESULT CALLBACK WndProcGdi(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
|
|
|
|
{
|
2007-03-10 00:30:18 +00:00
|
|
|
static uint32 keycode = 0;
|
2007-04-27 21:27:02 +00:00
|
|
|
static bool console = false;
|
2007-03-10 00:30:18 +00:00
|
|
|
|
2005-07-23 15:16:57 +00:00
|
|
|
switch (msg) {
|
2006-08-31 14:50:12 +00:00
|
|
|
case WM_CREATE:
|
|
|
|
SetTimer(hwnd, TID_POLLMOUSE, MOUSE_POLL_DELAY, (TIMERPROC)TrackMouseTimerProc);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WM_PAINT: {
|
|
|
|
PAINTSTRUCT ps;
|
2008-04-18 04:37:06 +00:00
|
|
|
HDC dc, dc2;
|
2006-08-31 14:50:12 +00:00
|
|
|
HBITMAP old_bmp;
|
|
|
|
HPALETTE old_palette;
|
|
|
|
|
|
|
|
BeginPaint(hwnd, &ps);
|
|
|
|
dc = ps.hdc;
|
|
|
|
dc2 = CreateCompatibleDC(dc);
|
2007-01-10 18:56:51 +00:00
|
|
|
old_bmp = (HBITMAP)SelectObject(dc2, _wnd.dib_sect);
|
2006-08-31 14:50:12 +00:00
|
|
|
old_palette = SelectPalette(dc, _wnd.gdi_palette, FALSE);
|
|
|
|
|
2007-06-19 15:04:08 +00:00
|
|
|
if (_pal_count_dirty != 0) {
|
2007-06-19 15:18:26 +00:00
|
|
|
Blitter *blitter = BlitterFactoryBase::GetCurrentBlitter();
|
|
|
|
|
2007-06-19 15:04:08 +00:00
|
|
|
switch (blitter->UsePaletteAnimation()) {
|
|
|
|
case Blitter::PALETTE_ANIMATION_VIDEO_BACKEND:
|
2007-06-19 15:26:10 +00:00
|
|
|
UpdatePalette(dc2, _pal_first_dirty, _pal_count_dirty);
|
2007-06-19 15:04:08 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Blitter::PALETTE_ANIMATION_BLITTER:
|
|
|
|
blitter->PaletteAnimate(_pal_first_dirty, _pal_count_dirty);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Blitter::PALETTE_ANIMATION_NONE:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
NOT_REACHED();
|
|
|
|
}
|
|
|
|
_pal_count_dirty = 0;
|
2006-08-31 14:50:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BitBlt(dc, 0, 0, _wnd.width, _wnd.height, dc2, 0, 0, SRCCOPY);
|
|
|
|
SelectPalette(dc, old_palette, TRUE);
|
|
|
|
SelectObject(dc2, old_bmp);
|
|
|
|
DeleteDC(dc2);
|
|
|
|
EndPaint(hwnd, &ps);
|
|
|
|
return 0;
|
2005-07-23 15:16:57 +00:00
|
|
|
}
|
|
|
|
|
2006-08-31 14:50:12 +00:00
|
|
|
case WM_PALETTECHANGED:
|
|
|
|
if ((HWND)wParam == hwnd) return 0;
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
|
|
|
|
case WM_QUERYNEWPALETTE: {
|
|
|
|
HDC hDC = GetWindowDC(hwnd);
|
|
|
|
HPALETTE hOldPalette = SelectPalette(hDC, _wnd.gdi_palette, FALSE);
|
|
|
|
UINT nChanged = RealizePalette(hDC);
|
|
|
|
|
|
|
|
SelectPalette(hDC, hOldPalette, TRUE);
|
|
|
|
ReleaseDC(hwnd, hDC);
|
|
|
|
if (nChanged) InvalidateRect(hwnd, NULL, FALSE);
|
|
|
|
return 0;
|
2005-07-23 15:16:57 +00:00
|
|
|
}
|
|
|
|
|
2006-08-31 14:50:12 +00:00
|
|
|
case WM_CLOSE:
|
2006-09-04 17:30:30 +00:00
|
|
|
HandleExitGameRequest();
|
2006-08-31 14:50:12 +00:00
|
|
|
return 0;
|
|
|
|
|
2006-11-05 01:13:08 +00:00
|
|
|
case WM_DESTROY:
|
2008-06-16 19:38:41 +00:00
|
|
|
if (_window_maximize) _cur_resolution = _bck_resolution;
|
2006-11-05 01:13:08 +00:00
|
|
|
return 0;
|
|
|
|
|
2006-08-31 14:50:12 +00:00
|
|
|
case WM_LBUTTONDOWN:
|
|
|
|
SetCapture(hwnd);
|
|
|
|
_left_button_down = true;
|
2006-11-15 21:01:19 +00:00
|
|
|
HandleMouseEvents();
|
2005-07-23 15:16:57 +00:00
|
|
|
return 0;
|
|
|
|
|
2006-08-31 14:50:12 +00:00
|
|
|
case WM_LBUTTONUP:
|
|
|
|
ReleaseCapture();
|
|
|
|
_left_button_down = false;
|
|
|
|
_left_button_clicked = false;
|
2006-11-15 21:01:19 +00:00
|
|
|
HandleMouseEvents();
|
2006-08-31 14:50:12 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
case WM_RBUTTONDOWN:
|
|
|
|
SetCapture(hwnd);
|
|
|
|
_right_button_down = true;
|
|
|
|
_right_button_clicked = true;
|
2006-11-15 21:01:19 +00:00
|
|
|
HandleMouseEvents();
|
2006-08-31 14:50:12 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
case WM_RBUTTONUP:
|
|
|
|
ReleaseCapture();
|
|
|
|
_right_button_down = false;
|
2006-11-15 21:01:19 +00:00
|
|
|
HandleMouseEvents();
|
2006-08-31 14:50:12 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
case WM_MOUSELEAVE:
|
|
|
|
UndrawMouseCursor();
|
|
|
|
_cursor.in_window = false;
|
2006-11-05 01:53:12 +00:00
|
|
|
|
|
|
|
if (!_left_button_down && !_right_button_down) MyShowCursor(true);
|
2006-11-15 21:01:19 +00:00
|
|
|
HandleMouseEvents();
|
2006-11-05 01:53:12 +00:00
|
|
|
return 0;
|
2006-03-24 00:42:35 +00:00
|
|
|
|
2006-08-31 14:50:12 +00:00
|
|
|
case WM_MOUSEMOVE: {
|
|
|
|
int x = (int16)LOWORD(lParam);
|
|
|
|
int y = (int16)HIWORD(lParam);
|
|
|
|
POINT pt;
|
2005-07-23 15:16:57 +00:00
|
|
|
|
2006-08-31 14:50:12 +00:00
|
|
|
/* If the mouse was not in the window and it has moved it means it has
|
2006-11-05 01:53:12 +00:00
|
|
|
* come into the window, so start drawing the mouse. Also start
|
2006-08-31 14:50:12 +00:00
|
|
|
* tracking the mouse for exiting the window */
|
|
|
|
if (!_cursor.in_window) {
|
|
|
|
_cursor.in_window = true;
|
|
|
|
SetTimer(hwnd, TID_POLLMOUSE, MOUSE_POLL_DELAY, (TIMERPROC)TrackMouseTimerProc);
|
|
|
|
|
2006-11-05 01:53:12 +00:00
|
|
|
DrawMouseCursor();
|
2006-08-31 14:50:12 +00:00
|
|
|
}
|
2005-07-23 15:16:57 +00:00
|
|
|
|
2006-08-31 14:50:12 +00:00
|
|
|
if (_cursor.fix_at) {
|
|
|
|
int dx = x - _cursor.pos.x;
|
|
|
|
int dy = y - _cursor.pos.y;
|
|
|
|
if (dx != 0 || dy != 0) {
|
|
|
|
_cursor.delta.x += dx;
|
|
|
|
_cursor.delta.y += dy;
|
|
|
|
|
|
|
|
pt.x = _cursor.pos.x;
|
|
|
|
pt.y = _cursor.pos.y;
|
|
|
|
|
|
|
|
ClientToScreen(hwnd, &pt);
|
|
|
|
SetCursorPos(pt.x, pt.y);
|
2005-07-23 15:16:57 +00:00
|
|
|
}
|
2006-08-31 14:50:12 +00:00
|
|
|
} else {
|
|
|
|
_cursor.delta.x += x - _cursor.pos.x;
|
|
|
|
_cursor.delta.y += y - _cursor.pos.y;
|
|
|
|
_cursor.pos.x = x;
|
|
|
|
_cursor.pos.y = y;
|
|
|
|
_cursor.dirty = true;
|
2005-07-23 15:16:57 +00:00
|
|
|
}
|
2006-08-31 14:50:12 +00:00
|
|
|
MyShowCursor(false);
|
2006-11-15 21:01:19 +00:00
|
|
|
HandleMouseEvents();
|
2006-08-31 14:50:12 +00:00
|
|
|
return 0;
|
2005-07-23 15:16:57 +00:00
|
|
|
}
|
|
|
|
|
2007-03-07 18:58:28 +00:00
|
|
|
#if !defined(UNICODE)
|
|
|
|
case WM_INPUTLANGCHANGE: {
|
|
|
|
TCHAR locale[6];
|
|
|
|
LCID lcid = GB(lParam, 0, 16);
|
|
|
|
|
|
|
|
int len = GetLocaleInfo(lcid, LOCALE_IDEFAULTANSICODEPAGE, locale, lengthof(locale));
|
|
|
|
if (len != 0) _codepage = _ttoi(locale);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#endif /* UNICODE */
|
|
|
|
|
2007-04-27 21:27:02 +00:00
|
|
|
case WM_DEADCHAR:
|
|
|
|
console = GB(lParam, 16, 8) == 41;
|
|
|
|
return 0;
|
|
|
|
|
2007-03-10 00:30:18 +00:00
|
|
|
case WM_CHAR: {
|
|
|
|
/* Silently drop all non-text messages as those were handled by WM_KEYDOWN */
|
|
|
|
if (wParam < VK_SPACE) return 0;
|
|
|
|
uint scancode = GB(lParam, 16, 8);
|
|
|
|
uint charcode = wParam;
|
2005-07-23 15:16:57 +00:00
|
|
|
|
2007-04-27 21:27:02 +00:00
|
|
|
/* If the console key is a dead-key, we need to press it twice to get a WM_CHAR message.
|
|
|
|
* But we then get two WM_CHAR messages, so ignore the first one */
|
|
|
|
if (console && scancode == 41) {
|
|
|
|
console = false;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-03-10 00:30:18 +00:00
|
|
|
#if !defined(UNICODE)
|
|
|
|
wchar_t w;
|
|
|
|
int len = MultiByteToWideChar(_codepage, 0, (char*)&charcode, 1, &w, 1);
|
|
|
|
charcode = len == 1 ? w : 0;
|
|
|
|
#endif /* UNICODE */
|
|
|
|
|
|
|
|
/* No matter the keyboard layout, we will map the '~' to the console */
|
|
|
|
scancode = scancode == 41 ? (int)WKC_BACKQUOTE : keycode;
|
|
|
|
HandleKeypress(GB(charcode, 0, 16) | (scancode << 16));
|
|
|
|
return 0;
|
|
|
|
}
|
2006-08-31 14:50:12 +00:00
|
|
|
|
2007-03-10 00:30:18 +00:00
|
|
|
case WM_KEYDOWN: {
|
|
|
|
keycode = MapWindowsKey(wParam);
|
2006-08-31 14:50:12 +00:00
|
|
|
|
2007-03-10 00:30:18 +00:00
|
|
|
/* Silently drop all text messages as those will be handled by WM_CHAR
|
|
|
|
* WM_KEYDOWN only handles CTRL+ commands and special keys like VK_LEFT, etc. */
|
|
|
|
if (keycode == 0 || (keycode > WKC_PAUSE && GB(keycode, 13, 4) == 0)) return 0;
|
2006-08-31 14:50:12 +00:00
|
|
|
|
2007-09-08 14:59:58 +00:00
|
|
|
/* Keys handled in WM_CHAR */
|
|
|
|
if ((uint)(GB(keycode, 0, 12) - WKC_NUM_DIV) <= WKC_MINUS - WKC_NUM_DIV) return 0;
|
|
|
|
|
2007-03-10 00:30:18 +00:00
|
|
|
HandleKeypress(0 | (keycode << 16));
|
|
|
|
return 0;
|
2005-07-23 15:16:57 +00:00
|
|
|
}
|
|
|
|
|
2006-08-31 14:50:12 +00:00
|
|
|
case WM_SYSKEYDOWN: /* user presses F10 or Alt, both activating the title-menu */
|
|
|
|
switch (wParam) {
|
|
|
|
case VK_RETURN:
|
|
|
|
case 'F': /* Full Screen on ALT + ENTER/F */
|
|
|
|
ToggleFullScreen(!_wnd.fullscreen);
|
|
|
|
return 0;
|
2005-07-23 15:16:57 +00:00
|
|
|
|
2006-08-31 14:50:12 +00:00
|
|
|
case VK_MENU: /* Just ALT */
|
|
|
|
return 0; // do nothing
|
|
|
|
|
|
|
|
case VK_F10: /* F10, ignore activation of menu */
|
2006-11-15 19:35:52 +00:00
|
|
|
HandleKeypress(MapWindowsKey(wParam) << 16);
|
2006-08-31 14:50:12 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
default: /* ALT in combination with something else */
|
2006-11-15 19:35:52 +00:00
|
|
|
HandleKeypress(MapWindowsKey(wParam) << 16);
|
2006-08-31 14:50:12 +00:00
|
|
|
break;
|
|
|
|
}
|
2005-07-23 15:16:57 +00:00
|
|
|
break;
|
2006-08-31 14:50:12 +00:00
|
|
|
|
|
|
|
case WM_SIZE:
|
2007-06-30 15:02:21 +00:00
|
|
|
if (wParam != SIZE_MINIMIZED) {
|
2006-11-05 01:09:57 +00:00
|
|
|
/* Set maximized flag when we maximize (obviously), but also when we
|
|
|
|
* switched to fullscreen from a maximized state */
|
|
|
|
_window_maximize = (wParam == SIZE_MAXIMIZED || (_window_maximize && _fullscreen));
|
2008-06-16 19:38:41 +00:00
|
|
|
if (_window_maximize) _bck_resolution = _cur_resolution;
|
2006-08-31 14:50:12 +00:00
|
|
|
ClientSizeChanged(LOWORD(lParam), HIWORD(lParam));
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
|
2007-01-21 14:32:40 +00:00
|
|
|
#if !defined(WINCE)
|
2006-08-31 14:50:12 +00:00
|
|
|
case WM_SIZING: {
|
|
|
|
RECT* r = (RECT*)lParam;
|
|
|
|
RECT r2;
|
|
|
|
int w, h;
|
|
|
|
|
|
|
|
SetRect(&r2, 0, 0, 0, 0);
|
|
|
|
AdjustWindowRect(&r2, GetWindowLong(hwnd, GWL_STYLE), FALSE);
|
|
|
|
|
|
|
|
w = r->right - r->left - (r2.right - r2.left);
|
|
|
|
h = r->bottom - r->top - (r2.bottom - r2.top);
|
2008-04-18 21:49:38 +00:00
|
|
|
w = max(w, 64);
|
|
|
|
h = max(h, 64);
|
2006-08-31 14:50:12 +00:00
|
|
|
SetRect(&r2, 0, 0, w, h);
|
|
|
|
|
|
|
|
AdjustWindowRect(&r2, GetWindowLong(hwnd, GWL_STYLE), FALSE);
|
|
|
|
w = r2.right - r2.left;
|
|
|
|
h = r2.bottom - r2.top;
|
|
|
|
|
|
|
|
switch (wParam) {
|
|
|
|
case WMSZ_BOTTOM:
|
|
|
|
r->bottom = r->top + h;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WMSZ_BOTTOMLEFT:
|
|
|
|
r->bottom = r->top + h;
|
|
|
|
r->left = r->right - w;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WMSZ_BOTTOMRIGHT:
|
|
|
|
r->bottom = r->top + h;
|
|
|
|
r->right = r->left + w;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WMSZ_LEFT:
|
|
|
|
r->left = r->right - w;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WMSZ_RIGHT:
|
|
|
|
r->right = r->left + w;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WMSZ_TOP:
|
|
|
|
r->top = r->bottom - h;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WMSZ_TOPLEFT:
|
|
|
|
r->top = r->bottom - h;
|
|
|
|
r->left = r->right - w;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WMSZ_TOPRIGHT:
|
|
|
|
r->top = r->bottom - h;
|
|
|
|
r->right = r->left + w;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return TRUE;
|
2005-07-23 15:16:57 +00:00
|
|
|
}
|
2007-01-21 14:36:08 +00:00
|
|
|
#endif
|
2005-07-23 15:16:57 +00:00
|
|
|
|
|
|
|
// needed for wheel
|
|
|
|
#if !defined(WM_MOUSEWHEEL)
|
2006-08-31 14:50:12 +00:00
|
|
|
# define WM_MOUSEWHEEL 0x020A
|
2005-07-23 15:16:57 +00:00
|
|
|
#endif //WM_MOUSEWHEEL
|
|
|
|
#if !defined(GET_WHEEL_DELTA_WPARAM)
|
|
|
|
# define GET_WHEEL_DELTA_WPARAM(wparam) ((short)HIWORD(wparam))
|
|
|
|
#endif //GET_WHEEL_DELTA_WPARAM
|
|
|
|
|
2006-08-31 14:50:12 +00:00
|
|
|
case WM_MOUSEWHEEL: {
|
|
|
|
int delta = GET_WHEEL_DELTA_WPARAM(wParam);
|
2005-07-23 15:16:57 +00:00
|
|
|
|
2006-08-31 14:50:12 +00:00
|
|
|
if (delta < 0) {
|
|
|
|
_cursor.wheel++;
|
|
|
|
} else if (delta > 0) {
|
|
|
|
_cursor.wheel--;
|
|
|
|
}
|
2006-11-15 21:01:19 +00:00
|
|
|
HandleMouseEvents();
|
2006-08-31 14:50:12 +00:00
|
|
|
return 0;
|
2005-07-23 15:16:57 +00:00
|
|
|
}
|
|
|
|
|
2007-06-30 15:02:21 +00:00
|
|
|
case WM_SETFOCUS:
|
|
|
|
_wnd.has_focus = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WM_KILLFOCUS:
|
|
|
|
_wnd.has_focus = false;
|
|
|
|
break;
|
|
|
|
|
2007-06-17 19:00:45 +00:00
|
|
|
#if !defined(WINCE)
|
2007-06-30 15:02:21 +00:00
|
|
|
case WM_ACTIVATE: {
|
2007-08-09 20:59:36 +00:00
|
|
|
/* Don't do anything if we are closing openttd */
|
|
|
|
if (_exit_game) break;
|
|
|
|
|
2007-06-30 15:02:21 +00:00
|
|
|
bool active = (LOWORD(wParam) != WA_INACTIVE);
|
|
|
|
bool minimized = (HIWORD(wParam) != 0);
|
2007-06-17 19:00:45 +00:00
|
|
|
if (_wnd.fullscreen) {
|
2007-06-30 15:02:21 +00:00
|
|
|
if (active && minimized) {
|
2007-06-17 19:00:45 +00:00
|
|
|
/* Restore the game window */
|
|
|
|
ShowWindow(hwnd, SW_RESTORE);
|
2007-06-21 15:48:00 +00:00
|
|
|
MakeWindow(true);
|
2007-06-30 15:02:21 +00:00
|
|
|
} else if (!active && !minimized) {
|
2007-06-17 19:00:45 +00:00
|
|
|
/* Minimise the window and restore desktop */
|
|
|
|
ShowWindow(hwnd, SW_MINIMIZE);
|
|
|
|
ChangeDisplaySettings(NULL, 0);
|
|
|
|
}
|
|
|
|
}
|
2007-08-04 13:51:41 +00:00
|
|
|
} break;
|
2007-06-30 15:02:21 +00:00
|
|
|
#endif
|
2007-08-04 13:51:41 +00:00
|
|
|
}
|
2007-06-30 15:02:21 +00:00
|
|
|
|
2005-07-23 15:16:57 +00:00
|
|
|
return DefWindowProc(hwnd, msg, wParam, lParam);
|
|
|
|
}
|
|
|
|
|
2007-03-07 11:47:46 +00:00
|
|
|
static void RegisterWndClass()
|
2005-07-23 15:16:57 +00:00
|
|
|
{
|
2006-08-31 14:50:12 +00:00
|
|
|
static bool registered = false;
|
|
|
|
|
2005-07-23 15:16:57 +00:00
|
|
|
if (!registered) {
|
|
|
|
HINSTANCE hinst = GetModuleHandle(NULL);
|
|
|
|
WNDCLASS wnd = {
|
|
|
|
0,
|
|
|
|
WndProcGdi,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
hinst,
|
|
|
|
LoadIcon(hinst, MAKEINTRESOURCE(100)),
|
|
|
|
LoadCursor(NULL, IDC_ARROW),
|
|
|
|
0,
|
|
|
|
0,
|
2006-11-28 19:58:13 +00:00
|
|
|
_T("OTTD")
|
2005-07-23 15:16:57 +00:00
|
|
|
};
|
2006-08-31 14:50:12 +00:00
|
|
|
|
2005-07-23 15:16:57 +00:00
|
|
|
registered = true;
|
2008-06-05 20:54:52 +00:00
|
|
|
if (!RegisterClass(&wnd)) usererror("RegisterClass failed");
|
2005-07-23 15:16:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool AllocateDibSection(int w, int h)
|
|
|
|
{
|
|
|
|
BITMAPINFO *bi;
|
|
|
|
HDC dc;
|
2007-06-12 20:24:12 +00:00
|
|
|
int bpp = BlitterFactoryBase::GetCurrentBlitter()->GetScreenDepth();
|
2005-07-23 15:16:57 +00:00
|
|
|
|
2008-04-18 21:49:38 +00:00
|
|
|
w = max(w, 64);
|
|
|
|
h = max(h, 64);
|
2005-07-23 15:16:57 +00:00
|
|
|
|
2008-06-05 20:54:52 +00:00
|
|
|
if (bpp == 0) usererror("Can't use a blitter that blits 0 bpp for normal visuals");
|
2007-06-12 20:24:12 +00:00
|
|
|
|
2005-07-23 15:16:57 +00:00
|
|
|
if (w == _screen.width && h == _screen.height)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
_screen.width = w;
|
2007-11-19 20:40:14 +00:00
|
|
|
_screen.pitch = (bpp == 8) ? Align(w, 4) : w;
|
2005-07-23 15:16:57 +00:00
|
|
|
_screen.height = h;
|
2007-04-18 22:10:36 +00:00
|
|
|
bi = (BITMAPINFO*)alloca(sizeof(BITMAPINFOHEADER) + sizeof(RGBQUAD) * 256);
|
|
|
|
memset(bi, 0, sizeof(BITMAPINFOHEADER) + sizeof(RGBQUAD) * 256);
|
2005-07-23 15:16:57 +00:00
|
|
|
bi->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
|
|
|
|
|
|
|
|
bi->bmiHeader.biWidth = _wnd.width = w;
|
|
|
|
bi->bmiHeader.biHeight = -(_wnd.height = h);
|
|
|
|
|
|
|
|
bi->bmiHeader.biPlanes = 1;
|
2007-06-12 20:24:12 +00:00
|
|
|
bi->bmiHeader.biBitCount = BlitterFactoryBase::GetCurrentBlitter()->GetScreenDepth();
|
2005-07-23 15:16:57 +00:00
|
|
|
bi->bmiHeader.biCompression = BI_RGB;
|
|
|
|
|
2006-08-31 14:50:12 +00:00
|
|
|
if (_wnd.dib_sect) DeleteObject(_wnd.dib_sect);
|
2005-07-23 15:16:57 +00:00
|
|
|
|
|
|
|
dc = GetDC(0);
|
2007-06-12 20:24:12 +00:00
|
|
|
_wnd.dib_sect = CreateDIBSection(dc, bi, DIB_RGB_COLORS, (VOID**)&_wnd.buffer_bits, NULL, 0);
|
2008-06-05 20:54:52 +00:00
|
|
|
if (_wnd.dib_sect == NULL) usererror("CreateDIBSection failed");
|
2005-07-23 15:16:57 +00:00
|
|
|
ReleaseDC(0, dc);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-06-16 19:38:41 +00:00
|
|
|
static const Dimension default_resolutions[] = {
|
2006-08-31 14:50:12 +00:00
|
|
|
{ 640, 480 },
|
|
|
|
{ 800, 600 },
|
|
|
|
{ 1024, 768 },
|
|
|
|
{ 1152, 864 },
|
|
|
|
{ 1280, 800 },
|
|
|
|
{ 1280, 960 },
|
|
|
|
{ 1280, 1024 },
|
|
|
|
{ 1400, 1050 },
|
|
|
|
{ 1600, 1200 },
|
|
|
|
{ 1680, 1050 },
|
|
|
|
{ 1920, 1200 }
|
2005-07-23 15:16:57 +00:00
|
|
|
};
|
|
|
|
|
2007-03-07 11:47:46 +00:00
|
|
|
static void FindResolutions()
|
2005-07-23 15:16:57 +00:00
|
|
|
{
|
2006-06-10 08:37:41 +00:00
|
|
|
uint n = 0;
|
2007-01-21 14:32:40 +00:00
|
|
|
#if defined(WINCE)
|
|
|
|
/* EnumDisplaySettingsW is only supported in CE 4.2+ */
|
|
|
|
/* XXX -- One might argue that we assume 4.2+ on every system. Then we can use this function safely */
|
|
|
|
#else
|
2006-06-10 08:37:41 +00:00
|
|
|
uint i;
|
2006-11-28 20:01:46 +00:00
|
|
|
DEVMODEA dm;
|
2005-07-23 15:16:57 +00:00
|
|
|
|
2006-11-28 20:01:46 +00:00
|
|
|
/* XXX - EnumDisplaySettingsW crashes with unicows.dll on Windows95
|
|
|
|
* Doesn't really matter since we don't pass a string anyways, but still
|
|
|
|
* a letdown */
|
|
|
|
for (i = 0; EnumDisplaySettingsA(NULL, i, &dm) != 0; i++) {
|
2008-04-18 21:49:38 +00:00
|
|
|
if (dm.dmBitsPerPel == BlitterFactoryBase::GetCurrentBlitter()->GetScreenDepth() &&
|
|
|
|
dm.dmPelsWidth >= 640 && dm.dmPelsHeight >= 480) {
|
2006-06-10 08:37:41 +00:00
|
|
|
uint j;
|
|
|
|
|
2005-07-23 15:16:57 +00:00
|
|
|
for (j = 0; j < n; j++) {
|
2008-06-16 20:16:43 +00:00
|
|
|
if (_resolutions[j].width == (int)dm.dmPelsWidth && _resolutions[j].height == (int)dm.dmPelsHeight) break;
|
2005-07-23 15:16:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* In the previous loop we have checked already existing/added resolutions if
|
|
|
|
* they are the same as the new ones. If this is not the case (j == n); we have
|
|
|
|
* looped all and found none, add the new one to the list. If we have reached the
|
|
|
|
* maximum amount of resolutions, then quit querying the display */
|
|
|
|
if (j == n) {
|
2008-06-16 19:38:41 +00:00
|
|
|
_resolutions[j].width = dm.dmPelsWidth;
|
|
|
|
_resolutions[j].height = dm.dmPelsHeight;
|
2005-07-23 15:16:57 +00:00
|
|
|
if (++n == lengthof(_resolutions)) break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-01-21 14:32:40 +00:00
|
|
|
#endif
|
2005-07-23 15:16:57 +00:00
|
|
|
|
|
|
|
/* We have found no resolutions, show the default list */
|
|
|
|
if (n == 0) {
|
|
|
|
memcpy(_resolutions, default_resolutions, sizeof(default_resolutions));
|
|
|
|
n = lengthof(default_resolutions);
|
|
|
|
}
|
|
|
|
|
|
|
|
_num_resolutions = n;
|
|
|
|
SortResolutions(_num_resolutions);
|
|
|
|
}
|
|
|
|
|
2007-07-05 12:23:54 +00:00
|
|
|
static FVideoDriver_Win32 iFVideoDriver_Win32;
|
2005-07-23 15:16:57 +00:00
|
|
|
|
2007-07-05 12:23:54 +00:00
|
|
|
const char *VideoDriver_Win32::Start(const char * const *parm)
|
2005-07-23 15:16:57 +00:00
|
|
|
{
|
|
|
|
memset(&_wnd, 0, sizeof(_wnd));
|
|
|
|
|
|
|
|
RegisterWndClass();
|
|
|
|
|
|
|
|
MakePalette();
|
|
|
|
|
|
|
|
FindResolutions();
|
|
|
|
|
2008-06-16 19:38:41 +00:00
|
|
|
DEBUG(driver, 2, "Resolution for display: %dx%d", _cur_resolution.width, _cur_resolution.height);
|
2007-08-04 12:53:41 +00:00
|
|
|
|
2005-07-23 15:16:57 +00:00
|
|
|
// fullscreen uses those
|
2008-06-16 19:38:41 +00:00
|
|
|
_wnd.width_org = _cur_resolution.width;
|
|
|
|
_wnd.height_org = _cur_resolution.height;
|
2005-07-23 15:16:57 +00:00
|
|
|
|
2008-06-16 19:38:41 +00:00
|
|
|
AllocateDibSection(_cur_resolution.width, _cur_resolution.height);
|
2005-07-23 15:16:57 +00:00
|
|
|
MakeWindow(_fullscreen);
|
|
|
|
|
2008-04-18 21:49:38 +00:00
|
|
|
MarkWholeScreenDirty();
|
|
|
|
|
2005-07-23 15:16:57 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-07-05 12:23:54 +00:00
|
|
|
void VideoDriver_Win32::Stop()
|
2005-07-23 15:16:57 +00:00
|
|
|
{
|
2006-03-21 21:55:49 +00:00
|
|
|
DeleteObject(_wnd.gdi_palette);
|
|
|
|
DeleteObject(_wnd.dib_sect);
|
2007-08-09 05:34:56 +00:00
|
|
|
DestroyWindow(_wnd.main_wnd);
|
2006-03-21 21:55:49 +00:00
|
|
|
|
2007-01-21 14:32:40 +00:00
|
|
|
#if !defined(WINCE)
|
2005-07-23 15:16:57 +00:00
|
|
|
if (_wnd.fullscreen) ChangeDisplaySettings(NULL, 0);
|
2007-01-21 14:32:40 +00:00
|
|
|
#endif
|
2005-07-23 15:16:57 +00:00
|
|
|
MyShowCursor(true);
|
|
|
|
}
|
|
|
|
|
2007-07-05 12:23:54 +00:00
|
|
|
void VideoDriver_Win32::MakeDirty(int left, int top, int width, int height)
|
2005-07-23 15:16:57 +00:00
|
|
|
{
|
|
|
|
RECT r = { left, top, left + width, top + height };
|
|
|
|
|
|
|
|
InvalidateRect(_wnd.main_wnd, &r, FALSE);
|
|
|
|
}
|
|
|
|
|
2007-03-07 11:47:46 +00:00
|
|
|
static void CheckPaletteAnim()
|
2005-07-23 15:16:57 +00:00
|
|
|
{
|
2007-06-19 15:26:10 +00:00
|
|
|
if (_pal_count_dirty == 0)
|
2005-07-23 15:16:57 +00:00
|
|
|
return;
|
|
|
|
InvalidateRect(_wnd.main_wnd, NULL, FALSE);
|
|
|
|
}
|
|
|
|
|
2007-07-05 12:23:54 +00:00
|
|
|
void VideoDriver_Win32::MainLoop()
|
2005-07-23 15:16:57 +00:00
|
|
|
{
|
|
|
|
MSG mesg;
|
2007-01-10 15:00:20 +00:00
|
|
|
uint32 cur_ticks = GetTickCount();
|
2007-06-22 20:04:21 +00:00
|
|
|
uint32 last_cur_ticks = cur_ticks;
|
2007-01-10 15:00:20 +00:00
|
|
|
uint32 next_tick = cur_ticks + 30;
|
2005-07-23 15:16:57 +00:00
|
|
|
|
|
|
|
_wnd.running = true;
|
|
|
|
|
2006-02-01 07:36:15 +00:00
|
|
|
for (;;) {
|
2007-01-10 15:00:20 +00:00
|
|
|
uint32 prev_cur_ticks = cur_ticks; // to check for wrapping
|
|
|
|
|
2005-07-23 15:16:57 +00:00
|
|
|
while (PeekMessage(&mesg, NULL, 0, 0, PM_REMOVE)) {
|
|
|
|
InteractiveRandom(); // randomness
|
2007-03-10 00:30:18 +00:00
|
|
|
TranslateMessage(&mesg);
|
2005-07-23 15:16:57 +00:00
|
|
|
DispatchMessage(&mesg);
|
|
|
|
}
|
2005-07-29 16:40:29 +00:00
|
|
|
if (_exit_game) return;
|
2005-07-23 15:16:57 +00:00
|
|
|
|
|
|
|
#if defined(_DEBUG)
|
2006-11-15 19:49:16 +00:00
|
|
|
if (_wnd.has_focus && GetAsyncKeyState(VK_SHIFT) < 0 &&
|
2005-07-23 15:16:57 +00:00
|
|
|
#else
|
2006-11-15 19:49:16 +00:00
|
|
|
/* Speed up using TAB, but disable for ALT+TAB of course */
|
|
|
|
if (_wnd.has_focus && GetAsyncKeyState(VK_TAB) < 0 && GetAsyncKeyState(VK_MENU) >= 0 &&
|
2005-07-23 15:16:57 +00:00
|
|
|
#endif
|
2006-11-15 19:49:16 +00:00
|
|
|
!_networking && _game_mode != GM_MENU) {
|
|
|
|
_fast_forward |= 2;
|
2006-06-27 21:25:53 +00:00
|
|
|
} else if (_fast_forward & 2) {
|
2005-07-23 15:16:57 +00:00
|
|
|
_fast_forward = 0;
|
2006-06-27 21:25:53 +00:00
|
|
|
}
|
2005-07-23 15:16:57 +00:00
|
|
|
|
|
|
|
cur_ticks = GetTickCount();
|
2007-03-06 20:59:52 +00:00
|
|
|
if (cur_ticks >= next_tick || (_fast_forward && !_pause_game) || cur_ticks < prev_cur_ticks) {
|
2007-06-22 20:07:39 +00:00
|
|
|
_realtime_tick += cur_ticks - last_cur_ticks;
|
|
|
|
last_cur_ticks = cur_ticks;
|
2007-01-10 15:00:20 +00:00
|
|
|
next_tick = cur_ticks + 30;
|
2008-02-17 17:00:43 +00:00
|
|
|
|
|
|
|
bool old_ctrl_pressed = _ctrl_pressed;
|
|
|
|
|
2005-07-23 15:16:57 +00:00
|
|
|
_ctrl_pressed = _wnd.has_focus && GetAsyncKeyState(VK_CONTROL)<0;
|
|
|
|
_shift_pressed = _wnd.has_focus && GetAsyncKeyState(VK_SHIFT)<0;
|
|
|
|
|
|
|
|
// determine which directional keys are down
|
|
|
|
if (_wnd.has_focus) {
|
|
|
|
_dirkeys =
|
|
|
|
(GetAsyncKeyState(VK_LEFT) < 0 ? 1 : 0) +
|
|
|
|
(GetAsyncKeyState(VK_UP) < 0 ? 2 : 0) +
|
|
|
|
(GetAsyncKeyState(VK_RIGHT) < 0 ? 4 : 0) +
|
|
|
|
(GetAsyncKeyState(VK_DOWN) < 0 ? 8 : 0);
|
2006-06-27 21:25:53 +00:00
|
|
|
} else {
|
2005-07-23 15:16:57 +00:00
|
|
|
_dirkeys = 0;
|
2006-06-27 21:25:53 +00:00
|
|
|
}
|
2005-07-23 15:16:57 +00:00
|
|
|
|
2008-02-17 17:00:43 +00:00
|
|
|
if (old_ctrl_pressed != _ctrl_pressed) HandleCtrlChanged();
|
|
|
|
|
2005-07-23 15:16:57 +00:00
|
|
|
GameLoop();
|
|
|
|
_cursor.delta.x = _cursor.delta.y = 0;
|
|
|
|
|
2006-06-27 21:25:53 +00:00
|
|
|
if (_force_full_redraw) MarkWholeScreenDirty();
|
2005-07-23 15:16:57 +00:00
|
|
|
|
2007-01-21 14:32:40 +00:00
|
|
|
#if !defined(WINCE)
|
2005-07-23 15:16:57 +00:00
|
|
|
GdiFlush();
|
2007-01-21 14:32:40 +00:00
|
|
|
#endif
|
2005-07-23 15:16:57 +00:00
|
|
|
_screen.dst_ptr = _wnd.buffer_bits;
|
|
|
|
UpdateWindows();
|
|
|
|
CheckPaletteAnim();
|
|
|
|
} else {
|
|
|
|
Sleep(1);
|
2007-01-21 14:32:40 +00:00
|
|
|
#if !defined(WINCE)
|
2005-07-23 15:16:57 +00:00
|
|
|
GdiFlush();
|
2007-01-21 14:32:40 +00:00
|
|
|
#endif
|
2005-07-23 15:16:57 +00:00
|
|
|
_screen.dst_ptr = _wnd.buffer_bits;
|
2008-08-11 22:45:11 +00:00
|
|
|
NetworkDrawChatMessage();
|
2005-07-23 15:16:57 +00:00
|
|
|
DrawMouseCursor();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-05 12:23:54 +00:00
|
|
|
bool VideoDriver_Win32::ChangeResolution(int w, int h)
|
2005-07-23 15:16:57 +00:00
|
|
|
{
|
|
|
|
_wnd.width = _wnd.width_org = w;
|
|
|
|
_wnd.height = _wnd.height_org = h;
|
|
|
|
|
2008-01-01 14:20:48 +00:00
|
|
|
return MakeWindow(_fullscreen); // _wnd.fullscreen screws up ingame resolution switching
|
2005-07-23 15:16:57 +00:00
|
|
|
}
|
|
|
|
|
2008-01-01 14:20:48 +00:00
|
|
|
bool VideoDriver_Win32::ToggleFullscreen(bool full_screen)
|
2006-08-31 14:50:12 +00:00
|
|
|
{
|
2008-01-01 14:20:48 +00:00
|
|
|
return MakeWindow(full_screen);
|
2006-08-31 14:50:12 +00:00
|
|
|
}
|