src/intro_gui.cpp
author peter1138
Tue, 17 Jun 2008 07:05:17 +0000
changeset 10990 787c5664f30b
parent 10707 81a4013a7680
permissions -rw-r--r--
(svn r13544) -Codechange: Add support for NewGRF varaction2 variable 5F.
2186
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 2163
diff changeset
     1
/* $Id$ */
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 2163
diff changeset
     2
10429
1b99254f9607 (svn r12971) -Documentation: add @file in files that missed them and add something more than whitespace as description of files that don't have a description.
rubidium
parents: 10230
diff changeset
     3
/** @file intro_gui.cpp The main menu GUI. */
6527
f584ab6d87f8 (svn r8987) -Cleanup: doxygen changes. Again. Mostly (still) @files missing tags and (more than just) a few comments style.
belugas
parents: 6150
diff changeset
     4
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
     5
#include "stdafx.h"
1891
92a3b0aa0946 (svn r2397) - CodeChange: rename all "ttd" files to "openttd" files.
Darkvater
parents: 1796
diff changeset
     6
#include "openttd.h"
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
     7
#include "gui.h"
8603
88c5ce6a5215 (svn r11668) -Codechange: more refactoring aimed at reducing compile time and making it more logic where function definitions can be found.
rubidium
parents: 8602
diff changeset
     8
#include "window_gui.h"
88c5ce6a5215 (svn r11668) -Codechange: more refactoring aimed at reducing compile time and making it more logic where function definitions can be found.
rubidium
parents: 8602
diff changeset
     9
#include "textbuf_gui.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: 5682
diff changeset
    10
#include "network/network.h"
2159
3b634157c3b2 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 1891
diff changeset
    11
#include "variables.h"
4300
687a17c9c557 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4171
diff changeset
    12
#include "heightmap.h"
687a17c9c557 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4171
diff changeset
    13
#include "genworld.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: 5682
diff changeset
    14
