src/video/win32_v.cpp
author richk
Tue, 17 Jun 2008 13:22:13 +0000
branchNewGRF_ports
changeset 10994 cd9968b6f96b
parent 10991 d8811e327d12
permissions -rw-r--r--
(svn r13548) [NewGRF_ports] -Sync: with trunk r13412:13544.
2186
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 2174
diff changeset
     1
/* $Id$ */
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 2174
diff changeset
     2
10724
68a692eacf22 (svn r13274) [NewGRF_ports] -Sync: with trunk r12806:13144.
richk
parents: 10274
diff changeset
     3
/** @file win32_v.cpp Implementation of the Windows (GDI) video driver. */
68a692eacf22 (svn r13274) [NewGRF_ports] -Sync: with trunk r12806:13144.
richk
parents: 10274
diff changeset
     4
2189
d240b9097139 (svn r2704) Remove . from include path again, too much trouble. Also add some #ifdefs and #includes for the Windows build
tron
parents: 2186
diff changeset
     5
#include "../stdafx.h"
d240b9097139 (svn r2704) Remove . from include path again, too much trouble. Also add some #ifdefs and #includes for the Windows build
tron
parents: 2186
diff changeset
     6
#include "../openttd.h"
6872
1c4a4a609f85 (svn r11950) [NewGRF_ports] -Sync with trunk r11566:11949.
rubidium
parents: 6871
diff changeset
     7
#include "../gfx_func.h"
2189
d240b9097139 (svn r2704) Remove . from include path again, too much trouble. Also add some #ifdefs and #includes for the Windows build
tron
parents: 2186
diff changeset
     8
#include "../variables.h"
2207
40c928fbde8a (svn r2725) Move MyShowCursor() back into win32.c, it fits better there
tron
parents: 2189
diff changeset
     9
#include "../win32.h"
10724
68a692eacf22 (svn r13274) [NewGRF_ports] -Sync: with trunk r12806:13144.
richk
parents: 10274
diff changeset
    10
#include "../rev.h"
6720
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
    11
#include "../blitter/factory.hpp"
6872
1c4a4a609f85 (svn r11950) [NewGRF_ports] -Sync with trunk r11566:11949.
rubidium
parents: 6871
diff changeset
    12
#include "../network/network.h"
1c4a4a609f85 (svn r11950) [NewGRF_ports] -Sync with trunk r11566:11949.
rubidium
parents: 6871
diff changeset
    13
#include "../core/math_func.hpp"
6877
889301acc299 (svn r12053) [NewGRF_ports] -Sync: with trunk r11949:12050.
rubidium
parents: 6872
diff changeset
    14
#include "../core/random_func.hpp"
10724
68a692eacf22 (svn r13274) [NewGRF_ports] -Sync: with trunk r12806:13144.
richk
parents: 10274
diff changeset
    15
#include "../functions.h"
68a692eacf22 (svn r13274) [NewGRF_ports] -Sync: with trunk r12806:13144.
richk
parents: 10274
diff changeset
    16
#include "../texteff.hpp"
2189
d240b9097139 (svn r2704) Remove . from include path again, too much trouble. Also add some #ifdefs and #includes for the Windows build
tron
parents: 2186
diff changeset
    17
#include "win32_v.h"
2171
008122046f7f (svn r2685) -Codechange: Split the music/sound/video drivers into separate files and move them into subfolders.
tron
parents: 2163
diff changeset
    18
#include <windows.h>
5168
10a8dc9788d7 (svn r7278) -Codechange: [win32] Add UNICODE support so it should compile on OS's using UNICODE
Darkvater
parents: 5112
diff changeset
    19
#include <tchar.h>
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    20
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    21
static struct {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    22
	HWND main_wnd;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    23
	HBITMAP dib_sect;
6720
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
    24
	void *buffer_bits;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    25
	HPALETTE gdi_palette;
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
    26
	int width;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
    27
	int height;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
    28
	int width_org;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
    29
	int height_org;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    30
	bool fullscreen;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    31
	bool has_focus;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    32
	bool running;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    33
} _wnd;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    34
3051
16f6e40c67eb (svn r3640) - Remove win32-only variables from variables.h and put them into win32_v.c. Also ifdef the win32 specific configuration file settings.
Darkvater
parents: 2952
diff changeset
    35
