src/video/sdl_v.cpp
author truelight
Tue, 12 Jun 2007 20:24:12 +0000
changeset 7374 54c06f06ecc8
parent 7111 269c76b5b987
child 7433 8e410e7ec0d7
permissions -rw-r--r--
(svn r10121) -Codechange: split renderer from rest of code; no longer any code directly accesses the video-buffer
-Add: added NULL blitter and renderer, which are always used for -vnull
-Add: dedicated driver doesn't blit nor render by default. Can be overruled by user. (-D -b 8bpp-optimized)
-Remove: removed CTRL+D from win32, which is incompatible with above
-Add: extended screenshot support for PNG and BMP
-Codechange: remove all hardcoded 8bpp references and replace them with more dynamic ones
-Codechange: minor stuff in blitters
2186
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 2174
diff changeset
     1
/* $Id$ */
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 2174
diff changeset
     2
2189
d240b9097139 (svn r2704) Remove . from include path again, too much trouble. Also add some #ifdefs and #includes for the Windows build
tron
parents: 2186
diff changeset
     3
#include "../stdafx.h"
d240b9097139 (svn r2704) Remove . from include path again, too much trouble. Also add some #ifdefs and #includes for the Windows build
tron
parents: 2186
diff changeset
     4
d240b9097139 (svn r2704) Remove . from include path again, too much trouble. Also add some #ifdefs and #includes for the Windows build
tron
parents: 2186
diff changeset
     5
#ifdef WITH_SDL
d240b9097139 (svn r2704) Remove . from include path again, too much trouble. Also add some #ifdefs and #includes for the Windows build
tron
parents: 2186
diff changeset
     6
d240b9097139 (svn r2704) Remove . from include path again, too much trouble. Also add some #ifdefs and #includes for the Windows build
tron
parents: 2186
diff changeset
     7
#include "../openttd.h"
d240b9097139 (svn r2704) Remove . from include path again, too much trouble. Also add some #ifdefs and #includes for the Windows build
tron
parents: 2186
diff changeset
     8
#include "../debug.h"
d240b9097139 (svn r2704) Remove . from include path again, too much trouble. Also add some #ifdefs and #includes for the Windows build
tron
parents: 2186
diff changeset
     9
#include "../functions.h"
d240b9097139 (svn r2704) Remove . from include path again, too much trouble. Also add some #ifdefs and #includes for the Windows build
tron
parents: 2186
diff changeset
    10
#include "../gfx.h"
d240b9097139 (svn r2704) Remove . from include path again, too much trouble. Also add some #ifdefs and #includes for the Windows build
tron
parents: 2186
diff changeset
    11
#include "../macros.h"
d240b9097139 (svn r2704) Remove . from include path again, too much trouble. Also add some #ifdefs and #includes for the Windows build
tron
parents: 2186
diff changeset
    12
#include "../sdl.h"
d240b9097139 (svn r2704) Remove . from include path again, too much trouble. Also add some #ifdefs and #includes for the Windows build
tron
parents: 2186
diff changeset
    13
