video/win32_v.c
author KUDr
Sat, 07 Oct 2006 20:31:38 +0000
changeset 4769 172e18f63248
parent 4548 6165e12570bf
child 4840 a76d40e0aea4
permissions -rw-r--r--
(svn r6683) -Fix: '<' signed unsigned mismatch produced by VC8
2186
db48cf29b983 (svn r2701) Insert Id tags into all source files
tron
parents: 2174
diff changeset
     1
/* $Id$ */
db48cf29b983 (svn r2701) Insert Id tags into all source files
tron
parents: 2174
diff changeset
     2
2189
5cdc11ffeaa4 (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"
5cdc11ffeaa4 (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"
5cdc11ffeaa4 (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"
5cdc11ffeaa4 (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"
5cdc11ffeaa4 (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"
5cdc11ffeaa4 (svn r2704) Remove . from include path again, too much trouble. Also add some #ifdefs and #includes for the Windows build
tron
parents: 2186
diff changeset
     8
#include "../network.h"
5cdc11ffeaa4 (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
be1ef1e1fc58 (svn r2725) Move MyShowCursor() back into win32.c, it fits better there
tron
parents: 2189
diff changeset
    10
#include "../win32.h"
2189
5cdc11ffeaa4 (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"
5cdc11ffeaa4 (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"
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    13
#include <windows.h>
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    14
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    15
static struct {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    16
	HWND main_wnd;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    17
	HBITMAP dib_sect;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    18
	Pixel *bitmap_bits;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    19
	Pixel *buffer_bits;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    20
	Pixel *alloced_bits;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    21
	HPALETTE gdi_palette;
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
    22
	int width;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
    23
	int height;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
    24
	int width_org;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
    25
	int height_org;
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    26
	bool fullscreen;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    27
	bool double_size;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    28
	bool has_focus;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    29
	bool running;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    30
} _wnd;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    31
3051
6a9ddcac6d56 (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
    32
bool _force_full_redraw;
6a9ddcac6d56 (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 _double_size;
4258
087d44b3514f (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
    34
bool _window_maximize;
3051
6a9ddcac6d56 (svn r3640) - Remove win32-only variables from variables.h and put them into win32_v.c. Also ifdef the win32 specific configuration file settings.
Darkvater
parents: 2952
diff changeset
    35
uint _display_hz;
6a9ddcac6d56 (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 _fullscreen_bpp;
6a9ddcac6d56 (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
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    38
static void MakePalette(void)
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    39
{
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    40
	LOGPALETTE *pal;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    41
	uint i;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    42
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    43
	pal = alloca(sizeof(LOGPALETTE) + (256-1) * sizeof(PALETTEENTRY));
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    44
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    45
	pal->palVersion = 0x300;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    46
	pal->palNumEntries = 256;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    47
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    48
	for (i = 0; i != 256; i++) {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    49
		pal->palPalEntry[i].peRed   = _cur_palette[i].r;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    50
		pal->palPalEntry[i].peGreen = _cur_palette[i].g;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    51
		pal->palPalEntry[i].peBlue  = _cur_palette[i].b;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    52
		pal->palPalEntry[i].peFlags = 0;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    53
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    54
	}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    55
	_wnd.gdi_palette = CreatePalette(pal);
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
    56
	if (_wnd.gdi_palette == NULL) error("CreatePalette failed!\n");
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    57
}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    58
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    59
static void UpdatePalette(HDC dc, uint start, uint count)
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    60
{
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    61
	RGBQUAD rgb[256];
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    62
	uint i;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    63
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    64
	for (i = 0; i != count; i++) {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    65
		rgb[i].rgbRed   = _cur_palette[start + i].r;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    66
		rgb[i].rgbGreen = _cur_palette[start + i].g;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    67
		rgb[i].rgbBlue  = _cur_palette[start + i].b;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    68
		rgb[i].rgbReserved = 0;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    69
	}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    70
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    71
	SetDIBColorTable(dc, start, count, rgb);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    72
}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    73
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    74
typedef struct {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    75
	byte vk_from;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    76
	byte vk_count;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    77
	byte map_to;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    78
} VkMapping;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    79
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    80
#define AS(x, z) {x, 0, z}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    81
#define AM(x, y, z, w) {x, y - x, z}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    82
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    83
static const VkMapping _vk_mapping[] = {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    84
	// Pageup stuff + up/down
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    85
	AM(VK_PRIOR,VK_DOWN, WKC_PAGEUP, WKC_DOWN),
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    86
	// Map letters & digits
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    87
	AM('A','Z','A','Z'),
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    88
	AM('0','9','0','9'),
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    89
4434
a08cb4b5c179 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
    90
	AS(VK_ESCAPE,   WKC_ESC),
a08cb4b5c179 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
    91
	AS(VK_PAUSE,    WKC_PAUSE),
a08cb4b5c179 (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_BACK,     WKC_BACKSPACE),
a08cb4b5c179 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
    93
	AM(VK_INSERT,   VK_DELETE, WKC_INSERT, WKC_DELETE),
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    94
4434
a08cb4b5c179 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
    95
	AS(VK_SPACE,    WKC_SPACE),
a08cb4b5c179 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
    96
	AS(VK_RETURN,   WKC_RETURN),
a08cb4b5c179 (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_TAB,      WKC_TAB),
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    98
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
    99
	// Function keys
4434
a08cb4b5c179 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   100
	AM(VK_F1, VK_F12, WKC_F1, WKC_F12),
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   101
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   102
	// Numeric part.
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   103
	// What is the virtual keycode for numeric enter??
4434
a08cb4b5c179 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   104
	AM(VK_NUMPAD0, VK_NUMPAD9, WKC_NUM_0, WKC_NUM_9),
a08cb4b5c179 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   105
	AS(VK_DIVIDE,   WKC_NUM_DIV),
a08cb4b5c179 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   106
	AS(VK_MULTIPLY, WKC_NUM_MUL),
a08cb4b5c179 (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_SUBTRACT, WKC_NUM_MINUS),
a08cb4b5c179 (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_ADD,      WKC_NUM_PLUS),
a08cb4b5c179 (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_DECIMAL,  WKC_NUM_DECIMAL)
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   110
};
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   111
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   112
static uint MapWindowsKey(uint sym)
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   113
{
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   114
	const VkMapping *map;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   115
	uint key = 0;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   116
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   117
	for (map = _vk_mapping; map != endof(_vk_mapping); ++map) {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   118
		if ((uint)(sym - map->vk_from) <= map->vk_count) {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   119
			key = sym - map->vk_from + map->map_to;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   120
			break;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   121
		}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   122
	}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   123
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   124
	if (GetAsyncKeyState(VK_SHIFT)   < 0) key |= WKC_SHIFT;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   125
	if (GetAsyncKeyState(VK_CONTROL) < 0) key |= WKC_CTRL;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   126
	if (GetAsyncKeyState(VK_MENU)    < 0) key |= WKC_ALT;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   127
	return key;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   128
}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   129
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   130
static bool AllocateDibSection(int w, int h);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   131
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   132
static void ClientSizeChanged(int w, int h)
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   133
{
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   134
	if (_wnd.double_size) {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   135
		w /= 2;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   136
		h /= 2;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   137
	}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   138
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   139
	// allocate new dib section of the new size
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   140
	if (AllocateDibSection(w, h)) {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   141
		// mark all palette colors dirty
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   142
		_pal_first_dirty = 0;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   143
		_pal_last_dirty = 255;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   144
		GameSizeChanged();
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   145
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   146
		// redraw screen
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   147
		if (_wnd.running) {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   148
			_screen.dst_ptr = _wnd.buffer_bits;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   149
			UpdateWindows();
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   150
		}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   151
	}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   152
}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   153
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   154
#ifdef _DEBUG
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   155
// Keep this function here..
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   156
// It allows you to redraw the screen from within the MSVC debugger
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   157
int RedrawScreenDebug(void)
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   158
{
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   159
	HDC dc,dc2;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   160
	static int _fooctr;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   161
	HBITMAP old_bmp;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   162
	HPALETTE old_palette;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   163
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   164
	_screen.dst_ptr = _wnd.buffer_bits;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   165
	UpdateWindows();
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   166
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   167
	dc = GetDC(_wnd.main_wnd);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   168
	dc2 = CreateCompatibleDC(dc);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   169
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   170
	old_bmp = SelectObject(dc2, _wnd.dib_sect);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   171
	old_palette = SelectPalette(dc, _wnd.gdi_palette, FALSE);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   172
	BitBlt(dc, 0, 0, _wnd.width, _wnd.height, dc2, 0, 0, SRCCOPY);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   173
	SelectPalette(dc, old_palette, TRUE);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   174
	SelectObject(dc2, old_bmp);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   175
	DeleteDC(dc2);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   176
	ReleaseDC(_wnd.main_wnd, dc);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   177
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   178
	return _fooctr++;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   179
}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   180
#endif
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   181
3312
d28f88dc5587 (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
   182
/* Windows 95 will not have a WM_MOUSELEAVE message, so define it if
d28f88dc5587 (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
   183
 * needed. There is no such event as WM_MOUSEENTER, we just made this up :) */
d28f88dc5587 (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
   184
#define WM_MOUSEENTER WM_USER + 1
d28f88dc5587 (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)
d28f88dc5587 (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
d28f88dc5587 (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
d28f88dc5587 (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
d28f88dc5587 (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
d28f88dc5587 (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
d28f88dc5587 (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)
d28f88dc5587 (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
{
d28f88dc5587 (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;
d28f88dc5587 (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;
d28f88dc5587 (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
d28f88dc5587 (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.
d28f88dc5587 (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
d28f88dc5587 (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. */
d28f88dc5587 (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
e3f0d57cc358 (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
d28f88dc5587 (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);
d28f88dc5587 (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
d28f88dc5587 (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)) {
d28f88dc5587 (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);
d28f88dc5587 (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);
d28f88dc5587 (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
	}
d28f88dc5587 (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
}
d28f88dc5587 (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
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   209
static LRESULT CALLBACK WndProcGdi(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   210
{
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   211
	switch (msg) {
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   212
		case WM_CREATE:
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   213
			SetTimer(hwnd, TID_POLLMOUSE, MOUSE_POLL_DELAY, (TIMERPROC)TrackMouseTimerProc);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   214
			break;
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   215
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   216
		case WM_PAINT: {
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   217
			PAINTSTRUCT ps;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   218
			HDC dc,dc2;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   219
			HBITMAP old_bmp;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   220
			HPALETTE old_palette;
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   221
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   222
			BeginPaint(hwnd, &ps);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   223
			dc = ps.hdc;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   224
			dc2 = CreateCompatibleDC(dc);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   225
			old_bmp = SelectObject(dc2, _wnd.dib_sect);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   226
			old_palette = SelectPalette(dc, _wnd.gdi_palette, FALSE);
3312
d28f88dc5587 (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
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   228
			if (_pal_last_dirty != -1) {
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   229
				UpdatePalette(dc2, _pal_first_dirty, _pal_last_dirty - _pal_first_dirty + 1);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   230
				_pal_last_dirty = -1;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   231
			}
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   232
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   233
			BitBlt(dc, 0, 0, _wnd.width, _wnd.height, dc2, 0, 0, SRCCOPY);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   234
			SelectPalette(dc, old_palette, TRUE);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   235
			SelectObject(dc2, old_bmp);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   236
			DeleteDC(dc2);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   237
			EndPaint(hwnd, &ps);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   238
			return 0;
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   239
		}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   240
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   241
		case WM_PALETTECHANGED:
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   242
			if ((HWND)wParam == hwnd) return 0;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   243
			/* FALLTHROUGH */
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   244
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   245
		case WM_QUERYNEWPALETTE: {
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   246
			HDC hDC = GetWindowDC(hwnd);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   247
			HPALETTE hOldPalette = SelectPalette(hDC, _wnd.gdi_palette, FALSE);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   248
			UINT nChanged = RealizePalette(hDC);
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   249
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   250
			SelectPalette(hDC, hOldPalette, TRUE);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   251
			ReleaseDC(hwnd, hDC);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   252
			if (nChanged) InvalidateRect(hwnd, NULL, FALSE);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   253
			return 0;
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   254
		}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   255
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   256
		case WM_CLOSE:
4548
6165e12570bf (svn r6380) -Codechange: unify all ways to quit OTTD.
rubidium
parents: 4536
diff changeset
   257
			HandleExitGameRequest();
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   258
			_window_maximize = IsZoomed(_wnd.main_wnd);
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   259
			return 0;
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   260
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   261
		case WM_LBUTTONDOWN:
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   262
			SetCapture(hwnd);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   263
			_left_button_down = true;
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   264
			return 0;
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   265
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   266
		case WM_LBUTTONUP:
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   267
			ReleaseCapture();
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   268
			_left_button_down = false;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   269
			_left_button_clicked = false;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   270
			return 0;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   271
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   272
		case WM_RBUTTONDOWN:
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   273
			SetCapture(hwnd);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   274
			_right_button_down = true;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   275
			_right_button_clicked = true;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   276
			return 0;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   277
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   278
		case WM_RBUTTONUP:
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   279
			ReleaseCapture();
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   280
			_right_button_down = false;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   281
			return 0;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   282
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   283
		case WM_MOUSEENTER:
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   284
			_cursor.in_window = true;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   285
			DrawMouseCursor();
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   286
			break;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   287
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   288
		case WM_MOUSELEAVE:
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   289
			UndrawMouseCursor();
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   290
			_cursor.in_window = false;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   291
			break;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   292
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   293
		case WM_MOUSEMOVE: {
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   294
			int x = (int16)LOWORD(lParam);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   295
			int y = (int16)HIWORD(lParam);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   296
			POINT pt;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   297
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   298
			/* If the mouse was not in the window and it has moved it means it has
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   299
			 * come into the window, so send a WM_MOUSEENTER message. Also start
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   300
			 * tracking the mouse for exiting the window */
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   301
			if (!_cursor.in_window) {
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   302
				_cursor.in_window = true;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   303
				SetTimer(hwnd, TID_POLLMOUSE, MOUSE_POLL_DELAY, (TIMERPROC)TrackMouseTimerProc);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   304
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   305
				if (hwnd != GetCapture()) PostMessage(hwnd, WM_MOUSEENTER, 0, 0L);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   306
			}
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   307
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   308
			if (_wnd.double_size) {
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   309
				x /= 2;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   310
				y /= 2;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   311
			}
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   312
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   313
			if (_cursor.fix_at) {
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   314
				int dx = x - _cursor.pos.x;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   315
				int dy = y - _cursor.pos.y;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   316
				if (dx != 0 || dy != 0) {
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   317
					_cursor.delta.x += dx;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   318
					_cursor.delta.y += dy;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   319
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   320
					pt.x = _cursor.pos.x;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   321
					pt.y = _cursor.pos.y;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   322
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   323
					if (_wnd.double_size) {
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   324
						pt.x *= 2;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   325
						pt.y *= 2;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   326
					}
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   327
					ClientToScreen(hwnd, &pt);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   328
					SetCursorPos(pt.x, pt.y);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   329
				}
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   330
			} else {
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   331
				_cursor.delta.x += x - _cursor.pos.x;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   332
				_cursor.delta.y += y - _cursor.pos.y;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   333
				_cursor.pos.x = x;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   334
				_cursor.pos.y = y;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   335
				_cursor.dirty = true;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   336
			}
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   337
			MyShowCursor(false);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   338
			return 0;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   339
		}
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   340
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   341
		case WM_KEYDOWN: {
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   342
			// this is the rewritten ascii input function
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   343
			// it disables windows deadkey handling --> more linux like :D
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   344
			WORD w = 0;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   345
			byte ks[256];
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   346
			uint scancode;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   347
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   348
			GetKeyboardState(ks);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   349
			if (ToAscii(wParam, 0, ks, &w, 0) == 0) {
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   350
				w = 0; // no translation was possible
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   351
			}
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   352
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   353
			_pressed_key = w | MapWindowsKey(wParam) << 16;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   354
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   355
			scancode = GB(lParam, 16, 8);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   356
			if (scancode == 41) _pressed_key = w | WKC_BACKQUOTE << 16;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   357
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   358
			if ((_pressed_key >> 16) == ('D' | WKC_CTRL) && !_wnd.fullscreen) {
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   359
				_double_size ^= 1;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   360
				_wnd.double_size = _double_size;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   361
				ClientSizeChanged(_wnd.width, _wnd.height);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   362
				MarkWholeScreenDirty();
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   363
			}
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   364
			break;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   365
		}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   366
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   367
		case WM_SYSKEYDOWN: /* user presses F10 or Alt, both activating the title-menu */
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   368
			switch (wParam) {
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   369
				case VK_RETURN:
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   370
				case 'F': /* Full Screen on ALT + ENTER/F */
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   371
					ToggleFullScreen(!_wnd.fullscreen);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   372
					return 0;
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   373
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   374
				case VK_MENU: /* Just ALT */
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   375
					return 0; // do nothing
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   376
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   377
				case VK_F10: /* F10, ignore activation of menu */
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   378
					_pressed_key = MapWindowsKey(wParam) << 16;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   379
					return 0;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   380
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   381
				default: /* ALT in combination with something else */
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   382
					_pressed_key = MapWindowsKey(wParam) << 16;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   383
					break;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   384
			}
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   385
			break;
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   386
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   387
		case WM_NCMOUSEMOVE:
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   388
			MyShowCursor(true);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   389
			return 0;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   390
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   391
		case WM_SIZE:
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   392
			if (wParam != SIZE_MINIMIZED) {
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   393
				ClientSizeChanged(LOWORD(lParam), HIWORD(lParam));
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   394
			}
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   395
			return 0;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   396
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   397
		case WM_SIZING: {
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   398
			RECT* r = (RECT*)lParam;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   399
			RECT r2;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   400
			int w, h;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   401
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   402
			SetRect(&r2, 0, 0, 0, 0);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   403
			AdjustWindowRect(&r2, GetWindowLong(hwnd, GWL_STYLE), FALSE);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   404
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   405
			w = r->right - r->left - (r2.right - r2.left);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   406
			h = r->bottom - r->top - (r2.bottom - r2.top);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   407
			if (_wnd.double_size) {
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   408
				w /= 2;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   409
				h /= 2;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   410
			}
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   411
			w = clamp(w, 64, MAX_SCREEN_WIDTH);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   412
			h = clamp(h, 64, MAX_SCREEN_HEIGHT);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   413
			if (_wnd.double_size) {
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   414
				w *= 2;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   415
				h *= 2;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   416
			}
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   417
			SetRect(&r2, 0, 0, w, h);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   418
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   419
			AdjustWindowRect(&r2, GetWindowLong(hwnd, GWL_STYLE), FALSE);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   420
			w = r2.right - r2.left;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   421
			h = r2.bottom - r2.top;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   422
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   423
			switch (wParam) {
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   424
				case WMSZ_BOTTOM:
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   425
					r->bottom = r->top + h;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   426
					break;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   427
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   428
				case WMSZ_BOTTOMLEFT:
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   429
					r->bottom = r->top + h;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   430
					r->left = r->right - w;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   431
					break;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   432
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   433
				case WMSZ_BOTTOMRIGHT:
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   434
					r->bottom = r->top + h;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   435
					r->right = r->left + w;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   436
					break;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   437
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   438
				case WMSZ_LEFT:
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   439
					r->left = r->right - w;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   440
					break;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   441
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   442
				case WMSZ_RIGHT:
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   443
					r->right = r->left + w;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   444
					break;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   445
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   446
				case WMSZ_TOP:
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   447
					r->top = r->bottom - h;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   448
					break;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   449
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   450
				case WMSZ_TOPLEFT:
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   451
					r->top = r->bottom - h;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   452
					r->left = r->right - w;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   453
					break;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   454
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   455
				case WMSZ_TOPRIGHT:
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   456
					r->top = r->bottom - h;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   457
					r->right = r->left + w;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   458
					break;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   459
			}
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   460
			return TRUE;
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   461
		}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   462
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   463
// needed for wheel
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   464
#if !defined(WM_MOUSEWHEEL)
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   465
# define WM_MOUSEWHEEL 0x020A
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   466
#endif  //WM_MOUSEWHEEL
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   467
#if !defined(GET_WHEEL_DELTA_WPARAM)
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   468
# define GET_WHEEL_DELTA_WPARAM(wparam) ((short)HIWORD(wparam))
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   469
#endif  //GET_WHEEL_DELTA_WPARAM
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   470
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   471
		case WM_MOUSEWHEEL: {
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   472
			int delta = GET_WHEEL_DELTA_WPARAM(wParam);
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   473
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   474
			if (delta < 0) {
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   475
				_cursor.wheel++;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   476
			} else if (delta > 0) {
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   477
				_cursor.wheel--;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   478
			}
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   479
			return 0;
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   480
		}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   481
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   482
		case WM_ACTIVATEAPP:
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   483
			_wnd.has_focus = (bool)wParam;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   484
			break;
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   485
	}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   486
	return DefWindowProc(hwnd, msg, wParam, lParam);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   487
}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   488
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   489
static void RegisterWndClass(void)
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   490
{
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   491
	static bool registered = false;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   492
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   493
	if (!registered) {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   494
		HINSTANCE hinst = GetModuleHandle(NULL);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   495
		WNDCLASS wnd = {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   496
			0,
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   497
			WndProcGdi,
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   498
			0,
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   499
			0,
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   500
			hinst,
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   501
			LoadIcon(hinst, MAKEINTRESOURCE(100)),
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   502
			LoadCursor(NULL, IDC_ARROW),
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   503
			0,
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   504
			0,
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   505
			"OTTD"
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   506
		};
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   507
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   508
		registered = true;
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   509
		if (!RegisterClass(&wnd)) error("RegisterClass failed");
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   510
	}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   511
}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   512
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   513
extern const char _openttd_revision[];
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   514
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   515
static void MakeWindow(bool full_screen)
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   516
{
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   517
	_fullscreen = full_screen;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   518
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   519
	_wnd.double_size = _double_size && !full_screen;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   520
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   521
	// recreate window?
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   522
	if ((full_screen || _wnd.fullscreen) && _wnd.main_wnd) {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   523
		DestroyWindow(_wnd.main_wnd);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   524
		_wnd.main_wnd = 0;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   525
	}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   526
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   527
	if (full_screen) {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   528
		DEVMODE settings;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   529
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   530
		memset(&settings, 0, sizeof(settings));
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   531
		settings.dmSize = sizeof(settings);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   532
		settings.dmFields =
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   533
			(_fullscreen_bpp != 0 ? DM_BITSPERPEL : 0) |
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   534
			DM_PELSWIDTH |
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   535
			DM_PELSHEIGHT |
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   536
			(_display_hz != 0 ? DM_DISPLAYFREQUENCY : 0);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   537
		settings.dmBitsPerPel = _fullscreen_bpp;
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   538
		settings.dmPelsWidth  = _wnd.width_org;
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   539
		settings.dmPelsHeight = _wnd.height_org;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   540
		settings.dmDisplayFrequency = _display_hz;
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   541
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   542
		if (ChangeDisplaySettings(&settings, CDS_FULLSCREEN) != DISP_CHANGE_SUCCESSFUL) {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   543
			MakeWindow(false);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   544
			return;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   545
		}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   546
	} else if (_wnd.fullscreen) {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   547
		// restore display?
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   548
		ChangeDisplaySettings(NULL, 0);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   549
	}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   550
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   551
	{
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   552
		RECT r;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   553
		uint style;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   554
		int x, y, w, h;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   555
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   556
		_wnd.fullscreen = full_screen;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   557
		if (_wnd.fullscreen) {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   558
			style = WS_POPUP | WS_VISIBLE;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   559
			SetRect(&r, 0, 0, _wnd.width_org, _wnd.height_org);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   560
		} else {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   561
			style = WS_OVERLAPPEDWINDOW | WS_VISIBLE;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   562
			SetRect(&r, 0, 0, _wnd.width, _wnd.height);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   563
		}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   564
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   565
		AdjustWindowRect(&r, style, FALSE);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   566
		w = r.right - r.left;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   567
		h = r.bottom - r.top;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   568
		x = (GetSystemMetrics(SM_CXSCREEN) - w) / 2;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   569
		y = (GetSystemMetrics(SM_CYSCREEN) - h) / 2;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   570
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   571
		if (_wnd.main_wnd) {
4258
087d44b3514f (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
   572
			ShowWindow(_wnd.main_wnd, SW_SHOWNORMAL); // remove maximize-flag
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   573
			SetWindowPos(_wnd.main_wnd, 0, x, y, w, h, SWP_NOACTIVATE | SWP_NOOWNERZORDER | SWP_NOZORDER);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   574
		} else {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   575
			char Windowtitle[50];
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   576
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   577
			snprintf(Windowtitle, lengthof(Windowtitle), "OpenTTD %s", _openttd_revision);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   578
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   579
			_wnd.main_wnd = CreateWindow("OTTD", Windowtitle, style, x, y, w, h, 0, 0, GetModuleHandle(NULL), 0);
4258
087d44b3514f (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
   580
			if (_wnd.main_wnd == NULL) error("CreateWindow failed");
087d44b3514f (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
   581
087d44b3514f (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
   582
			/* On startup let's see if we quit maximized the last time, restore that */
087d44b3514f (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
   583
			if (_window_maximize) {
087d44b3514f (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
   584
				ShowWindow(_wnd.main_wnd, SW_MAXIMIZE);
087d44b3514f (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
   585
				_window_maximize = false;
087d44b3514f (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
   586
			}
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   587
		}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   588
	}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   589
	GameSizeChanged(); // invalidate all windows, force redraw
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   590
}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   591
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   592
static bool AllocateDibSection(int w, int h)
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   593
{
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   594
	BITMAPINFO *bi;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   595
	HDC dc;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   596
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   597
	w = clamp(w, 64, MAX_SCREEN_WIDTH);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   598
	h = clamp(h, 64, MAX_SCREEN_HEIGHT);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   599
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   600
	if (w == _screen.width && h == _screen.height)
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   601
		return false;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   602
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   603
	_screen.width = w;
2398
912f16512ce2 (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
   604
	_screen.pitch = ALIGN(w, 4);
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   605
	_screen.height = h;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   606
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   607
	if (_wnd.alloced_bits) {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   608
		free(_wnd.alloced_bits);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   609
		_wnd.alloced_bits = NULL;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   610
	}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   611
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   612
	bi = alloca(sizeof(BITMAPINFOHEADER) + sizeof(RGBQUAD)*256);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   613
	memset(bi, 0, sizeof(BITMAPINFOHEADER) + sizeof(RGBQUAD)*256);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   614
	bi->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   615
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   616
	if (_wnd.double_size) {
2398
912f16512ce2 (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
   617
		w = ALIGN(w, 4);
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   618
		_wnd.alloced_bits = _wnd.buffer_bits = malloc(w * h);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   619
		w *= 2;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   620
		h *= 2;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   621
	}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   622
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   623
	bi->bmiHeader.biWidth = _wnd.width = w;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   624
	bi->bmiHeader.biHeight = -(_wnd.height = h);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   625
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   626
	bi->bmiHeader.biPlanes = 1;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   627
	bi->bmiHeader.biBitCount = 8;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   628
	bi->bmiHeader.biCompression = BI_RGB;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   629
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   630
	if (_wnd.dib_sect) DeleteObject(_wnd.dib_sect);
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   631
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   632
	dc = GetDC(0);
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   633
	_wnd.dib_sect = CreateDIBSection(dc, bi, DIB_RGB_COLORS, (VOID**)&_wnd.bitmap_bits, NULL, 0);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   634
	if (_wnd.dib_sect == NULL) error("CreateDIBSection failed");
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   635
	ReleaseDC(0, dc);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   636
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   637
	if (!_wnd.double_size) _wnd.buffer_bits = _wnd.bitmap_bits;
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   638
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   639
	return true;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   640
}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   641
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   642
static const uint16 default_resolutions[][2] = {
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   643
	{  640,  480 },
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   644
	{  800,  600 },
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   645
	{ 1024,  768 },
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   646
	{ 1152,  864 },
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   647
	{ 1280,  800 },
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   648
	{ 1280,  960 },
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   649
	{ 1280, 1024 },
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   650
	{ 1400, 1050 },
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   651
	{ 1600, 1200 },
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   652
	{ 1680, 1050 },
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   653
	{ 1920, 1200 }
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   654
};
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   655
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   656
static void FindResolutions(void)
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   657
{
4000
4009d092b306 (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
   658
	uint n = 0;
4009d092b306 (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
   659
	uint i;
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   660
	DEVMODE dm;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   661
4000
4009d092b306 (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
   662
	for (i = 0; EnumDisplaySettings(NULL, i, &dm) != 0; i++) {
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   663
		if (dm.dmBitsPerPel == 8 && IS_INT_INSIDE(dm.dmPelsWidth, 640, MAX_SCREEN_WIDTH + 1) &&
4000
4009d092b306 (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
   664
				IS_INT_INSIDE(dm.dmPelsHeight, 480, MAX_SCREEN_HEIGHT + 1)) {
4009d092b306 (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
   665
			uint j;
4009d092b306 (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
   666
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   667
			for (j = 0; j < n; j++) {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   668
				if (_resolutions[j][0] == dm.dmPelsWidth && _resolutions[j][1] == dm.dmPelsHeight) break;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   669
			}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   670
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   671
			/* In the previous loop we have checked already existing/added resolutions if
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   672
			 * they are the same as the new ones. If this is not the case (j == n); we have
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   673
			 * looped all and found none, add the new one to the list. If we have reached the
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   674
			 * maximum amount of resolutions, then quit querying the display */
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   675
			if (j == n) {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   676
				_resolutions[j][0] = dm.dmPelsWidth;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   677
				_resolutions[j][1] = dm.dmPelsHeight;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   678
				if (++n == lengthof(_resolutions)) break;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   679
			}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   680
		}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   681
	}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   682
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   683
	/* We have found no resolutions, show the default list */
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   684
	if (n == 0) {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   685
		memcpy(_resolutions, default_resolutions, sizeof(default_resolutions));
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   686
		n = lengthof(default_resolutions);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   687
	}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   688
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   689
	_num_resolutions = n;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   690
	SortResolutions(_num_resolutions);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   691
}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   692
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   693
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   694
static const char *Win32GdiStart(const char * const *parm)
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   695
{
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   696
	memset(&_wnd, 0, sizeof(_wnd));
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   697
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   698
	RegisterWndClass();
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   699
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   700
	MakePalette();
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   701
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   702
	FindResolutions();
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   703
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   704
	// fullscreen uses those
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   705
	_wnd.width_org = _cur_resolution[0];
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   706
	_wnd.height_org = _cur_resolution[1];
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   707
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   708
	AllocateDibSection(_cur_resolution[0], _cur_resolution[1]);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   709
	MarkWholeScreenDirty();
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   710
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   711
	MakeWindow(_fullscreen);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   712
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   713
	return NULL;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   714
}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   715
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   716
static void Win32GdiStop(void)
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   717
{
3285
50f77357b94a (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
   718
	DeleteObject(_wnd.gdi_palette);
50f77357b94a (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
   719
	DeleteObject(_wnd.dib_sect);
50f77357b94a (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
   720
	DestroyWindow(_wnd.main_wnd);
50f77357b94a (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
   721
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   722
	if (_wnd.fullscreen) ChangeDisplaySettings(NULL, 0);
2773
121bea441d07 (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
   723
	if (_double_size) {
121bea441d07 (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
   724
		_cur_resolution[0] *= 2;
121bea441d07 (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
   725
		_cur_resolution[1] *= 2;
121bea441d07 (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
   726
	}
121bea441d07 (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
   727
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   728
	MyShowCursor(true);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   729
}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   730
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   731
// simple upscaler by 2
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   732
static void filter(int left, int top, int width, int height)
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   733
{
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   734
	uint p = _screen.pitch;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   735
	const Pixel *s = _wnd.buffer_bits + top * p + left;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   736
	Pixel *d = _wnd.bitmap_bits + top * p * 4 + left * 2;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   737
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   738
	for (; height > 0; height--) {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   739
		int i;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   740
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   741
		for (i = 0; i != width; i++) {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   742
			d[i * 2] = d[i * 2 + 1] = d[i * 2 + p * 2] = d[i * 2 + 1 + p * 2] = s[i];
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   743
		}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   744
		s += p;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   745
		d += p * 4;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   746
	}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   747
}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   748
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   749
static void Win32GdiMakeDirty(int left, int top, int width, int height)
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   750
{
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   751
	RECT r = { left, top, left + width, top + height };
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   752
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   753
	if (_wnd.double_size) {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   754
		filter(left, top, width, height);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   755
		r.left *= 2;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   756
		r.top *= 2;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   757
		r.right *= 2;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   758
		r.bottom *= 2;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   759
	}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   760
	InvalidateRect(_wnd.main_wnd, &r, FALSE);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   761
}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   762
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   763
static void CheckPaletteAnim(void)
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   764
{
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   765
	if (_pal_last_dirty == -1)
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   766
		return;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   767
	InvalidateRect(_wnd.main_wnd, NULL, FALSE);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   768
}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   769
2228
93cdde0f85ba (svn r2748) Remove unused cruft from the main loop
tron
parents: 2208
diff changeset
   770
static void Win32GdiMainLoop(void)
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   771
{
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   772
	MSG mesg;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   773
	uint32 next_tick = GetTickCount() + 30, cur_ticks;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   774
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   775
	_wnd.running = true;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   776
2952
58522ed8f0f1 (svn r3511) More whitespace ([FS#46] by Rubidium)
tron
parents: 2773
diff changeset
   777
	for (;;) {
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   778
		while (PeekMessage(&mesg, NULL, 0, 0, PM_REMOVE)) {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   779
			InteractiveRandom(); // randomness
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   780
			TranslateMessage(&mesg);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   781
			DispatchMessage(&mesg);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   782
		}
2228
93cdde0f85ba (svn r2748) Remove unused cruft from the main loop
tron
parents: 2208
diff changeset
   783
		if (_exit_game) return;
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   784
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   785
#if defined(_DEBUG)
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   786
		if (_wnd.has_focus && GetAsyncKeyState(VK_SHIFT) < 0) {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   787
			if (
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   788
#else
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   789
		if (_wnd.has_focus && GetAsyncKeyState(VK_TAB) < 0) {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   790
			/* Disable speeding up game with ALT+TAB (if syskey is pressed, the
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   791
			 * real key is in the upper 16 bits (see WM_SYSKEYDOWN in WndProcGdi()) */
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   792
			if ((_pressed_key >> 16) & WKC_TAB &&
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   793
#endif
4536
d532b2611952 (svn r6365) -Cleanup: remove IsGeneratingWorld calls that are either not called or have no effect.
rubidium
parents: 4489
diff changeset
   794
			    !_networking && _game_mode != GM_MENU)
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   795
				_fast_forward |= 2;
4077
d4d440dd8925 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 4000
diff changeset
   796
		} else if (_fast_forward & 2) {
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   797
			_fast_forward = 0;
4077
d4d440dd8925 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 4000
diff changeset
   798
		}
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   799
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   800
		cur_ticks = GetTickCount();
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   801
		if ((_fast_forward && !_pause) || cur_ticks > next_tick)
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   802
			next_tick = cur_ticks;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   803
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   804
		if (cur_ticks == next_tick) {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   805
			next_tick += 30;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   806
			_ctrl_pressed = _wnd.has_focus && GetAsyncKeyState(VK_CONTROL)<0;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   807
			_shift_pressed = _wnd.has_focus && GetAsyncKeyState(VK_SHIFT)<0;
2664
875d6800baaf (svn r3206) Wrap all instances of _dbg_screen_rect in #ifdef _DEBUG
tron
parents: 2398
diff changeset
   808
#ifdef _DEBUG
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   809
			_dbg_screen_rect = _wnd.has_focus && GetAsyncKeyState(VK_CAPITAL)<0;
2665
6be437294af0 (svn r3207) Typo in last revision
tron
parents: 2664
diff changeset
   810
#endif
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   811
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   812
			// determine which directional keys are down
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   813
			if (_wnd.has_focus) {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   814
				_dirkeys =
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   815
					(GetAsyncKeyState(VK_LEFT) < 0 ? 1 : 0) +
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   816
					(GetAsyncKeyState(VK_UP) < 0 ? 2 : 0) +
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   817
					(GetAsyncKeyState(VK_RIGHT) < 0 ? 4 : 0) +
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   818
					(GetAsyncKeyState(VK_DOWN) < 0 ? 8 : 0);
4077
d4d440dd8925 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 4000
diff changeset
   819
			} else {
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   820
				_dirkeys = 0;
4077
d4d440dd8925 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 4000
diff changeset
   821
			}
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   822
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   823
			GameLoop();
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   824
			_cursor.delta.x = _cursor.delta.y = 0;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   825
4077
d4d440dd8925 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 4000
diff changeset
   826
			if (_force_full_redraw) MarkWholeScreenDirty();
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   827
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   828
			GdiFlush();
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   829
			_screen.dst_ptr = _wnd.buffer_bits;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   830
			UpdateWindows();
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   831
			CheckPaletteAnim();
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   832
		} else {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   833
			Sleep(1);
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   834
			GdiFlush();
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   835
			_screen.dst_ptr = _wnd.buffer_bits;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   836
			DrawTextMessage();
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   837
			DrawMouseCursor();
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   838
		}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   839
	}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   840
}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   841
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   842
static bool Win32GdiChangeRes(int w, int h)
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   843
{
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   844
	_wnd.width = _wnd.width_org = w;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   845
	_wnd.height = _wnd.height_org = h;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   846
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   847
	MakeWindow(_fullscreen); // _wnd.fullscreen screws up ingame resolution switching
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   848
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   849
	return true;
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   850
}
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   851
4489
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   852
static void Win32GdiFullScreen(bool full_screen)
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   853
{
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   854
	MakeWindow(full_screen);
e84a0355e096 (svn r6274) Clean up a bit
tron
parents: 4477
diff changeset
   855
}
2174
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   856
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   857
const HalVideoDriver _win32_video_driver = {
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   858
	Win32GdiStart,
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   859
	Win32GdiStop,
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   860
	Win32GdiMakeDirty,
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   861
	Win32GdiMainLoop,
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   862
	Win32GdiChangeRes,
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   863
	Win32GdiFullScreen,
24d868f1c576 (svn r2688) MSVC and Watcom can't handle identical file names in different directories, oh my...
tron
parents:
diff changeset
   864
};