bool _force_full_redraw;
4258
3ac20963213d (svn r5874) -Feature [FS#234]: Remember the maximized state and restore on start. This also fixes a bug where a different resolution is chosen for a maximized window, but it retains the maximized flag. Only win32.
Darkvater
parents: 4077
diff changeset
    36
bool _window_maximize;
3051
16f6e40c67eb (svn r3640) - Remove win32-only variables from variables.h and put them into win32_v.c. Also ifdef the win32 specific configuration file settings.
Darkvater
parents: 2952
diff changeset
    37
uint _display_hz;
16f6e40c67eb (svn r3640) - Remove win32-only variables from variables.h and put them into win32_v.c. Also ifdef the win32 specific configuration file settings.
Darkvater
parents: 2952
diff changeset
    38
uint _fullscreen_bpp;
10994
cd9968b6f96b (svn r13548) [NewGRF_ports] -Sync: with trunk r13412:13544.
richk
parents: 10991
diff changeset
    39
static Dimension _bck_resolution;
6577
ee768d653dd0 (svn r9055) -Codechange: Change windows unicode handling and allow a pure non-unicode build to function. Win9x binaries will be possible with mingw/nightly system.
Darkvater
parents: 6574
diff changeset
    40
#if !defined(UNICODE)
ee768d653dd0 (svn r9055) -Codechange: Change windows unicode handling and allow a pure non-unicode build to function. Win9x binaries will be possible with mingw/nightly system.
Darkvater
parents: 6574
diff changeset
    41
uint _codepage;
ee768d653dd0 (svn r9055) -Codechange: Change windows unicode handling and allow a pure non-unicode build to function. Win9x binaries will be possible with mingw/nightly system.
Darkvater
parents: 6574
diff changeset
    42
#endif
3051
16f6e40c67eb (svn r3640) - Remove win32-only variables from variables.h and put them into win32_v.c. Also ifdef the win32 specific configuration file settings.
Darkvater
parents: 2952
diff changeset
    43
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6557
diff changeset
    44
static void MakePalette()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    45
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    46
	LOGPALETTE *pal;
1468
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
    47
	uint i;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    48
6719
4cc327ad39d5 (svn r10027) [NewGRF_ports] -Sync: with trunk r9506-10026
richk
parents: 6603
diff changeset
    49
	pal = (LOGPALETTE*)alloca(sizeof(LOGPALETTE) + (256 - 1) * sizeof(PALETTEENTRY));
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    50
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    51
	pal->palVersion = 0x300;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    52
	pal->palNumEntries = 256;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 164
diff changeset
    53
1991
f3d5e35731a2 (svn r2497) Use a struct array for palette entries instead of a flat byte array
tron
parents: 1957
diff changeset
    54
	for (i = 0; i != 256; i++) {
f3d5e35731a2 (svn r2497) Use a struct array for palette entries instead of a flat byte array
tron
parents: 1957
diff changeset
    55
		pal->palPalEntry[i].peRed   = _cur_palette[i].r;
f3d5e35731a2 (svn r2497) Use a struct array for palette entries instead of a flat byte array
tron
parents: 1957
diff changeset
    56
		pal->palPalEntry[i].peGreen = _cur_palette[i].g;
f3d5e35731a2 (svn r2497) Use a struct array for palette entries instead of a flat byte array
tron
parents: 1957
diff changeset
    57
		pal->palPalEntry[i].peBlue  = _cur_palette[i].b;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    58
		pal->palPalEntry[i].peFlags = 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    59
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    60
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    61
	_wnd.gdi_palette = CreatePalette(pal);
10991
d8811e327d12 (svn r13545) [NewGRF_ports] -Sync: with trunk r13281:13411.
richk
parents: 10724
diff changeset
    62
	if (_wnd.gdi_palette == NULL) usererror("CreatePalette failed!\n");
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    63
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    64
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    65
static void UpdatePalette(HDC dc, uint start, uint count)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    66
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    67
	RGBQUAD rgb[256];
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    68
	uint i;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    69
1995
6dacb8a758a3 (svn r2501) Forgot to change part of the win32 code in r2497
tron
parents: 1991
diff changeset
    70
	for (i = 0; i != count; i++) {
6dacb8a758a3 (svn r2501) Forgot to change part of the win32 code in r2497
tron
parents: 1991
diff changeset
    71
		rgb[i].rgbRed   = _cur_palette[start + i].r;
6dacb8a758a3 (svn r2501) Forgot to change part of the win32 code in r2497
tron
parents: 1991
diff changeset
    72
		rgb[i].rgbGreen = _cur_palette[start + i].g;
6dacb8a758a3 (svn r2501) Forgot to change part of the win32 code in r2497
tron
parents: 1991
diff changeset
    73
		rgb[i].rgbBlue  = _cur_palette[start + i].b;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    74
		rgb[i].rgbReserved = 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    75
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    76
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    77
	SetDIBColorTable(dc, start, count, rgb);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    78
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    79
6574
e1d1a12faaf7 (svn r9051) -Codechange: typedef [enum|struct] Y {} X; -> [enum|struct] X {};
rubidium
parents: 6573
diff changeset
    80
struct VkMapping {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    81
	byte vk_from;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    82
	byte vk_count;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    83
	byte map_to;
6574
e1d1a12faaf7 (svn r9051) -Codechange: typedef [enum|struct] Y {} X; -> [enum|struct] X {};
rubidium
parents: 6573
diff changeset
    84
};
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    85
1468
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
    86
#define AS(x, z) {x, 0, z}
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
    87
#define AM(x, y, z, w) {x, y - x, z}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    88
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    89
static const VkMapping _vk_mapping[] = {
6743
cabfaa4a0295 (svn r10766) [NewGRF_ports] -Sync: with trunk r10651-10765
richk
parents: 6720
diff changeset
    90
	/* Pageup stuff + up/down */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    91
	AM(VK_PRIOR,VK_DOWN, WKC_PAGEUP, WKC_DOWN),
6743
cabfaa4a0295 (svn r10766) [NewGRF_ports] -Sync: with trunk r10651-10765
richk
parents: 6720
diff changeset
    92
	/* Map letters & digits */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    93
	AM('A','Z','A','Z'),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    94
	AM('0','9','0','9'),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    95
4434
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
    96
	AS(VK_ESCAPE,   WKC_ESC),
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
    97
	AS(VK_PAUSE,    WKC_PAUSE),
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
    98
	AS(VK_BACK,     WKC_BACKSPACE),
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
    99
	AM(VK_INSERT,   VK_DELETE, WKC_INSERT, WKC_DELETE),
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   100
4434
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   101
	AS(VK_SPACE,    WKC_SPACE),
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   102
	AS(VK_RETURN,   WKC_RETURN),
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   103
	AS(VK_TAB,      WKC_TAB),
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   104
6743
cabfaa4a0295 (svn r10766) [NewGRF_ports] -Sync: with trunk r10651-10765
richk
parents: 6720
diff changeset
   105
	/* Function keys */
4434
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   106
	AM(VK_F1, VK_F12, WKC_F1, WKC_F12),
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   107
6743
cabfaa4a0295 (svn r10766) [NewGRF_ports] -Sync: with trunk r10651-10765
richk
parents: 6720
diff changeset
   108
	/* Numeric part */
4434
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   109
	AM(VK_NUMPAD0, VK_NUMPAD9, WKC_NUM_0, WKC_NUM_9),
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   110
	AS(VK_DIVIDE,   WKC_NUM_DIV),
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   111
	AS(VK_MULTIPLY, WKC_NUM_MUL),
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   112
	AS(VK_SUBTRACT, WKC_NUM_MINUS),
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   113
	AS(VK_ADD,      WKC_NUM_PLUS),
6743
cabfaa4a0295 (svn r10766) [NewGRF_ports] -Sync: with trunk r10651-10765
richk
parents: 6720
diff changeset
   114
	AS(VK_DECIMAL,  WKC_NUM_DECIMAL),
cabfaa4a0295 (svn r10766) [NewGRF_ports] -Sync: with trunk r10651-10765
richk
parents: 6720
diff changeset
   115
cabfaa4a0295 (svn r10766) [NewGRF_ports] -Sync: with trunk r10651-10765
richk
parents: 6720
diff changeset
   116
	/* Other non-letter keys */
cabfaa4a0295 (svn r10766) [NewGRF_ports] -Sync: with trunk r10651-10765
richk
parents: 6720
diff changeset
   117
	AS(0xBF,  WKC_SLASH),
cabfaa4a0295 (svn r10766) [NewGRF_ports] -Sync: with trunk r10651-10765
richk
parents: 6720
diff changeset
   118
	AS(0xBA,  WKC_SEMICOLON),
cabfaa4a0295 (svn r10766) [NewGRF_ports] -Sync: with trunk r10651-10765
richk
parents: 6720
diff changeset
   119
	AS(0xBB,  WKC_EQUALS),
cabfaa4a0295 (svn r10766) [NewGRF_ports] -Sync: with trunk r10651-10765
richk
parents: 6720
diff changeset
   120
	AS(0xDB,  WKC_L_BRACKET),
cabfaa4a0295 (svn r10766) [NewGRF_ports] -Sync: with trunk r10651-10765
richk
parents: 6720
diff changeset
   121
	AS(0xDC,  WKC_BACKSLASH),
cabfaa4a0295 (svn r10766) [NewGRF_ports] -Sync: with trunk r10651-10765
richk
parents: 6720
diff changeset
   122
	AS(0xDD,  WKC_R_BRACKET),
cabfaa4a0295 (svn r10766) [NewGRF_ports] -Sync: with trunk r10651-10765
richk
parents: 6720
diff changeset
   123
cabfaa4a0295 (svn r10766) [NewGRF_ports] -Sync: with trunk r10651-10765
richk
parents: 6720
diff changeset
   124
	AS(0xDE,  WKC_SINGLEQUOTE),
cabfaa4a0295 (svn r10766) [NewGRF_ports] -Sync: with trunk r10651-10765
richk
parents: 6720
diff changeset
   125
	AS(0xBC,  WKC_COMMA),
cabfaa4a0295 (svn r10766) [NewGRF_ports] -Sync: with trunk r10651-10765
richk
parents: 6720
diff changeset
   126
	AS(0xBD,  WKC_MINUS),
cabfaa4a0295 (svn r10766) [NewGRF_ports] -Sync: with trunk r10651-10765
richk
parents: 6720
diff changeset
   127
	AS(0xBE,  WKC_PERIOD)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   128
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   129
1466
fd5c1d8c992a (svn r1970) Fix some warnings which Cygwin showed
tron
parents: 1403
diff changeset
   130
static uint MapWindowsKey(uint sym)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   131
{
1466
fd5c1d8c992a (svn r1970) Fix some warnings which Cygwin showed
tron
parents: 1403
diff changeset
   132
	const VkMapping *map;
fd5c1d8c992a (svn r1970) Fix some warnings which Cygwin showed
tron
parents: 1403
diff changeset
   133
	uint key = 0;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   134
1466
fd5c1d8c992a (svn r1970) Fix some warnings which Cygwin showed
tron
parents: 1403
diff changeset
   135
	for (map = _vk_mapping; map != endof(_vk_mapping); ++map) {
fd5c1d8c992a (svn r1970) Fix some warnings which Cygwin showed
tron
parents: 1403
diff changeset
   136
		if ((uint)(sym - map->vk_from) <= map->vk_count) {
fd5c1d8c992a (svn r1970) Fix some warnings which Cygwin showed
tron
parents: 1403
diff changeset
   137
			key = sym - map->vk_from + map->map_to;
fd5c1d8c992a (svn r1970) Fix some warnings which Cygwin showed
tron
parents: 1403
diff changeset
   138
			break;
fd5c1d8c992a (svn r1970) Fix some warnings which Cygwin showed
tron
parents: 1403
diff changeset
   139
		}
fd5c1d8c992a (svn r1970) Fix some warnings which Cygwin showed
tron
parents: 1403
diff changeset
   140
	}
135
638fb31434eb (svn r136) -Feature/Fix: Console Rev #2 and WKC_BACKQUOTE this patch adds new features to the ingame console and inserts a new keymanagement for windows pcs... (sign_de)
darkvater
parents: 49
diff changeset
   141
2026
02dfa0aa2c2f (svn r2535) Tabs
tron
parents: 1995
diff changeset
   142
	if (GetAsyncKeyState(VK_SHIFT)   < 0) key |= WKC_SHIFT;
02dfa0aa2c2f (svn r2535) Tabs
tron
parents: 1995
diff changeset
   143
	if (GetAsyncKeyState(VK_CONTROL) < 0) key |= WKC_CTRL;
02dfa0aa2c2f (svn r2535) Tabs
tron
parents: 1995
diff changeset
   144
	if (GetAsyncKeyState(VK_MENU)    < 0) key |= WKC_ALT;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   145
	return key;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   146
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   147
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   148
static bool AllocateDibSection(int w, int h);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   149
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   150
static void ClientSizeChanged(int w, int h)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   151
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   152
	// allocate new dib section of the new size
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   153
	if (AllocateDibSection(w, h)) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   154
		// mark all palette colors dirty
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   155
		_pal_first_dirty = 0;
6743
cabfaa4a0295 (svn r10766) [NewGRF_ports] -Sync: with trunk r10651-10765
richk
parents: 6720
diff changeset
   156
		_pal_count_dirty = 256;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   157
		GameSizeChanged();
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 164
diff changeset
   158
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   159
		// redraw screen
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   160
		if (_wnd.running) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   161
			_screen.dst_ptr = _wnd.buffer_bits;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   162
			UpdateWindows();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   163
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   164
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   165
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   166
2125
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   167
#ifdef _DEBUG
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   168
// Keep this function here..
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   169
// It allows you to redraw the screen from within the MSVC debugger
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6557
diff changeset
   170
int RedrawScreenDebug()
2125
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   171
{
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   172
	HDC dc,dc2;
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   173
	static int _fooctr;
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   174
	HBITMAP old_bmp;
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   175
	HPALETTE old_palette;
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   176
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   177
	_screen.dst_ptr = _wnd.buffer_bits;
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   178
	UpdateWindows();
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   179
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   180
	dc = GetDC(_wnd.main_wnd);
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   181
	dc2 = CreateCompatibleDC(dc);
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   182
5838
9c3129cb019b (svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, stillunknown and pv2b.
rubidium
parents: 5835
diff changeset
   183
	old_bmp = (HBITMAP)SelectObject(dc2, _wnd.dib_sect);
2125
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   184
	old_palette = SelectPalette(dc, _wnd.gdi_palette, FALSE);
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   185
	BitBlt(dc, 0, 0, _wnd.width, _wnd.height, dc2, 0, 0, SRCCOPY);
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   186
	SelectPalette(dc, old_palette, TRUE);
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   187
	SelectObject(dc2, old_bmp);
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   188
	DeleteDC(dc2);
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   189
	ReleaseDC(_wnd.main_wnd, dc);
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   190
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   191
	return _fooctr++;
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   192
}
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   193
#endif
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   194
5021
711e711f6b9a (svn r7062) -[win32] Codechange: Remove unneeded WM_MOUSEENTER event, and change mouse behaviour
Darkvater
parents: 5020
diff changeset
   195
/* Windows 95 will not have a WM_MOUSELEAVE message, so define it if needed */
3312
593789444b01 (svn r4075) - Feature: Undraw the mouse when it leaves the window and Draw it again when it enters. Added both for WIN32 and SDL. Since Win95 has troubles with TrackMouseEvent(), this function was just simply rewritten which was the easiest. Based on a patch by DmitryKo.
Darkvater
parents: 3285
diff changeset
   196
#if !defined(WM_MOUSELEAVE)
593789444b01 (svn r4075) - Feature: Undraw the mouse when it leaves the window and Draw it again when it enters. Added both for WIN32 and SDL. Since Win95 has troubles with TrackMouseEvent(), this function was just simply rewritten which was the easiest. Based on a patch by DmitryKo.
Darkvater
parents: 3285
diff changeset
   197
#define WM_MOUSELEAVE 0x02A3
593789444b01 (svn r4075) - Feature: Undraw the mouse when it leaves the window and Draw it again when it enters. Added both for WIN32 and SDL. Since Win95 has troubles with TrackMouseEvent(), this function was just simply rewritten which was the easiest. Based on a patch by DmitryKo.
Darkvater
parents: 3285
diff changeset
   198
#endif
593789444b01 (svn r4075) - Feature: Undraw the mouse when it leaves the window and Draw it again when it enters. Added both for WIN32 and SDL. Since Win95 has troubles with TrackMouseEvent(), this function was just simply rewritten which was the easiest. Based on a patch by DmitryKo.
Darkvater
parents: 3285
diff changeset
   199
#define TID_POLLMOUSE 1
593789444b01 (svn r4075) - Feature: Undraw the mouse when it leaves the window and Draw it again when it enters. Added both for WIN32 and SDL. Since Win95 has troubles with TrackMouseEvent(), this function was just simply rewritten which was the easiest. Based on a patch by DmitryKo.
Darkvater
parents: 3285
diff changeset
   200
#define MOUSE_POLL_DELAY 75
593789444b01 (svn r4075) - Feature: Undraw the mouse when it leaves the window and Draw it again when it enters. Added both for WIN32 and SDL. Since Win95 has troubles with TrackMouseEvent(), this function was just simply rewritten which was the easiest. Based on a patch by DmitryKo.
Darkvater
parents: 3285
diff changeset
   201
593789444b01 (svn r4075) - Feature: Undraw the mouse when it leaves the window and Draw it again when it enters. Added both for WIN32 and SDL. Since Win95 has troubles with TrackMouseEvent(), this function was just simply rewritten which was the easiest. Based on a patch by DmitryKo.
Darkvater
parents: 3285
diff changeset
   202
static void CALLBACK TrackMouseTimerProc(HWND hwnd, UINT msg, UINT event, DWORD time)
593789444b01 (svn r4075) - Feature: Undraw the mouse when it leaves the window and Draw it again when it enters. Added both for WIN32 and SDL. Since Win95 has troubles with TrackMouseEvent(), this function was just simply rewritten which was the easiest. Based on a patch by DmitryKo.
Darkvater
parents: 3285
diff changeset
   203
{
593789444b01 (svn r4075) - Feature: Undraw the mouse when it leaves the window and Draw it again when it enters. Added both for WIN32 and SDL. Since Win95 has troubles with TrackMouseEvent(), this function was just simply rewritten which was the easiest. Based on a patch by DmitryKo.
Darkvater
parents: 3285
diff changeset
   204
	RECT rc;
593789444b01 (svn r4075) - Feature: Undraw the mouse when it leaves the window and Draw it again when it enters. Added both for WIN32 and SDL. Since Win95 has troubles with TrackMouseEvent(), this function was just simply rewritten which was the easiest. Based on a patch by DmitryKo.
Darkvater
parents: 3285
diff changeset
   205
	POINT pt;
593789444b01 (svn r4075) - Feature: Undraw the mouse when it leaves the window and Draw it again when it enters. Added both for WIN32 and SDL. Since Win95 has troubles with TrackMouseEvent(), this function was just simply rewritten which was the easiest. Based on a patch by DmitryKo.
Darkvater
parents: 3285
diff changeset
   206
593789444b01 (svn r4075) - Feature: Undraw the mouse when it leaves the window and Draw it again when it enters. Added both for WIN32 and SDL. Since Win95 has troubles with TrackMouseEvent(), this function was just simply rewritten which was the easiest. Based on a patch by DmitryKo.
Darkvater
parents: 3285
diff changeset
   207
	/* Get the rectangle of our window and translate it to screen coordinates.
593789444b01 (svn r4075) - Feature: Undraw the mouse when it leaves the window and Draw it again when it enters. Added both for WIN32 and SDL. Since Win95 has troubles with TrackMouseEvent(), this function was just simply rewritten which was the easiest. Based on a patch by DmitryKo.
Darkvater
parents: 3285
diff changeset
   208
	 * Compare this with the current screen coordinates of the mouse and if it
593789444b01 (svn r4075) - Feature: Undraw the mouse when it leaves the window and Draw it again when it enters. Added both for WIN32 and SDL. Since Win95 has troubles with TrackMouseEvent(), this function was just simply rewritten which was the easiest. Based on a patch by DmitryKo.
Darkvater
parents: 3285
diff changeset
   209
	 * falls outside of the area or our window we have left the window. */
593789444b01 (svn r4075) - Feature: Undraw the mouse when it leaves the window and Draw it again when it enters. Added both for WIN32 and SDL. Since Win95 has troubles with TrackMouseEvent(), this function was just simply rewritten which was the easiest. Based on a patch by DmitryKo.
Darkvater
parents: 3285
diff changeset
   210
	GetClientRect(hwnd, &rc);
3802
72aed211db94 (svn r4810) - Fix: removed warning about strict-alias (release build)
glx
parents: 3325
diff changeset
   211
	MapWindowPoints(hwnd, HWND_DESKTOP, (LPPOINT)(LPRECT)&rc, 2);
3312
593789444b01 (svn r4075) - Feature: Undraw the mouse when it leaves the window and Draw it again when it enters. Added both for WIN32 and SDL. Since Win95 has troubles with TrackMouseEvent(), this function was just simply rewritten which was the easiest. Based on a patch by DmitryKo.
Darkvater
parents: 3285
diff changeset
   212
	GetCursorPos(&pt);
593789444b01 (svn r4075) - Feature: Undraw the mouse when it leaves the window and Draw it again when it enters. Added both for WIN32 and SDL. Since Win95 has troubles with TrackMouseEvent(), this function was just simply rewritten which was the easiest. Based on a patch by DmitryKo.
Darkvater
parents: 3285
diff changeset
   213
593789444b01 (svn r4075) - Feature: Undraw the mouse when it leaves the window and Draw it again when it enters. Added both for WIN32 and SDL. Since Win95 has troubles with TrackMouseEvent(), this function was just simply rewritten which was the easiest. Based on a patch by DmitryKo.
Darkvater
parents: 3285
diff changeset
   214
	if (!PtInRect(&rc, pt) || (WindowFromPoint(pt) != hwnd)) {
593789444b01 (svn r4075) - Feature: Undraw the mouse when it leaves the window and Draw it again when it enters. Added both for WIN32 and SDL. Since Win95 has troubles with TrackMouseEvent(), this function was just simply rewritten which was the easiest. Based on a patch by DmitryKo.
Darkvater
parents: 3285
diff changeset
   215
		KillTimer(hwnd, event);
593789444b01 (svn r4075) - Feature: Undraw the mouse when it leaves the window and Draw it again when it enters. Added both for WIN32 and SDL. Since Win95 has troubles with TrackMouseEvent(), this function was just simply rewritten which was the easiest. Based on a patch by DmitryKo.
Darkvater
parents: 3285
diff changeset
   216
		PostMessage(hwnd, WM_MOUSELEAVE, 0, 0L);
593789444b01 (svn r4075) - Feature: Undraw the mouse when it leaves the window and Draw it again when it enters. Added both for WIN32 and SDL. Since Win95 has troubles with TrackMouseEvent(), this function was just simply rewritten which was the easiest. Based on a patch by DmitryKo.
Darkvater
parents: 3285
diff changeset
   217
	}
593789444b01 (svn r4075) - Feature: Undraw the mouse when it leaves the window and Draw it again when it enters. Added both for WIN32 and SDL. Since Win95 has troubles with TrackMouseEvent(), this function was just simply rewritten which was the easiest. Based on a patch by DmitryKo.
Darkvater
parents: 3285
diff changeset
   218
}
593789444b01 (svn r4075) - Feature: Undraw the mouse when it leaves the window and Draw it again when it enters. Added both for WIN32 and SDL. Since Win95 has troubles with TrackMouseEvent(), this function was just simply rewritten which was the easiest. Based on a patch by DmitryKo.
Darkvater
parents: 3285
diff changeset
   219
6872
1c4a4a609f85 (svn r11950) [NewGRF_ports] -Sync with trunk r11566:11949.
rubidium
parents: 6871
diff changeset
   220
static bool MakeWindow(bool full_screen)
6720
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   221
{
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   222
	_fullscreen = full_screen;
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   223
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   224
	// recreate window?
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   225
	if ((full_screen || _wnd.fullscreen) && _wnd.main_wnd) {
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   226
		DestroyWindow(_wnd.main_wnd);
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   227
		_wnd.main_wnd = 0;
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   228
	}
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   229
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   230
#if defined(WINCE)
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   231
	/* WinCE is always fullscreen */
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   232
#else
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   233
	if (full_screen) {
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   234
		DEVMODE settings;
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   235
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   236
		/* Make sure we are always at least the screen-depth of the blitter */
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   237
		if (_fullscreen_bpp < BlitterFactoryBase::GetCurrentBlitter()->GetScreenDepth()) _fullscreen_bpp = BlitterFactoryBase::GetCurrentBlitter()->GetScreenDepth();
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   238
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   239
		memset(&settings, 0, sizeof(settings));
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   240
		settings.dmSize = sizeof(settings);
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   241
		settings.dmFields =
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   242
			(_fullscreen_bpp != 0 ? DM_BITSPERPEL : 0) |
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   243
			DM_PELSWIDTH |
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   244
			DM_PELSHEIGHT |
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   245
			(_display_hz != 0 ? DM_DISPLAYFREQUENCY : 0);
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   246
		settings.dmBitsPerPel = _fullscreen_bpp;
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   247
		settings.dmPelsWidth  = _wnd.width_org;
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   248
		settings.dmPelsHeight = _wnd.height_org;
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   249
		settings.dmDisplayFrequency = _display_hz;
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   250
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   251
		if (ChangeDisplaySettings(&settings, CDS_FULLSCREEN) != DISP_CHANGE_SUCCESSFUL) {
6872
1c4a4a609f85 (svn r11950) [NewGRF_ports] -Sync with trunk r11566:11949.
rubidium
parents: 6871
diff changeset
   252
			MakeWindow(false);  // don't care about the result
1c4a4a609f85 (svn r11950) [NewGRF_ports] -Sync with trunk r11566:11949.
rubidium
parents: 6871
diff changeset
   253
			return false;  // the request failed
6720
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   254
		}
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   255
	} else if (_wnd.fullscreen) {
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   256
		// restore display?
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   257
		ChangeDisplaySettings(NULL, 0);
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   258
	}
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   259
#endif
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   260
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   261
	{
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   262
		RECT r;
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   263
		DWORD style, showstyle;
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   264
		int x, y, w, h;
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   265
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   266
		showstyle = SW_SHOWNORMAL;
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   267
		_wnd.fullscreen = full_screen;
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   268
		if (_wnd.fullscreen) {
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   269
			style = WS_POPUP;
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   270
			SetRect(&r, 0, 0, _wnd.width_org, _wnd.height_org);
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   271
		} else {
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   272
			style = WS_OVERLAPPEDWINDOW;
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   273
			/* On window creation, check if we were in maximize mode before */
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   274
			if (_window_maximize) showstyle = SW_SHOWMAXIMIZED;
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   275
			SetRect(&r, 0, 0, _wnd.width, _wnd.height);
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   276
		}
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   277
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   278
#if !defined(WINCE)
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   279
		AdjustWindowRect(&r, style, FALSE);
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   280
#endif
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   281
		w = r.right - r.left;
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   282
		h = r.bottom - r.top;
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   283
		x = (GetSystemMetrics(SM_CXSCREEN) - w) / 2;
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   284
		y = (GetSystemMetrics(SM_CYSCREEN) - h) / 2;
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   285
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   286
		if (_wnd.main_wnd) {
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   287
			ShowWindow(_wnd.main_wnd, SW_SHOWNORMAL); // remove maximize-flag
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   288
			SetWindowPos(_wnd.main_wnd, 0, x, y, w, h, SWP_NOACTIVATE | SWP_NOOWNERZORDER | SWP_NOZORDER);
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   289
		} else {
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   290
			TCHAR Windowtitle[50];
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   291
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   292
			_sntprintf(Windowtitle, sizeof(Windowtitle), _T("OpenTTD %s"), MB_TO_WIDE(_openttd_revision));
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   293
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   294
			_wnd.main_wnd = CreateWindow(_T("OTTD"), Windowtitle, style, x, y, w, h, 0, 0, GetModuleHandle(NULL), 0);
10991
d8811e327d12 (svn r13545) [NewGRF_ports] -Sync: with trunk r13281:13411.
richk
parents: 10724
diff changeset
   295
			if (_wnd.main_wnd == NULL) usererror("CreateWindow failed");
6720
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   296
			ShowWindow(_wnd.main_wnd, showstyle);
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   297
		}
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   298
	}
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   299
	GameSizeChanged(); // invalidate all windows, force redraw
6872
1c4a4a609f85 (svn r11950) [NewGRF_ports] -Sync with trunk r11566:11949.
rubidium
parents: 6871
diff changeset
   300
	return true; // the request succedded
6720
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   301
}
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   302
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   303
static LRESULT CALLBACK WndProcGdi(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   304
{
6603
a83fd7ad59d0 (svn r9086) -Feature/Fix: [win32] Rewrite keyboard input and handle all keypresses in a WM_CHAR event. This saves us from doing translation (ToUnicode[Ex], ToAscii[Ex]), and we get free IME-input support as a plus.
Darkvater
parents: 6602
diff changeset
   305
	static uint32 keycode = 0;
6719
4cc327ad39d5 (svn r10027) [NewGRF_ports] -Sync: with trunk r9506-10026
richk
parents: 6603
diff changeset
   306
	static bool console = false;
6603
a83fd7ad59d0 (svn r9086) -Feature/Fix: [win32] Rewrite keyboard input and handle all keypresses in a WM_CHAR event. This saves us from doing translation (ToUnicode[Ex], ToAscii[Ex]), and we get free IME-input support as a plus.
Darkvater
parents: 6602
diff changeset
   307
1468
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   308
	switch (msg) {
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   309
		case WM_CREATE:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   310
			SetTimer(hwnd, TID_POLLMOUSE, MOUSE_POLL_DELAY, (TIMERPROC)TrackMouseTimerProc);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   311
			break;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 164
diff changeset
   312
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   313
		case WM_PAINT: {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   314
			PAINTSTRUCT ps;
10242
52b4a9006029 (svn r12774) [NewGRF_ports] -Sync: with trunk r12742:12772.
richk
parents: 6878
diff changeset
   315
			HDC dc, dc2;
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   316
			HBITMAP old_bmp;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   317
			HPALETTE old_palette;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   318
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   319
			BeginPaint(hwnd, &ps);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   320
			dc = ps.hdc;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   321
			dc2 = CreateCompatibleDC(dc);
5838
9c3129cb019b (svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, stillunknown and pv2b.
rubidium
parents: 5835
diff changeset
   322
			old_bmp = (HBITMAP)SelectObject(dc2, _wnd.dib_sect);
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   323
			old_palette = SelectPalette(dc, _wnd.gdi_palette, FALSE);
3312
593789444b01 (svn r4075) - Feature: Undraw the mouse when it leaves the window and Draw it again when it enters. Added both for WIN32 and SDL. Since Win95 has troubles with TrackMouseEvent(), this function was just simply rewritten which was the easiest. Based on a patch by DmitryKo.
Darkvater
parents: 3285
diff changeset
   324
6720
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   325
			if (_pal_count_dirty != 0) {
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   326
				Blitter *blitter = BlitterFactoryBase::GetCurrentBlitter();
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   327
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   328
				switch (blitter->UsePaletteAnimation()) {
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   329
					case Blitter::PALETTE_ANIMATION_VIDEO_BACKEND:
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   330
						UpdatePalette(dc2, _pal_first_dirty, _pal_count_dirty);
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   331
						break;
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   332
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   333
					case Blitter::PALETTE_ANIMATION_BLITTER:
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   334
						blitter->PaletteAnimate(_pal_first_dirty, _pal_count_dirty);
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   335
						break;
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   336
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   337
					case Blitter::PALETTE_ANIMATION_NONE:
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   338
						break;
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   339
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   340
					default:
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   341
						NOT_REACHED();
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   342
				}
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   343
				_pal_count_dirty = 0;
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   344
			}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   345
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   346
			BitBlt(dc, 0, 0, _wnd.width, _wnd.height, dc2, 0, 0, SRCCOPY);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   347
			SelectPalette(dc, old_palette, TRUE);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   348
			SelectObject(dc2, old_bmp);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   349
			DeleteDC(dc2);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   350
			EndPaint(hwnd, &ps);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   351
			return 0;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   352
		}
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 164
diff changeset
   353
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   354
		case WM_PALETTECHANGED:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   355
			if ((HWND)wParam == hwnd) return 0;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   356
			/* FALLTHROUGH */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   357
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   358
		case WM_QUERYNEWPALETTE: {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   359
			HDC hDC = GetWindowDC(hwnd);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   360
			HPALETTE hOldPalette = SelectPalette(hDC, _wnd.gdi_palette, FALSE);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   361
			UINT nChanged = RealizePalette(hDC);
719
14d8c2d40bb8 (svn r1171) Fix: Console hotkey works again on keyboards where this key is a deadkey.
dominik
parents: 704
diff changeset
   362
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   363
			SelectPalette(hDC, hOldPalette, TRUE);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   364
			ReleaseDC(hwnd, hDC);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   365
			if (nChanged) InvalidateRect(hwnd, NULL, FALSE);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   366
			return 0;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   367
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   368
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   369
		case WM_CLOSE:
4548
23b56455df33 (svn r6380) -Codechange: unify all ways to quit OTTD.
rubidium
parents: 4536
diff changeset
   370
			HandleExitGameRequest();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   371
			return 0;
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   372
5020
a679bc02c88d (svn r7061) -[win32] Feature: Remember the window size between restarts when quit in fullscreen mode.
Darkvater
parents: 5019
diff changeset
   373
		case WM_DESTROY:
10994
cd9968b6f96b (svn r13548) [NewGRF_ports] -Sync: with trunk r13412:13544.
richk
parents: 10991
diff changeset
   374
			if (_window_maximize) _cur_resolution = _bck_resolution;
5020
a679bc02c88d (svn r7061) -[win32] Feature: Remember the window size between restarts when quit in fullscreen mode.
Darkvater
parents: 5019
diff changeset
   375
			return 0;
a679bc02c88d (svn r7061) -[win32] Feature: Remember the window size between restarts when quit in fullscreen mode.
Darkvater
parents: 5019
diff changeset
   376
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   377
		case WM_LBUTTONDOWN:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   378
			SetCapture(hwnd);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   379
			_left_button_down = true;
5090
8907f67c2c15 (svn r7157) -Fix [FS#221, SF1168820]: Some mouse events possibly lost under high CPU load, handle
Darkvater
parents: 5089
diff changeset
   380
			HandleMouseEvents();
1548
a69e1b3b7774 (svn r2052) - Fix Regression: ALT+F4 once again shuts down openttd in windows and F10, etc. is fixed.
darkvater
parents: 1508
diff changeset
   381
			return 0;
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   382
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   383
		case WM_LBUTTONUP:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   384
			ReleaseCapture();
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   385
			_left_button_down = false;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   386
			_left_button_clicked = false;
5090
8907f67c2c15 (svn r7157) -Fix [FS#221, SF1168820]: Some mouse events possibly lost under high CPU load, handle
Darkvater
parents: 5089
diff changeset
   387
			HandleMouseEvents();
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   388
			return 0;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   389
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   390
		case WM_RBUTTONDOWN:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   391
			SetCapture(hwnd);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   392
			_right_button_down = true;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   393
			_right_button_clicked = true;
5090
8907f67c2c15 (svn r7157) -Fix [FS#221, SF1168820]: Some mouse events possibly lost under high CPU load, handle
Darkvater
parents: 5089
diff changeset
   394
			HandleMouseEvents();
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   395
			return 0;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   396
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   397
		case WM_RBUTTONUP:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   398
			ReleaseCapture();
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   399
			_right_button_down = false;
5090
8907f67c2c15 (svn r7157) -Fix [FS#221, SF1168820]: Some mouse events possibly lost under high CPU load, handle
Darkvater
parents: 5089
diff changeset
   400
			HandleMouseEvents();
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   401
			return 0;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   402
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   403
		case WM_MOUSELEAVE:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   404
			UndrawMouseCursor();
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   405
			_cursor.in_window = false;
5021
711e711f6b9a (svn r7062) -[win32] Codechange: Remove unneeded WM_MOUSEENTER event, and change mouse behaviour
Darkvater
parents: 5020
diff changeset
   406
711e711f6b9a (svn r7062) -[win32] Codechange: Remove unneeded WM_MOUSEENTER event, and change mouse behaviour
Darkvater
parents: 5020
diff changeset
   407
			if (!_left_button_down && !_right_button_down) MyShowCursor(true);
5090
8907f67c2c15 (svn r7157) -Fix [FS#221, SF1168820]: Some mouse events possibly lost under high CPU load, handle
Darkvater
parents: 5089
diff changeset
   408
			HandleMouseEvents();
5021
711e711f6b9a (svn r7062) -[win32] Codechange: Remove unneeded WM_MOUSEENTER event, and change mouse behaviour
Darkvater
parents: 5020
diff changeset
   409
			return 0;
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   410
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   411
		case WM_MOUSEMOVE: {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   412
			int x = (int16)LOWORD(lParam);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   413
			int y = (int16)HIWORD(lParam);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   414
			POINT pt;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   415
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   416
			/* If the mouse was not in the window and it has moved it means it has
5021
711e711f6b9a (svn r7062) -[win32] Codechange: Remove unneeded WM_MOUSEENTER event, and change mouse behaviour
Darkvater
parents: 5020
diff changeset
   417
			 * come into the window, so start drawing the mouse. Also start
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   418
			 * tracking the mouse for exiting the window */
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   419
			if (!_cursor.in_window) {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   420
				_cursor.in_window = true;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   421
				SetTimer(hwnd, TID_POLLMOUSE, MOUSE_POLL_DELAY, (TIMERPROC)TrackMouseTimerProc);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   422
5021
711e711f6b9a (svn r7062) -[win32] Codechange: Remove unneeded WM_MOUSEENTER event, and change mouse behaviour
Darkvater
parents: 5020
diff changeset
   423
				DrawMouseCursor();
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   424
			}
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   425
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   426
			if (_cursor.fix_at) {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   427
				int dx = x - _cursor.pos.x;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   428
				int dy = y - _cursor.pos.y;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   429
				if (dx != 0 || dy != 0) {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   430
					_cursor.delta.x += dx;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   431
					_cursor.delta.y += dy;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   432
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   433
					pt.x = _cursor.pos.x;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   434
					pt.y = _cursor.pos.y;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   435
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   436
					ClientToScreen(hwnd, &pt);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   437
					SetCursorPos(pt.x, pt.y);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   438
				}
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   439
			} else {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   440
				_cursor.delta.x += x - _cursor.pos.x;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   441
				_cursor.delta.y += y - _cursor.pos.y;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   442
				_cursor.pos.x = x;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   443
				_cursor.pos.y = y;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   444
				_cursor.dirty = true;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   445
			}
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   446
			MyShowCursor(false);
5090
8907f67c2c15 (svn r7157) -Fix [FS#221, SF1168820]: Some mouse events possibly lost under high CPU load, handle
Darkvater
parents: 5089
diff changeset
   447
			HandleMouseEvents();
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   448
			return 0;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   449
		}
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   450
6577
ee768d653dd0 (svn r9055) -Codechange: Change windows unicode handling and allow a pure non-unicode build to function. Win9x binaries will be possible with mingw/nightly system.
Darkvater
parents: 6574
diff changeset
   451
#if !defined(UNICODE)
ee768d653dd0 (svn r9055) -Codechange: Change windows unicode handling and allow a pure non-unicode build to function. Win9x binaries will be possible with mingw/nightly system.
Darkvater
parents: 6574
diff changeset
   452
		case WM_INPUTLANGCHANGE: {
ee768d653dd0 (svn r9055) -Codechange: Change windows unicode handling and allow a pure non-unicode build to function. Win9x binaries will be possible with mingw/nightly system.
Darkvater
parents: 6574
diff changeset
   453
			TCHAR locale[6];
ee768d653dd0 (svn r9055) -Codechange: Change windows unicode handling and allow a pure non-unicode build to function. Win9x binaries will be possible with mingw/nightly system.
Darkvater
parents: 6574
diff changeset
   454
			LCID lcid = GB(lParam, 0, 16);
ee768d653dd0 (svn r9055) -Codechange: Change windows unicode handling and allow a pure non-unicode build to function. Win9x binaries will be possible with mingw/nightly system.
Darkvater
parents: 6574
diff changeset
   455
ee768d653dd0 (svn r9055) -Codechange: Change windows unicode handling and allow a pure non-unicode build to function. Win9x binaries will be possible with mingw/nightly system.
Darkvater
parents: 6574
diff changeset
   456
			int len = GetLocaleInfo(lcid, LOCALE_IDEFAULTANSICODEPAGE, locale, lengthof(locale));
ee768d653dd0 (svn r9055) -Codechange: Change windows unicode handling and allow a pure non-unicode build to function. Win9x binaries will be possible with mingw/nightly system.
Darkvater
parents: 6574
diff changeset
   457
			if (len != 0) _codepage = _ttoi(locale);
ee768d653dd0 (svn r9055) -Codechange: Change windows unicode handling and allow a pure non-unicode build to function. Win9x binaries will be possible with mingw/nightly system.
Darkvater
parents: 6574
diff changeset
   458
			return 1;
ee768d653dd0 (svn r9055) -Codechange: Change windows unicode handling and allow a pure non-unicode build to function. Win9x binaries will be possible with mingw/nightly system.
Darkvater
parents: 6574
diff changeset
   459
		}
ee768d653dd0 (svn r9055) -Codechange: Change windows unicode handling and allow a pure non-unicode build to function. Win9x binaries will be possible with mingw/nightly system.
Darkvater
parents: 6574
diff changeset
   460
#endif /* UNICODE */
ee768d653dd0 (svn r9055) -Codechange: Change windows unicode handling and allow a pure non-unicode build to function. Win9x binaries will be possible with mingw/nightly system.
Darkvater
parents: 6574
diff changeset
   461
6719
4cc327ad39d5 (svn r10027) [NewGRF_ports] -Sync: with trunk r9506-10026
richk
parents: 6603
diff changeset
   462
		case WM_DEADCHAR:
4cc327ad39d5 (svn r10027) [NewGRF_ports] -Sync: with trunk r9506-10026
richk
parents: 6603
diff changeset
   463
			console = GB(lParam, 16, 8) == 41;
4cc327ad39d5 (svn r10027) [NewGRF_ports] -Sync: with trunk r9506-10026
richk
parents: 6603
diff changeset
   464
			return 0;
4cc327ad39d5 (svn r10027) [NewGRF_ports] -Sync: with trunk r9506-10026
richk
parents: 6603
diff changeset
   465
6603
a83fd7ad59d0 (svn r9086) -Feature/Fix: [win32] Rewrite keyboard input and handle all keypresses in a WM_CHAR event. This saves us from doing translation (ToUnicode[Ex], ToAscii[Ex]), and we get free IME-input support as a plus.
Darkvater
parents: 6602
diff changeset
   466
		case WM_CHAR: {
a83fd7ad59d0 (svn r9086) -Feature/Fix: [win32] Rewrite keyboard input and handle all keypresses in a WM_CHAR event. This saves us from doing translation (ToUnicode[Ex], ToAscii[Ex]), and we get free IME-input support as a plus.
Darkvater
parents: 6602
diff changeset
   467
			/* Silently drop all non-text messages as those were handled by WM_KEYDOWN */
a83fd7ad59d0 (svn r9086) -Feature/Fix: [win32] Rewrite keyboard input and handle all keypresses in a WM_CHAR event. This saves us from doing translation (ToUnicode[Ex], ToAscii[Ex]), and we get free IME-input support as a plus.
Darkvater
parents: 6602
diff changeset
   468
			if (wParam < VK_SPACE) return 0;
a83fd7ad59d0 (svn r9086) -Feature/Fix: [win32] Rewrite keyboard input and handle all keypresses in a WM_CHAR event. This saves us from doing translation (ToUnicode[Ex], ToAscii[Ex]), and we get free IME-input support as a plus.
Darkvater
parents: 6602
diff changeset
   469
			uint scancode = GB(lParam, 16, 8);
a83fd7ad59d0 (svn r9086) -Feature/Fix: [win32] Rewrite keyboard input and handle all keypresses in a WM_CHAR event. This saves us from doing translation (ToUnicode[Ex], ToAscii[Ex]), and we get free IME-input support as a plus.
Darkvater
parents: 6602
diff changeset
   470
			uint charcode = wParam;
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   471
6719
4cc327ad39d5 (svn r10027) [NewGRF_ports] -Sync: with trunk r9506-10026
richk
parents: 6603
diff changeset
   472
			/* If the console key is a dead-key, we need to press it twice to get a WM_CHAR message.
4cc327ad39d5 (svn r10027) [NewGRF_ports] -Sync: with trunk r9506-10026
richk
parents: 6603
diff changeset
   473
			 * But we then get two WM_CHAR messages, so ignore the first one */
4cc327ad39d5 (svn r10027) [NewGRF_ports] -Sync: with trunk r9506-10026
richk
parents: 6603
diff changeset
   474
			if (console && scancode == 41) {
4cc327ad39d5 (svn r10027) [NewGRF_ports] -Sync: with trunk r9506-10026
richk
parents: 6603
diff changeset
   475
				console = false;
4cc327ad39d5 (svn r10027) [NewGRF_ports] -Sync: with trunk r9506-10026
richk
parents: 6603
diff changeset
   476
				return 0;
4cc327ad39d5 (svn r10027) [NewGRF_ports] -Sync: with trunk r9506-10026
richk
parents: 6603
diff changeset
   477
			}
4cc327ad39d5 (svn r10027) [NewGRF_ports] -Sync: with trunk r9506-10026
richk
parents: 6603
diff changeset
   478
6603
a83fd7ad59d0 (svn r9086) -Feature/Fix: [win32] Rewrite keyboard input and handle all keypresses in a WM_CHAR event. This saves us from doing translation (ToUnicode[Ex], ToAscii[Ex]), and we get free IME-input support as a plus.
Darkvater
parents: 6602
diff changeset
   479
#if !defined(UNICODE)
a83fd7ad59d0 (svn r9086) -Feature/Fix: [win32] Rewrite keyboard input and handle all keypresses in a WM_CHAR event. This saves us from doing translation (ToUnicode[Ex], ToAscii[Ex]), and we get free IME-input support as a plus.
Darkvater
parents: 6602
diff changeset
   480
			wchar_t w;
a83fd7ad59d0 (svn r9086) -Feature/Fix: [win32] Rewrite keyboard input and handle all keypresses in a WM_CHAR event. This saves us from doing translation (ToUnicode[Ex], ToAscii[Ex]), and we get free IME-input support as a plus.
Darkvater
parents: 6602
diff changeset
   481
			int len = MultiByteToWideChar(_codepage, 0, (char*)&charcode, 1, &w, 1);
a83fd7ad59d0 (svn r9086) -Feature/Fix: [win32] Rewrite keyboard input and handle all keypresses in a WM_CHAR event. This saves us from doing translation (ToUnicode[Ex], ToAscii[Ex]), and we get free IME-input support as a plus.
Darkvater
parents: 6602
diff changeset
   482
			charcode = len == 1 ? w : 0;
a83fd7ad59d0 (svn r9086) -Feature/Fix: [win32] Rewrite keyboard input and handle all keypresses in a WM_CHAR event. This saves us from doing translation (ToUnicode[Ex], ToAscii[Ex]), and we get free IME-input support as a plus.
Darkvater
parents: 6602
diff changeset
   483
#endif /* UNICODE */
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   484
6603
a83fd7ad59d0 (svn r9086) -Feature/Fix: [win32] Rewrite keyboard input and handle all keypresses in a WM_CHAR event. This saves us from doing translation (ToUnicode[Ex], ToAscii[Ex]), and we get free IME-input support as a plus.
Darkvater
parents: 6602
diff changeset
   485
			/* No matter the keyboard layout, we will map the '~' to the console */
a83fd7ad59d0 (svn r9086) -Feature/Fix: [win32] Rewrite keyboard input and handle all keypresses in a WM_CHAR event. This saves us from doing translation (ToUnicode[Ex], ToAscii[Ex]), and we get free IME-input support as a plus.
Darkvater
parents: 6602
diff changeset
   486
			scancode = scancode == 41 ? (int)WKC_BACKQUOTE : keycode;
a83fd7ad59d0 (svn r9086) -Feature/Fix: [win32] Rewrite keyboard input and handle all keypresses in a WM_CHAR event. This saves us from doing translation (ToUnicode[Ex], ToAscii[Ex]), and we get free IME-input support as a plus.
Darkvater
parents: 6602
diff changeset
   487
			HandleKeypress(GB(charcode, 0, 16) | (scancode << 16));
a83fd7ad59d0 (svn r9086) -Feature/Fix: [win32] Rewrite keyboard input and handle all keypresses in a WM_CHAR event. This saves us from doing translation (ToUnicode[Ex], ToAscii[Ex]), and we get free IME-input support as a plus.
Darkvater
parents: 6602
diff changeset
   488
			return 0;
a83fd7ad59d0 (svn r9086) -Feature/Fix: [win32] Rewrite keyboard input and handle all keypresses in a WM_CHAR event. This saves us from doing translation (ToUnicode[Ex], ToAscii[Ex]), and we get free IME-input support as a plus.
Darkvater
parents: 6602
diff changeset
   489
		}
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   490
6603
a83fd7ad59d0 (svn r9086) -Feature/Fix: [win32] Rewrite keyboard input and handle all keypresses in a WM_CHAR event. This saves us from doing translation (ToUnicode[Ex], ToAscii[Ex]), and we get free IME-input support as a plus.
Darkvater
parents: 6602
diff changeset
   491
		case WM_KEYDOWN: {
a83fd7ad59d0 (svn r9086) -Feature/Fix: [win32] Rewrite keyboard input and handle all keypresses in a WM_CHAR event. This saves us from doing translation (ToUnicode[Ex], ToAscii[Ex]), and we get free IME-input support as a plus.
Darkvater
parents: 6602
diff changeset
   492
			keycode = MapWindowsKey(wParam);
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   493
6603
a83fd7ad59d0 (svn r9086) -Feature/Fix: [win32] Rewrite keyboard input and handle all keypresses in a WM_CHAR event. This saves us from doing translation (ToUnicode[Ex], ToAscii[Ex]), and we get free IME-input support as a plus.
Darkvater
parents: 6602
diff changeset
   494
			/* Silently drop all text messages as those will be handled by WM_CHAR
a83fd7ad59d0 (svn r9086) -Feature/Fix: [win32] Rewrite keyboard input and handle all keypresses in a WM_CHAR event. This saves us from doing translation (ToUnicode[Ex], ToAscii[Ex]), and we get free IME-input support as a plus.
Darkvater
parents: 6602
diff changeset
   495
			 * WM_KEYDOWN only handles CTRL+ commands and special keys like VK_LEFT, etc. */
a83fd7ad59d0 (svn r9086) -Feature/Fix: [win32] Rewrite keyboard input and handle all keypresses in a WM_CHAR event. This saves us from doing translation (ToUnicode[Ex], ToAscii[Ex]), and we get free IME-input support as a plus.
Darkvater
parents: 6602
diff changeset
   496
			if (keycode == 0 || (keycode > WKC_PAUSE && GB(keycode, 13, 4) == 0)) return 0;
a83fd7ad59d0 (svn r9086) -Feature/Fix: [win32] Rewrite keyboard input and handle all keypresses in a WM_CHAR event. This saves us from doing translation (ToUnicode[Ex], ToAscii[Ex]), and we get free IME-input support as a plus.
Darkvater
parents: 6602
diff changeset
   497
6870
ca3fd1fbe311 (svn r11219) [NewGRF_ports] -Sync: with trunk r11035:11218.
rubidium
parents: 6868
diff changeset
   498
			/* Keys handled in WM_CHAR */
ca3fd1fbe311 (svn r11219) [NewGRF_ports] -Sync: with trunk r11035:11218.
rubidium
parents: 6868
diff changeset
   499
			if ((uint)(GB(keycode, 0, 12) - WKC_NUM_DIV) <= WKC_MINUS - WKC_NUM_DIV) return 0;
ca3fd1fbe311 (svn r11219) [NewGRF_ports] -Sync: with trunk r11035:11218.
rubidium
parents: 6868
diff changeset
   500
6603
a83fd7ad59d0 (svn r9086) -Feature/Fix: [win32] Rewrite keyboard input and handle all keypresses in a WM_CHAR event. This saves us from doing translation (ToUnicode[Ex], ToAscii[Ex]), and we get free IME-input support as a plus.
Darkvater
parents: 6602
diff changeset
   501
			HandleKeypress(0 | (keycode << 16));
a83fd7ad59d0 (svn r9086) -Feature/Fix: [win32] Rewrite keyboard input and handle all keypresses in a WM_CHAR event. This saves us from doing translation (ToUnicode[Ex], ToAscii[Ex]), and we get free IME-input support as a plus.
Darkvater
parents: 6602
diff changeset
   502
			return 0;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   503
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   504
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   505
		case WM_SYSKEYDOWN: /* user presses F10 or Alt, both activating the title-menu */
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   506
			switch (wParam) {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   507
				case VK_RETURN:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   508
				case 'F': /* Full Screen on ALT + ENTER/F */
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   509
					ToggleFullScreen(!_wnd.fullscreen);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   510
					return 0;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   511
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   512
				case VK_MENU: /* Just ALT */
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   513
					return 0; // do nothing
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   514
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   515
				case VK_F10: /* F10, ignore activation of menu */
5086
99e0b202b9fb (svn r7153) -Fix [FS#279]: Some keyboard events possibly lost under high CPU load, handle
Darkvater
parents: 5076
diff changeset
   516
					HandleKeypress(MapWindowsKey(wParam) << 16);
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   517
					return 0;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   518
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   519
				default: /* ALT in combination with something else */
5086
99e0b202b9fb (svn r7153) -Fix [FS#279]: Some keyboard events possibly lost under high CPU load, handle
Darkvater
parents: 5076
diff changeset
   520
					HandleKeypress(MapWindowsKey(wParam) << 16);
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   521
					break;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   522
			}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   523
			break;
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   524
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   525
		case WM_SIZE:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   526
			if (wParam != SIZE_MINIMIZED) {
5019
1e16d845265a (svn r7060) -Fix (r5874): Restore of window maximized state not always working (Mart3p) . Remember
Darkvater
parents: 4840
diff changeset
   527
				/* Set maximized flag when we maximize (obviously), but also when we
1e16d845265a (svn r7060) -Fix (r5874): Restore of window maximized state not always working (Mart3p) . Remember
Darkvater
parents: 4840
diff changeset
   528
				 * switched to fullscreen from a maximized state */
1e16d845265a (svn r7060) -Fix (r5874): Restore of window maximized state not always working (Mart3p) . Remember
Darkvater
parents: 4840
diff changeset
   529
				_window_maximize = (wParam == SIZE_MAXIMIZED || (_window_maximize && _fullscreen));
10994
cd9968b6f96b (svn r13548) [NewGRF_ports] -Sync: with trunk r13412:13544.
richk
parents: 10991
diff changeset
   530
				if (_window_maximize) _bck_resolution = _cur_resolution;
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   531
				ClientSizeChanged(LOWORD(lParam), HIWORD(lParam));
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   532
			}
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   533
			return 0;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   534
6009
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   535
#if !defined(WINCE)
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   536
		case WM_SIZING: {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   537
			RECT* r = (RECT*)lParam;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   538
			RECT r2;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   539
			int w, h;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   540
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   541
			SetRect(&r2, 0, 0, 0, 0);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   542
			AdjustWindowRect(&r2, GetWindowLong(hwnd, GWL_STYLE), FALSE);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   543
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   544
			w = r->right - r->left - (r2.right - r2.left);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   545
			h = r->bottom - r->top - (r2.bottom - r2.top);
10274
b3c58f3df92b (svn r12806) [NewGRF_ports] -Sync: with trunk r12773:12805.
richk
parents: 10242
diff changeset
   546
			w = max(w, 64);
b3c58f3df92b (svn r12806) [NewGRF_ports] -Sync: with trunk r12773:12805.
richk
parents: 10242
diff changeset
   547
			h = max(h, 64);
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   548
			SetRect(&r2, 0, 0, w, h);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   549
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   550
			AdjustWindowRect(&r2, GetWindowLong(hwnd, GWL_STYLE), FALSE);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   551
			w = r2.right - r2.left;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   552
			h = r2.bottom - r2.top;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   553
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   554
			switch (wParam) {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   555
				case WMSZ_BOTTOM:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   556
					r->bottom = r->top + h;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   557
					break;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   558
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   559
				case WMSZ_BOTTOMLEFT:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   560
					r->bottom = r->top + h;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   561
					r->left = r->right - w;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   562
					break;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   563
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   564
				case WMSZ_BOTTOMRIGHT:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   565
					r->bottom = r->top + h;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   566
					r->right = r->left + w;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   567
					break;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   568
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   569
				case WMSZ_LEFT:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   570
					r->left = r->right - w;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   571
					break;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   572
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   573
				case WMSZ_RIGHT:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   574
					r->right = r->left + w;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   575
					break;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   576
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   577
				case WMSZ_TOP:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   578
					r->top = r->bottom - h;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   579
					break;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   580
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   581
				case WMSZ_TOPLEFT:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   582
					r->top = r->bottom - h;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   583
					r->left = r->right - w;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   584
					break;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   585
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   586
				case WMSZ_TOPRIGHT:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   587
					r->top = r->bottom - h;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   588
					r->right = r->left + w;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   589
					break;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   590
			}
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   591
			return TRUE;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   592
		}
6010
31378995786b (svn r8310) -Fix r8309: it is wise to put #endifs in the right place ;)
truelight
parents: 6009
diff changeset
   593
#endif
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   594
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   595
// needed for wheel
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   596
#if !defined(WM_MOUSEWHEEL)
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   597
# define WM_MOUSEWHEEL 0x020A
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   598
#endif  //WM_MOUSEWHEEL
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   599
#if !defined(GET_WHEEL_DELTA_WPARAM)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   600
# define GET_WHEEL_DELTA_WPARAM(wparam) ((short)HIWORD(wparam))
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   601
#endif  //GET_WHEEL_DELTA_WPARAM
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   602
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   603
		case WM_MOUSEWHEEL: {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   604
			int delta = GET_WHEEL_DELTA_WPARAM(wParam);
1468
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   605
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   606
			if (delta < 0) {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   607
				_cursor.wheel++;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   608
			} else if (delta > 0) {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   609
				_cursor.wheel--;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   610
			}
5090
8907f67c2c15 (svn r7157) -Fix [FS#221, SF1168820]: Some mouse events possibly lost under high CPU load, handle
Darkvater
parents: 5089
diff changeset
   611
			HandleMouseEvents();
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   612
			return 0;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   613
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   614
6720
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   615
		case WM_SETFOCUS:
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   616
			_wnd.has_focus = true;
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   617
			break;
6720
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   618
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   619
		case WM_KILLFOCUS:
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   620
			_wnd.has_focus = false;
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   621
			break;
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   622
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   623
#if !defined(WINCE)
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   624
		case WM_ACTIVATE: {
6800
6c09e1e86fcb (svn r10872) [NewGRF_ports] -Sync: with trunk r10765:10871.
rubidium
parents: 6743
diff changeset
   625
			/* Don't do anything if we are closing openttd */
6c09e1e86fcb (svn r10872) [NewGRF_ports] -Sync: with trunk r10765:10871.
rubidium
parents: 6743
diff changeset
   626
			if (_exit_game) break;
6c09e1e86fcb (svn r10872) [NewGRF_ports] -Sync: with trunk r10765:10871.
rubidium
parents: 6743
diff changeset
   627
6720
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   628
			bool active = (LOWORD(wParam) != WA_INACTIVE);
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   629
			bool minimized = (HIWORD(wParam) != 0);
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   630
			if (_wnd.fullscreen) {
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   631
				if (active && minimized) {
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   632
					/* Restore the game window */
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   633
					ShowWindow(hwnd, SW_RESTORE);
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   634
					MakeWindow(true);
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   635
				} else if (!active && !minimized) {
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   636
					/* Minimise the window and restore desktop */
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   637
					ShowWindow(hwnd, SW_MINIMIZE);
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   638
					ChangeDisplaySettings(NULL, 0);
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   639
				}
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   640
			}
6800
6c09e1e86fcb (svn r10872) [NewGRF_ports] -Sync: with trunk r10765:10871.
rubidium
parents: 6743
diff changeset
   641
		} break;
6c09e1e86fcb (svn r10872) [NewGRF_ports] -Sync: with trunk r10765:10871.
rubidium
parents: 6743
diff changeset
   642
#endif
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   643
	}
6720
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   644
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   645
	return DefWindowProc(hwnd, msg, wParam, lParam);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   646
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   647
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6557
diff changeset
   648
static void RegisterWndClass()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   649
{
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   650
	static bool registered = false;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   651
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   652
	if (!registered) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   653
		HINSTANCE hinst = GetModuleHandle(NULL);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   654
		WNDCLASS wnd = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   655
			0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   656
			WndProcGdi,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   657
			0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   658
			0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   659
			hinst,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   660
			LoadIcon(hinst, MAKEINTRESOURCE(100)),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   661
			LoadCursor(NULL, IDC_ARROW),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   662
			0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   663
			0,
5168
10a8dc9788d7 (svn r7278) -Codechange: [win32] Add UNICODE support so it should compile on OS's using UNICODE
Darkvater
parents: 5112
diff changeset
   664
			_T("OTTD")
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   665
		};
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   666
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   667
		registered = true;
10991
d8811e327d12 (svn r13545) [NewGRF_ports] -Sync: with trunk r13281:13411.
richk
parents: 10724
diff changeset
   668
		if (!RegisterClass(&wnd)) usererror("RegisterClass failed");
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   669
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   670
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   671
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   672
static bool AllocateDibSection(int w, int h)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   673
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   674
	BITMAPINFO *bi;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   675
	HDC dc;
6720
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   676
	int bpp = BlitterFactoryBase::GetCurrentBlitter()->GetScreenDepth();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   677
10274
b3c58f3df92b (svn r12806) [NewGRF_ports] -Sync: with trunk r12773:12805.
richk
parents: 10242
diff changeset
   678
	w = max(w, 64);
b3c58f3df92b (svn r12806) [NewGRF_ports] -Sync: with trunk r12773:12805.
richk
parents: 10242
diff changeset
   679
	h = max(h, 64);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   680
10991
d8811e327d12 (svn r13545) [NewGRF_ports] -Sync: with trunk r13281:13411.
richk
parents: 10724
diff changeset
   681
	if (bpp == 0) usererror("Can't use a blitter that blits 0 bpp for normal visuals");
6720
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   682
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   683
	if (w == _screen.width && h == _screen.height)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   684
		return false;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   685
306
c44133836566 (svn r312) -Fix: [926105] ctrl + d bug. Longest outstanding bug has been fixed \o/ 2004-03-30 (Tron)
darkvater
parents: 298
diff changeset
   686
	_screen.width = w;
6871
5a9dc001e1ad (svn r11566) [NewGRF_ports] -Sync: with trunk r11218:r11565.
rubidium
parents: 6870
diff changeset
   687
	_screen.pitch = (bpp == 8) ? Align(w, 4) : w;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   688
	_screen.height = h;
6719
4cc327ad39d5 (svn r10027) [NewGRF_ports] -Sync: with trunk r9506-10026
richk
parents: 6603
diff changeset
   689
	bi = (BITMAPINFO*)alloca(sizeof(BITMAPINFOHEADER) + sizeof(RGBQUAD) * 256);
4cc327ad39d5 (svn r10027) [NewGRF_ports] -Sync: with trunk r9506-10026
richk
parents: 6603
diff changeset
   690
	memset(bi, 0, sizeof(BITMAPINFOHEADER) + sizeof(RGBQUAD) * 256);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   691
	bi->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 164
diff changeset
   692
306
c44133836566 (svn r312) -Fix: [926105] ctrl + d bug. Longest outstanding bug has been fixed \o/ 2004-03-30 (Tron)
darkvater
parents: 298
diff changeset
   693
	bi->bmiHeader.biWidth = _wnd.width = w;
c44133836566 (svn r312) -Fix: [926105] ctrl + d bug. Longest outstanding bug has been fixed \o/ 2004-03-30 (Tron)
darkvater
parents: 298
diff changeset
   694
	bi->bmiHeader.biHeight = -(_wnd.height = h);
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 164
diff changeset
   695
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   696
	bi->bmiHeader.biPlanes = 1;
6720
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   697
	bi->bmiHeader.biBitCount = BlitterFactoryBase::GetCurrentBlitter()->GetScreenDepth();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   698
	bi->bmiHeader.biCompression = BI_RGB;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   699
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   700
	if (_wnd.dib_sect) DeleteObject(_wnd.dib_sect);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   701
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   702
	dc = GetDC(0);
6720
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   703
	_wnd.dib_sect = CreateDIBSection(dc, bi, DIB_RGB_COLORS, (VOID**)&_wnd.buffer_bits, NULL, 0);
10991
d8811e327d12 (svn r13545) [NewGRF_ports] -Sync: with trunk r13281:13411.
richk
parents: 10724
diff changeset
   704
	if (_wnd.dib_sect == NULL) usererror("CreateDIBSection failed");
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   705
	ReleaseDC(0, dc);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   706
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   707
	return true;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   708
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   709
10994
cd9968b6f96b (svn r13548) [NewGRF_ports] -Sync: with trunk r13412:13544.
richk
parents: 10991
diff changeset
   710
static const Dimension default_resolutions[] = {
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   711
	{  640,  480 },
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   712
	{  800,  600 },
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   713
	{ 1024,  768 },
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   714
	{ 1152,  864 },
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   715
	{ 1280,  800 },
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   716
	{ 1280,  960 },
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   717
	{ 1280, 1024 },
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   718
	{ 1400, 1050 },
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   719
	{ 1600, 1200 },
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   720
	{ 1680, 1050 },
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   721
	{ 1920, 1200 }
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   722
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   723
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6557
diff changeset
   724
static void FindResolutions()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   725
{
4000
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3802
diff changeset
   726
	uint n = 0;
6009
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   727
#if defined(WINCE)
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   728
	/* EnumDisplaySettingsW is only supported in CE 4.2+ */
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   729
	/* XXX -- One might argue that we assume 4.2+ on every system. Then we can use this function safely */
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   730
#else
4000
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3802
diff changeset
   731
	uint i;
5169
56b54b6e54ec (svn r7279) -Codechange: [win32] Add Windows95/98 support by using MSLU. Only workaround is that the
Darkvater
parents: 5168
diff changeset
   732
	DEVMODEA dm;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   733
5169
56b54b6e54ec (svn r7279) -Codechange: [win32] Add Windows95/98 support by using MSLU. Only workaround is that the
Darkvater
parents: 5168
diff changeset
   734
	/* XXX - EnumDisplaySettingsW crashes with unicows.dll on Windows95
56b54b6e54ec (svn r7279) -Codechange: [win32] Add Windows95/98 support by using MSLU. Only workaround is that the
Darkvater
parents: 5168
diff changeset
   735
	 * Doesn't really matter since we don't pass a string anyways, but still
56b54b6e54ec (svn r7279) -Codechange: [win32] Add Windows95/98 support by using MSLU. Only workaround is that the
Darkvater
parents: 5168
diff changeset
   736
	 * a letdown */
56b54b6e54ec (svn r7279) -Codechange: [win32] Add Windows95/98 support by using MSLU. Only workaround is that the
Darkvater
parents: 5168
diff changeset
   737
	for (i = 0; EnumDisplaySettingsA(NULL, i, &dm) != 0; i++) {
10274
b3c58f3df92b (svn r12806) [NewGRF_ports] -Sync: with trunk r12773:12805.
richk
parents: 10242
diff changeset
   738
		if (dm.dmBitsPerPel == BlitterFactoryBase::GetCurrentBlitter()->GetScreenDepth() &&
b3c58f3df92b (svn r12806) [NewGRF_ports] -Sync: with trunk r12773:12805.
richk
parents: 10242
diff changeset
   739
				dm.dmPelsWidth >= 640 && dm.dmPelsHeight >= 480) {
4000
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3802
diff changeset
   740
			uint j;
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3802
diff changeset
   741
1806
75dc9c737892 (svn r2310) - Fix: Game would crash if you full-screened with the 'fullscreen' button than chose a resolution from the dropdown box that was no longer valid. Big thanks to DaleStan for track down the crashing bug.
Darkvater
parents: 1686
diff changeset
   742
			for (j = 0; j < n; j++) {
10994
cd9968b6f96b (svn r13548) [NewGRF_ports] -Sync: with trunk r13412:13544.
richk
parents: 10991
diff changeset
   743
				if (_resolutions[j].width == (int)dm.dmPelsWidth && _resolutions[j].height == (int)dm.dmPelsHeight) break;
1806
75dc9c737892 (svn r2310) - Fix: Game would crash if you full-screened with the 'fullscreen' button than chose a resolution from the dropdown box that was no longer valid. Big thanks to DaleStan for track down the crashing bug.
Darkvater
parents: 1686
diff changeset
   744
			}
75dc9c737892 (svn r2310) - Fix: Game would crash if you full-screened with the 'fullscreen' button than chose a resolution from the dropdown box that was no longer valid. Big thanks to DaleStan for track down the crashing bug.
Darkvater
parents: 1686
diff changeset
   745
75dc9c737892 (svn r2310) - Fix: Game would crash if you full-screened with the 'fullscreen' button than chose a resolution from the dropdown box that was no longer valid. Big thanks to DaleStan for track down the crashing bug.
Darkvater
parents: 1686
diff changeset
   746
			/* In the previous loop we have checked already existing/added resolutions if
75dc9c737892 (svn r2310) - Fix: Game would crash if you full-screened with the 'fullscreen' button than chose a resolution from the dropdown box that was no longer valid. Big thanks to DaleStan for track down the crashing bug.
Darkvater
parents: 1686
diff changeset
   747
			 * they are the same as the new ones. If this is not the case (j == n); we have
75dc9c737892 (svn r2310) - Fix: Game would crash if you full-screened with the 'fullscreen' button than chose a resolution from the dropdown box that was no longer valid. Big thanks to DaleStan for track down the crashing bug.
Darkvater
parents: 1686
diff changeset
   748
			 * looped all and found none, add the new one to the list. If we have reached the
75dc9c737892 (svn r2310) - Fix: Game would crash if you full-screened with the 'fullscreen' button than chose a resolution from the dropdown box that was no longer valid. Big thanks to DaleStan for track down the crashing bug.
Darkvater
parents: 1686
diff changeset
   749
			 * maximum amount of resolutions, then quit querying the display */
75dc9c737892 (svn r2310) - Fix: Game would crash if you full-screened with the 'fullscreen' button than chose a resolution from the dropdown box that was no longer valid. Big thanks to DaleStan for track down the crashing bug.
Darkvater
parents: 1686
diff changeset
   750
			if (j == n) {
10994
cd9968b6f96b (svn r13548) [NewGRF_ports] -Sync: with trunk r13412:13544.
richk
parents: 10991
diff changeset
   751
				_resolutions[j].width  = dm.dmPelsWidth;
cd9968b6f96b (svn r13548) [NewGRF_ports] -Sync: with trunk r13412:13544.
richk
parents: 10991
diff changeset
   752
				_resolutions[j].height = dm.dmPelsHeight;
1806
75dc9c737892 (svn r2310) - Fix: Game would crash if you full-screened with the 'fullscreen' button than chose a resolution from the dropdown box that was no longer valid. Big thanks to DaleStan for track down the crashing bug.
Darkvater
parents: 1686
diff changeset
   753
				if (++n == lengthof(_resolutions)) break;
75dc9c737892 (svn r2310) - Fix: Game would crash if you full-screened with the 'fullscreen' button than chose a resolution from the dropdown box that was no longer valid. Big thanks to DaleStan for track down the crashing bug.
Darkvater
parents: 1686
diff changeset
   754
			}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   755
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   756
	}
6009
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   757
#endif
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   758
1806
75dc9c737892 (svn r2310) - Fix: Game would crash if you full-screened with the 'fullscreen' button than chose a resolution from the dropdown box that was no longer valid. Big thanks to DaleStan for track down the crashing bug.
Darkvater
parents: 1686
diff changeset
   759
	/* We have found no resolutions, show the default list */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   760
	if (n == 0) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   761
		memcpy(_resolutions, default_resolutions, sizeof(default_resolutions));
1468
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   762
		n = lengthof(default_resolutions);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   763
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   764
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   765
	_num_resolutions = n;
1806
75dc9c737892 (svn r2310) - Fix: Game would crash if you full-screened with the 'fullscreen' button than chose a resolution from the dropdown box that was no longer valid. Big thanks to DaleStan for track down the crashing bug.
Darkvater
parents: 1686
diff changeset
   766
	SortResolutions(_num_resolutions);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   767
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   768
6720
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   769
static FVideoDriver_Win32 iFVideoDriver_Win32;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   770
6720
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   771
const char *VideoDriver_Win32::Start(const char * const *parm)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   772
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   773
	memset(&_wnd, 0, sizeof(_wnd));
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   774
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   775
	RegisterWndClass();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   776
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   777
	MakePalette();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   778
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   779
	FindResolutions();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   780
10994
cd9968b6f96b (svn r13548) [NewGRF_ports] -Sync: with trunk r13412:13544.
richk
parents: 10991
diff changeset
   781
	DEBUG(driver, 2, "Resolution for display: %dx%d", _cur_resolution.width, _cur_resolution.height);
6800
6c09e1e86fcb (svn r10872) [NewGRF_ports] -Sync: with trunk r10765:10871.
rubidium
parents: 6743
diff changeset
   782
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   783
	// fullscreen uses those
10994
cd9968b6f96b (svn r13548) [NewGRF_ports] -Sync: with trunk r13412:13544.
richk
parents: 10991
diff changeset
   784
	_wnd.width_org  = _cur_resolution.width;
cd9968b6f96b (svn r13548) [NewGRF_ports] -Sync: with trunk r13412:13544.
richk
parents: 10991
diff changeset
   785
	_wnd.height_org = _cur_resolution.height;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   786
10994
cd9968b6f96b (svn r13548) [NewGRF_ports] -Sync: with trunk r13412:13544.
richk
parents: 10991
diff changeset
   787
	AllocateDibSection(_cur_resolution.width, _cur_resolution.height);
10274
b3c58f3df92b (svn r12806) [NewGRF_ports] -Sync: with trunk r12773:12805.
richk
parents: 10242
diff changeset
   788
	MakeWindow(_fullscreen);
b3c58f3df92b (svn r12806) [NewGRF_ports] -Sync: with trunk r12773:12805.
richk
parents: 10242
diff changeset
   789
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   790
	MarkWholeScreenDirty();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   791
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   792
	return NULL;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   793
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   794
6720
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   795
void VideoDriver_Win32::Stop()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   796
{
3285
c162cb0b57c1 (svn r3999) - Fix: [win32] Change the order of DestroyWindow and ChangeDisplay. On some machines a sizechange messagequeue is handled before sending WM_DISPLAYCHANGE resulting in an improper resolution written to the configuration file when exiting from fullscreen. (Frostregen)
Darkvater
parents: 3051
diff changeset
   797
	DeleteObject(_wnd.gdi_palette);
c162cb0b57c1 (svn r3999) - Fix: [win32] Change the order of DestroyWindow and ChangeDisplay. On some machines a sizechange messagequeue is handled before sending WM_DISPLAYCHANGE resulting in an improper resolution written to the configuration file when exiting from fullscreen. (Frostregen)
Darkvater
parents: 3051
diff changeset
   798
	DeleteObject(_wnd.dib_sect);
c162cb0b57c1 (svn r3999) - Fix: [win32] Change the order of DestroyWindow and ChangeDisplay. On some machines a sizechange messagequeue is handled before sending WM_DISPLAYCHANGE resulting in an improper resolution written to the configuration file when exiting from fullscreen. (Frostregen)
Darkvater
parents: 3051
diff changeset
   799
	DestroyWindow(_wnd.main_wnd);
c162cb0b57c1 (svn r3999) - Fix: [win32] Change the order of DestroyWindow and ChangeDisplay. On some machines a sizechange messagequeue is handled before sending WM_DISPLAYCHANGE resulting in an improper resolution written to the configuration file when exiting from fullscreen. (Frostregen)
Darkvater
parents: 3051
diff changeset
   800
6009
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   801
#if !defined(WINCE)
1468
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   802
	if (_wnd.fullscreen) ChangeDisplaySettings(NULL, 0);
6009
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   803
#endif
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   804
	MyShowCursor(true);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   805
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   806
6720
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   807
void VideoDriver_Win32::MakeDirty(int left, int top, int width, int height)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   808
{
1468
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   809
	RECT r = { left, top, left + width, top + height };
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   810
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   811
	InvalidateRect(_wnd.main_wnd, &r, FALSE);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   812
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   813
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6557
diff changeset
   814
static void CheckPaletteAnim()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   815
{
6720
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   816
	if (_pal_count_dirty == 0)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   817
		return;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   818
	InvalidateRect(_wnd.main_wnd, NULL, FALSE);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   819
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   820
6720
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   821
void VideoDriver_Win32::MainLoop()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   822
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   823
	MSG mesg;
5832
28aa8ad3bb04 (svn r8028) -Fix: overflow of ticks was not handled properly, possibly resulting a non-reacting gameserver/gameclient.
rubidium
parents: 5726
diff changeset
   824
	uint32 cur_ticks = GetTickCount();
6720
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   825
	uint32 last_cur_ticks = cur_ticks;
5832
28aa8ad3bb04 (svn r8028) -Fix: overflow of ticks was not handled properly, possibly resulting a non-reacting gameserver/gameclient.
rubidium
parents: 5726
diff changeset
   826
	uint32 next_tick = cur_ticks + 30;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   827
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   828
	_wnd.running = true;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   829
2952
6a26eeda9679 (svn r3511) More whitespace ([FS#46] by Rubidium)
tron
parents: 2773
diff changeset
   830
	for (;;) {
5832
28aa8ad3bb04 (svn r8028) -Fix: overflow of ticks was not handled properly, possibly resulting a non-reacting gameserver/gameclient.
rubidium
parents: 5726
diff changeset
   831
		uint32 prev_cur_ticks = cur_ticks; // to check for wrapping
28aa8ad3bb04 (svn r8028) -Fix: overflow of ticks was not handled properly, possibly resulting a non-reacting gameserver/gameclient.
rubidium
parents: 5726
diff changeset
   832
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   833
		while (PeekMessage(&mesg, NULL, 0, 0, PM_REMOVE)) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   834
			InteractiveRandom(); // randomness
6603
a83fd7ad59d0 (svn r9086) -Feature/Fix: [win32] Rewrite keyboard input and handle all keypresses in a WM_CHAR event. This saves us from doing translation (ToUnicode[Ex], ToAscii[Ex]), and we get free IME-input support as a plus.
Darkvater
parents: 6602
diff changeset
   835
			TranslateMessage(&mesg);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   836
			DispatchMessage(&mesg);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   837
		}
2228
7014d372374f (svn r2748) Remove unused cruft from the main loop
tron
parents: 2208
diff changeset
   838
		if (_exit_game) return;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   839
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   840
#if defined(_DEBUG)
5089
9d290a04d79c (svn r7156) -Codechange: Remove obsolete variable, localize global variable, use GB and change logic
Darkvater
parents: 5086
diff changeset
   841
		if (_wnd.has_focus && GetAsyncKeyState(VK_SHIFT) < 0 &&
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   842
#else
5089
9d290a04d79c (svn r7156) -Codechange: Remove obsolete variable, localize global variable, use GB and change logic
Darkvater
parents: 5086
diff changeset
   843
		/* Speed up using TAB, but disable for ALT+TAB of course */
9d290a04d79c (svn r7156) -Codechange: Remove obsolete variable, localize global variable, use GB and change logic
Darkvater
parents: 5086
diff changeset
   844
		if (_wnd.has_focus && GetAsyncKeyState(VK_TAB) < 0 && GetAsyncKeyState(VK_MENU) >= 0 &&
1548
a69e1b3b7774 (svn r2052) - Fix Regression: ALT+F4 once again shuts down openttd in windows and F10, etc. is fixed.
darkvater
parents: 1508
diff changeset
   845
#endif
5089
9d290a04d79c (svn r7156) -Codechange: Remove obsolete variable, localize global variable, use GB and change logic
Darkvater
parents: 5086
diff changeset
   846
			  !_networking && _game_mode != GM_MENU) {
9d290a04d79c (svn r7156) -Codechange: Remove obsolete variable, localize global variable, use GB and change logic
Darkvater
parents: 5086
diff changeset
   847
			_fast_forward |= 2;
4077
d3022f976946 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 4000
diff changeset
   848
		} else if (_fast_forward & 2) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   849
			_fast_forward = 0;
4077
d3022f976946 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 4000
diff changeset
   850
		}
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 164
diff changeset
   851
1403
6d9ed6c85a22 (svn r1907) - Fix: [ 1114261 ] Speeding up when pressing ALT+TAB (Windows)
darkvater
parents: 1390
diff changeset
   852
		cur_ticks = GetTickCount();
6557
8381016f71f3 (svn r9034) -Codechange: renamed _pause to _pause_game, as some targets already have
truelight
parents: 6531
diff changeset
   853
		if (cur_ticks >= next_tick || (_fast_forward && !_pause_game) || cur_ticks < prev_cur_ticks) {
6720
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   854
			_realtime_tick += cur_ticks - last_cur_ticks;
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   855
			last_cur_ticks = cur_ticks;
5832
28aa8ad3bb04 (svn r8028) -Fix: overflow of ticks was not handled properly, possibly resulting a non-reacting gameserver/gameclient.
rubidium
parents: 5726
diff changeset
   856
			next_tick = cur_ticks + 30;
6878
7d1ff2f621c7 (svn r12351) [NewGRF_ports] -Sync: with trunk r12051:12350.
richk
parents: 6877
diff changeset
   857
7d1ff2f621c7 (svn r12351) [NewGRF_ports] -Sync: with trunk r12051:12350.
richk
parents: 6877
diff changeset
   858
			bool old_ctrl_pressed = _ctrl_pressed;
7d1ff2f621c7 (svn r12351) [NewGRF_ports] -Sync: with trunk r12051:12350.
richk
parents: 6877
diff changeset
   859
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   860
			_ctrl_pressed = _wnd.has_focus && GetAsyncKeyState(VK_CONTROL)<0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   861
			_shift_pressed = _wnd.has_focus && GetAsyncKeyState(VK_SHIFT)<0;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 164
diff changeset
   862
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   863
			// determine which directional keys are down
1230
701163ef52b8 (svn r1734) - Fix: [ 1112253 ] hijacking of arrow keys, game also scrolled when it was out of focus (dominik)
darkvater
parents: 1102
diff changeset
   864
			if (_wnd.has_focus) {
701163ef52b8 (svn r1734) - Fix: [ 1112253 ] hijacking of arrow keys, game also scrolled when it was out of focus (dominik)
darkvater
parents: 1102
diff changeset
   865
				_dirkeys =
701163ef52b8 (svn r1734) - Fix: [ 1112253 ] hijacking of arrow keys, game also scrolled when it was out of focus (dominik)
darkvater
parents: 1102
diff changeset
   866
					(GetAsyncKeyState(VK_LEFT) < 0 ? 1 : 0) +
701163ef52b8 (svn r1734) - Fix: [ 1112253 ] hijacking of arrow keys, game also scrolled when it was out of focus (dominik)
darkvater
parents: 1102
diff changeset
   867
					(GetAsyncKeyState(VK_UP) < 0 ? 2 : 0) +
701163ef52b8 (svn r1734) - Fix: [ 1112253 ] hijacking of arrow keys, game also scrolled when it was out of focus (dominik)
darkvater
parents: 1102
diff changeset
   868
					(GetAsyncKeyState(VK_RIGHT) < 0 ? 4 : 0) +
701163ef52b8 (svn r1734) - Fix: [ 1112253 ] hijacking of arrow keys, game also scrolled when it was out of focus (dominik)
darkvater
parents: 1102
diff changeset
   869
					(GetAsyncKeyState(VK_DOWN) < 0 ? 8 : 0);
4077
d3022f976946 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 4000
diff changeset
   870
			} else {
1230
701163ef52b8 (svn r1734) - Fix: [ 1112253 ] hijacking of arrow keys, game also scrolled when it was out of focus (dominik)
darkvater
parents: 1102
diff changeset
   871
				_dirkeys = 0;
4077
d3022f976946 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 4000
diff changeset
   872
			}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   873
6878
7d1ff2f621c7 (svn r12351) [NewGRF_ports] -Sync: with trunk r12051:12350.
richk
parents: 6877
diff changeset
   874
			if (old_ctrl_pressed != _ctrl_pressed) HandleCtrlChanged();
7d1ff2f621c7 (svn r12351) [NewGRF_ports] -Sync: with trunk r12051:12350.
richk
parents: 6877
diff changeset
   875
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 164
diff changeset
   876
			GameLoop();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   877
			_cursor.delta.x = _cursor.delta.y = 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   878
4077
d3022f976946 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 4000
diff changeset
   879
			if (_force_full_redraw) MarkWholeScreenDirty();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   880
6009
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   881
#if !defined(WINCE)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   882
			GdiFlush();
6009
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   883
#endif
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   884
			_screen.dst_ptr = _wnd.buffer_bits;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   885
			UpdateWindows();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   886
			CheckPaletteAnim();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   887
		} else {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   888
			Sleep(1);
6009
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   889
#if !defined(WINCE)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   890
			GdiFlush();
6009
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   891
#endif
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   892
			_screen.dst_ptr = _wnd.buffer_bits;
6868
7eb395287b3d (svn r11037) [NewGRF_ports] -Sync: with trunk r10844:11035.
rubidium
parents: 6800
diff changeset
   893
			DrawChatMessage();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   894
			DrawMouseCursor();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   895
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   896
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   897
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   898
6720
35756db7e577 (svn r10560) [NewGRF_ports] -Sync: with trunk r10027-10559
richk
parents: 6719
diff changeset
   899
bool VideoDriver_Win32::ChangeResolution(int w, int h)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   900
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   901
	_wnd.width = _wnd.width_org = w;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   902
	_wnd.height = _wnd.height_org = h;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 164
diff changeset
   903
6872
1c4a4a609f85 (svn r11950) [NewGRF_ports] -Sync with trunk r11566:11949.
rubidium
parents: 6871
diff changeset
   904
	return MakeWindow(_fullscreen); // _wnd.fullscreen screws up ingame resolution switching
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   905
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   906
6872
1c4a4a609f85 (svn r11950) [NewGRF_ports] -Sync with trunk r11566:11949.
rubidium
parents: 6871
diff changeset
   907
bool VideoDriver_Win32::ToggleFullscreen(bool full_screen)
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   908
{
6872
1c4a4a609f85 (svn r11950) [NewGRF_ports] -Sync with trunk r11566:11949.
rubidium
parents: 6871
diff changeset
   909
	return MakeWindow(full_screen);
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   910
}