#include "../window.h"
5720
cc0ceeafaa55 (svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents: 5712
diff changeset
    14
#include "../network/network.h"
2189
d240b9097139 (svn r2704) Remove . from include path again, too much trouble. Also add some #ifdefs and #includes for the Windows build
tron
parents: 2186
diff changeset
    15
#include "../variables.h"
7374
54c06f06ecc8 (svn r10121) -Codechange: split renderer from rest of code; no longer any code directly accesses the video-buffer
truelight
parents: 7111
diff changeset
    16
#include "../blitter/blitter.hpp"
54c06f06ecc8 (svn r10121) -Codechange: split renderer from rest of code; no longer any code directly accesses the video-buffer
truelight
parents: 7111
diff changeset
    17
#include "../renderer/renderer.hpp"
2189
d240b9097139 (svn r2704) Remove . from include path again, too much trouble. Also add some #ifdefs and #includes for the Windows build
tron
parents: 2186
diff changeset
    18
#include "sdl_v.h"
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    19
#include <SDL.h>
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    20
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    21
static SDL_Surface *_sdl_screen;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    22
static bool _all_modes;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    23
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    24
#define MAX_DIRTY_RECTS 100
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    25
static SDL_Rect _dirty_rects[MAX_DIRTY_RECTS];
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    26
static int _num_dirty_rects;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    27
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    28
static void SdlVideoMakeDirty(int left, int top, int width, int height)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    29
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    30
	if (_num_dirty_rects < MAX_DIRTY_RECTS) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    31
		_dirty_rects[_num_dirty_rects].x = left;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    32
		_dirty_rects[_num_dirty_rects].y = top;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    33
		_dirty_rects[_num_dirty_rects].w = width;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    34
		_dirty_rects[_num_dirty_rects].h = height;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    35
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    36
	_num_dirty_rects++;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    37
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    38
2226
efc1f77d27fc (svn r2746) -Fix: SDL_SetColors() has the number of palette entries to change as parameter, not one beyond the last entry to change
tron
parents: 2210
diff changeset
    39
static void UpdatePalette(uint start, uint count)
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
    40
{
7374
54c06f06ecc8 (svn r10121) -Codechange: split renderer from rest of code; no longer any code directly accesses the video-buffer
truelight
parents: 7111
diff changeset
    41
	/* We can only update the palette in 8bpp for now */
54c06f06ecc8 (svn r10121) -Codechange: split renderer from rest of code; no longer any code directly accesses the video-buffer
truelight
parents: 7111
diff changeset
    42
	/* TODO -- We need support for other bpps too! */
54c06f06ecc8 (svn r10121) -Codechange: split renderer from rest of code; no longer any code directly accesses the video-buffer
truelight
parents: 7111
diff changeset
    43
	if (BlitterFactoryBase::GetCurrentBlitter()->GetScreenDepth() != 8) return;
54c06f06ecc8 (svn r10121) -Codechange: split renderer from rest of code; no longer any code directly accesses the video-buffer
truelight
parents: 7111
diff changeset
    44
2226
efc1f77d27fc (svn r2746) -Fix: SDL_SetColors() has the number of palette entries to change as parameter, not one beyond the last entry to change
tron
parents: 2210
diff changeset
    45
	SDL_Color pal[256];
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    46
	uint i;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    47
2226
efc1f77d27fc (svn r2746) -Fix: SDL_SetColors() has the number of palette entries to change as parameter, not one beyond the last entry to change
tron
parents: 2210
diff changeset
    48
	for (i = 0; i != count; i++) {
efc1f77d27fc (svn r2746) -Fix: SDL_SetColors() has the number of palette entries to change as parameter, not one beyond the last entry to change
tron
parents: 2210
diff changeset
    49
		pal[i].r = _cur_palette[start + i].r;
efc1f77d27fc (svn r2746) -Fix: SDL_SetColors() has the number of palette entries to change as parameter, not one beyond the last entry to change
tron
parents: 2210
diff changeset
    50
		pal[i].g = _cur_palette[start + i].g;
efc1f77d27fc (svn r2746) -Fix: SDL_SetColors() has the number of palette entries to change as parameter, not one beyond the last entry to change
tron
parents: 2210
diff changeset
    51
		pal[i].b = _cur_palette[start + i].b;
1991
f3d5e35731a2 (svn r2497) Use a struct array for palette entries instead of a flat byte array
tron
parents: 1891
diff changeset
    52
		pal[i].unused = 0;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    53
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    54
2226
efc1f77d27fc (svn r2746) -Fix: SDL_SetColors() has the number of palette entries to change as parameter, not one beyond the last entry to change
tron
parents: 2210
diff changeset
    55
	SDL_CALL SDL_SetColors(_sdl_screen, pal, start, count);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    56
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    57
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6557
diff changeset
    58
static void InitPalette()
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
    59
{
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    60
	UpdatePalette(0, 256);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    61
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    62
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6557
diff changeset
    63
static void CheckPaletteAnim()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    64
{
2226
efc1f77d27fc (svn r2746) -Fix: SDL_SetColors() has the number of palette entries to change as parameter, not one beyond the last entry to change
tron
parents: 2210
diff changeset
    65
	if (_pal_last_dirty != -1) {
efc1f77d27fc (svn r2746) -Fix: SDL_SetColors() has the number of palette entries to change as parameter, not one beyond the last entry to change
tron
parents: 2210
diff changeset
    66
		UpdatePalette(_pal_first_dirty, _pal_last_dirty - _pal_first_dirty + 1);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    67
		_pal_last_dirty = -1;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    68
	}
18
7428dd7c5732 (svn r19) SDL performance fix fo palette animation and mouse jumping (jirif)
dominik
parents: 0
diff changeset
    69
}
7428dd7c5732 (svn r19) SDL performance fix fo palette animation and mouse jumping (jirif)
dominik
parents: 0
diff changeset
    70
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6557
diff changeset
    71
static void DrawSurfaceToScreen()
18
7428dd7c5732 (svn r19) SDL performance fix fo palette animation and mouse jumping (jirif)
dominik
parents: 0
diff changeset
    72
{
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
    73
	int n = _num_dirty_rects;
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
    74
	if (n != 0) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    75
		_num_dirty_rects = 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    76
		if (n > MAX_DIRTY_RECTS)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    77
			SDL_CALL SDL_UpdateRect(_sdl_screen, 0, 0, 0, 0);
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
    78
		else
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    79
			SDL_CALL SDL_UpdateRects(_sdl_screen, n, _dirty_rects);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    80
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    81
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    82
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    83
static const uint16 default_resolutions[][2] = {
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
    84
	{ 640,  480},
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
    85
	{ 800,  600},
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
    86
	{1024,  768},
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
    87
	{1152,  864},
1028
37e5cf7baa96 (svn r1529) -Feature: [1090950] Adding 16:10 resolutions for mainly laptops (doode)
darkvater
parents: 1022
diff changeset
    88
	{1280,  800},
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
    89
	{1280,  960},
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
    90
	{1280, 1024},
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
    91
	{1400, 1050},
1028
37e5cf7baa96 (svn r1529) -Feature: [1090950] Adding 16:10 resolutions for mainly laptops (doode)
darkvater
parents: 1022
diff changeset
    92
	{1600, 1200},
37e5cf7baa96 (svn r1529) -Feature: [1090950] Adding 16:10 resolutions for mainly laptops (doode)
darkvater
parents: 1022
diff changeset
    93
	{1680, 1050},
37e5cf7baa96 (svn r1529) -Feature: [1090950] Adding 16:10 resolutions for mainly laptops (doode)
darkvater
parents: 1022
diff changeset
    94
	{1920, 1200}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    95
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    96
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6557
diff changeset
    97
static void GetVideoModes()
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
    98
{
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    99
	int i;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   100
	SDL_Rect **modes;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   101
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   102
	modes = SDL_CALL SDL_ListModes(NULL, SDL_SWSURFACE + (_fullscreen ? SDL_FULLSCREEN : 0));
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   103
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   104
	if (modes == NULL)
245
4f6f81046437 (svn r246) -Fix: 64bit machine warnings for sdl.c (Tron)
darkvater
parents: 222
diff changeset
   105
		error("sdl: no modes available");
119
82c0f4713cad (svn r120) Fix: (SDL) same resolution was displayed more than once in game options
dominik
parents: 60
diff changeset
   106
245
4f6f81046437 (svn r246) -Fix: 64bit machine warnings for sdl.c (Tron)
darkvater
parents: 222
diff changeset
   107
	_all_modes = (modes == (void*)-1);
4f6f81046437 (svn r246) -Fix: 64bit machine warnings for sdl.c (Tron)
darkvater
parents: 222
diff changeset
   108
4f6f81046437 (svn r246) -Fix: 64bit machine warnings for sdl.c (Tron)
darkvater
parents: 222
diff changeset
   109
	if (_all_modes) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   110
		// all modes available, put some default ones here
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   111
		memcpy(_resolutions, default_resolutions, sizeof(default_resolutions));
245
4f6f81046437 (svn r246) -Fix: 64bit machine warnings for sdl.c (Tron)
darkvater
parents: 222
diff changeset
   112
		_num_resolutions = lengthof(default_resolutions);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   113
	} else {
128
28ebd80f6521 (svn r129) Fix: no more same multiple resolutions due to incorrect SDL implementation (Tron)
dominik
parents: 119
diff changeset
   114
		int n = 0;
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   115
		for (i = 0; modes[i]; i++) {
128
28ebd80f6521 (svn r129) Fix: no more same multiple resolutions due to incorrect SDL implementation (Tron)
dominik
parents: 119
diff changeset
   116
			int w = modes[i]->w;
28ebd80f6521 (svn r129) Fix: no more same multiple resolutions due to incorrect SDL implementation (Tron)
dominik
parents: 119
diff changeset
   117
			int h = modes[i]->h;
306
c44133836566 (svn r312) -Fix: [926105] ctrl + d bug. Longest outstanding bug has been fixed \o/ 2004-03-30 (Tron)
darkvater
parents: 302
diff changeset
   118
			if (IS_INT_INSIDE(w, 640, MAX_SCREEN_WIDTH + 1) &&
c44133836566 (svn r312) -Fix: [926105] ctrl + d bug. Longest outstanding bug has been fixed \o/ 2004-03-30 (Tron)
darkvater
parents: 302
diff changeset
   119
					IS_INT_INSIDE(h, 480, MAX_SCREEN_HEIGHT + 1)) {
128
28ebd80f6521 (svn r129) Fix: no more same multiple resolutions due to incorrect SDL implementation (Tron)
dominik
parents: 119
diff changeset
   120
				int j;
1806
75dc9c737892 (svn r2310) - Fix: Game would crash if you full-screened with the 'fullscreen' button than chose a resolution from the dropdown box that was no longer valid. Big thanks to DaleStan for track down the crashing bug.
Darkvater
parents: 1509
diff changeset
   121
				for (j = 0; j < n; j++) {
75dc9c737892 (svn r2310) - Fix: Game would crash if you full-screened with the 'fullscreen' button than chose a resolution from the dropdown box that was no longer valid. Big thanks to DaleStan for track down the crashing bug.
Darkvater
parents: 1509
diff changeset
   122
					if (_resolutions[j][0] == w && _resolutions[j][1] == h) break;
75dc9c737892 (svn r2310) - Fix: Game would crash if you full-screened with the 'fullscreen' button than chose a resolution from the dropdown box that was no longer valid. Big thanks to DaleStan for track down the crashing bug.
Darkvater
parents: 1509
diff changeset
   123
				}
75dc9c737892 (svn r2310) - Fix: Game would crash if you full-screened with the 'fullscreen' button than chose a resolution from the dropdown box that was no longer valid. Big thanks to DaleStan for track down the crashing bug.
Darkvater
parents: 1509
diff changeset
   124
128
28ebd80f6521 (svn r129) Fix: no more same multiple resolutions due to incorrect SDL implementation (Tron)
dominik
parents: 119
diff changeset
   125
				if (j == n) {
1806
75dc9c737892 (svn r2310) - Fix: Game would crash if you full-screened with the 'fullscreen' button than chose a resolution from the dropdown box that was no longer valid. Big thanks to DaleStan for track down the crashing bug.
Darkvater
parents: 1509
diff changeset
   126
					_resolutions[j][0] = w;
75dc9c737892 (svn r2310) - Fix: Game would crash if you full-screened with the 'fullscreen' button than chose a resolution from the dropdown box that was no longer valid. Big thanks to DaleStan for track down the crashing bug.
Darkvater
parents: 1509
diff changeset
   127
					_resolutions[j][1] = h;
245
4f6f81046437 (svn r246) -Fix: 64bit machine warnings for sdl.c (Tron)
darkvater
parents: 222
diff changeset
   128
					if (++n == lengthof(_resolutions)) break;
128
28ebd80f6521 (svn r129) Fix: no more same multiple resolutions due to incorrect SDL implementation (Tron)
dominik
parents: 119
diff changeset
   129
				}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   130
			}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   131
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   132
		_num_resolutions = n;
1806
75dc9c737892 (svn r2310) - Fix: Game would crash if you full-screened with the 'fullscreen' button than chose a resolution from the dropdown box that was no longer valid. Big thanks to DaleStan for track down the crashing bug.
Darkvater
parents: 1509
diff changeset
   133
		SortResolutions(_num_resolutions);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   134
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   135
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   136
4501
16ca2f0e465e (svn r6286) Nobody cares for the return value of GetAvailableVideoMode(), therefore remove it
tron
parents: 4434
diff changeset
   137
static void GetAvailableVideoMode(int *w, int *h)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   138
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   139
	int i;
306
c44133836566 (svn r312) -Fix: [926105] ctrl + d bug. Longest outstanding bug has been fixed \o/ 2004-03-30 (Tron)
darkvater
parents: 302
diff changeset
   140
	int best;
c44133836566 (svn r312) -Fix: [926105] ctrl + d bug. Longest outstanding bug has been fixed \o/ 2004-03-30 (Tron)
darkvater
parents: 302
diff changeset
   141
	uint delta;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   142
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   143
	// all modes available?
4501
16ca2f0e465e (svn r6286) Nobody cares for the return value of GetAvailableVideoMode(), therefore remove it
tron
parents: 4434
diff changeset
   144
	if (_all_modes) return;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   145
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   146
	// is the wanted mode among the available modes?
306
c44133836566 (svn r312) -Fix: [926105] ctrl + d bug. Longest outstanding bug has been fixed \o/ 2004-03-30 (Tron)
darkvater
parents: 302
diff changeset
   147
	for (i = 0; i != _num_resolutions; i++) {
4501
16ca2f0e465e (svn r6286) Nobody cares for the return value of GetAvailableVideoMode(), therefore remove it
tron
parents: 4434
diff changeset
   148
		if (*w == _resolutions[i][0] && *h == _resolutions[i][1]) return;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   149
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   150
306
c44133836566 (svn r312) -Fix: [926105] ctrl + d bug. Longest outstanding bug has been fixed \o/ 2004-03-30 (Tron)
darkvater
parents: 302
diff changeset
   151
	// use the closest possible resolution
c44133836566 (svn r312) -Fix: [926105] ctrl + d bug. Longest outstanding bug has been fixed \o/ 2004-03-30 (Tron)
darkvater
parents: 302
diff changeset
   152
	best = 0;
c44133836566 (svn r312) -Fix: [926105] ctrl + d bug. Longest outstanding bug has been fixed \o/ 2004-03-30 (Tron)
darkvater
parents: 302
diff changeset
   153
	delta = abs((_resolutions[0][0] - *w) * (_resolutions[0][1] - *h));
c44133836566 (svn r312) -Fix: [926105] ctrl + d bug. Longest outstanding bug has been fixed \o/ 2004-03-30 (Tron)
darkvater
parents: 302
diff changeset
   154
	for (i = 1; i != _num_resolutions; ++i) {
c44133836566 (svn r312) -Fix: [926105] ctrl + d bug. Longest outstanding bug has been fixed \o/ 2004-03-30 (Tron)
darkvater
parents: 302
diff changeset
   155
		uint newdelta = abs((_resolutions[i][0] - *w) * (_resolutions[i][1] - *h));
c44133836566 (svn r312) -Fix: [926105] ctrl + d bug. Longest outstanding bug has been fixed \o/ 2004-03-30 (Tron)
darkvater
parents: 302
diff changeset
   156
		if (newdelta < delta) {
c44133836566 (svn r312) -Fix: [926105] ctrl + d bug. Longest outstanding bug has been fixed \o/ 2004-03-30 (Tron)
darkvater
parents: 302
diff changeset
   157
			best = i;
c44133836566 (svn r312) -Fix: [926105] ctrl + d bug. Longest outstanding bug has been fixed \o/ 2004-03-30 (Tron)
darkvater
parents: 302
diff changeset
   158
			delta = newdelta;
c44133836566 (svn r312) -Fix: [926105] ctrl + d bug. Longest outstanding bug has been fixed \o/ 2004-03-30 (Tron)
darkvater
parents: 302
diff changeset
   159
		}
c44133836566 (svn r312) -Fix: [926105] ctrl + d bug. Longest outstanding bug has been fixed \o/ 2004-03-30 (Tron)
darkvater
parents: 302
diff changeset
   160
	}
c44133836566 (svn r312) -Fix: [926105] ctrl + d bug. Longest outstanding bug has been fixed \o/ 2004-03-30 (Tron)
darkvater
parents: 302
diff changeset
   161
	*w = _resolutions[best][0];
c44133836566 (svn r312) -Fix: [926105] ctrl + d bug. Longest outstanding bug has been fixed \o/ 2004-03-30 (Tron)
darkvater
parents: 302
diff changeset
   162
	*h = _resolutions[best][1];
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   163
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   164
4256
877a6c0f4991 (svn r5872) - Feature: Add an icon to the SDL openttd executable.
Darkvater
parents: 4077
diff changeset
   165
#ifndef ICON_DIR
877a6c0f4991 (svn r5872) - Feature: Add an icon to the SDL openttd executable.
Darkvater
parents: 4077
diff changeset
   166
#define ICON_DIR "media"
877a6c0f4991 (svn r5872) - Feature: Add an icon to the SDL openttd executable.
Darkvater
parents: 4077
diff changeset
   167
#endif
877a6c0f4991 (svn r5872) - Feature: Add an icon to the SDL openttd executable.
Darkvater
parents: 4077
diff changeset
   168
877a6c0f4991 (svn r5872) - Feature: Add an icon to the SDL openttd executable.
Darkvater
parents: 4077
diff changeset
   169
#ifdef WIN32
877a6c0f4991 (svn r5872) - Feature: Add an icon to the SDL openttd executable.
Darkvater
parents: 4077
diff changeset
   170
/* Let's redefine the LoadBMP macro with because we are dynamically
877a6c0f4991 (svn r5872) - Feature: Add an icon to the SDL openttd executable.
Darkvater
parents: 4077
diff changeset
   171
 * loading SDL and need to 'SDL_CALL' all functions */
877a6c0f4991 (svn r5872) - Feature: Add an icon to the SDL openttd executable.
Darkvater
parents: 4077
diff changeset
   172
#undef SDL_LoadBMP
877a6c0f4991 (svn r5872) - Feature: Add an icon to the SDL openttd executable.
Darkvater
parents: 4077
diff changeset
   173
#define SDL_LoadBMP(file)	SDL_LoadBMP_RW(SDL_CALL SDL_RWFromFile(file, "rb"), 1)
877a6c0f4991 (svn r5872) - Feature: Add an icon to the SDL openttd executable.
Darkvater
parents: 4077
diff changeset
   174
#endif
877a6c0f4991 (svn r5872) - Feature: Add an icon to the SDL openttd executable.
Darkvater
parents: 4077
diff changeset
   175
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   176
static bool CreateMainSurface(int w, int h)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   177
{
4840
176bc2a66322 (svn r6766) -Codechange: Move _openttd_revision[] into the functions that use it instead of global
Darkvater
parents: 4548
diff changeset
   178
	extern const char _openttd_revision[];
4256
877a6c0f4991 (svn r5872) - Feature: Add an icon to the SDL openttd executable.
Darkvater
parents: 4077
diff changeset
   179
	SDL_Surface *newscreen, *icon;
1474
d83520edcda6 (svn r1978) - Fix: Plug some memleaks; thanks Valgrind
Darkvater
parents: 1428
diff changeset
   180
	char caption[50];
7374
54c06f06ecc8 (svn r10121) -Codechange: split renderer from rest of code; no longer any code directly accesses the video-buffer
truelight
parents: 7111
diff changeset
   181
	int bpp = BlitterFactoryBase::GetCurrentBlitter()->GetScreenDepth();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   182
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   183
	GetAvailableVideoMode(&w, &h);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   184
7374
54c06f06ecc8 (svn r10121) -Codechange: split renderer from rest of code; no longer any code directly accesses the video-buffer
truelight
parents: 7111
diff changeset
   185
	DEBUG(driver, 1, "SDL: using mode %dx%dx%d", w, h, bpp);
54c06f06ecc8 (svn r10121) -Codechange: split renderer from rest of code; no longer any code directly accesses the video-buffer
truelight
parents: 7111
diff changeset
   186
54c06f06ecc8 (svn r10121) -Codechange: split renderer from rest of code; no longer any code directly accesses the video-buffer
truelight
parents: 7111
diff changeset
   187
	if (bpp == 0) error("Can't use a blitter that blits 0 bpp for normal visuals");
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   188
4256
877a6c0f4991 (svn r5872) - Feature: Add an icon to the SDL openttd executable.
Darkvater
parents: 4077
diff changeset
   189
	/* Give the application an icon */
877a6c0f4991 (svn r5872) - Feature: Add an icon to the SDL openttd executable.
Darkvater
parents: 4077
diff changeset
   190
	icon = SDL_CALL SDL_LoadBMP(ICON_DIR PATHSEP "openttd.32.bmp");
877a6c0f4991 (svn r5872) - Feature: Add an icon to the SDL openttd executable.
Darkvater
parents: 4077
diff changeset
   191
	if (icon != NULL) {
877a6c0f4991 (svn r5872) - Feature: Add an icon to the SDL openttd executable.
Darkvater
parents: 4077
diff changeset
   192
		/* Get the colourkey, which will be magenta */
877a6c0f4991 (svn r5872) - Feature: Add an icon to the SDL openttd executable.
Darkvater
parents: 4077
diff changeset
   193
		uint32 rgbmap = SDL_CALL SDL_MapRGB(icon->format, 255, 0, 255);
4507
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   194
4256
877a6c0f4991 (svn r5872) - Feature: Add an icon to the SDL openttd executable.
Darkvater
parents: 4077
diff changeset
   195
		SDL_CALL SDL_SetColorKey(icon, SDL_SRCCOLORKEY, rgbmap);
877a6c0f4991 (svn r5872) - Feature: Add an icon to the SDL openttd executable.
Darkvater
parents: 4077
diff changeset
   196
		SDL_CALL SDL_WM_SetIcon(icon, NULL);
877a6c0f4991 (svn r5872) - Feature: Add an icon to the SDL openttd executable.
Darkvater
parents: 4077
diff changeset
   197
		SDL_CALL SDL_FreeSurface(icon);
877a6c0f4991 (svn r5872) - Feature: Add an icon to the SDL openttd executable.
Darkvater
parents: 4077
diff changeset
   198
	}
877a6c0f4991 (svn r5872) - Feature: Add an icon to the SDL openttd executable.
Darkvater
parents: 4077
diff changeset
   199
36
c1b3b884584e (svn r37) Do not change to HWSURFACE since it's not working!
darkvater
parents: 34
diff changeset
   200
	// DO NOT CHANGE TO HWSURFACE, IT DOES NOT WORK
7374
54c06f06ecc8 (svn r10121) -Codechange: split renderer from rest of code; no longer any code directly accesses the video-buffer
truelight
parents: 7111
diff changeset
   201
	newscreen = SDL_CALL SDL_SetVideoMode(w, h, bpp, SDL_SWSURFACE | SDL_HWPALETTE | (_fullscreen ? SDL_FULLSCREEN : SDL_RESIZABLE));
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   202
	if (newscreen == NULL)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   203
		return false;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   204
306
c44133836566 (svn r312) -Fix: [926105] ctrl + d bug. Longest outstanding bug has been fixed \o/ 2004-03-30 (Tron)
darkvater
parents: 302
diff changeset
   205
	_screen.width = newscreen->w;
c44133836566 (svn r312) -Fix: [926105] ctrl + d bug. Longest outstanding bug has been fixed \o/ 2004-03-30 (Tron)
darkvater
parents: 302
diff changeset
   206
	_screen.height = newscreen->h;
7374
54c06f06ecc8 (svn r10121) -Codechange: split renderer from rest of code; no longer any code directly accesses the video-buffer
truelight
parents: 7111
diff changeset
   207
	_screen.pitch = newscreen->pitch / (bpp / 8);
54c06f06ecc8 (svn r10121) -Codechange: split renderer from rest of code; no longer any code directly accesses the video-buffer
truelight
parents: 7111
diff changeset
   208
	_screen.renderer = RendererFactoryBase::SelectRenderer(BlitterFactoryBase::GetCurrentBlitter()->GetRenderer());
54c06f06ecc8 (svn r10121) -Codechange: split renderer from rest of code; no longer any code directly accesses the video-buffer
truelight
parents: 7111
diff changeset
   209
	if (_screen.renderer == NULL) error("Couldn't load the renderer '%s' the selected blitter depends on", BlitterFactoryBase::GetCurrentBlitter()->GetRenderer());
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   210
	_sdl_screen = newscreen;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   211
	InitPalette();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   212
1474
d83520edcda6 (svn r1978) - Fix: Plug some memleaks; thanks Valgrind
Darkvater
parents: 1428
diff changeset
   213
	snprintf(caption, sizeof(caption), "OpenTTD %s", _openttd_revision);
902
df8c96ee70d5 (svn r1388) Feature: [SDL] Show revision number in window title
dominik
parents: 810
diff changeset
   214
	SDL_CALL SDL_WM_SetCaption(caption, caption);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   215
	SDL_CALL SDL_ShowCursor(0);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   216
306
c44133836566 (svn r312) -Fix: [926105] ctrl + d bug. Longest outstanding bug has been fixed \o/ 2004-03-30 (Tron)
darkvater
parents: 302
diff changeset
   217
	GameSizeChanged();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   218
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   219
	return true;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   220
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   221
6574
e1d1a12faaf7 (svn r9051) -Codechange: typedef [enum|struct] Y {} X; -> [enum|struct] X {};
rubidium
parents: 6573
diff changeset
   222
struct VkMapping {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   223
	uint16 vk_from;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   224
	byte vk_count;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   225
	byte map_to;
6574
e1d1a12faaf7 (svn r9051) -Codechange: typedef [enum|struct] Y {} X; -> [enum|struct] X {};
rubidium
parents: 6573
diff changeset
   226
};
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   227
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   228
#define AS(x, z) {x, 0, z}
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   229
#define AM(x, y, z, w) {x, y - x, z}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   230
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   231
static const VkMapping _vk_mapping[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   232
	// Pageup stuff + up/down
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   233
	AM(SDLK_PAGEUP, SDLK_PAGEDOWN, WKC_PAGEUP, WKC_PAGEDOWN),
4434
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   234
	AS(SDLK_UP,     WKC_UP),
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   235
	AS(SDLK_DOWN,   WKC_DOWN),
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   236
	AS(SDLK_LEFT,   WKC_LEFT),
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   237
	AS(SDLK_RIGHT,  WKC_RIGHT),
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   238
4434
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   239
	AS(SDLK_HOME,   WKC_HOME),
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   240
	AS(SDLK_END,    WKC_END),
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   241
4434
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   242
	AS(SDLK_INSERT, WKC_INSERT),
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   243
	AS(SDLK_DELETE, WKC_DELETE),
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   244
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   245
	// Map letters & digits
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   246
	AM(SDLK_a, SDLK_z, 'A', 'Z'),
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   247
	AM(SDLK_0, SDLK_9, '0', '9'),
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   248
4434
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   249
	AS(SDLK_ESCAPE,    WKC_ESC),
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   250
	AS(SDLK_PAUSE,     WKC_PAUSE),
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   251
	AS(SDLK_BACKSPACE, WKC_BACKSPACE),
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   252
4434
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   253
	AS(SDLK_SPACE,     WKC_SPACE),
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   254
	AS(SDLK_RETURN,    WKC_RETURN),
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   255
	AS(SDLK_TAB,       WKC_TAB),
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   256
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   257
	// Function keys
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   258
	AM(SDLK_F1, SDLK_F12, WKC_F1, WKC_F12),
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   259
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   260
	// Numeric part.
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   261
	// What is the virtual keycode for numeric enter??
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   262
	AM(SDLK_KP0, SDLK_KP9, WKC_NUM_0, WKC_NUM_9),
4434
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   263
	AS(SDLK_KP_DIVIDE,   WKC_NUM_DIV),
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   264
	AS(SDLK_KP_MULTIPLY, WKC_NUM_MUL),
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   265
	AS(SDLK_KP_MINUS,    WKC_NUM_MINUS),
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   266
	AS(SDLK_KP_PLUS,     WKC_NUM_PLUS),
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   267
	AS(SDLK_KP_ENTER,    WKC_NUM_ENTER),
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4300
diff changeset
   268
	AS(SDLK_KP_PERIOD,   WKC_NUM_DECIMAL)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   269
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   270
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   271
static uint32 ConvertSdlKeyIntoMy(SDL_keysym *sym)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   272
{
2026
02dfa0aa2c2f (svn r2535) Tabs
tron
parents: 1991
diff changeset
   273
	const VkMapping *map;
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   274
	uint key = 0;
4507
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   275
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   276
	for (map = _vk_mapping; map != endof(_vk_mapping); ++map) {
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   277
		if ((uint)(sym->sym - map->vk_from) <= map->vk_count) {
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   278
			key = sym->sym - map->vk_from + map->map_to;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   279
			break;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   280
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   281
	}
129
df1a60bc0d70 (svn r130) Change: hotkey for console is Backquote (the key left to '1', regardless of keyboard layout
dominik
parents: 128
diff changeset
   282
df1a60bc0d70 (svn r130) Change: hotkey for console is Backquote (the key left to '1', regardless of keyboard layout
dominik
parents: 128
diff changeset
   283
	// check scancode for BACKQUOTE key, because we want the key left of "1", not anything else (on non-US keyboards)
810
7c51ba5a4368 (svn r1281) -Fix: the OS/2 is now finished. Fixes:
truelight
parents: 798
diff changeset
   284
#if defined(WIN32) || defined(__OS2__)
5099
fe33b77e1b66 (svn r7170) -Fix: [sdl] Non-working console toggle for some keyboard layouts. Do not OR the backquote
Darkvater
parents: 5090
diff changeset
   285
	if (sym->scancode == 41) key = WKC_BACKQUOTE;
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   286
#elif defined(__APPLE__)
5099
fe33b77e1b66 (svn r7170) -Fix: [sdl] Non-working console toggle for some keyboard layouts. Do not OR the backquote
Darkvater
parents: 5090
diff changeset
   287
	if (sym->scancode == 10) key = WKC_BACKQUOTE;
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   288
#elif defined(__MORPHOS__)
5099
fe33b77e1b66 (svn r7170) -Fix: [sdl] Non-working console toggle for some keyboard layouts. Do not OR the backquote
Darkvater
parents: 5090
diff changeset
   289
	if (sym->scancode == 0)  key = WKC_BACKQUOTE;  // yes, that key is code '0' under MorphOS :)
435
62863eb5148a (svn r637) Add keycode for the key to open the console on BeOS
tron
parents: 424
diff changeset
   290
#elif defined(__BEOS__)
5099
fe33b77e1b66 (svn r7170) -Fix: [sdl] Non-working console toggle for some keyboard layouts. Do not OR the backquote
Darkvater
parents: 5090
diff changeset
   291
	if (sym->scancode == 17) key = WKC_BACKQUOTE;
570
7506629cb749 (svn r981) SunOS: fixed the hotkey for console (Oskar)
bjarni
parents: 543
diff changeset
   292
#elif defined(__SVR4) && defined(__sun)
5099
fe33b77e1b66 (svn r7170) -Fix: [sdl] Non-working console toggle for some keyboard layouts. Do not OR the backquote
Darkvater
parents: 5090
diff changeset
   293
	if (sym->scancode == 60) key = WKC_BACKQUOTE;
fe33b77e1b66 (svn r7170) -Fix: [sdl] Non-working console toggle for some keyboard layouts. Do not OR the backquote
Darkvater
parents: 5090
diff changeset
   294
	if (sym->scancode == 49) key = WKC_BACKSPACE;
1810
bf33a29287e5 (svn r2314) - Feature: [ 1187490 ] Patches for building on IRIX (jgilje)
Darkvater
parents: 1808
diff changeset
   295
#elif defined(__sgi__)
5099
fe33b77e1b66 (svn r7170) -Fix: [sdl] Non-working console toggle for some keyboard layouts. Do not OR the backquote
Darkvater
parents: 5090
diff changeset
   296
	if (sym->scancode == 22) key = WKC_BACKQUOTE;
135
638fb31434eb (svn r136) -Feature/Fix: Console Rev #2 and WKC_BACKQUOTE this patch adds new features to the ingame console and inserts a new keymanagement for windows pcs... (sign_de)
darkvater
parents: 129
diff changeset
   297
#else
5099
fe33b77e1b66 (svn r7170) -Fix: [sdl] Non-working console toggle for some keyboard layouts. Do not OR the backquote
Darkvater
parents: 5090
diff changeset
   298
	if (sym->scancode == 49) key = WKC_BACKQUOTE;
135
638fb31434eb (svn r136) -Feature/Fix: Console Rev #2 and WKC_BACKQUOTE this patch adds new features to the ingame console and inserts a new keymanagement for windows pcs... (sign_de)
darkvater
parents: 129
diff changeset
   299
#endif
572
e0a2654c186f (svn r983) SunOS: fixed backspace key (Oskar)
bjarni
parents: 570
diff changeset
   300
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   301
	// META are the command keys on mac
4507
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   302
	if (sym->mod & KMOD_META)  key |= WKC_META;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   303
	if (sym->mod & KMOD_SHIFT) key |= WKC_SHIFT;
4507
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   304
	if (sym->mod & KMOD_CTRL)  key |= WKC_CTRL;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   305
	if (sym->mod & KMOD_ALT)   key |= WKC_ALT;
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   306
	// these two lines really help porting hotkey combos. Uncomment to use -- Bjarni
4507
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   307
#if 0
5568
75f13d7bfaed (svn r7565) -Codechange: Rework DEBUG functionality. Look for appropiate debugging levels to
Darkvater
parents: 5217
diff changeset
   308
	DEBUG(driver, 0, "Scancode character pressed %u", sym->scancode);
75f13d7bfaed (svn r7565) -Codechange: Rework DEBUG functionality. Look for appropiate debugging levels to
Darkvater
parents: 5217
diff changeset
   309
	DEBUG(driver, 0, "Unicode character pressed %u", sym->unicode);
4507
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   310
#endif
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   311
	return (key << 16) + sym->unicode;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   312
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   313
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6557
diff changeset
   314
static int PollEvent()
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   315
{
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   316
	SDL_Event ev;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   317
4507
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   318
	if (!SDL_CALL SDL_PollEvent(&ev)) return -2;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   319
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   320
	switch (ev.type) {
4507
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   321
		case SDL_MOUSEMOTION:
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   322
			if (_cursor.fix_at) {
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   323
				int dx = ev.motion.x - _cursor.pos.x;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   324
				int dy = ev.motion.y - _cursor.pos.y;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   325
				if (dx != 0 || dy != 0) {
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   326
					_cursor.delta.x += dx;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   327
					_cursor.delta.y += dy;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   328
					SDL_CALL SDL_WarpMouse(_cursor.pos.x, _cursor.pos.y);
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   329
				}
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   330
			} else {
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   331
				_cursor.delta.x = ev.motion.x - _cursor.pos.x;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   332
				_cursor.delta.y = ev.motion.y - _cursor.pos.y;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   333
				_cursor.pos.x = ev.motion.x;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   334
				_cursor.pos.y = ev.motion.y;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   335
				_cursor.dirty = true;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   336
			}
5090
8907f67c2c15 (svn r7157) -Fix [FS#221, SF1168820]: Some mouse events possibly lost under high CPU load, handle
Darkvater
parents: 5089
diff changeset
   337
			HandleMouseEvents();
4507
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   338
			break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   339
4507
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   340
		case SDL_MOUSEBUTTONDOWN:
4508
645368259e79 (svn r6293) -Codechange: Simply use KMOD_CTRL instead of KMOD_LCTRL | KMOD_RCTRL, same for KMOD_SHIFT
tron
parents: 4507
diff changeset
   341
			if (_rightclick_emulate && SDL_CALL SDL_GetModState() & KMOD_CTRL) {
4507
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   342
				ev.button.button = SDL_BUTTON_RIGHT;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   343
			}
3312
593789444b01 (svn r4075) - Feature: Undraw the mouse when it leaves the window and Draw it again when it enters. Added both for WIN32 and SDL. Since Win95 has troubles with TrackMouseEvent(), this function was just simply rewritten which was the easiest. Based on a patch by DmitryKo.
Darkvater
parents: 2952
diff changeset
   344
4507
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   345
			switch (ev.button.button) {
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   346
				case SDL_BUTTON_LEFT:
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   347
					_left_button_down = true;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   348
					break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   349
4507
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   350
				case SDL_BUTTON_RIGHT:
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   351
					_right_button_down = true;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   352
					_right_button_clicked = true;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   353
					break;
1806
75dc9c737892 (svn r2310) - Fix: Game would crash if you full-screened with the 'fullscreen' button than chose a resolution from the dropdown box that was no longer valid. Big thanks to DaleStan for track down the crashing bug.
Darkvater
parents: 1509
diff changeset
   354
4507
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   355
				case SDL_BUTTON_WHEELUP:   _cursor.wheel--; break;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   356
				case SDL_BUTTON_WHEELDOWN: _cursor.wheel++; break;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 179
diff changeset
   357
4507
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   358
				default: break;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   359
			}
5090
8907f67c2c15 (svn r7157) -Fix [FS#221, SF1168820]: Some mouse events possibly lost under high CPU load, handle
Darkvater
parents: 5089
diff changeset
   360
			HandleMouseEvents();
4507
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   361
			break;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   362
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   363
		case SDL_MOUSEBUTTONUP:
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   364
			if (_rightclick_emulate) {
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   365
				_right_button_down = false;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   366
				_left_button_down = false;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   367
				_left_button_clicked = false;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   368
			} else if (ev.button.button == SDL_BUTTON_LEFT) {
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   369
				_left_button_down = false;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   370
				_left_button_clicked = false;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   371
			} else if (ev.button.button == SDL_BUTTON_RIGHT) {
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   372
				_right_button_down = false;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   373
			}
5090
8907f67c2c15 (svn r7157) -Fix [FS#221, SF1168820]: Some mouse events possibly lost under high CPU load, handle
Darkvater
parents: 5089
diff changeset
   374
			HandleMouseEvents();
4507
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   375
			break;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   376
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   377
		case SDL_ACTIVEEVENT:
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   378
			if (!(ev.active.state & SDL_APPMOUSEFOCUS)) break;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   379
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   380
			if (ev.active.gain) { // mouse entered the window, enable cursor
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   381
				_cursor.in_window = true;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   382
			} else {
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   383
				UndrawMouseCursor(); // mouse left the window, undraw cursor
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   384
				_cursor.in_window = false;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   385
			}
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   386
			break;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   387
4548
23b56455df33 (svn r6380) -Codechange: unify all ways to quit OTTD.
rubidium
parents: 4536
diff changeset
   388
		case SDL_QUIT: HandleExitGameRequest(); break;
4507
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   389
4548
23b56455df33 (svn r6380) -Codechange: unify all ways to quit OTTD.
rubidium
parents: 4536
diff changeset
   390
		case SDL_KEYDOWN: /* Toggle full-screen on ALT + ENTER/F */
4507
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   391
			if ((ev.key.keysym.mod & (KMOD_ALT | KMOD_META)) &&
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   392
					(ev.key.keysym.sym == SDLK_RETURN || ev.key.keysym.sym == SDLK_f)) {
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   393
				ToggleFullScreen(!_fullscreen);
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   394
			} else {
5086
99e0b202b9fb (svn r7153) -Fix [FS#279]: Some keyboard events possibly lost under high CPU load, handle
Darkvater
parents: 5015
diff changeset
   395
				HandleKeypress(ConvertSdlKeyIntoMy(&ev.key.keysym));
4507
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   396
			}
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   397
			break;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   398
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   399
		case SDL_VIDEORESIZE: {
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   400
			int w = clamp(ev.resize.w, 64, MAX_SCREEN_WIDTH);
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   401
			int h = clamp(ev.resize.h, 64, MAX_SCREEN_HEIGHT);
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   402
			ChangeResInGame(w, h);
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   403
			break;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   404
		}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   405
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   406
	return -1;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   407
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   408
1301
313804601383 (svn r1805) Teach the driver layer a few things about const correctness
tron
parents: 1299
diff changeset
   409
static const char *SdlVideoStart(const char * const *parm)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   410
{
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   411
	char buf[30];
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   412
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   413
	const char *s = SdlOpen(SDL_INIT_VIDEO);
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   414
	if (s != NULL) return s;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   415
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   416
	SDL_CALL SDL_VideoDriverName(buf, 30);
5568
75f13d7bfaed (svn r7565) -Codechange: Rework DEBUG functionality. Look for appropiate debugging levels to
Darkvater
parents: 5217
diff changeset
   417
	DEBUG(driver, 1, "SDL: using driver '%s'", buf);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   418
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   419
	GetVideoModes();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   420
	CreateMainSurface(_cur_resolution[0], _cur_resolution[1]);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   421
	MarkWholeScreenDirty();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   422
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   423
	SDL_CALL SDL_EnableKeyRepeat(SDL_DEFAULT_REPEAT_DELAY, SDL_DEFAULT_REPEAT_INTERVAL);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   424
	SDL_CALL SDL_EnableUNICODE(1);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   425
	return NULL;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   426
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   427
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6557
diff changeset
   428
static void SdlVideoStop()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   429
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   430
	SdlClose(SDL_INIT_VIDEO);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   431
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   432
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6557
diff changeset
   433
static void SdlVideoMainLoop()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   434
{
5832
28aa8ad3bb04 (svn r8028) -Fix: overflow of ticks was not handled properly, possibly resulting a non-reacting gameserver/gameclient.
rubidium
parents: 5726
diff changeset
   435
	uint32 cur_ticks = SDL_CALL SDL_GetTicks();
28aa8ad3bb04 (svn r8028) -Fix: overflow of ticks was not handled properly, possibly resulting a non-reacting gameserver/gameclient.
rubidium
parents: 5726
diff changeset
   436
	uint32 next_tick = cur_ticks + 30;
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   437
	uint32 pal_tick = 0;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   438
	uint32 mod;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   439
	int numkeys;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   440
	Uint8 *keys;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   441
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   442
	for (;;) {
5832
28aa8ad3bb04 (svn r8028) -Fix: overflow of ticks was not handled properly, possibly resulting a non-reacting gameserver/gameclient.
rubidium
parents: 5726
diff changeset
   443
		uint32 prev_cur_ticks = cur_ticks; // to check for wrapping
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   444
		InteractiveRandom(); // randomness
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 179
diff changeset
   445
5089
9d290a04d79c (svn r7156) -Codechange: Remove obsolete variable, localize global variable, use GB and change logic
Darkvater
parents: 5086
diff changeset
   446
		while (PollEvent() == -1) {}
2228
7014d372374f (svn r2748) Remove unused cruft from the main loop
tron
parents: 2226
diff changeset
   447
		if (_exit_game) return;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   448
18
7428dd7c5732 (svn r19) SDL performance fix fo palette animation and mouse jumping (jirif)
dominik
parents: 0
diff changeset
   449
		mod = SDL_CALL SDL_GetModState();
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 179
diff changeset
   450
		keys = SDL_CALL SDL_GetKeyState(&numkeys);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   451
#if defined(_DEBUG)
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   452
		if (_shift_pressed)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   453
#else
5712
1cf8721b1882 (svn r7727) -Fix (FS#498): sometimes ALT-TAB could trigger the fast forward.
rubidium
parents: 5568
diff changeset
   454
		/* Speedup when pressing tab, except when using ALT+TAB
1cf8721b1882 (svn r7727) -Fix (FS#498): sometimes ALT-TAB could trigger the fast forward.
rubidium
parents: 5568
diff changeset
   455
		 * to switch to another application */
1cf8721b1882 (svn r7727) -Fix (FS#498): sometimes ALT-TAB could trigger the fast forward.
rubidium
parents: 5568
diff changeset
   456
		if (keys[SDLK_TAB] && (mod & KMOD_ALT) == 0)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   457
#endif
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   458
		{
4536
f13408cba18f (svn r6365) -Cleanup: remove IsGeneratingWorld calls that are either not called or have no effect.
rubidium
parents: 4508
diff changeset
   459
			if (!_networking && _game_mode != GM_MENU) _fast_forward |= 2;
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   460
		} else if (_fast_forward & 2) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   461
			_fast_forward = 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   462
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   463
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   464
		cur_ticks = SDL_CALL SDL_GetTicks();
6557
8381016f71f3 (svn r9034) -Codechange: renamed _pause to _pause_game, as some targets already have
truelight
parents: 6314
diff changeset
   465
		if (cur_ticks >= next_tick || (_fast_forward && !_pause_game) || cur_ticks < prev_cur_ticks) {
5832
28aa8ad3bb04 (svn r8028) -Fix: overflow of ticks was not handled properly, possibly resulting a non-reacting gameserver/gameclient.
rubidium
parents: 5726
diff changeset
   466
			next_tick = cur_ticks + 30;
18
7428dd7c5732 (svn r19) SDL performance fix fo palette animation and mouse jumping (jirif)
dominik
parents: 0
diff changeset
   467
4508
645368259e79 (svn r6293) -Codechange: Simply use KMOD_CTRL instead of KMOD_LCTRL | KMOD_RCTRL, same for KMOD_SHIFT
tron
parents: 4507
diff changeset
   468
			_ctrl_pressed  = !!(mod & KMOD_CTRL);
645368259e79 (svn r6293) -Codechange: Simply use KMOD_CTRL instead of KMOD_LCTRL | KMOD_RCTRL, same for KMOD_SHIFT
tron
parents: 4507
diff changeset
   469
			_shift_pressed = !!(mod & KMOD_SHIFT);
2664
fcefd29dd9d2 (svn r3206) Wrap all instances of _dbg_screen_rect in #ifdef _DEBUG
tron
parents: 2228
diff changeset
   470
#ifdef _DEBUG
302
d028f2803157 (svn r308) Added debug hotkey 'caps lock' for sdl builds as well
dominik
parents: 291
diff changeset
   471
			_dbg_screen_rect = !!(mod & KMOD_CAPS);
2664
fcefd29dd9d2 (svn r3206) Wrap all instances of _dbg_screen_rect in #ifdef _DEBUG
tron
parents: 2228
diff changeset
   472
#endif
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 179
diff changeset
   473
18
7428dd7c5732 (svn r19) SDL performance fix fo palette animation and mouse jumping (jirif)
dominik
parents: 0
diff changeset
   474
			// determine which directional keys are down
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 179
diff changeset
   475
			_dirkeys =
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   476
				(keys[SDLK_LEFT]  ? 1 : 0) |
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   477
				(keys[SDLK_UP]    ? 2 : 0) |
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   478
				(keys[SDLK_RIGHT] ? 4 : 0) |
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   479
				(keys[SDLK_DOWN]  ? 8 : 0);
18
7428dd7c5732 (svn r19) SDL performance fix fo palette animation and mouse jumping (jirif)
dominik
parents: 0
diff changeset
   480
			GameLoop();
7428dd7c5732 (svn r19) SDL performance fix fo palette animation and mouse jumping (jirif)
dominik
parents: 0
diff changeset
   481
7374
54c06f06ecc8 (svn r10121) -Codechange: split renderer from rest of code; no longer any code directly accesses the video-buffer
truelight
parents: 7111
diff changeset
   482
			_screen.dst_ptr = _sdl_screen->pixels;
18
7428dd7c5732 (svn r19) SDL performance fix fo palette animation and mouse jumping (jirif)
dominik
parents: 0
diff changeset
   483
			UpdateWindows();
423
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   484
			if (++pal_tick > 4) {
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   485
				CheckPaletteAnim();
9e28d68fa333 (svn r621) Merge r450 to trunk:
tron
parents: 410
diff changeset
   486
				pal_tick = 1;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   487
			}
2026
02dfa0aa2c2f (svn r2535) Tabs
tron
parents: 1991
diff changeset
   488
			DrawSurfaceToScreen();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   489
		} else {
18
7428dd7c5732 (svn r19) SDL performance fix fo palette animation and mouse jumping (jirif)
dominik
parents: 0
diff changeset
   490
			SDL_CALL SDL_Delay(1);
7374
54c06f06ecc8 (svn r10121) -Codechange: split renderer from rest of code; no longer any code directly accesses the video-buffer
truelight
parents: 7111
diff changeset
   491
			_screen.dst_ptr = _sdl_screen->pixels;
543
e3b43338096b (svn r942) -Merged branch/network back into the trunk
truelight
parents: 454
diff changeset
   492
			DrawTextMessage();
18
7428dd7c5732 (svn r19) SDL performance fix fo palette animation and mouse jumping (jirif)
dominik
parents: 0
diff changeset
   493
			DrawMouseCursor();
7428dd7c5732 (svn r19) SDL performance fix fo palette animation and mouse jumping (jirif)
dominik
parents: 0
diff changeset
   494
			DrawSurfaceToScreen();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   495
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   496
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   497
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   498
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   499
static bool SdlVideoChangeRes(int w, int h)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   500
{
2169
f6d2ec3ecd5b (svn r2683) Remove redundant function call propagate return value
tron
parents: 2163
diff changeset
   501
	return CreateMainSurface(w, h);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   502
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   503
1829
0b6de3b4458a (svn r2334) - Fix (regression): moved togglefullscreen into the video-driver, now windows works, dedicated works and sdl works. Also reverted the change to the makefile.
Darkvater
parents: 1825
diff changeset
   504
static void SdlVideoFullScreen(bool full_screen)
1806
75dc9c737892 (svn r2310) - Fix: Game would crash if you full-screened with the 'fullscreen' button than chose a resolution from the dropdown box that was no longer valid. Big thanks to DaleStan for track down the crashing bug.
Darkvater
parents: 1509
diff changeset
   505
{
1808
859858f770c0 (svn r2312) - Fix (regression): changing to/from fullscreen got broken with SDL.
Darkvater
parents: 1807
diff changeset
   506
	_fullscreen = full_screen;
1806
75dc9c737892 (svn r2310) - Fix: Game would crash if you full-screened with the 'fullscreen' button than chose a resolution from the dropdown box that was no longer valid. Big thanks to DaleStan for track down the crashing bug.
Darkvater
parents: 1509
diff changeset
   507
	GetVideoModes(); // get the list of available video modes
5217
21c23507c002 (svn r7332) -Fix: segmentation fault, discovered by ln-, in the SDL video driver when one goes to fullscreen and there are no suitable resolutions.
rubidium
parents: 5173
diff changeset
   508
	if (_num_resolutions == 0 || !_video_driver->change_resolution(_cur_resolution[0], _cur_resolution[1])) {
4507
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   509
		// switching resolution failed, put back full_screen to original status
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   510
		_fullscreen ^= true;
7a53f49bfec4 (svn r6292) -Cleanup: Indentation, bracing, etc.
tron
parents: 4501
diff changeset
   511
	}
1806
75dc9c737892 (svn r2310) - Fix: Game would crash if you full-screened with the 'fullscreen' button than chose a resolution from the dropdown box that was no longer valid. Big thanks to DaleStan for track down the crashing bug.
Darkvater
parents: 1509
diff changeset
   512
}
75dc9c737892 (svn r2310) - Fix: Game would crash if you full-screened with the 'fullscreen' button than chose a resolution from the dropdown box that was no longer valid. Big thanks to DaleStan for track down the crashing bug.
Darkvater
parents: 1509
diff changeset
   513
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   514
const HalVideoDriver _sdl_video_driver = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   515
	SdlVideoStart,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   516
	SdlVideoStop,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   517
	SdlVideoMakeDirty,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   518
	SdlVideoMainLoop,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   519
	SdlVideoChangeRes,
1829
0b6de3b4458a (svn r2334) - Fix (regression): moved togglefullscreen into the video-driver, now windows works, dedicated works and sdl works. Also reverted the change to the makefile.
Darkvater
parents: 1825
diff changeset
   520
	SdlVideoFullScreen,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   521
};
2189
d240b9097139 (svn r2704) Remove . from include path again, too much trouble. Also add some #ifdefs and #includes for the Windows build
tron
parents: 2186
diff changeset
   522
6314
f738bcf05ad6 (svn r8691) -Cleanup: Some proper #endif comments for sound/music/video files, and a little elimination of magic numbers in Win32SoundStart
Darkvater
parents: 5838
diff changeset
   523
#endif /* WITH_SDL */