#include "network/network_gui.h"
5237
c14c97d7030a (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents: 4938
diff changeset
    15
#include "newgrf.h"
8610
17cc343a23dd (svn r11675) -Codechange: split the string types from the string functions.
rubidium
parents: 8603
diff changeset
    16
#include "strings_func.h"
8627
448ebf3a8291 (svn r11692) -Codechange: move some functions from 'functions.h' to a more logical place and remove about 50% of the includes of 'functions.h'
rubidium
parents: 8617
diff changeset
    17
#include "window_func.h"
8645
83500ad80b08 (svn r11711) -Codechange: Name the Save Load Dialog Mode enum
belugas
parents: 8627
diff changeset
    18
#include "fios.h"
8720
4e60c30e2006 (svn r11787) -Codechange: more header rewrites. This time related to viewport.h.
rubidium
parents: 8704
diff changeset
    19
#include "gfx_func.h"
8766
c86cfa3a7580 (svn r11834) -Codechange: only include settings_type.h if needed.
rubidium
parents: 8760
diff changeset
    20
#include "settings_type.h"
10435
0e2b98df9707 (svn r12977) -Codechange: remove quite some redundant (duplicate) function declarations.
rubidium
parents: 10429
diff changeset
    21
#include "functions.h"
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    22
8760
ce0891c412ce (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8750
diff changeset
    23
#include "table/strings.h"
ce0891c412ce (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8750
diff changeset
    24
#include "table/sprites.h"
ce0891c412ce (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8750
diff changeset
    25
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    26
static const Widget _select_game_widgets[] = {
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4308
diff changeset
    27
{    WWT_CAPTION, RESIZE_NONE, 13,   0, 335,   0,  13, STR_0307_OPENTTD,         STR_NULL},
5237
c14c97d7030a (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents: 4938
diff changeset
    28
{      WWT_PANEL, RESIZE_NONE, 13,   0, 335,  14, 194, 0x0,                      STR_NULL},
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4308
diff changeset
    29
{ WWT_PUSHTXTBTN, RESIZE_NONE, 12,  10, 167,  22,  33, STR_0140_NEW_GAME,        STR_02FB_START_A_NEW_GAME},
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4308
diff changeset
    30
{ WWT_PUSHTXTBTN, RESIZE_NONE, 12, 168, 325,  22,  33, STR_0141_LOAD_GAME,       STR_02FC_LOAD_A_SAVED_GAME},
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4308
diff changeset
    31
{ WWT_PUSHTXTBTN, RESIZE_NONE, 12,  10, 167,  40,  51, STR_029A_PLAY_SCENARIO,   STR_0303_START_A_NEW_GAME_USING},
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4308
diff changeset
    32
{ WWT_PUSHTXTBTN, RESIZE_NONE, 12, 168, 325,  40,  51, STR_PLAY_HEIGHTMAP,       STR_PLAY_HEIGHTMAP_HINT},
6145
d34703513ed0 (svn r8512) -Codechange: From the intro window enter the scenario editor. From the scenario editor dialog, remove the 'load heightmap' option and put that with the other options like 'load scenario', 'save scenario', etc. Play a little bit with positioning of elements inside the scenario editor dialog so it looks better.
Darkvater
parents: 6144
diff changeset
    33
{ WWT_PUSHTXTBTN, RESIZE_NONE, 12,  10, 167,  58,  69, STR_SCENARIO_EDITOR,      STR_02FE_CREATE_A_CUSTOMIZED_GAME},
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4308
diff changeset
    34
{ WWT_PUSHTXTBTN, RESIZE_NONE, 12, 168, 325,  58,  69, STR_MULTIPLAYER,          STR_0300_SELECT_MULTIPLAYER_GAME},
1711
786fc0df2b6e (svn r2215) - Feature: Add a temporary mapsize selector to the intro gui. This is sufficient until the real window is designed & coded.
Darkvater
parents: 1625
diff changeset
    35
4938
074f734a91ca (svn r6925) -Codechange: Be more strict with widget distinctions. WWT_PANEL is only plain panel,
Darkvater
parents: 4937
diff changeset
    36
{   WWT_IMGBTN_2, RESIZE_NONE, 12,  10,  86,  77, 131, SPR_SELECT_TEMPERATE,     STR_030E_SELECT_TEMPERATE_LANDSCAPE},
074f734a91ca (svn r6925) -Codechange: Be more strict with widget distinctions. WWT_PANEL is only plain panel,
Darkvater
parents: 4937
diff changeset
    37
{   WWT_IMGBTN_2, RESIZE_NONE, 12,  90, 166,  77, 131, SPR_SELECT_SUB_ARCTIC,    STR_030F_SELECT_SUB_ARCTIC_LANDSCAPE},
074f734a91ca (svn r6925) -Codechange: Be more strict with widget distinctions. WWT_PANEL is only plain panel,
Darkvater
parents: 4937
diff changeset
    38
{   WWT_IMGBTN_2, RESIZE_NONE, 12, 170, 246,  77, 131, SPR_SELECT_SUB_TROPICAL,  STR_0310_SELECT_SUB_TROPICAL_LANDSCAPE},
074f734a91ca (svn r6925) -Codechange: Be more strict with widget distinctions. WWT_PANEL is only plain panel,
Darkvater
parents: 4937
diff changeset
    39
{   WWT_IMGBTN_2, RESIZE_NONE, 12, 250, 326,  77, 131, SPR_SELECT_TOYLAND,       STR_0311_SELECT_TOYLAND_LANDSCAPE},
1711
786fc0df2b6e (svn r2215) - Feature: Add a temporary mapsize selector to the intro gui. This is sufficient until the real window is designed & coded.
Darkvater
parents: 1625
diff changeset
    40
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4308
diff changeset
    41
{ WWT_PUSHTXTBTN, RESIZE_NONE, 12,  10, 167, 139, 150, STR_0148_GAME_OPTIONS,    STR_0301_DISPLAY_GAME_OPTIONS},
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4308
diff changeset
    42
{ WWT_PUSHTXTBTN, RESIZE_NONE, 12, 168, 325, 139, 150, STR_01FE_DIFFICULTY,      STR_0302_DISPLAY_DIFFICULTY_OPTIONS},
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4308
diff changeset
    43
{ WWT_PUSHTXTBTN, RESIZE_NONE, 12,  10, 167, 157, 168, STR_CONFIG_PATCHES,       STR_CONFIG_PATCHES_TIP},
5237
c14c97d7030a (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents: 4938
diff changeset
    44
{ WWT_PUSHTXTBTN, RESIZE_NONE, 12, 168, 325, 157, 168, STR_NEWGRF_SETTINGS_BUTTON, STR_NULL},
c14c97d7030a (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents: 4938
diff changeset
    45
5315
ce659994e392 (svn r7471) -Codechange: Centre the 'quit' button on the main menu.
Darkvater
parents: 5237
diff changeset
    46
{ WWT_PUSHTXTBTN, RESIZE_NONE, 12, 104, 231, 175, 186, STR_0304_QUIT,            STR_0305_QUIT_OPENTTD},
4938
074f734a91ca (svn r6925) -Codechange: Be more strict with widget distinctions. WWT_PANEL is only plain panel,
Darkvater
parents: 4937
diff changeset
    47
{   WIDGETS_END},
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    48
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    49
1794
44f9deff97ed (svn r2298) - CodeChange: removed CmdAbuses: CmdSetTownNameType(), CmdStartNewGame(), CmdCreateScenario(), CmdSetNewLandscapeType() and CmdGenRandomNewGame().
Darkvater
parents: 1728
diff changeset
    50
static inline void SetNewLandscapeType(byte landscape)
44f9deff97ed (svn r2298) - CodeChange: removed CmdAbuses: CmdSetTownNameType(), CmdStartNewGame(), CmdCreateScenario(), CmdSetNewLandscapeType() and CmdGenRandomNewGame().
Darkvater
parents: 1728
diff changeset
    51
{
10707
81a4013a7680 (svn r13255) -Codechange: move _opt to _settings.
rubidium
parents: 10641
diff changeset
    52
	_settings_newgame.game_creation.landscape = landscape;
1794
44f9deff97ed (svn r2298) - CodeChange: removed CmdAbuses: CmdSetTownNameType(), CmdStartNewGame(), CmdCreateScenario(), CmdSetNewLandscapeType() and CmdGenRandomNewGame().
Darkvater
parents: 1728
diff changeset
    53
	InvalidateWindowClasses(WC_SELECT_GAME);
44f9deff97ed (svn r2298) - CodeChange: removed CmdAbuses: CmdSetTownNameType(), CmdStartNewGame(), CmdCreateScenario(), CmdSetNewLandscapeType() and CmdGenRandomNewGame().
Darkvater
parents: 1728
diff changeset
    54
}
44f9deff97ed (svn r2298) - CodeChange: removed CmdAbuses: CmdSetTownNameType(), CmdStartNewGame(), CmdCreateScenario(), CmdSetNewLandscapeType() and CmdGenRandomNewGame().
Darkvater
parents: 1728
diff changeset
    55
10604
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    56
struct SelectGameWindow : public Window {
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    57
private:
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    58
	enum SelectGameIntroWidgets {
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    59
		SGI_GENERATE_GAME = 2,
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    60
		SGI_LOAD_GAME,
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    61
		SGI_PLAY_SCENARIO,
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    62
		SGI_PLAY_HEIGHTMAP,
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    63
		SGI_EDIT_SCENARIO,
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    64
		SGI_PLAY_NETWORK,
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    65
		SGI_TEMPERATE_LANDSCAPE,
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    66
		SGI_ARCTIC_LANDSCAPE,
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    67
		SGI_TROPIC_LANDSCAPE,
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    68
		SGI_TOYLAND_LANDSCAPE,
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    69
		SGI_OPTIONS,
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    70
		SGI_DIFFICULTIES,
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    71
		SGI_PATCHES_OPTIONS,
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    72
		SGI_GRF_SETTINGS,
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    73
		SGI_EXIT,
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    74
	};
8861
c6655b4f7d44 (svn r11931) -Codechange: enumify the widgets numbers. Give breathing room on the case switches too...
belugas
parents: 8860
diff changeset
    75
10604
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    76
public:
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    77
	SelectGameWindow(const WindowDesc *desc) : Window(desc)
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    78
	{
10707
81a4013a7680 (svn r13255) -Codechange: move _opt to _settings.
rubidium
parents: 10641
diff changeset
    79
		this->LowerWidget(_settings_newgame.game_creation.landscape + SGI_TEMPERATE_LANDSCAPE);
10604
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    80
		this->FindWindowPlacementAndResize(desc);
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    81
	}
4719
413b21513ef7 (svn r6631) -Codechange: Use accessors for click_state.
belugas
parents: 4634
diff changeset
    82
10604
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    83
	virtual void OnPaint()
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    84
	{
10707
81a4013a7680 (svn r13255) -Codechange: move _opt to _settings.
rubidium
parents: 10641
diff changeset
    85
		this->SetWidgetLoweredState(SGI_TEMPERATE_LANDSCAPE, _settings_newgame.game_creation.landscape == LT_TEMPERATE);
81a4013a7680 (svn r13255) -Codechange: move _opt to _settings.
rubidium
parents: 10641
diff changeset
    86
		this->SetWidgetLoweredState(SGI_ARCTIC_LANDSCAPE, _settings_newgame.game_creation.landscape == LT_ARCTIC);
81a4013a7680 (svn r13255) -Codechange: move _opt to _settings.
rubidium
parents: 10641
diff changeset
    87
		this->SetWidgetLoweredState(SGI_TROPIC_LANDSCAPE, _settings_newgame.game_creation.landscape == LT_TROPIC);
81a4013a7680 (svn r13255) -Codechange: move _opt to _settings.
rubidium
parents: 10641
diff changeset
    88
		this->SetWidgetLoweredState(SGI_TOYLAND_LANDSCAPE, _settings_newgame.game_creation.landscape == LT_TOYLAND);
81a4013a7680 (svn r13255) -Codechange: move _opt to _settings.
rubidium
parents: 10641
diff changeset
    89
		SetDParam(0, STR_6801_EASY + _settings_newgame.difficulty.diff_level);
10604
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    90
		this->DrawWidgets();
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    91
	}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    92
10604
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    93
	virtual void OnClick(Point pt, int widget)
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    94
	{
7394
75d35728b8b1 (svn r10145) -Fix: make compiling with networking disabled (again) possible.
rubidium
parents: 7051
diff changeset
    95
#ifdef ENABLE_NETWORK
10604
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    96
		/* Do not create a network server when you (just) have closed one of the game
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    97
		 * creation/load windows for the network server. */
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
    98
		if (IsInsideMM(widget, SGI_GENERATE_GAME, SGI_EDIT_SCENARIO + 1)) _is_network_server = false;
7394
75d35728b8b1 (svn r10145) -Fix: make compiling with networking disabled (again) possible.
rubidium
parents: 7051
diff changeset
    99
#endif /* ENABLE_NETWORK */
7051
d0e0ab1460f0 (svn r9757) -Fix [FS#1244842]: when you have closed the "Load game"/"New game" windows accessible from the "New Server" window, any creation of new game/loading from the intro menu should not start a server.
rubidium
parents: 6683
diff changeset
   100
10604
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
   101
		switch (widget) {
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
   102
			case SGI_GENERATE_GAME:  ShowGenerateLandscape(); break;
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
   103
			case SGI_LOAD_GAME:      ShowSaveLoadDialog(SLD_LOAD_GAME); break;
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
   104
			case SGI_PLAY_SCENARIO:  ShowSaveLoadDialog(SLD_LOAD_SCENARIO); break;
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
   105
			case SGI_PLAY_HEIGHTMAP: ShowSaveLoadDialog(SLD_LOAD_HEIGHTMAP); break;
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
   106
			case SGI_EDIT_SCENARIO:  StartScenarioEditor(); break;
8861
c6655b4f7d44 (svn r11931) -Codechange: enumify the widgets numbers. Give breathing room on the case switches too...
belugas
parents: 8860
diff changeset
   107
10604
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
   108
			case SGI_PLAY_NETWORK:
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
   109
				if (!_network_available) {
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
   110
					ShowErrorMessage(INVALID_STRING_ID, STR_NETWORK_ERR_NOTAVAILABLE, 0, 0);
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
   111
				} else {
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
   112
					ShowNetworkGameWindow();
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
   113
				}
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
   114
				break;
8861
c6655b4f7d44 (svn r11931) -Codechange: enumify the widgets numbers. Give breathing room on the case switches too...
belugas
parents: 8860
diff changeset
   115
10604
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
   116
			case SGI_TEMPERATE_LANDSCAPE: case SGI_ARCTIC_LANDSCAPE:
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
   117
			case SGI_TROPIC_LANDSCAPE: case SGI_TOYLAND_LANDSCAPE:
10707
81a4013a7680 (svn r13255) -Codechange: move _opt to _settings.
rubidium
parents: 10641
diff changeset
   118
				this->RaiseWidget(_settings_newgame.game_creation.landscape + SGI_TEMPERATE_LANDSCAPE);
10604
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
   119
				SetNewLandscapeType(widget - SGI_TEMPERATE_LANDSCAPE);
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
   120
				break;
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
   121
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
   122
			case SGI_OPTIONS:         ShowGameOptions(); break;
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
   123
			case SGI_DIFFICULTIES:    ShowGameDifficulty(); break;
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
   124
			case SGI_PATCHES_OPTIONS: ShowPatchesSelection(); break;
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
   125
			case SGI_GRF_SETTINGS:    ShowNewGRFSettings(true, true, false, &_grfconfig_newgame); break;
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
   126
			case SGI_EXIT:            HandleExitGameRequest(); break;
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
   127
		}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   128
	}
10604
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
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
static const WindowDesc _select_game_desc = {
7837
65d7362153a6 (svn r10704) -Codechange: provide an infrastructure to have resizable windows that are smaller than the default window size.
rubidium
parents: 7762
diff changeset
   132
	WDP_CENTER, WDP_CENTER, 336, 195, 336, 195,
6144
5a0ffbf27ced (svn r8511) -Codechange: make WindowClass an enumerated value.
rubidium
parents: 5835
diff changeset
   133
	WC_SELECT_GAME, WC_NONE,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   134
	WDF_STD_TOOLTIPS | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   135
	_select_game_widgets,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   136
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   137
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6547
diff changeset
   138
void ShowSelectGameWindow()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   139
{
10604
202ceb00546b (svn r13148) -Codechange: make a class of the SelectGameWindow.
glx
parents: 10595
diff changeset
   140
	new SelectGameWindow(&_select_game_desc);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   141
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   142
5670
c6dcca763ebb (svn r7622) -Codechange: Convert some more windows to ShowQuery. This includes the depot
Darkvater
parents: 5352
diff changeset
   143
static void AskExitGameCallback(Window *w, bool confirmed)
c6dcca763ebb (svn r7622) -Codechange: Convert some more windows to ShowQuery. This includes the depot
Darkvater
parents: 5352
diff changeset
   144
{
c6dcca763ebb (svn r7622) -Codechange: Convert some more windows to ShowQuery. This includes the depot
Darkvater
parents: 5352
diff changeset
   145
	if (confirmed) _exit_game = true;
c6dcca763ebb (svn r7622) -Codechange: Convert some more windows to ShowQuery. This includes the depot
Darkvater
parents: 5352
diff changeset
   146
}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   147
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6547
diff changeset
   148
void AskExitGame()
2639
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2631
diff changeset
   149
{
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   150
#if defined(_WIN32)
8920
04df97185061 (svn r11994) -Codechange: Remove numbers from string names where the strings aren't present in TTD, since they don't correspond to either TTD's TextIDs or OpenTTD's StringIDs.
maedhros
parents: 8862
diff changeset
   151
		SetDParam(0, STR_OSNAME_WINDOWS);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   152
#elif defined(__APPLE__)
8920
04df97185061 (svn r11994) -Codechange: Remove numbers from string names where the strings aren't present in TTD, since they don't correspond to either TTD's TextIDs or OpenTTD's StringIDs.
maedhros
parents: 8862
diff changeset
   153
		SetDParam(0, STR_OSNAME_OSX);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   154
#elif defined(__BEOS__)
534
17ab2f22ff74 (svn r901) Small step in the process to clean up the DPARAM mess:
tron
parents: 507
diff changeset
   155
		SetDParam(0, STR_OSNAME_BEOS);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   156
#elif defined(__MORPHOS__)
534
17ab2f22ff74 (svn r901) Small step in the process to clean up the DPARAM mess:
tron
parents: 507
diff changeset
   157
		SetDParam(0, STR_OSNAME_MORPHOS);
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 810
diff changeset
   158
#elif defined(__AMIGA__)
587
2fa4963eb92c (svn r1007) Remove the last SET_DPARAM (:
tron
parents: 569
diff changeset
   159
		SetDParam(0, STR_OSNAME_AMIGAOS);
810
7c51ba5a4368 (svn r1281) -Fix: the OS/2 is now finished. Fixes:
truelight
parents: 774
diff changeset
   160
#elif defined(__OS2__)
7c51ba5a4368 (svn r1281) -Fix: the OS/2 is now finished. Fixes:
truelight
parents: 774
diff changeset
   161
		SetDParam(0, STR_OSNAME_OS2);
6547
c0989f46fd02 (svn r9018) -Change: added SunOS as OS name in the quit dialog
miham
parents: 6527
diff changeset
   162
#elif defined(SUNOS)
c0989f46fd02 (svn r9018) -Change: added SunOS as OS name in the quit dialog
miham
parents: 6527
diff changeset
   163
		SetDParam(0, STR_OSNAME_SUNOS);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   164
#else
8920
04df97185061 (svn r11994) -Codechange: Remove numbers from string names where the strings aren't present in TTD, since they don't correspond to either TTD's TextIDs or OpenTTD's StringIDs.
maedhros
parents: 8862
diff changeset
   165
		SetDParam(0, STR_OSNAME_UNIX);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   166
#endif
5670
c6dcca763ebb (svn r7622) -Codechange: Convert some more windows to ShowQuery. This includes the depot
Darkvater
parents: 5352
diff changeset
   167
	ShowQuery(
c6dcca763ebb (svn r7622) -Codechange: Convert some more windows to ShowQuery. This includes the depot
Darkvater
parents: 5352
diff changeset
   168
		STR_00C7_QUIT,
c6dcca763ebb (svn r7622) -Codechange: Convert some more windows to ShowQuery. This includes the depot
Darkvater
parents: 5352
diff changeset
   169
		STR_00CA_ARE_YOU_SURE_YOU_WANT_TO,
c6dcca763ebb (svn r7622) -Codechange: Convert some more windows to ShowQuery. This includes the depot
Darkvater
parents: 5352
diff changeset
   170
		NULL,
c6dcca763ebb (svn r7622) -Codechange: Convert some more windows to ShowQuery. This includes the depot
Darkvater
parents: 5352
diff changeset
   171
		AskExitGameCallback
c6dcca763ebb (svn r7622) -Codechange: Convert some more windows to ShowQuery. This includes the depot
Darkvater
parents: 5352
diff changeset
   172
	);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   173
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   174
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   175
5670
c6dcca763ebb (svn r7622) -Codechange: Convert some more windows to ShowQuery. This includes the depot
Darkvater
parents: 5352
diff changeset
   176
static void AskExitToGameMenuCallback(Window *w, bool confirmed)
2639
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2631
diff changeset
   177
{
5670
c6dcca763ebb (svn r7622) -Codechange: Convert some more windows to ShowQuery. This includes the depot
Darkvater
parents: 5352
diff changeset
   178
	if (confirmed) _switch_mode = SM_MENU;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   179
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   180
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6547
diff changeset
   181
void AskExitToGameMenu()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   182
{
5670
c6dcca763ebb (svn r7622) -Codechange: Convert some more windows to ShowQuery. This includes the depot
Darkvater
parents: 5352
diff changeset
   183
	ShowQuery(
c6dcca763ebb (svn r7622) -Codechange: Convert some more windows to ShowQuery. This includes the depot
Darkvater
parents: 5352
diff changeset
   184
		STR_0161_QUIT_GAME,
c6dcca763ebb (svn r7622) -Codechange: Convert some more windows to ShowQuery. This includes the depot
Darkvater
parents: 5352
diff changeset
   185
		(_game_mode != GM_EDITOR) ? STR_ABANDON_GAME_QUERY : STR_QUIT_SCENARIO_QUERY,
c6dcca763ebb (svn r7622) -Codechange: Convert some more windows to ShowQuery. This includes the depot
Darkvater
parents: 5352
diff changeset
   186
		NULL,
c6dcca763ebb (svn r7622) -Codechange: Convert some more windows to ShowQuery. This includes the depot
Darkvater
parents: 5352
diff changeset
   187
		AskExitToGameMenuCallback
c6dcca763ebb (svn r7622) -Codechange: Convert some more windows to ShowQuery. This includes the depot
Darkvater
parents: 5352
diff changeset
   188
	);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   189
}