src/video/win32_v.cpp
author truelight
Sun, 21 Jan 2007 14:36:08 +0000
changeset 6010 31378995786b
parent 6009 cf31b0e5c696
child 6285 187e3ef04cc9
permissions -rw-r--r--
(svn r8310) -Fix r8309: it is wise to put #endifs in the right place ;)
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
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
     3
#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
     4
#include "../openttd.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
     5
#include "../functions.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 "../gfx.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
     7
#include "../macros.h"
5720
cc0ceeafaa55 (svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents: 5565
diff changeset
     8
#include "../network/network.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
     9
#include "../variables.h"
2207
40c928fbde8a (svn r2725) Move MyShowCursor() back into win32.c, it fits better there
tron
parents: 2189
diff changeset
    10
#include "../win32.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
    11
#include "../window.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
    12
#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
    13
#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
    14
#include <tchar.h>
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    15
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    16
static struct {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    17
	HWND main_wnd;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    18
	HBITMAP dib_sect;
2062
00f7d339fdcb (svn r2571) Add explicit type Pixel for ... Pixels
tron
parents: 2054
diff changeset
    19
	Pixel *bitmap_bits;
00f7d339fdcb (svn r2571) Add explicit type Pixel for ... Pixels
tron
parents: 2054
diff changeset
    20
	Pixel *buffer_bits;
00f7d339fdcb (svn r2571) Add explicit type Pixel for ... Pixels
tron
parents: 2054
diff changeset
    21
	Pixel *alloced_bits;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    22
	HPALETTE gdi_palette;
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
    23
	int width;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
    24
	int height;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
    25
	int width_org;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
    26
	int height_org;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    27
	bool fullscreen;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    28
	bool double_size;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    29
	bool has_focus;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    30
	bool running;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    31
} _wnd;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    32
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
    33
bool _force_full_redraw;
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
    34
bool _double_size;
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
    35
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
    36
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
    37
uint _fullscreen_bpp;
5020
a679bc02c88d (svn r7061) -[win32] Feature: Remember the window size between restarts when quit in fullscreen mode.
Darkvater
parents: 5019
diff changeset
    38
static uint16 _bck_resolution[2];
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
    39
1102
316643e34104 (svn r1603) -Fix: unused variable in FormatTinyDate
darkvater
parents: 1040
diff changeset
    40
static void MakePalette(void)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    41
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    42
	LOGPALETTE *pal;
1468
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
    43
	uint i;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    44
5838
9c3129cb019b (svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, stillunknown and pv2b.
rubidium
parents: 5835
diff changeset
    45
	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
    46
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    47
	pal->palVersion = 0x300;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    48
	pal->palNumEntries = 256;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 164
diff changeset
    49
1991
f3d5e35731a2 (svn r2497) Use a struct array for palette entries instead of a flat byte array
tron
parents: 1957
diff changeset
    50
	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
    51
		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
    52
		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
    53
		pal->palPalEntry[i].peBlue  = _cur_palette[i].b;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    54
		pal->palPalEntry[i].peFlags = 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    55
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    56
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    57
	_wnd.gdi_palette = CreatePalette(pal);
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
    58
	if (_wnd.gdi_palette == NULL) error("CreatePalette failed!\n");
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
static void UpdatePalette(HDC dc, uint start, uint count)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    62
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    63
	RGBQUAD rgb[256];
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    64
	uint i;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    65
1995
6dacb8a758a3 (svn r2501) Forgot to change part of the win32 code in r2497
tron
parents: 1991
diff changeset
    66
	for (i = 0; i != count; i++) {
6dacb8a758a3 (svn r2501) Forgot to change part of the win32 code in r2497
tron
parents: 1991
diff changeset
    67
		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
    68
		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
    69
		rgb[i].rgbBlue  = _cur_palette[start + i].b;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    70
		rgb[i].rgbReserved = 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    71
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    72
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    73
	SetDIBColorTable(dc, start, count, rgb);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    74
}
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
typedef struct {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    77
	byte vk_from;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    78
	byte vk_count;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    79
	byte map_to;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    80
} VkMapping;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    81
1468
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
    82
#define AS(x, z) {x, 0, z}
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
    83
#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
    84
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    85
static const VkMapping _vk_mapping[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    86
	// Pageup stuff + up/down
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    87
	AM(VK_PRIOR,VK_DOWN, WKC_PAGEUP, WKC_DOWN),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    88
	// Map letters & digits
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    89
	AM('A','Z','A','Z'),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    90
	AM('0','9','0','9'),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    91
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
    92
	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
    93
	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
    94
	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
    95
	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
    96
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
    97
	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
    98
	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
    99
	AS(VK_TAB,      WKC_TAB),
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   100
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   101
	// 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
   102
	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
   103
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   104
	// Numeric part.
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   105
	// What is the virtual keycode for numeric enter??
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_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
   107
	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
   108
	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
   109
	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
   110
	AS(VK_ADD,      WKC_NUM_PLUS),
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_DECIMAL,  WKC_NUM_DECIMAL)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   112
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   113
1466
fd5c1d8c992a (svn r1970) Fix some warnings which Cygwin showed
tron
parents: 1403
diff changeset
   114
static uint MapWindowsKey(uint sym)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   115
{
1466
fd5c1d8c992a (svn r1970) Fix some warnings which Cygwin showed
tron
parents: 1403
diff changeset
   116
	const VkMapping *map;
fd5c1d8c992a (svn r1970) Fix some warnings which Cygwin showed
tron
parents: 1403
diff changeset
   117
	uint key = 0;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   118
1466
fd5c1d8c992a (svn r1970) Fix some warnings which Cygwin showed
tron
parents: 1403
diff changeset
   119
	for (map = _vk_mapping; map != endof(_vk_mapping); ++map) {
fd5c1d8c992a (svn r1970) Fix some warnings which Cygwin showed
tron
parents: 1403
diff changeset
   120
		if ((uint)(sym - map->vk_from) <= map->vk_count) {
fd5c1d8c992a (svn r1970) Fix some warnings which Cygwin showed
tron
parents: 1403
diff changeset
   121
			key = sym - map->vk_from + map->map_to;
fd5c1d8c992a (svn r1970) Fix some warnings which Cygwin showed
tron
parents: 1403
diff changeset
   122
			break;
fd5c1d8c992a (svn r1970) Fix some warnings which Cygwin showed
tron
parents: 1403
diff changeset
   123
		}
fd5c1d8c992a (svn r1970) Fix some warnings which Cygwin showed
tron
parents: 1403
diff changeset
   124
	}
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
   125
2026
02dfa0aa2c2f (svn r2535) Tabs
tron
parents: 1995
diff changeset
   126
	if (GetAsyncKeyState(VK_SHIFT)   < 0) key |= WKC_SHIFT;
02dfa0aa2c2f (svn r2535) Tabs
tron
parents: 1995
diff changeset
   127
	if (GetAsyncKeyState(VK_CONTROL) < 0) key |= WKC_CTRL;
02dfa0aa2c2f (svn r2535) Tabs
tron
parents: 1995
diff changeset
   128
	if (GetAsyncKeyState(VK_MENU)    < 0) key |= WKC_ALT;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   129
	return key;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   130
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   131
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   132
static bool AllocateDibSection(int w, int h);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   133
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   134
static void ClientSizeChanged(int w, int h)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   135
{
1468
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   136
	if (_wnd.double_size) {
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   137
		w /= 2;
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   138
		h /= 2;
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   139
	}
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 164
diff changeset
   140
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   141
	// allocate new dib section of the new size
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   142
	if (AllocateDibSection(w, h)) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   143
		// mark all palette colors dirty
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   144
		_pal_first_dirty = 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   145
		_pal_last_dirty = 255;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   146
		GameSizeChanged();
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 164
diff changeset
   147
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   148
		// redraw screen
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   149
		if (_wnd.running) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   150
			_screen.dst_ptr = _wnd.buffer_bits;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   151
			UpdateWindows();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   152
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   153
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   154
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   155
2125
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   156
#ifdef _DEBUG
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   157
// 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
   158
// It allows you to redraw the screen from within the MSVC debugger
2171
008122046f7f (svn r2685) -Codechange: Split the music/sound/video drivers into separate files and move them into subfolders.
tron
parents: 2163
diff changeset
   159
int RedrawScreenDebug(void)
2125
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   160
{
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   161
	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
   162
	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
   163
	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
   164
	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
   165
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   166
	_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
   167
	UpdateWindows();
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   168
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   169
	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
   170
	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
   171
5838
9c3129cb019b (svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, stillunknown and pv2b.
rubidium
parents: 5835
diff changeset
   172
	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
   173
	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
   174
	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
   175
	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
   176
	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
   177
	DeleteDC(dc2);
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   178
	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
   179
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   180
	return _fooctr++;
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   181
}
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   182
#endif
3098398bf7ff (svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents: 2099
diff changeset
   183
5021
711e711f6b9a (svn r7062) -[win32] Codechange: Remove unneeded WM_MOUSEENTER event, and change mouse behaviour
Darkvater
parents: 5020
diff changeset
   184
/* 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
   185
#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
   186
#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
   187
#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
   188
#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
   189
#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
   190
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
   191
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
   192
{
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
   193
	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
   194
	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
   195
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
	/* 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
   197
	 * 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
   198
	 * 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
   199
	GetClientRect(hwnd, &rc);
3802
72aed211db94 (svn r4810) - Fix: removed warning about strict-alias (release build)
glx
parents: 3325
diff changeset
   200
	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
   201
	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
   202
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
	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
   204
		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
   205
		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
   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
}
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
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   209
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
   210
{
1468
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   211
	switch (msg) {
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   212
		case WM_CREATE:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   213
			SetTimer(hwnd, TID_POLLMOUSE, MOUSE_POLL_DELAY, (TIMERPROC)TrackMouseTimerProc);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   214
			break;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 164
diff changeset
   215
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   216
		case WM_PAINT: {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   217
			PAINTSTRUCT ps;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   218
			HDC dc,dc2;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   219
			HBITMAP old_bmp;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   220
			HPALETTE old_palette;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   221
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   222
			BeginPaint(hwnd, &ps);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   223
			dc = ps.hdc;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   224
			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
   225
			old_bmp = (HBITMAP)SelectObject(dc2, _wnd.dib_sect);
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   226
			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
   227
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   228
			if (_pal_last_dirty != -1) {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   229
				UpdatePalette(dc2, _pal_first_dirty, _pal_last_dirty - _pal_first_dirty + 1);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   230
				_pal_last_dirty = -1;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   231
			}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   232
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   233
			BitBlt(dc, 0, 0, _wnd.width, _wnd.height, dc2, 0, 0, SRCCOPY);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   234
			SelectPalette(dc, old_palette, TRUE);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   235
			SelectObject(dc2, old_bmp);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   236
			DeleteDC(dc2);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   237
			EndPaint(hwnd, &ps);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   238
			return 0;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   239
		}
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 164
diff changeset
   240
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   241
		case WM_PALETTECHANGED:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   242
			if ((HWND)wParam == hwnd) return 0;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   243
			/* FALLTHROUGH */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   244
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   245
		case WM_QUERYNEWPALETTE: {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   246
			HDC hDC = GetWindowDC(hwnd);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   247
			HPALETTE hOldPalette = SelectPalette(hDC, _wnd.gdi_palette, FALSE);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   248
			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
   249
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   250
			SelectPalette(hDC, hOldPalette, TRUE);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   251
			ReleaseDC(hwnd, hDC);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   252
			if (nChanged) InvalidateRect(hwnd, NULL, FALSE);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   253
			return 0;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   254
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   255
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   256
		case WM_CLOSE:
4548
23b56455df33 (svn r6380) -Codechange: unify all ways to quit OTTD.
rubidium
parents: 4536
diff changeset
   257
			HandleExitGameRequest();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   258
			return 0;
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   259
5020
a679bc02c88d (svn r7061) -[win32] Feature: Remember the window size between restarts when quit in fullscreen mode.
Darkvater
parents: 5019
diff changeset
   260
		case WM_DESTROY:
a679bc02c88d (svn r7061) -[win32] Feature: Remember the window size between restarts when quit in fullscreen mode.
Darkvater
parents: 5019
diff changeset
   261
			if (_window_maximize) {
a679bc02c88d (svn r7061) -[win32] Feature: Remember the window size between restarts when quit in fullscreen mode.
Darkvater
parents: 5019
diff changeset
   262
				_cur_resolution[0] = _bck_resolution[0];
a679bc02c88d (svn r7061) -[win32] Feature: Remember the window size between restarts when quit in fullscreen mode.
Darkvater
parents: 5019
diff changeset
   263
				_cur_resolution[1] = _bck_resolution[1];
a679bc02c88d (svn r7061) -[win32] Feature: Remember the window size between restarts when quit in fullscreen mode.
Darkvater
parents: 5019
diff changeset
   264
			}
a679bc02c88d (svn r7061) -[win32] Feature: Remember the window size between restarts when quit in fullscreen mode.
Darkvater
parents: 5019
diff changeset
   265
			return 0;
a679bc02c88d (svn r7061) -[win32] Feature: Remember the window size between restarts when quit in fullscreen mode.
Darkvater
parents: 5019
diff changeset
   266
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   267
		case WM_LBUTTONDOWN:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   268
			SetCapture(hwnd);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   269
			_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
   270
			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
   271
			return 0;
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   272
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   273
		case WM_LBUTTONUP:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   274
			ReleaseCapture();
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   275
			_left_button_down = false;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   276
			_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
   277
			HandleMouseEvents();
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   278
			return 0;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   279
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   280
		case WM_RBUTTONDOWN:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   281
			SetCapture(hwnd);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   282
			_right_button_down = true;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   283
			_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
   284
			HandleMouseEvents();
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   285
			return 0;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   286
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   287
		case WM_RBUTTONUP:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   288
			ReleaseCapture();
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   289
			_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
   290
			HandleMouseEvents();
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   291
			return 0;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   292
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   293
		case WM_MOUSELEAVE:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   294
			UndrawMouseCursor();
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   295
			_cursor.in_window = false;
5021
711e711f6b9a (svn r7062) -[win32] Codechange: Remove unneeded WM_MOUSEENTER event, and change mouse behaviour
Darkvater
parents: 5020
diff changeset
   296
711e711f6b9a (svn r7062) -[win32] Codechange: Remove unneeded WM_MOUSEENTER event, and change mouse behaviour
Darkvater
parents: 5020
diff changeset
   297
			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
   298
			HandleMouseEvents();
5021
711e711f6b9a (svn r7062) -[win32] Codechange: Remove unneeded WM_MOUSEENTER event, and change mouse behaviour
Darkvater
parents: 5020
diff changeset
   299
			return 0;
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   300
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   301
		case WM_MOUSEMOVE: {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   302
			int x = (int16)LOWORD(lParam);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   303
			int y = (int16)HIWORD(lParam);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   304
			POINT pt;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   305
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   306
			/* 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
   307
			 * come into the window, so start drawing the mouse. Also start
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   308
			 * tracking the mouse for exiting the window */
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   309
			if (!_cursor.in_window) {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   310
				_cursor.in_window = true;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   311
				SetTimer(hwnd, TID_POLLMOUSE, MOUSE_POLL_DELAY, (TIMERPROC)TrackMouseTimerProc);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   312
5021
711e711f6b9a (svn r7062) -[win32] Codechange: Remove unneeded WM_MOUSEENTER event, and change mouse behaviour
Darkvater
parents: 5020
diff changeset
   313
				DrawMouseCursor();
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   314
			}
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   315
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   316
			if (_wnd.double_size) {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   317
				x /= 2;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   318
				y /= 2;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   319
			}
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   320
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   321
			if (_cursor.fix_at) {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   322
				int dx = x - _cursor.pos.x;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   323
				int dy = y - _cursor.pos.y;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   324
				if (dx != 0 || dy != 0) {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   325
					_cursor.delta.x += dx;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   326
					_cursor.delta.y += dy;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   327
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   328
					pt.x = _cursor.pos.x;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   329
					pt.y = _cursor.pos.y;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   330
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   331
					if (_wnd.double_size) {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   332
						pt.x *= 2;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   333
						pt.y *= 2;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   334
					}
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   335
					ClientToScreen(hwnd, &pt);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   336
					SetCursorPos(pt.x, pt.y);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   337
				}
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   338
			} else {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   339
				_cursor.delta.x += x - _cursor.pos.x;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   340
				_cursor.delta.y += y - _cursor.pos.y;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   341
				_cursor.pos.x = x;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   342
				_cursor.pos.y = y;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   343
				_cursor.dirty = true;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   344
			}
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   345
			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
   346
			HandleMouseEvents();
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   347
			return 0;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   348
		}
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   349
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   350
		case WM_KEYDOWN: {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   351
			// this is the rewritten ascii input function
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   352
			// it disables windows deadkey handling --> more linux like :D
5108
dc67d70b5a45 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5090
diff changeset
   353
			wchar_t w = 0;
6009
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   354
#if !defined(WINCE)
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   355
			byte ks[256];
6009
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   356
#endif
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   357
			uint scancode;
5086
99e0b202b9fb (svn r7153) -Fix [FS#279]: Some keyboard events possibly lost under high CPU load, handle
Darkvater
parents: 5076
diff changeset
   358
			uint32 pressed_key;
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   359
6009
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   360
#if defined(WINCE)
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   361
			/* On WinCE GetKeyboardState isn't supported */
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   362
			w = wParam;
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   363
#else
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   364
			GetKeyboardState(ks);
5112
9bb62a7fc166 (svn r7187) -CodeChange: [win32] Limit success of ToUnicode/ToAscii to only one translated character as we only support one and remove TranslateMessage() call since we do not use it anyways (glx)
Darkvater
parents: 5108
diff changeset
   365
			if (ToUnicode(wParam, 0, ks, &w, 1, 0) != 1) {
5108
dc67d70b5a45 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5090
diff changeset
   366
				/* On win9x ToUnicode always fails, so fall back to ToAscii */
5838
9c3129cb019b (svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, stillunknown and pv2b.
rubidium
parents: 5835
diff changeset
   367
				if (ToAscii(wParam, 0, ks, (LPWORD)&w, 0) != 1) w = 0; // no translation was possible
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   368
			}
6009
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   369
#endif
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   370
5086
99e0b202b9fb (svn r7153) -Fix [FS#279]: Some keyboard events possibly lost under high CPU load, handle
Darkvater
parents: 5076
diff changeset
   371
			pressed_key = w | MapWindowsKey(wParam) << 16;
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   372
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   373
			scancode = GB(lParam, 16, 8);
5086
99e0b202b9fb (svn r7153) -Fix [FS#279]: Some keyboard events possibly lost under high CPU load, handle
Darkvater
parents: 5076
diff changeset
   374
			if (scancode == 41) pressed_key = w | WKC_BACKQUOTE << 16;
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   375
5089
9d290a04d79c (svn r7156) -Codechange: Remove obsolete variable, localize global variable, use GB and change logic
Darkvater
parents: 5086
diff changeset
   376
			if (GB(pressed_key, 16, 16) == ('D' | WKC_CTRL) && !_wnd.fullscreen) {
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   377
				_double_size ^= 1;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   378
				_wnd.double_size = _double_size;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   379
				ClientSizeChanged(_wnd.width, _wnd.height);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   380
				MarkWholeScreenDirty();
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   381
			}
5086
99e0b202b9fb (svn r7153) -Fix [FS#279]: Some keyboard events possibly lost under high CPU load, handle
Darkvater
parents: 5076
diff changeset
   382
			HandleKeypress(pressed_key);
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
   383
			break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   384
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   385
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   386
		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
   387
			switch (wParam) {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   388
				case VK_RETURN:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   389
				case 'F': /* Full Screen on ALT + ENTER/F */
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   390
					ToggleFullScreen(!_wnd.fullscreen);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   391
					return 0;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   392
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   393
				case VK_MENU: /* Just ALT */
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   394
					return 0; // do nothing
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   395
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   396
				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
   397
					HandleKeypress(MapWindowsKey(wParam) << 16);
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   398
					return 0;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   399
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   400
				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
   401
					HandleKeypress(MapWindowsKey(wParam) << 16);
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   402
					break;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   403
			}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   404
			break;
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   405
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   406
		case WM_SIZE:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   407
			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
   408
				/* 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
   409
				 * 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
   410
				_window_maximize = (wParam == SIZE_MAXIMIZED || (_window_maximize && _fullscreen));
5020
a679bc02c88d (svn r7061) -[win32] Feature: Remember the window size between restarts when quit in fullscreen mode.
Darkvater
parents: 5019
diff changeset
   411
				if (_window_maximize) {
a679bc02c88d (svn r7061) -[win32] Feature: Remember the window size between restarts when quit in fullscreen mode.
Darkvater
parents: 5019
diff changeset
   412
					_bck_resolution[0] = _cur_resolution[0];
a679bc02c88d (svn r7061) -[win32] Feature: Remember the window size between restarts when quit in fullscreen mode.
Darkvater
parents: 5019
diff changeset
   413
					_bck_resolution[1] = _cur_resolution[1];
a679bc02c88d (svn r7061) -[win32] Feature: Remember the window size between restarts when quit in fullscreen mode.
Darkvater
parents: 5019
diff changeset
   414
				}
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   415
				ClientSizeChanged(LOWORD(lParam), HIWORD(lParam));
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   416
			}
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   417
			return 0;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   418
6009
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   419
#if !defined(WINCE)
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   420
		case WM_SIZING: {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   421
			RECT* r = (RECT*)lParam;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   422
			RECT r2;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   423
			int w, h;
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
			SetRect(&r2, 0, 0, 0, 0);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   426
			AdjustWindowRect(&r2, GetWindowLong(hwnd, GWL_STYLE), FALSE);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   427
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   428
			w = r->right - r->left - (r2.right - r2.left);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   429
			h = r->bottom - r->top - (r2.bottom - r2.top);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   430
			if (_wnd.double_size) {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   431
				w /= 2;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   432
				h /= 2;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   433
			}
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   434
			w = clamp(w, 64, MAX_SCREEN_WIDTH);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   435
			h = clamp(h, 64, MAX_SCREEN_HEIGHT);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   436
			if (_wnd.double_size) {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   437
				w *= 2;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   438
				h *= 2;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   439
			}
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   440
			SetRect(&r2, 0, 0, w, h);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   441
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   442
			AdjustWindowRect(&r2, GetWindowLong(hwnd, GWL_STYLE), FALSE);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   443
			w = r2.right - r2.left;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   444
			h = r2.bottom - r2.top;
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
			switch (wParam) {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   447
				case WMSZ_BOTTOM:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   448
					r->bottom = r->top + h;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   449
					break;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   450
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   451
				case WMSZ_BOTTOMLEFT:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   452
					r->bottom = r->top + h;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   453
					r->left = r->right - w;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   454
					break;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   455
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   456
				case WMSZ_BOTTOMRIGHT:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   457
					r->bottom = r->top + h;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   458
					r->right = r->left + w;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   459
					break;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   460
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   461
				case WMSZ_LEFT:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   462
					r->left = r->right - w;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   463
					break;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   464
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   465
				case WMSZ_RIGHT:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   466
					r->right = r->left + w;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   467
					break;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   468
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   469
				case WMSZ_TOP:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   470
					r->top = r->bottom - h;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   471
					break;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   472
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   473
				case WMSZ_TOPLEFT:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   474
					r->top = r->bottom - h;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   475
					r->left = r->right - w;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   476
					break;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   477
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   478
				case WMSZ_TOPRIGHT:
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   479
					r->top = r->bottom - h;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   480
					r->right = r->left + w;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   481
					break;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   482
			}
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   483
			return TRUE;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   484
		}
6010
31378995786b (svn r8310) -Fix r8309: it is wise to put #endifs in the right place ;)
truelight
parents: 6009
diff changeset
   485
#endif
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   486
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   487
// needed for wheel
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   488
#if !defined(WM_MOUSEWHEEL)
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   489
# define WM_MOUSEWHEEL 0x020A
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   490
#endif  //WM_MOUSEWHEEL
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   491
#if !defined(GET_WHEEL_DELTA_WPARAM)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   492
# define GET_WHEEL_DELTA_WPARAM(wparam) ((short)HIWORD(wparam))
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   493
#endif  //GET_WHEEL_DELTA_WPARAM
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   494
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   495
		case WM_MOUSEWHEEL: {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   496
			int delta = GET_WHEEL_DELTA_WPARAM(wParam);
1468
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   497
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   498
			if (delta < 0) {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   499
				_cursor.wheel++;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   500
			} else if (delta > 0) {
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   501
				_cursor.wheel--;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   502
			}
5090
8907f67c2c15 (svn r7157) -Fix [FS#221, SF1168820]: Some mouse events possibly lost under high CPU load, handle
Darkvater
parents: 5089
diff changeset
   503
			HandleMouseEvents();
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   504
			return 0;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   505
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   506
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   507
		case WM_ACTIVATEAPP:
5838
9c3129cb019b (svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, stillunknown and pv2b.
rubidium
parents: 5835
diff changeset
   508
			_wnd.has_focus = (wParam != 0);
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   509
			break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   510
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   511
	return DefWindowProc(hwnd, msg, wParam, lParam);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   512
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   513
1102
316643e34104 (svn r1603) -Fix: unused variable in FormatTinyDate
darkvater
parents: 1040
diff changeset
   514
static void RegisterWndClass(void)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   515
{
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   516
	static bool registered = false;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   517
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   518
	if (!registered) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   519
		HINSTANCE hinst = GetModuleHandle(NULL);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   520
		WNDCLASS wnd = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   521
			0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   522
			WndProcGdi,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   523
			0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   524
			0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   525
			hinst,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   526
			LoadIcon(hinst, MAKEINTRESOURCE(100)),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   527
			LoadCursor(NULL, IDC_ARROW),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   528
			0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   529
			0,
5168
10a8dc9788d7 (svn r7278) -Codechange: [win32] Add UNICODE support so it should compile on OS's using UNICODE
Darkvater
parents: 5112
diff changeset
   530
			_T("OTTD")
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   531
		};
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   532
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   533
		registered = true;
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   534
		if (!RegisterClass(&wnd)) error("RegisterClass failed");
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   535
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   536
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   537
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   538
static void MakeWindow(bool full_screen)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   539
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   540
	_fullscreen = full_screen;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   541
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   542
	_wnd.double_size = _double_size && !full_screen;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 164
diff changeset
   543
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   544
	// recreate window?
1468
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   545
	if ((full_screen || _wnd.fullscreen) && _wnd.main_wnd) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   546
		DestroyWindow(_wnd.main_wnd);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   547
		_wnd.main_wnd = 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   548
	}
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 164
diff changeset
   549
6009
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   550
#if defined(WINCE)
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   551
	/* WinCE is always fullscreen */
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   552
#else
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   553
	if (full_screen) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   554
		DEVMODE settings;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   555
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   556
		memset(&settings, 0, sizeof(settings));
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   557
		settings.dmSize = sizeof(settings);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   558
		settings.dmFields =
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   559
			(_fullscreen_bpp != 0 ? DM_BITSPERPEL : 0) |
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   560
			DM_PELSWIDTH |
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   561
			DM_PELSHEIGHT |
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   562
			(_display_hz != 0 ? DM_DISPLAYFREQUENCY : 0);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   563
		settings.dmBitsPerPel = _fullscreen_bpp;
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   564
		settings.dmPelsWidth  = _wnd.width_org;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   565
		settings.dmPelsHeight = _wnd.height_org;
1468
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   566
		settings.dmDisplayFrequency = _display_hz;
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   567
1468
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   568
		if (ChangeDisplaySettings(&settings, CDS_FULLSCREEN) != DISP_CHANGE_SUCCESSFUL) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   569
			MakeWindow(false);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   570
			return;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   571
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   572
	} else if (_wnd.fullscreen) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   573
		// restore display?
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   574
		ChangeDisplaySettings(NULL, 0);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   575
	}
6009
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   576
#endif
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   577
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   578
	{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   579
		RECT r;
5565
4eae079a5609 (svn r7562) -Fix (r7060, 5874): It seems windows doesn't have the same functionality for CreateWindow when starting a program from the console or from the GUI. Because of this starting OpenTTD from the desktop wouldn't maximize the window, even if the config file said so. So work around this...
Darkvater
parents: 5169
diff changeset
   580
		DWORD style, showstyle;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   581
		int x, y, w, h;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 164
diff changeset
   582
5565
4eae079a5609 (svn r7562) -Fix (r7060, 5874): It seems windows doesn't have the same functionality for CreateWindow when starting a program from the console or from the GUI. Because of this starting OpenTTD from the desktop wouldn't maximize the window, even if the config file said so. So work around this...
Darkvater
parents: 5169
diff changeset
   583
		showstyle = SW_SHOWNORMAL;
1468
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   584
		_wnd.fullscreen = full_screen;
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   585
		if (_wnd.fullscreen) {
5565
4eae079a5609 (svn r7562) -Fix (r7060, 5874): It seems windows doesn't have the same functionality for CreateWindow when starting a program from the console or from the GUI. Because of this starting OpenTTD from the desktop wouldn't maximize the window, even if the config file said so. So work around this...
Darkvater
parents: 5169
diff changeset
   586
			style = WS_POPUP;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   587
			SetRect(&r, 0, 0, _wnd.width_org, _wnd.height_org);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   588
		} else {
5565
4eae079a5609 (svn r7562) -Fix (r7060, 5874): It seems windows doesn't have the same functionality for CreateWindow when starting a program from the console or from the GUI. Because of this starting OpenTTD from the desktop wouldn't maximize the window, even if the config file said so. So work around this...
Darkvater
parents: 5169
diff changeset
   589
			style = WS_OVERLAPPEDWINDOW;
5019
1e16d845265a (svn r7060) -Fix (r5874): Restore of window maximized state not always working (Mart3p) . Remember
Darkvater
parents: 4840
diff changeset
   590
			/* On window creation, check if we were in maximize mode before */
5565
4eae079a5609 (svn r7562) -Fix (r7060, 5874): It seems windows doesn't have the same functionality for CreateWindow when starting a program from the console or from the GUI. Because of this starting OpenTTD from the desktop wouldn't maximize the window, even if the config file said so. So work around this...
Darkvater
parents: 5169
diff changeset
   591
			if (_window_maximize) showstyle = SW_SHOWMAXIMIZED;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   592
			SetRect(&r, 0, 0, _wnd.width, _wnd.height);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   593
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   594
6009
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   595
#if !defined(WINCE)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   596
		AdjustWindowRect(&r, style, FALSE);
6009
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   597
#endif
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   598
		w = r.right - r.left;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   599
		h = r.bottom - r.top;
1468
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   600
		x = (GetSystemMetrics(SM_CXSCREEN) - w) / 2;
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   601
		y = (GetSystemMetrics(SM_CYSCREEN) - h) / 2;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   602
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   603
		if (_wnd.main_wnd) {
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
   604
			ShowWindow(_wnd.main_wnd, SW_SHOWNORMAL); // remove maximize-flag
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   605
			SetWindowPos(_wnd.main_wnd, 0, x, y, w, h, SWP_NOACTIVATE | SWP_NOOWNERZORDER | SWP_NOZORDER);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   606
		} else {
4840
176bc2a66322 (svn r6766) -Codechange: Move _openttd_revision[] into the functions that use it instead of global
Darkvater
parents: 4548
diff changeset
   607
			extern const char _openttd_revision[];
5168
10a8dc9788d7 (svn r7278) -Codechange: [win32] Add UNICODE support so it should compile on OS's using UNICODE
Darkvater
parents: 5112
diff changeset
   608
			TCHAR Windowtitle[50];
1468
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   609
5168
10a8dc9788d7 (svn r7278) -Codechange: [win32] Add UNICODE support so it should compile on OS's using UNICODE
Darkvater
parents: 5112
diff changeset
   610
			_sntprintf(Windowtitle, sizeof(Windowtitle), _T("OpenTTD %s"), MB_TO_WIDE(_openttd_revision));
659
a98c731921b4 (svn r1093) -Fix: Hopefully fixed windows revision issues once and for all. Removed globalness of _openttd_revision and put all such ifdefs into one place. If server has a revision only the same revisions can join; if the server has no revision everyone can join. I reckon this should be a server-side option to allow people to join or not to join.
darkvater
parents: 656
diff changeset
   611
5168
10a8dc9788d7 (svn r7278) -Codechange: [win32] Add UNICODE support so it should compile on OS's using UNICODE
Darkvater
parents: 5112
diff changeset
   612
			_wnd.main_wnd = CreateWindow(_T("OTTD"), Windowtitle, style, x, y, w, h, 0, 0, GetModuleHandle(NULL), 0);
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
   613
			if (_wnd.main_wnd == NULL) error("CreateWindow failed");
5565
4eae079a5609 (svn r7562) -Fix (r7060, 5874): It seems windows doesn't have the same functionality for CreateWindow when starting a program from the console or from the GUI. Because of this starting OpenTTD from the desktop wouldn't maximize the window, even if the config file said so. So work around this...
Darkvater
parents: 5169
diff changeset
   614
			ShowWindow(_wnd.main_wnd, showstyle);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   615
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   616
	}
298
b3e83b94be19 (svn r304) -Fix: [967096] fullscreen. New button 'Fullscreen' in 'Game Options' menu which lets you set fullscreen ingame.
darkvater
parents: 287
diff changeset
   617
	GameSizeChanged(); // invalidate all windows, force redraw
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   618
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   619
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   620
static bool AllocateDibSection(int w, int h)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   621
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   622
	BITMAPINFO *bi;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   623
	HDC dc;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   624
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
   625
	w = clamp(w, 64, MAX_SCREEN_WIDTH);
c44133836566 (svn r312) -Fix: [926105] ctrl + d bug. Longest outstanding bug has been fixed \o/ 2004-03-30 (Tron)
darkvater
parents: 298
diff changeset
   626
	h = clamp(h, 64, MAX_SCREEN_HEIGHT);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   627
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   628
	if (w == _screen.width && h == _screen.height)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   629
		return false;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   630
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
   631
	_screen.width = w;
2398
70de6626d65f (svn r2924) Introduce the ALIGN() macro which aligns values to multiples of a power of 2, for exact semantics see the commment in macros.h
tron
parents: 2228
diff changeset
   632
	_screen.pitch = ALIGN(w, 4);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   633
	_screen.height = h;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   634
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   635
	if (_wnd.alloced_bits) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   636
		free(_wnd.alloced_bits);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   637
		_wnd.alloced_bits = NULL;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   638
	}
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 164
diff changeset
   639
5838
9c3129cb019b (svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, stillunknown and pv2b.
rubidium
parents: 5835
diff changeset
   640
	bi = (BITMAPINFO*)alloca(sizeof(BITMAPINFOHEADER) + sizeof(RGBQUAD)*256);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   641
	memset(bi, 0, sizeof(BITMAPINFOHEADER) + sizeof(RGBQUAD)*256);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   642
	bi->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 164
diff changeset
   643
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
   644
	if (_wnd.double_size) {
2398
70de6626d65f (svn r2924) Introduce the ALIGN() macro which aligns values to multiples of a power of 2, for exact semantics see the commment in macros.h
tron
parents: 2228
diff changeset
   645
		w = ALIGN(w, 4);
5838
9c3129cb019b (svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, stillunknown and pv2b.
rubidium
parents: 5835
diff changeset
   646
		_wnd.alloced_bits = _wnd.buffer_bits = (Pixel*)malloc(w * h);
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
   647
		w *= 2;
c44133836566 (svn r312) -Fix: [926105] ctrl + d bug. Longest outstanding bug has been fixed \o/ 2004-03-30 (Tron)
darkvater
parents: 298
diff changeset
   648
		h *= 2;
c44133836566 (svn r312) -Fix: [926105] ctrl + d bug. Longest outstanding bug has been fixed \o/ 2004-03-30 (Tron)
darkvater
parents: 298
diff changeset
   649
	}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   650
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
   651
	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
   652
	bi->bmiHeader.biHeight = -(_wnd.height = h);
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 164
diff changeset
   653
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   654
	bi->bmiHeader.biPlanes = 1;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   655
	bi->bmiHeader.biBitCount = 8;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   656
	bi->bmiHeader.biCompression = BI_RGB;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   657
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   658
	if (_wnd.dib_sect) DeleteObject(_wnd.dib_sect);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   659
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   660
	dc = GetDC(0);
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   661
	_wnd.dib_sect = CreateDIBSection(dc, bi, DIB_RGB_COLORS, (VOID**)&_wnd.bitmap_bits, NULL, 0);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   662
	if (_wnd.dib_sect == NULL) error("CreateDIBSection failed");
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   663
	ReleaseDC(0, dc);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   664
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   665
	if (!_wnd.double_size) _wnd.buffer_bits = _wnd.bitmap_bits;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   666
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   667
	return true;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   668
}
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
static const uint16 default_resolutions[][2] = {
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   671
	{  640,  480 },
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   672
	{  800,  600 },
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   673
	{ 1024,  768 },
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   674
	{ 1152,  864 },
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   675
	{ 1280,  800 },
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   676
	{ 1280,  960 },
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   677
	{ 1280, 1024 },
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   678
	{ 1400, 1050 },
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   679
	{ 1600, 1200 },
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   680
	{ 1680, 1050 },
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   681
	{ 1920, 1200 }
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   682
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   683
1102
316643e34104 (svn r1603) -Fix: unused variable in FormatTinyDate
darkvater
parents: 1040
diff changeset
   684
static void FindResolutions(void)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   685
{
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
   686
	uint n = 0;
6009
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   687
#if defined(WINCE)
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   688
	/* EnumDisplaySettingsW is only supported in CE 4.2+ */
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   689
	/* 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
   690
#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
   691
	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
   692
	DEVMODEA dm;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   693
5169
56b54b6e54ec (svn r7279) -Codechange: [win32] Add Windows95/98 support by using MSLU. Only workaround is that the
Darkvater
parents: 5168
diff changeset
   694
	/* 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
   695
	 * 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
   696
	 * a letdown */
56b54b6e54ec (svn r7279) -Codechange: [win32] Add Windows95/98 support by using MSLU. Only workaround is that the
Darkvater
parents: 5168
diff changeset
   697
	for (i = 0; EnumDisplaySettingsA(NULL, i, &dm) != 0; i++) {
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
   698
		if (dm.dmBitsPerPel == 8 && IS_INT_INSIDE(dm.dmPelsWidth, 640, MAX_SCREEN_WIDTH + 1) &&
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
   699
				IS_INT_INSIDE(dm.dmPelsHeight, 480, MAX_SCREEN_HEIGHT + 1)) {
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
   700
			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
   701
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
   702
			for (j = 0; j < n; j++) {
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
   703
				if (_resolutions[j][0] == dm.dmPelsWidth && _resolutions[j][1] == dm.dmPelsHeight) 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
   704
			}
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
   705
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
   706
			/* 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
   707
			 * 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
   708
			 * 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
   709
			 * 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
   710
			if (j == n) {
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
   711
				_resolutions[j][0] = dm.dmPelsWidth;
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
   712
				_resolutions[j][1] = dm.dmPelsHeight;
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
   713
				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
   714
			}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   715
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   716
	}
6009
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   717
#endif
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   718
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
   719
	/* 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
   720
	if (n == 0) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   721
		memcpy(_resolutions, default_resolutions, sizeof(default_resolutions));
1468
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   722
		n = lengthof(default_resolutions);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   723
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   724
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   725
	_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
   726
	SortResolutions(_num_resolutions);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   727
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   728
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   729
1301
313804601383 (svn r1805) Teach the driver layer a few things about const correctness
tron
parents: 1230
diff changeset
   730
static const char *Win32GdiStart(const char * const *parm)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   731
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   732
	memset(&_wnd, 0, sizeof(_wnd));
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   733
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   734
	RegisterWndClass();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   735
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   736
	MakePalette();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   737
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   738
	FindResolutions();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   739
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   740
	// fullscreen uses those
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   741
	_wnd.width_org = _cur_resolution[0];
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   742
	_wnd.height_org = _cur_resolution[1];
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   743
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   744
	AllocateDibSection(_cur_resolution[0], _cur_resolution[1]);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   745
	MarkWholeScreenDirty();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   746
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   747
	MakeWindow(_fullscreen);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   748
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   749
	return NULL;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   750
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   751
1102
316643e34104 (svn r1603) -Fix: unused variable in FormatTinyDate
darkvater
parents: 1040
diff changeset
   752
static void Win32GdiStop(void)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   753
{
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
   754
	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
   755
	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
   756
	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
   757
6009
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   758
#if !defined(WINCE)
1468
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   759
	if (_wnd.fullscreen) ChangeDisplaySettings(NULL, 0);
6009
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   760
#endif
2773
d51afa1ff173 (svn r3320) - Fix: FS#22 - Exiting with double size enabled saves wrong window size. Reset the window size to its true size upon exiting when double-size is active. Is set in ClientSizeChanged.
Darkvater
parents: 2665
diff changeset
   761
	if (_double_size) {
d51afa1ff173 (svn r3320) - Fix: FS#22 - Exiting with double size enabled saves wrong window size. Reset the window size to its true size upon exiting when double-size is active. Is set in ClientSizeChanged.
Darkvater
parents: 2665
diff changeset
   762
		_cur_resolution[0] *= 2;
d51afa1ff173 (svn r3320) - Fix: FS#22 - Exiting with double size enabled saves wrong window size. Reset the window size to its true size upon exiting when double-size is active. Is set in ClientSizeChanged.
Darkvater
parents: 2665
diff changeset
   763
		_cur_resolution[1] *= 2;
d51afa1ff173 (svn r3320) - Fix: FS#22 - Exiting with double size enabled saves wrong window size. Reset the window size to its true size upon exiting when double-size is active. Is set in ClientSizeChanged.
Darkvater
parents: 2665
diff changeset
   764
	}
d51afa1ff173 (svn r3320) - Fix: FS#22 - Exiting with double size enabled saves wrong window size. Reset the window size to its true size upon exiting when double-size is active. Is set in ClientSizeChanged.
Darkvater
parents: 2665
diff changeset
   765
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   766
	MyShowCursor(true);
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
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   769
// simple upscaler by 2
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   770
static void filter(int left, int top, int width, int height)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   771
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   772
	uint p = _screen.pitch;
2062
00f7d339fdcb (svn r2571) Add explicit type Pixel for ... Pixels
tron
parents: 2054
diff changeset
   773
	const Pixel *s = _wnd.buffer_bits + top * p + left;
00f7d339fdcb (svn r2571) Add explicit type Pixel for ... Pixels
tron
parents: 2054
diff changeset
   774
	Pixel *d = _wnd.bitmap_bits + top * p * 4 + left * 2;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   775
1468
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   776
	for (; height > 0; height--) {
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   777
		int i;
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   778
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   779
		for (i = 0; i != width; i++) {
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   780
			d[i * 2] = d[i * 2 + 1] = d[i * 2 + p * 2] = d[i * 2 + 1 + p * 2] = s[i];
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   781
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   782
		s += p;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   783
		d += p * 4;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   784
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   785
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   786
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   787
static void Win32GdiMakeDirty(int left, int top, int width, int height)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   788
{
1468
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   789
	RECT r = { left, top, left + width, top + height };
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   790
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   791
	if (_wnd.double_size) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   792
		filter(left, top, width, height);
1468
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   793
		r.left *= 2;
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   794
		r.top *= 2;
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   795
		r.right *= 2;
8073826fe82d (svn r1972) Several cleanups and fix some latent bugs
tron
parents: 1466
diff changeset
   796
		r.bottom *= 2;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   797
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   798
	InvalidateRect(_wnd.main_wnd, &r, FALSE);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   799
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   800
1102
316643e34104 (svn r1603) -Fix: unused variable in FormatTinyDate
darkvater
parents: 1040
diff changeset
   801
static void CheckPaletteAnim(void)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   802
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   803
	if (_pal_last_dirty == -1)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   804
		return;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   805
	InvalidateRect(_wnd.main_wnd, NULL, FALSE);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   806
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   807
2228
7014d372374f (svn r2748) Remove unused cruft from the main loop
tron
parents: 2208
diff changeset
   808
static void Win32GdiMainLoop(void)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   809
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   810
	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
   811
	uint32 cur_ticks = GetTickCount();
28aa8ad3bb04 (svn r8028) -Fix: overflow of ticks was not handled properly, possibly resulting a non-reacting gameserver/gameclient.
rubidium
parents: 5726
diff changeset
   812
	uint32 next_tick = cur_ticks + 30;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   813
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   814
	_wnd.running = true;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   815
2952
6a26eeda9679 (svn r3511) More whitespace ([FS#46] by Rubidium)
tron
parents: 2773
diff changeset
   816
	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
   817
		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
   818
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   819
		while (PeekMessage(&mesg, NULL, 0, 0, PM_REMOVE)) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   820
			InteractiveRandom(); // randomness
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   821
			DispatchMessage(&mesg);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   822
		}
2228
7014d372374f (svn r2748) Remove unused cruft from the main loop
tron
parents: 2208
diff changeset
   823
		if (_exit_game) return;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   824
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   825
#if defined(_DEBUG)
5089
9d290a04d79c (svn r7156) -Codechange: Remove obsolete variable, localize global variable, use GB and change logic
Darkvater
parents: 5086
diff changeset
   826
		if (_wnd.has_focus && GetAsyncKeyState(VK_SHIFT) < 0 &&
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   827
#else
5089
9d290a04d79c (svn r7156) -Codechange: Remove obsolete variable, localize global variable, use GB and change logic
Darkvater
parents: 5086
diff changeset
   828
		/* 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
   829
		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
   830
#endif
5089
9d290a04d79c (svn r7156) -Codechange: Remove obsolete variable, localize global variable, use GB and change logic
Darkvater
parents: 5086
diff changeset
   831
			  !_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
   832
			_fast_forward |= 2;
4077
d3022f976946 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 4000
diff changeset
   833
		} else if (_fast_forward & 2) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   834
			_fast_forward = 0;
4077
d3022f976946 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 4000
diff changeset
   835
		}
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 164
diff changeset
   836
1403
6d9ed6c85a22 (svn r1907) - Fix: [ 1114261 ] Speeding up when pressing ALT+TAB (Windows)
darkvater
parents: 1390
diff changeset
   837
		cur_ticks = GetTickCount();
5832
28aa8ad3bb04 (svn r8028) -Fix: overflow of ticks was not handled properly, possibly resulting a non-reacting gameserver/gameclient.
rubidium
parents: 5726
diff changeset
   838
		if (cur_ticks >= next_tick || (_fast_forward && !_pause) || cur_ticks < prev_cur_ticks) {
28aa8ad3bb04 (svn r8028) -Fix: overflow of ticks was not handled properly, possibly resulting a non-reacting gameserver/gameclient.
rubidium
parents: 5726
diff changeset
   839
			next_tick = cur_ticks + 30;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   840
			_ctrl_pressed = _wnd.has_focus && GetAsyncKeyState(VK_CONTROL)<0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   841
			_shift_pressed = _wnd.has_focus && GetAsyncKeyState(VK_SHIFT)<0;
2664
fcefd29dd9d2 (svn r3206) Wrap all instances of _dbg_screen_rect in #ifdef _DEBUG
tron
parents: 2398
diff changeset
   842
#ifdef _DEBUG
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   843
			_dbg_screen_rect = _wnd.has_focus && GetAsyncKeyState(VK_CAPITAL)<0;
2665
eb6fb4600d23 (svn r3207) Typo in last revision
tron
parents: 2664
diff changeset
   844
#endif
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 164
diff changeset
   845
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   846
			// 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
   847
			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
   848
				_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
   849
					(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
   850
					(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
   851
					(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
   852
					(GetAsyncKeyState(VK_DOWN) < 0 ? 8 : 0);
4077
d3022f976946 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 4000
diff changeset
   853
			} 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
   854
				_dirkeys = 0;
4077
d3022f976946 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 4000
diff changeset
   855
			}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   856
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 164
diff changeset
   857
			GameLoop();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   858
			_cursor.delta.x = _cursor.delta.y = 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   859
4077
d3022f976946 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 4000
diff changeset
   860
			if (_force_full_redraw) MarkWholeScreenDirty();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   861
6009
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   862
#if !defined(WINCE)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   863
			GdiFlush();
6009
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   864
#endif
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   865
			_screen.dst_ptr = _wnd.buffer_bits;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   866
			UpdateWindows();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   867
			CheckPaletteAnim();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   868
		} else {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   869
			Sleep(1);
6009
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   870
#if !defined(WINCE)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   871
			GdiFlush();
6009
cf31b0e5c696 (svn r8309) [WinCE] -Fix: WinCE doesn't know resolution changing
truelight
parents: 5838
diff changeset
   872
#endif
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   873
			_screen.dst_ptr = _wnd.buffer_bits;
543
e3b43338096b (svn r942) -Merged branch/network back into the trunk
truelight
parents: 534
diff changeset
   874
			DrawTextMessage();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   875
			DrawMouseCursor();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   876
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   877
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   878
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   879
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   880
static bool Win32GdiChangeRes(int w, int h)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   881
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   882
	_wnd.width = _wnd.width_org = w;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   883
	_wnd.height = _wnd.height_org = h;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 164
diff changeset
   884
298
b3e83b94be19 (svn r304) -Fix: [967096] fullscreen. New button 'Fullscreen' in 'Game Options' menu which lets you set fullscreen ingame.
darkvater
parents: 287
diff changeset
   885
	MakeWindow(_fullscreen); // _wnd.fullscreen screws up ingame resolution switching
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 164
diff changeset
   886
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   887
	return true;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   888
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   889
4489
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   890
static void Win32GdiFullScreen(bool full_screen)
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   891
{
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   892
	MakeWindow(full_screen);
9399fe83fd41 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   893
}
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
   894
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   895
const HalVideoDriver _win32_video_driver = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   896
	Win32GdiStart,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   897
	Win32GdiStop,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   898
	Win32GdiMakeDirty,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   899
	Win32GdiMainLoop,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   900
	Win32GdiChangeRes,
1829
0b6de3b4458a (svn r2334) - Fix (regression): moved togglefullscreen into the video-driver, now windows works, dedicated works and sdl works. Also reverted the change to the makefile.
Darkvater
parents: 1806
diff changeset
   901
	Win32GdiFullScreen,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   902
};