annotate src/main_gui.cpp @ 17248:114fbdb11b40 draft

(svn r21988) -Change: Disable smooth scrolling for GHK_CENTER_ZOOM when zooming is also involved.
author frosch <frosch@openttd.org>
date Sat, 05 Feb 2011 21:07:25 +0000
parents d8b501ee60b3
children 84f869ec145a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
1 /* $Id$ */
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
2
12778
bc7926153e19 (svn r17248) -Fix: add GPL license notice where appropriate
rubidium <rubidium@openttd.org>
parents: 12632
diff changeset
3 /*
bc7926153e19 (svn r17248) -Fix: add GPL license notice where appropriate
rubidium <rubidium@openttd.org>
parents: 12632
diff changeset
4 * This file is part of OpenTTD.
bc7926153e19 (svn r17248) -Fix: add GPL license notice where appropriate
rubidium <rubidium@openttd.org>
parents: 12632
diff changeset
5 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
bc7926153e19 (svn r17248) -Fix: add GPL license notice where appropriate
rubidium <rubidium@openttd.org>
parents: 12632
diff changeset
6 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
bc7926153e19 (svn r17248) -Fix: add GPL license notice where appropriate
rubidium <rubidium@openttd.org>
parents: 12632
diff changeset
7 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
bc7926153e19 (svn r17248) -Fix: add GPL license notice where appropriate
rubidium <rubidium@openttd.org>
parents: 12632
diff changeset
8 */
bc7926153e19 (svn r17248) -Fix: add GPL license notice where appropriate
rubidium <rubidium@openttd.org>
parents: 12632
diff changeset
9
9111
d48433370037 (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 <rubidium@openttd.org>
parents: 8994
diff changeset
10 /** @file main_gui.cpp Handling of the main viewport. */
6201
3b141366478a (svn r8987) -Cleanup: doxygen changes. Again. Mostly (still) @files missing tags and (more than just) a few comments style.
belugas <belugas@openttd.org>
parents: 5894
diff changeset
11
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
12 #include "stdafx.h"
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
13 #include "currency.h"
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
14 #include "spritecache.h"
8107
f65cf2bc3255 (svn r11668) -Codechange: more refactoring aimed at reducing compile time and making it more logic where function definitions can be found.
rubidium <rubidium@openttd.org>
parents: 8106
diff changeset
15 #include "window_gui.h"
f65cf2bc3255 (svn r11668) -Codechange: more refactoring aimed at reducing compile time and making it more logic where function definitions can be found.
rubidium <rubidium@openttd.org>
parents: 8106
diff changeset
16 #include "window_func.h"
f65cf2bc3255 (svn r11668) -Codechange: more refactoring aimed at reducing compile time and making it more logic where function definitions can be found.
rubidium <rubidium@openttd.org>
parents: 8106
diff changeset
17 #include "textbuf_gui.h"
8224
c45446125bf0 (svn r11787) -Codechange: more header rewrites. This time related to viewport.h.
rubidium <rubidium@openttd.org>
parents: 8214
diff changeset
18 #include "viewport_func.h"
8116
9cc845deddfe (svn r11677) -Codechange: move price and command related types/functions to their respective places.
rubidium <rubidium@openttd.org>
parents: 8114
diff changeset
19 #include "command_func.h"
9336
5287277c4972 (svn r13228) -Codechange: split console.h.
rubidium <rubidium@openttd.org>
parents: 9301
diff changeset
20 #include "console_gui.h"
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
21 #include "genworld.h"
6427
2437ed7b277c (svn r9563) -Feature: Add more finer control to transparency options, including a new toolbar, accessible from the map menu or Ctrl X. Patch by Wolf01.
peter1138 <peter1138@openttd.org>
parents: 6357
diff changeset
22 #include "transparency_gui.h"
8131
e300ac8001ae (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 <rubidium@openttd.org>
parents: 8123
diff changeset
23 #include "functions.h"
8157
019833e42fda (svn r11719) -Codechange: split sound.h in a header with types and one with functions.
rubidium <rubidium@openttd.org>
parents: 8149
diff changeset
24 #include "sound_func.h"
7849
e6ee8bfd9045 (svn r11399) -Feature(ette): transparency settings can now be saved and thus remembered.
belugas <belugas@openttd.org>
parents: 7824
diff changeset
25 #include "transparency.h"
8114
2d6af5d7a142 (svn r11675) -Codechange: split the string types from the string functions.
rubidium <rubidium@openttd.org>
parents: 8111
diff changeset
26 #include "strings_func.h"
8123
c26c28875749 (svn r11684) -Codechange: split gfx.h in a type and functional header.
rubidium <rubidium@openttd.org>
parents: 8121
diff changeset
27 #include "zoom_func.h"
10208
39cf8eebfda5 (svn r14422) -Codechange: also reflect the changes of r14421 in the filenames.
rubidium <rubidium@openttd.org>
parents: 10207
diff changeset
28 #include "company_base.h"
39cf8eebfda5 (svn r14422) -Codechange: also reflect the changes of r14421 in the filenames.
rubidium <rubidium@openttd.org>
parents: 10207
diff changeset
29 #include "company_func.h"
8723
36823c86c7f1 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium <rubidium@openttd.org>
parents: 8615
diff changeset
30 #include "toolbar_gui.h"
9248
2588c85f3a5a (svn r13114) -Codechange: use InvalidateData instead of direct window access to modify the state of the statusbar from outside the statusbar.
rubidium <rubidium@openttd.org>
parents: 9240
diff changeset
31 #include "statusbar_gui.h"
9127
428852b86d4d (svn r12987) -Codechange: split viewport and tile selection.
rubidium <rubidium@openttd.org>
parents: 9116
diff changeset
32 #include "tilehighlight_func.h"
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
33 #include "hotkeys.h"
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
34
16726
e73c78393547 (svn r21459) -Feature(tte) [FS#3217]: Hotkey Ctrl+W for returning to the main menu
planetmaker <planetmaker@openttd.org>
parents: 16310
diff changeset
35 #include "saveload/saveload.h"
e73c78393547 (svn r21459) -Feature(tte) [FS#3217]: Hotkey Ctrl+W for returning to the main menu
planetmaker <planetmaker@openttd.org>
parents: 16310
diff changeset
36
8264
2495310e220f (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium <rubidium@openttd.org>
parents: 8254
diff changeset
37 #include "network/network.h"
9428
ba7cdcf21f4c (svn r13343) -Codechange: reorder/move variable/functions in the network headers so that nothing from the network directory needs to include basically all network headers.
rubidium <rubidium@openttd.org>
parents: 9413
diff changeset
38 #include "network/network_func.h"
8264
2495310e220f (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium <rubidium@openttd.org>
parents: 8254
diff changeset
39 #include "network/network_gui.h"
10468
0edf9b619634 (svn r14723) -Codechange: shuffling some stuff around to reduce indirect #include dependencies.
rubidium <rubidium@openttd.org>
parents: 10462
diff changeset
40 #include "network/network_base.h"
8264
2495310e220f (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium <rubidium@openttd.org>
parents: 8254
diff changeset
41
2495310e220f (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium <rubidium@openttd.org>
parents: 8254
diff changeset
42 #include "table/sprites.h"
2495310e220f (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium <rubidium@openttd.org>
parents: 8254
diff changeset
43 #include "table/strings.h"
2495310e220f (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium <rubidium@openttd.org>
parents: 8254
diff changeset
44
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
45 static int _rename_id = 1;
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
46 static int _rename_what = -1;
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
47
14230
95250f9a5035 (svn r18781) -Codechange: pass the CommandCost to the callback instead of whether it succeeded or not.
rubidium <rubidium@openttd.org>
parents: 13950
diff changeset
48 void CcGiveMoney(const CommandCost &result, TileIndex tile, uint32 p1, uint32 p2)
6847
506a6e1063f4 (svn r10087) -Fix [FS#834]: multiple subsequent "give money" actions could result in duplicate messages that money has been transfered when it only happened once.
rubidium <rubidium@openttd.org>
parents: 6845
diff changeset
49 {
6898
a7d1b5936638 (svn r10145) -Fix: make compiling with networking disabled (again) possible.
rubidium <rubidium@openttd.org>
parents: 6857
diff changeset
50 #ifdef ENABLE_NETWORK
14230
95250f9a5035 (svn r18781) -Codechange: pass the CommandCost to the callback instead of whether it succeeded or not.
rubidium <rubidium@openttd.org>
parents: 13950
diff changeset
51 if (result.Failed() || !_settings_game.economy.give_money) return;
6847
506a6e1063f4 (svn r10087) -Fix [FS#834]: multiple subsequent "give money" actions could result in duplicate messages that money has been transfered when it only happened once.
rubidium <rubidium@openttd.org>
parents: 6845
diff changeset
52
15002
baf0e12ad2b4 (svn r19614) -Codechange: "it's" => "its" where appropriate
smatz <smatz@openttd.org>
parents: 14258
diff changeset
53 /* Inform the company of the action of one of its clients (controllers). */
10507
5e0fb429b3ae (svn r14764) -Codechange: make the '***' chat messages like "Game paused (not enough players)" fully translateable.
rubidium <rubidium@openttd.org>
parents: 10499
diff changeset
54 char msg[64];
5e0fb429b3ae (svn r14764) -Codechange: make the '***' chat messages like "Game paused (not enough players)" fully translateable.
rubidium <rubidium@openttd.org>
parents: 10499
diff changeset
55 SetDParam(0, p2);
5e0fb429b3ae (svn r14764) -Codechange: make the '***' chat messages like "Game paused (not enough players)" fully translateable.
rubidium <rubidium@openttd.org>
parents: 10499
diff changeset
56 GetString(msg, STR_COMPANY_NAME, lastof(msg));
6847
506a6e1063f4 (svn r10087) -Fix [FS#834]: multiple subsequent "give money" actions could result in duplicate messages that money has been transfered when it only happened once.
rubidium <rubidium@openttd.org>
parents: 6845
diff changeset
57
506a6e1063f4 (svn r10087) -Fix [FS#834]: multiple subsequent "give money" actions could result in duplicate messages that money has been transfered when it only happened once.
rubidium <rubidium@openttd.org>
parents: 6845
diff changeset
58 if (!_network_server) {
10507
5e0fb429b3ae (svn r14764) -Codechange: make the '***' chat messages like "Game paused (not enough players)" fully translateable.
rubidium <rubidium@openttd.org>
parents: 10499
diff changeset
59 NetworkClientSendChat(NETWORK_ACTION_GIVE_MONEY, DESTTYPE_TEAM, p2, msg, p1);
6847
506a6e1063f4 (svn r10087) -Fix [FS#834]: multiple subsequent "give money" actions could result in duplicate messages that money has been transfered when it only happened once.
rubidium <rubidium@openttd.org>
parents: 6845
diff changeset
60 } else {
10507
5e0fb429b3ae (svn r14764) -Codechange: make the '***' chat messages like "Game paused (not enough players)" fully translateable.
rubidium <rubidium@openttd.org>
parents: 10499
diff changeset
61 NetworkServerSendChat(NETWORK_ACTION_GIVE_MONEY, DESTTYPE_TEAM, p2, msg, CLIENT_ID_SERVER, p1);
6847
506a6e1063f4 (svn r10087) -Fix [FS#834]: multiple subsequent "give money" actions could result in duplicate messages that money has been transfered when it only happened once.
rubidium <rubidium@openttd.org>
parents: 6845
diff changeset
62 }
6898
a7d1b5936638 (svn r10145) -Fix: make compiling with networking disabled (again) possible.
rubidium <rubidium@openttd.org>
parents: 6857
diff changeset
63 #endif /* ENABLE_NETWORK */
6847
506a6e1063f4 (svn r10087) -Fix [FS#834]: multiple subsequent "give money" actions could result in duplicate messages that money has been transfered when it only happened once.
rubidium <rubidium@openttd.org>
parents: 6845
diff changeset
64 }
506a6e1063f4 (svn r10087) -Fix [FS#834]: multiple subsequent "give money" actions could result in duplicate messages that money has been transfered when it only happened once.
rubidium <rubidium@openttd.org>
parents: 6845
diff changeset
65
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
66 void HandleOnEditText(const char *str)
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
67 {
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
68 switch (_rename_what) {
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
69 #ifdef ENABLE_NETWORK
6201
3b141366478a (svn r8987) -Cleanup: doxygen changes. Again. Mostly (still) @files missing tags and (more than just) a few comments style.
belugas <belugas@openttd.org>
parents: 5894
diff changeset
70 case 3: { // Give money, you can only give money in excess of loan
13444
bc21e507dd03 (svn r17953) -Fix: when you start giving money (input window for amount), then get moved to spectators and you click 'Ok' a crash would occur
rubidium <rubidium@openttd.org>
parents: 13344
diff changeset
71 const Company *c = Company::GetIfValid(_local_company);
bc21e507dd03 (svn r17953) -Fix: when you start giving money (input window for amount), then get moved to spectators and you click 'Ok' a crash would occur
rubidium <rubidium@openttd.org>
parents: 13344
diff changeset
72 if (c == NULL) break;
10207
c54d140df948 (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium <rubidium@openttd.org>
parents: 10145
diff changeset
73 Money money = min(c->money - c->current_loan, (Money)(atoi(str) / _currency->rate));
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
74
7922
ff1975ced735 (svn r11475) -Codechange: rename clamp and clampu to Clamp and ClampU to fit with the coding style
skidd13 <skidd13@openttd.org>
parents: 7889
diff changeset
75 uint32 money_c = Clamp(ClampToI32(money), 0, 20000000); // Clamp between 20 million and 0
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
76
6201
3b141366478a (svn r8987) -Cleanup: doxygen changes. Again. Mostly (still) @files missing tags and (more than just) a few comments style.
belugas <belugas@openttd.org>
parents: 5894
diff changeset
77 /* Give 'id' the money, and substract it from ourself */
12632
e41943276802 (svn r17075) -Codechange: rename ~750 strings to be more uniform with their relatives
rubidium <rubidium@openttd.org>
parents: 12581
diff changeset
78 DoCommandP(0, money_c, _rename_id, CMD_GIVE_MONEY | CMD_MSG(STR_ERROR_INSUFFICIENT_FUNDS), CcGiveMoney, str);
15618
e4640748f223 (svn r20281) -Codechange: unify case scope closure + break coding style
rubidium <rubidium@openttd.org>
parents: 15552
diff changeset
79 break;
e4640748f223 (svn r20281) -Codechange: unify case scope closure + break coding style
rubidium <rubidium@openttd.org>
parents: 15552
diff changeset
80 }
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
81 #endif /* ENABLE_NETWORK */
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
82 default: NOT_REACHED();
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
83 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
84
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
85 _rename_id = _rename_what = -1;
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
86 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
87
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
88 /**
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
89 * This code is shared for the majority of the pushbuttons.
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
90 * Handles e.g. the pressing of a button (to build things), playing of click sound and sets certain parameters
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
91 *
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
92 * @param w Window which called the function
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
93 * @param widget ID of the widget (=button) that called this function
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
94 * @param cursor How should the cursor image change? E.g. cursor with depot image in it
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
95 * @param mode Tile highlighting mode, e.g. drawing a rectangle or a dot on the ground
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
96 * @return true if the button is clicked, false if it's unclicked
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
97 */
16892
1e94199f85d6 (svn r21627) -Codechange: Remove _place_proc global variable.
alberth <alberth@openttd.org>
parents: 16726
diff changeset
98 bool HandlePlacePushButton(Window *w, int widget, CursorID cursor, HighLightStyle mode)
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
99 {
7997
d109780d515b (svn r11555) -Codechange: use the new members introduced in r11551.
rubidium <rubidium@openttd.org>
parents: 7954
diff changeset
100 if (w->IsWidgetDisabled(widget)) return false;
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
101
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
102 SndPlayFx(SND_15_BEEP);
9116
44beb31166aa (svn r12976) -Codechange: use w->SetDirty() instead of SetWindowDirty(w) when it's certain that w != NULL.
rubidium <rubidium@openttd.org>
parents: 9111
diff changeset
103 w->SetDirty();
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
104
7997
d109780d515b (svn r11555) -Codechange: use the new members introduced in r11551.
rubidium <rubidium@openttd.org>
parents: 7954
diff changeset
105 if (w->IsWidgetLowered(widget)) {
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
106 ResetObjectToPlace();
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
107 return false;
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
108 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
109
5668
3d6d9bff3dd8 (svn r8128) -Codechange: Split sprite and palette remap into separate 32 bit values.
peter1138 <peter1138@openttd.org>
parents: 5601
diff changeset
110 SetObjectToPlace(cursor, PAL_NONE, mode, w->window_class, w->window_number);
7997
d109780d515b (svn r11555) -Codechange: use the new members introduced in r11551.
rubidium <rubidium@openttd.org>
parents: 7954
diff changeset
111 w->LowerWidget(widget);
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
112 return true;
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
113 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
114
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
115
14230
95250f9a5035 (svn r18781) -Codechange: pass the CommandCost to the callback instead of whether it succeeded or not.
rubidium <rubidium@openttd.org>
parents: 13950
diff changeset
116 void CcPlaySound10(const CommandCost &result, TileIndex tile, uint32 p1, uint32 p2)
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
117 {
14230
95250f9a5035 (svn r18781) -Codechange: pass the CommandCost to the callback instead of whether it succeeded or not.
rubidium <rubidium@openttd.org>
parents: 13950
diff changeset
118 if (result.Succeeded()) SndPlayTileFx(SND_12_EXPLOSION, tile);
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
119 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
120
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
121 #ifdef ENABLE_NETWORK
10207
c54d140df948 (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium <rubidium@openttd.org>
parents: 10145
diff changeset
122 void ShowNetworkGiveMoneyWindow(CompanyID company)
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
123 {
10207
c54d140df948 (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium <rubidium@openttd.org>
parents: 10145
diff changeset
124 _rename_id = company;
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
125 _rename_what = 3;
10145
dbe302da93a8 (svn r14331) -Codechange: use an enum as additional parameter for ShowQueryString()
smatz <smatz@openttd.org>
parents: 10056
diff changeset
126 ShowQueryString(STR_EMPTY, STR_NETWORK_GIVE_MONEY_CAPTION, 30, 180, NULL, CS_NUMERAL, QSF_NONE);
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
127 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
128 #endif /* ENABLE_NETWORK */
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
129
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
130
16310
cced8cded106 (svn r21018) -Doc: Add Doxygen comments to some function.
alberth <alberth@openttd.org>
parents: 16292
diff changeset
131 /**
cced8cded106 (svn r21018) -Doc: Add Doxygen comments to some function.
alberth <alberth@openttd.org>
parents: 16292
diff changeset
132 * Zooms a viewport in a window in or out.
cced8cded106 (svn r21018) -Doc: Add Doxygen comments to some function.
alberth <alberth@openttd.org>
parents: 16292
diff changeset
133 * @param how Zooming direction.
cced8cded106 (svn r21018) -Doc: Add Doxygen comments to some function.
alberth <alberth@openttd.org>
parents: 16292
diff changeset
134 * @param w Window owning the viewport.
cced8cded106 (svn r21018) -Doc: Add Doxygen comments to some function.
alberth <alberth@openttd.org>
parents: 16292
diff changeset
135 * @return Returns \c true if zooming step could be done, \c false if further zooming is not possible.
cced8cded106 (svn r21018) -Doc: Add Doxygen comments to some function.
alberth <alberth@openttd.org>
parents: 16292
diff changeset
136 * @note No button handling or what so ever is done.
cced8cded106 (svn r21018) -Doc: Add Doxygen comments to some function.
alberth <alberth@openttd.org>
parents: 16292
diff changeset
137 */
15178
7aa184b4f6c9 (svn r19807) -Codechange: instead of having an unnamed enum and passing it as an int, name the enum and pass that
rubidium <rubidium@openttd.org>
parents: 15002
diff changeset
138 bool DoZoomInOutWindow(ZoomStateChange how, Window *w)
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
139 {
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
140 ViewPort *vp;
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
141
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
142 assert(w != NULL);
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
143 vp = w->viewport;
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
144
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
145 switch (how) {
15184
68b7b29a6b7e (svn r19813) -Fix (r19807): initialising viewports kinda failed
rubidium <rubidium@openttd.org>
parents: 15178
diff changeset
146 case ZOOM_NONE:
68b7b29a6b7e (svn r19813) -Fix (r19807): initialising viewports kinda failed
rubidium <rubidium@openttd.org>
parents: 15178
diff changeset
147 /* On initialisation of the viewport we don't do anything. */
68b7b29a6b7e (svn r19813) -Fix (r19807): initialising viewports kinda failed
rubidium <rubidium@openttd.org>
parents: 15178
diff changeset
148 break;
68b7b29a6b7e (svn r19813) -Fix (r19807): initialising viewports kinda failed
rubidium <rubidium@openttd.org>
parents: 15178
diff changeset
149
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
150 case ZOOM_IN:
6626
f940341a80f0 (svn r9846) -Codechange: introduced ZOOM_LVL_MIN and ZOOM_LVL_MAX for the obvious reasons
truelight <truelight@openttd.org>
parents: 6624
diff changeset
151 if (vp->zoom == ZOOM_LVL_MIN) return false;
8095
538d8ce486cd (svn r11656) -Codechange: add ZOOM_LVL_BEGIN and postfix operators so ZoomLevel can be used in some iterations
smatz <smatz@openttd.org>
parents: 8082
diff changeset
152 vp->zoom = (ZoomLevel)((int)vp->zoom - 1);
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
153 vp->virtual_width >>= 1;
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
154 vp->virtual_height >>= 1;
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
155
9184
a7020e34c67b (svn r13047) -Codechange: remove vp_d
glx <glx@openttd.org>
parents: 9165
diff changeset
156 w->viewport->scrollpos_x += vp->virtual_width >> 1;
a7020e34c67b (svn r13047) -Codechange: remove vp_d
glx <glx@openttd.org>
parents: 9165
diff changeset
157 w->viewport->scrollpos_y += vp->virtual_height >> 1;
a7020e34c67b (svn r13047) -Codechange: remove vp_d
glx <glx@openttd.org>
parents: 9165
diff changeset
158 w->viewport->dest_scrollpos_x = w->viewport->scrollpos_x;
a7020e34c67b (svn r13047) -Codechange: remove vp_d
glx <glx@openttd.org>
parents: 9165
diff changeset
159 w->viewport->dest_scrollpos_y = w->viewport->scrollpos_y;
15695
f6bb2f4578b7 (svn r20361) -Fix [FS#3989]: Stop vehicle following after zooming out.
terkhen <terkhen@openttd.org>
parents: 15618
diff changeset
160 w->viewport->follow_vehicle = INVALID_VEHICLE;
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
161 break;
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
162 case ZOOM_OUT:
6626
f940341a80f0 (svn r9846) -Codechange: introduced ZOOM_LVL_MIN and ZOOM_LVL_MAX for the obvious reasons
truelight <truelight@openttd.org>
parents: 6624
diff changeset
163 if (vp->zoom == ZOOM_LVL_MAX) return false;
8095
538d8ce486cd (svn r11656) -Codechange: add ZOOM_LVL_BEGIN and postfix operators so ZoomLevel can be used in some iterations
smatz <smatz@openttd.org>
parents: 8082
diff changeset
164 vp->zoom = (ZoomLevel)((int)vp->zoom + 1);
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
165
9184
a7020e34c67b (svn r13047) -Codechange: remove vp_d
glx <glx@openttd.org>
parents: 9165
diff changeset
166 w->viewport->scrollpos_x -= vp->virtual_width >> 1;
a7020e34c67b (svn r13047) -Codechange: remove vp_d
glx <glx@openttd.org>
parents: 9165
diff changeset
167 w->viewport->scrollpos_y -= vp->virtual_height >> 1;
a7020e34c67b (svn r13047) -Codechange: remove vp_d
glx <glx@openttd.org>
parents: 9165
diff changeset
168 w->viewport->dest_scrollpos_x = w->viewport->scrollpos_x;
a7020e34c67b (svn r13047) -Codechange: remove vp_d
glx <glx@openttd.org>
parents: 9165
diff changeset
169 w->viewport->dest_scrollpos_y = w->viewport->scrollpos_y;
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
170
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
171 vp->virtual_width <<= 1;
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
172 vp->virtual_height <<= 1;
15695
f6bb2f4578b7 (svn r20361) -Fix [FS#3989]: Stop vehicle following after zooming out.
terkhen <terkhen@openttd.org>
parents: 15618
diff changeset
173 w->viewport->follow_vehicle = INVALID_VEHICLE;
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
174 break;
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
175 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
176 if (vp != NULL) { // the vp can be null when how == ZOOM_NONE
9184
a7020e34c67b (svn r13047) -Codechange: remove vp_d
glx <glx@openttd.org>
parents: 9165
diff changeset
177 vp->virtual_left = w->viewport->scrollpos_x;
a7020e34c67b (svn r13047) -Codechange: remove vp_d
glx <glx@openttd.org>
parents: 9165
diff changeset
178 vp->virtual_top = w->viewport->scrollpos_y;
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
179 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
180 /* Update the windows that have zoom-buttons to perhaps disable their buttons */
13168
b3177ea0bd67 (svn r17673) -Codechange: make InvalidateThisWindowData a function of the window class
rubidium <rubidium@openttd.org>
parents: 13072
diff changeset
181 w->InvalidateData();
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
182 return true;
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
183 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
184
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
185 void ZoomInOrOutToCursorWindow(bool in, Window *w)
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
186 {
8723
36823c86c7f1 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium <rubidium@openttd.org>
parents: 8615
diff changeset
187 assert(w != NULL);
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
188
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
189 if (_game_mode != GM_MENU) {
8723
36823c86c7f1 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium <rubidium@openttd.org>
parents: 8615
diff changeset
190 ViewPort *vp = w->viewport;
15552
683f2dbe75bb (svn r20211) -Codechange: Indented code should have curly braces around it.
alberth <alberth@openttd.org>
parents: 15434
diff changeset
191 if ((in && vp->zoom == ZOOM_LVL_MIN) || (!in && vp->zoom == ZOOM_LVL_MAX)) return;
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
192
10642
29bc871ff8d1 (svn r14944) -Cleanup: add spaces around some operators
rubidium <rubidium@openttd.org>
parents: 10507
diff changeset
193 Point pt = GetTileZoomCenterWindow(in, w);
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
194 if (pt.x != -1) {
11375
1d342902ac94 (svn r15725) -Fix: centering on a vehicle didn't respect its z coordinate
smatz <smatz@openttd.org>
parents: 11368
diff changeset
195 ScrollWindowTo(pt.x, pt.y, -1, w, true);
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
196
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
197 DoZoomInOutWindow(in ? ZOOM_IN : ZOOM_OUT, w);
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
198 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
199 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
200 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
201
12581
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
202 /** Widgets of the main window. */
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
203 enum MainWindowWidgets {
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
204 MW_VIEWPORT, ///< Main window viewport.
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
205 };
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
206
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
207 static const struct NWidgetPart _nested_main_window_widgets[] = {
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
208 NWidget(NWID_VIEWPORT, INVALID_COLOUR, MW_VIEWPORT), SetResize(1, 1),
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
209 };
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
210
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
211 static const WindowDesc _main_window_desc(
13796
3e68f07eb821 (svn r18322) -Codechange: remove the WDP duplication; no need to tell the same twice.
rubidium <rubidium@openttd.org>
parents: 13792
diff changeset
212 WDP_MANUAL, 0, 0,
12581
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
213 WC_MAIN_WINDOW, WC_NONE,
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
214 0,
13564
bae287664b02 (svn r18086) -Codechange: remove 'widget' from WindowDesc
rubidium <rubidium@openttd.org>
parents: 13444
diff changeset
215 _nested_main_window_widgets, lengthof(_nested_main_window_widgets)
12581
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
216 );
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
217
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
218 enum {
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
219 GHK_QUIT,
16726
e73c78393547 (svn r21459) -Feature(tte) [FS#3217]: Hotkey Ctrl+W for returning to the main menu
planetmaker <planetmaker@openttd.org>
parents: 16310
diff changeset
220 GHK_ABANDON,
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
221 GHK_CONSOLE,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
222 GHK_BOUNDING_BOXES,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
223 GHK_CENTER,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
224 GHK_CENTER_ZOOM,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
225 GHK_RESET_OBJECT_TO_PLACE,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
226 GHK_DELETE_WINDOWS,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
227 GHK_DELETE_NONVITAL_WINDOWS,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
228 GHK_REFRESH_SCREEN,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
229 GHK_CRASH,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
230 GHK_MONEY,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
231 GHK_UPDATE_COORDS,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
232 GHK_TOGGLE_TRANSPARENCY,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
233 GHK_TOGGLE_INVISIBILITY = GHK_TOGGLE_TRANSPARENCY + 9,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
234 GHK_TRANSPARENCY_TOOLBAR = GHK_TOGGLE_INVISIBILITY + 8,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
235 GHK_TRANSPARANCY,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
236 GHK_CHAT,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
237 GHK_CHAT_ALL,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
238 GHK_CHAT_COMPANY,
16292
96db4d85ff89 (svn r21000) -Feature[tte]: chat directly to the server or a bot/admin/irc channel monitoring the server (dihedral)
rubidium <rubidium@openttd.org>
parents: 16144
diff changeset
239 GHK_CHAT_SERVER,
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
240 };
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
241
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
242 struct MainWindow : Window
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
243 {
12581
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
244 MainWindow() : Window()
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
245 {
12581
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
246 this->InitNested(&_main_window_desc, 0);
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
247 ResizeWindow(this, _screen.width, _screen.height);
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
248
13072
75bd67594af2 (svn r17572) -Codechange: Use the Window::GetWidget() function to access nested widgets through the nested_array.
alberth <alberth@openttd.org>
parents: 12778
diff changeset
249 NWidgetViewport *nvp = this->GetWidget<NWidgetViewport>(MW_VIEWPORT);
12581
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
250 nvp->InitializeViewport(this, TileXY(32, 32), ZOOM_LVL_VIEWPORT);
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
251 }
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
252
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
253 virtual void OnPaint()
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
254 {
12581
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
255 this->DrawWidgets();
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
256 if (_game_mode == GM_MENU) {
15434
995eaf7f493c (svn r20077) -Codechange: remove the space between "open" and "ttd" in the title screen
yexo <yexo@openttd.org>
parents: 15431
diff changeset
257 static const SpriteID title_sprites[] = {SPR_OTTD_O, SPR_OTTD_P, SPR_OTTD_E, SPR_OTTD_N, SPR_OTTD_T, SPR_OTTD_T, SPR_OTTD_D};
995eaf7f493c (svn r20077) -Codechange: remove the space between "open" and "ttd" in the title screen
yexo <yexo@openttd.org>
parents: 15431
diff changeset
258 static const uint LETTER_SPACING = 10;
15930
ffc487f3e052 (svn r20618) -Fix [FS#4081]: drawing the "OpenTTD" text in the intro game caused crashes with very low resolutions
rubidium <rubidium@openttd.org>
parents: 15695
diff changeset
259 int name_width = (lengthof(title_sprites) - 1) * LETTER_SPACING;
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
260
15434
995eaf7f493c (svn r20077) -Codechange: remove the space between "open" and "ttd" in the title screen
yexo <yexo@openttd.org>
parents: 15431
diff changeset
261 for (uint i = 0; i < lengthof(title_sprites); i++) {
995eaf7f493c (svn r20077) -Codechange: remove the space between "open" and "ttd" in the title screen
yexo <yexo@openttd.org>
parents: 15431
diff changeset
262 name_width += GetSpriteSize(title_sprites[i]).width;
995eaf7f493c (svn r20077) -Codechange: remove the space between "open" and "ttd" in the title screen
yexo <yexo@openttd.org>
parents: 15431
diff changeset
263 }
995eaf7f493c (svn r20077) -Codechange: remove the space between "open" and "ttd" in the title screen
yexo <yexo@openttd.org>
parents: 15431
diff changeset
264 int off_x = (this->width - name_width) / 2;
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
265
15434
995eaf7f493c (svn r20077) -Codechange: remove the space between "open" and "ttd" in the title screen
yexo <yexo@openttd.org>
parents: 15431
diff changeset
266 for (uint i = 0; i < lengthof(title_sprites); i++) {
995eaf7f493c (svn r20077) -Codechange: remove the space between "open" and "ttd" in the title screen
yexo <yexo@openttd.org>
parents: 15431
diff changeset
267 DrawSprite(title_sprites[i], PAL_NONE, off_x, 50);
995eaf7f493c (svn r20077) -Codechange: remove the space between "open" and "ttd" in the title screen
yexo <yexo@openttd.org>
parents: 15431
diff changeset
268 off_x += GetSpriteSize(title_sprites[i]).width + LETTER_SPACING;
995eaf7f493c (svn r20077) -Codechange: remove the space between "open" and "ttd" in the title screen
yexo <yexo@openttd.org>
parents: 15431
diff changeset
269 }
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
270 }
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
271 }
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
272
9285
3b3f13cb6db6 (svn r13151) -Codechange: use an enum instead of bool as return type of OnKeyPress/OnCTRLStateChange to make it obvious what the return values mean.
rubidium <rubidium@openttd.org>
parents: 9273
diff changeset
273 virtual EventState OnKeyPress(uint16 key, uint16 keycode)
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
274 {
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
275 int num = CheckHotkeyMatch(global_hotkeys, keycode, this);
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
276 if (num == GHK_QUIT) {
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
277 HandleExitGameRequest();
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
278 return ES_HANDLED;
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
279 }
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
280
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
281 /* Disable all key shortcuts, except quit shortcuts when
11361
02313cc6114e (svn r15711) -Codechange: lots of whitespace cleanup/fixes
rubidium <rubidium@openttd.org>
parents: 11085
diff changeset
282 * generating the world, otherwise they create threading
02313cc6114e (svn r15711) -Codechange: lots of whitespace cleanup/fixes
rubidium <rubidium@openttd.org>
parents: 11085
diff changeset
283 * problem during the generating, resulting in random
02313cc6114e (svn r15711) -Codechange: lots of whitespace cleanup/fixes
rubidium <rubidium@openttd.org>
parents: 11085
diff changeset
284 * assertions that are hard to trigger and debug */
9285
3b3f13cb6db6 (svn r13151) -Codechange: use an enum instead of bool as return type of OnKeyPress/OnCTRLStateChange to make it obvious what the return values mean.
rubidium <rubidium@openttd.org>
parents: 9273
diff changeset
285 if (IsGeneratingWorld()) return ES_NOT_HANDLED;
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
286
16726
e73c78393547 (svn r21459) -Feature(tte) [FS#3217]: Hotkey Ctrl+W for returning to the main menu
planetmaker <planetmaker@openttd.org>
parents: 16310
diff changeset
287 switch (num) {
e73c78393547 (svn r21459) -Feature(tte) [FS#3217]: Hotkey Ctrl+W for returning to the main menu
planetmaker <planetmaker@openttd.org>
parents: 16310
diff changeset
288 case GHK_ABANDON:
e73c78393547 (svn r21459) -Feature(tte) [FS#3217]: Hotkey Ctrl+W for returning to the main menu
planetmaker <planetmaker@openttd.org>
parents: 16310
diff changeset
289 /* No point returning from the main menu to itself */
e73c78393547 (svn r21459) -Feature(tte) [FS#3217]: Hotkey Ctrl+W for returning to the main menu
planetmaker <planetmaker@openttd.org>
parents: 16310
diff changeset
290 if (_game_mode == GM_MENU) return ES_HANDLED;
e73c78393547 (svn r21459) -Feature(tte) [FS#3217]: Hotkey Ctrl+W for returning to the main menu
planetmaker <planetmaker@openttd.org>
parents: 16310
diff changeset
291 if (_settings_client.gui.autosave_on_exit) {
e73c78393547 (svn r21459) -Feature(tte) [FS#3217]: Hotkey Ctrl+W for returning to the main menu
planetmaker <planetmaker@openttd.org>
parents: 16310
diff changeset
292 DoExitSave();
e73c78393547 (svn r21459) -Feature(tte) [FS#3217]: Hotkey Ctrl+W for returning to the main menu
planetmaker <planetmaker@openttd.org>
parents: 16310
diff changeset
293 _switch_mode = SM_MENU;
e73c78393547 (svn r21459) -Feature(tte) [FS#3217]: Hotkey Ctrl+W for returning to the main menu
planetmaker <planetmaker@openttd.org>
parents: 16310
diff changeset
294 } else {
e73c78393547 (svn r21459) -Feature(tte) [FS#3217]: Hotkey Ctrl+W for returning to the main menu
planetmaker <planetmaker@openttd.org>
parents: 16310
diff changeset
295 AskExitToGameMenu();
e73c78393547 (svn r21459) -Feature(tte) [FS#3217]: Hotkey Ctrl+W for returning to the main menu
planetmaker <planetmaker@openttd.org>
parents: 16310
diff changeset
296 }
e73c78393547 (svn r21459) -Feature(tte) [FS#3217]: Hotkey Ctrl+W for returning to the main menu
planetmaker <planetmaker@openttd.org>
parents: 16310
diff changeset
297 return ES_HANDLED;
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
298
16726
e73c78393547 (svn r21459) -Feature(tte) [FS#3217]: Hotkey Ctrl+W for returning to the main menu
planetmaker <planetmaker@openttd.org>
parents: 16310
diff changeset
299 case GHK_CONSOLE:
e73c78393547 (svn r21459) -Feature(tte) [FS#3217]: Hotkey Ctrl+W for returning to the main menu
planetmaker <planetmaker@openttd.org>
parents: 16310
diff changeset
300 IConsoleSwitch();
e73c78393547 (svn r21459) -Feature(tte) [FS#3217]: Hotkey Ctrl+W for returning to the main menu
planetmaker <planetmaker@openttd.org>
parents: 16310
diff changeset
301 return ES_HANDLED;
e73c78393547 (svn r21459) -Feature(tte) [FS#3217]: Hotkey Ctrl+W for returning to the main menu
planetmaker <planetmaker@openttd.org>
parents: 16310
diff changeset
302
e73c78393547 (svn r21459) -Feature(tte) [FS#3217]: Hotkey Ctrl+W for returning to the main menu
planetmaker <planetmaker@openttd.org>
parents: 16310
diff changeset
303 case GHK_BOUNDING_BOXES:
e73c78393547 (svn r21459) -Feature(tte) [FS#3217]: Hotkey Ctrl+W for returning to the main menu
planetmaker <planetmaker@openttd.org>
parents: 16310
diff changeset
304 extern bool _draw_bounding_boxes;
e73c78393547 (svn r21459) -Feature(tte) [FS#3217]: Hotkey Ctrl+W for returning to the main menu
planetmaker <planetmaker@openttd.org>
parents: 16310
diff changeset
305 _draw_bounding_boxes = !_draw_bounding_boxes;
e73c78393547 (svn r21459) -Feature(tte) [FS#3217]: Hotkey Ctrl+W for returning to the main menu
planetmaker <planetmaker@openttd.org>
parents: 16310
diff changeset
306 MarkWholeScreenDirty();
e73c78393547 (svn r21459) -Feature(tte) [FS#3217]: Hotkey Ctrl+W for returning to the main menu
planetmaker <planetmaker@openttd.org>
parents: 16310
diff changeset
307 return ES_HANDLED;
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
308 }
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
309
9285
3b3f13cb6db6 (svn r13151) -Codechange: use an enum instead of bool as return type of OnKeyPress/OnCTRLStateChange to make it obvious what the return values mean.
rubidium <rubidium@openttd.org>
parents: 9273
diff changeset
310 if (_game_mode == GM_MENU) return ES_NOT_HANDLED;
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
311
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
312 switch (num) {
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
313 case GHK_CENTER:
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
314 case GHK_CENTER_ZOOM: {
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
315 Point pt = GetTileBelowCursor();
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
316 if (pt.x != -1) {
17248
114fbdb11b40 (svn r21988) -Change: Disable smooth scrolling for GHK_CENTER_ZOOM when zooming is also involved.
frosch <frosch@openttd.org>
parents: 17237
diff changeset
317 bool instant = (num == GHK_CENTER_ZOOM && this->viewport->zoom != ZOOM_LVL_MIN);
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
318 if (num == GHK_CENTER_ZOOM) MaxZoomInOut(ZOOM_IN, this);
17248
114fbdb11b40 (svn r21988) -Change: Disable smooth scrolling for GHK_CENTER_ZOOM when zooming is also involved.
frosch <frosch@openttd.org>
parents: 17237
diff changeset
319 ScrollMainWindowTo(pt.x, pt.y, -1, instant);
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
320 }
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
321 break;
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
322 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
323
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
324 case GHK_RESET_OBJECT_TO_PLACE: ResetObjectToPlace(); break;
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
325 case GHK_DELETE_WINDOWS: DeleteNonVitalWindows(); break;
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
326 case GHK_DELETE_NONVITAL_WINDOWS: DeleteAllNonVitalWindows(); break;
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
327 case GHK_REFRESH_SCREEN: MarkWholeScreenDirty(); break;
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
328
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
329 case GHK_CRASH: // Crash the game
16144
27bb22e4894c (svn r20840) -Fix: make write to NULL pointer volatile so it's not optimised away
smatz <smatz@openttd.org>
parents: 15930
diff changeset
330 *(volatile byte *)0 = 0;
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
331 break;
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
332
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
333 case GHK_MONEY: // Gimme money
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
334 /* Server can not cheat in advertise mode either! */
10382
65c13f6ed86f (svn r14633) -Fix: compile failure when building a debug build without network support.
rubidium <rubidium@openttd.org>
parents: 10208
diff changeset
335 #ifdef ENABLE_NETWORK
9481
cbb53dc04d5b (svn r13433) -Codechange: remove a now useless global variable.
rubidium <rubidium@openttd.org>
parents: 9428
diff changeset
336 if (!_networking || !_network_server || !_settings_client.network.server_advertise)
10382
65c13f6ed86f (svn r14633) -Fix: compile failure when building a debug build without network support.
rubidium <rubidium@openttd.org>
parents: 10208
diff changeset
337 #endif /* ENABLE_NETWORK */
10499
45ca88a8de7d (svn r14754) -Codechange: get rid of _cmd_text and just pass it as (optional) parameter.
rubidium <rubidium@openttd.org>
parents: 10468
diff changeset
338 DoCommandP(0, 10000000, 0, CMD_MONEY_CHEAT);
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
339 break;
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
340
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
341 case GHK_UPDATE_COORDS: // Update the coordinates of all station signs
13950
77bfe67f23bd (svn r18486) -Fix: when switching language and you're getting a different font, recalculate the coordinates/sizes of the viewport signs. Otherwise it gets glitchy or abbreviated (in the smallmap)
rubidium <rubidium@openttd.org>
parents: 13796
diff changeset
342 UpdateAllVirtCoords();
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
343 break;
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
344
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
345 case GHK_TOGGLE_TRANSPARENCY:
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
346 case GHK_TOGGLE_TRANSPARENCY + 1:
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
347 case GHK_TOGGLE_TRANSPARENCY + 2:
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
348 case GHK_TOGGLE_TRANSPARENCY + 3:
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
349 case GHK_TOGGLE_TRANSPARENCY + 4:
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
350 case GHK_TOGGLE_TRANSPARENCY + 5:
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
351 case GHK_TOGGLE_TRANSPARENCY + 6:
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
352 case GHK_TOGGLE_TRANSPARENCY + 7:
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
353 case GHK_TOGGLE_TRANSPARENCY + 8:
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
354 /* Transparency toggle hot keys */
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
355 ToggleTransparency((TransparencyOption)(num - GHK_TOGGLE_TRANSPARENCY));
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
356 MarkWholeScreenDirty();
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
357 break;
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
358
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
359 case GHK_TOGGLE_INVISIBILITY:
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
360 case GHK_TOGGLE_INVISIBILITY + 1:
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
361 case GHK_TOGGLE_INVISIBILITY + 2:
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
362 case GHK_TOGGLE_INVISIBILITY + 3:
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
363 case GHK_TOGGLE_INVISIBILITY + 4:
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
364 case GHK_TOGGLE_INVISIBILITY + 5:
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
365 case GHK_TOGGLE_INVISIBILITY + 6:
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
366 case GHK_TOGGLE_INVISIBILITY + 7:
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
367 /* Invisibility toggle hot keys */
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
368 ToggleInvisibilityWithTransparency((TransparencyOption)(num - GHK_TOGGLE_INVISIBILITY));
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
369 MarkWholeScreenDirty();
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
370 break;
8806
104bbcae351d (svn r12547) -Feature: invisibility options to make objects invisible instead of transparent
smatz <smatz@openttd.org>
parents: 8790
diff changeset
371
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
372 case GHK_TRANSPARENCY_TOOLBAR:
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
373 ShowTransparencyToolbar();
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
374 break;
6427
2437ed7b277c (svn r9563) -Feature: Add more finer control to transparency options, including a new toolbar, accessible from the map menu or Ctrl X. Patch by Wolf01.
peter1138 <peter1138@openttd.org>
parents: 6357
diff changeset
375
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
376 case GHK_TRANSPARANCY:
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
377 ResetRestoreAllTransparency();
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
378 break;
6427
2437ed7b277c (svn r9563) -Feature: Add more finer control to transparency options, including a new toolbar, accessible from the map menu or Ctrl X. Patch by Wolf01.
peter1138 <peter1138@openttd.org>
parents: 6357
diff changeset
379
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
380 #ifdef ENABLE_NETWORK
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
381 case GHK_CHAT: // smart chat; send to team if any, otherwise to all
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
382 if (_networking) {
10462
435b95d3074d (svn r14717) -Change: more 'Index' -> ClientID to not confuse ClientID and ClientIndex
rubidium <rubidium@openttd.org>
parents: 10460
diff changeset
383 const NetworkClientInfo *cio = NetworkFindClientInfoFromClientID(_network_own_client_id);
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
384 if (cio == NULL) break;
5672
e6ba5c304b87 (svn r8132) -Fix (r6824): The game could crash when the chat key (<ENTER>) is pressed too vehemently during the join of the game. Your client's id does not exist in the clients list yet, and returns NULL.
Darkvater <Darkvater@openttd.org>
parents: 5668
diff changeset
385
10460
8ce8857713b8 (svn r14715) -Codechange: move some network code from the main gui file into one of the the network files.
rubidium <rubidium@openttd.org>
parents: 10454
diff changeset
386 ShowNetworkChatQueryWindow(NetworkClientPreferTeamChat(cio) ? DESTTYPE_TEAM : DESTTYPE_BROADCAST, cio->client_playas);
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
387 }
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
388 break;
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
389
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
390 case GHK_CHAT_ALL: // send text message to all clients
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
391 if (_networking) ShowNetworkChatQueryWindow(DESTTYPE_BROADCAST, 0);
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
392 break;
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
393
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
394 case GHK_CHAT_COMPANY: // send text to all team mates
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
395 if (_networking) {
10462
435b95d3074d (svn r14717) -Change: more 'Index' -> ClientID to not confuse ClientID and ClientIndex
rubidium <rubidium@openttd.org>
parents: 10460
diff changeset
396 const NetworkClientInfo *cio = NetworkFindClientInfoFromClientID(_network_own_client_id);
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
397 if (cio == NULL) break;
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
398
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
399 ShowNetworkChatQueryWindow(DESTTYPE_TEAM, cio->client_playas);
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
400 }
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
401 break;
16292
96db4d85ff89 (svn r21000) -Feature[tte]: chat directly to the server or a bot/admin/irc channel monitoring the server (dihedral)
rubidium <rubidium@openttd.org>
parents: 16144
diff changeset
402
96db4d85ff89 (svn r21000) -Feature[tte]: chat directly to the server or a bot/admin/irc channel monitoring the server (dihedral)
rubidium <rubidium@openttd.org>
parents: 16144
diff changeset
403 case GHK_CHAT_SERVER: // send text to the server
96db4d85ff89 (svn r21000) -Feature[tte]: chat directly to the server or a bot/admin/irc channel monitoring the server (dihedral)
rubidium <rubidium@openttd.org>
parents: 16144
diff changeset
404 if (_networking && !_network_server) {
96db4d85ff89 (svn r21000) -Feature[tte]: chat directly to the server or a bot/admin/irc channel monitoring the server (dihedral)
rubidium <rubidium@openttd.org>
parents: 16144
diff changeset
405 ShowNetworkChatQueryWindow(DESTTYPE_CLIENT, CLIENT_ID_SERVER);
96db4d85ff89 (svn r21000) -Feature[tte]: chat directly to the server or a bot/admin/irc channel monitoring the server (dihedral)
rubidium <rubidium@openttd.org>
parents: 16144
diff changeset
406 }
96db4d85ff89 (svn r21000) -Feature[tte]: chat directly to the server or a bot/admin/irc channel monitoring the server (dihedral)
rubidium <rubidium@openttd.org>
parents: 16144
diff changeset
407 break;
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
408 #endif
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
409
9285
3b3f13cb6db6 (svn r13151) -Codechange: use an enum instead of bool as return type of OnKeyPress/OnCTRLStateChange to make it obvious what the return values mean.
rubidium <rubidium@openttd.org>
parents: 9273
diff changeset
410 default: return ES_NOT_HANDLED;
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
411 }
9285
3b3f13cb6db6 (svn r13151) -Codechange: use an enum instead of bool as return type of OnKeyPress/OnCTRLStateChange to make it obvious what the return values mean.
rubidium <rubidium@openttd.org>
parents: 9273
diff changeset
412 return ES_HANDLED;
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
413 }
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
414
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
415 virtual void OnScroll(Point delta)
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
416 {
17151
f89e4ac875e8 (svn r21889) -Fix [FS#4434]: crash when scrolling outside of the main window (with some video backends)
rubidium <rubidium@openttd.org>
parents: 17066
diff changeset
417 this->viewport->scrollpos_x += ScaleByZoom(delta.x, this->viewport->zoom);
f89e4ac875e8 (svn r21889) -Fix [FS#4434]: crash when scrolling outside of the main window (with some video backends)
rubidium <rubidium@openttd.org>
parents: 17066
diff changeset
418 this->viewport->scrollpos_y += ScaleByZoom(delta.y, this->viewport->zoom);
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
419 this->viewport->dest_scrollpos_x = this->viewport->scrollpos_x;
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
420 this->viewport->dest_scrollpos_y = this->viewport->scrollpos_y;
17066
21cc53f6368d (svn r21803) -Cleanup: Remove unnecessary semicolons.
terkhen <terkhen@openttd.org>
parents: 16892
diff changeset
421 }
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
422
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
423 virtual void OnMouseWheel(int wheel)
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
424 {
17237
d8b501ee60b3 (svn r21977) -Codechange: Always cal Window::OnMouseWheel(), independent of viewport scroll/zoom settings.
frosch <frosch@openttd.org>
parents: 17151
diff changeset
425 if (_settings_client.gui.scrollwheel_scrolling == 0) {
d8b501ee60b3 (svn r21977) -Codechange: Always cal Window::OnMouseWheel(), independent of viewport scroll/zoom settings.
frosch <frosch@openttd.org>
parents: 17151
diff changeset
426 ZoomInOrOutToCursorWindow(wheel < 0, this);
d8b501ee60b3 (svn r21977) -Codechange: Always cal Window::OnMouseWheel(), independent of viewport scroll/zoom settings.
frosch <frosch@openttd.org>
parents: 17151
diff changeset
427 }
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
428 }
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
429
13344
04b02b2cfa2b (svn r17853) -Codechange: remove the 'delta' parameter from OnResize; it was used in ways that aren't always wanted, causing bugs and the like. Also with nested widgets most reasons for handling OnResize have gone.
rubidium <rubidium@openttd.org>
parents: 13186
diff changeset
430 virtual void OnResize()
12581
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
431 {
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
432 if (this->viewport != NULL) {
13072
75bd67594af2 (svn r17572) -Codechange: Use the Window::GetWidget() function to access nested widgets through the nested_array.
alberth <alberth@openttd.org>
parents: 12778
diff changeset
433 NWidgetViewport *nvp = this->GetWidget<NWidgetViewport>(MW_VIEWPORT);
12581
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
434 nvp->UpdateViewportCoordinates(this);
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
435 }
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
436 }
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
437
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
438 virtual void OnInvalidateData(int data)
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
439 {
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
440 /* Forward the message to the appropiate toolbar (ingame or scenario editor) */
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
441 InvalidateWindowData(WC_MAIN_TOOLBAR, 0, data);
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
442 }
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
443
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
444 static Hotkey<MainWindow> global_hotkeys[];
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
445 };
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
446
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
447 const uint16 _ghk_quit_keys[] = {'Q' | WKC_CTRL, 'Q' | WKC_META, 0};
16726
e73c78393547 (svn r21459) -Feature(tte) [FS#3217]: Hotkey Ctrl+W for returning to the main menu
planetmaker <planetmaker@openttd.org>
parents: 16310
diff changeset
448 const uint16 _ghk_abandon_keys[] = {'W' | WKC_CTRL, 'W' | WKC_META, 0};
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
449 const uint16 _ghk_chat_keys[] = {WKC_RETURN, 'T', 0};
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
450 const uint16 _ghk_chat_all_keys[] = {WKC_SHIFT | WKC_RETURN, WKC_SHIFT | 'T', 0};
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
451 const uint16 _ghk_chat_company_keys[] = {WKC_CTRL | WKC_RETURN, WKC_CTRL | 'T', 0};
16292
96db4d85ff89 (svn r21000) -Feature[tte]: chat directly to the server or a bot/admin/irc channel monitoring the server (dihedral)
rubidium <rubidium@openttd.org>
parents: 16144
diff changeset
452 const uint16 _ghk_chat_server_keys[] = {WKC_CTRL | WKC_SHIFT | WKC_RETURN, WKC_CTRL | WKC_SHIFT | 'T', 0};
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
453
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
454 Hotkey<MainWindow> MainWindow::global_hotkeys[] = {
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
455 Hotkey<MainWindow>(_ghk_quit_keys, "quit", GHK_QUIT),
16726
e73c78393547 (svn r21459) -Feature(tte) [FS#3217]: Hotkey Ctrl+W for returning to the main menu
planetmaker <planetmaker@openttd.org>
parents: 16310
diff changeset
456 Hotkey<MainWindow>(_ghk_abandon_keys, "abandon", GHK_ABANDON),
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
457 Hotkey<MainWindow>(WKC_BACKQUOTE, "console", GHK_CONSOLE),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
458 Hotkey<MainWindow>('B' | WKC_CTRL, "bounding_boxes", GHK_BOUNDING_BOXES),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
459 Hotkey<MainWindow>('C', "center", GHK_CENTER),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
460 Hotkey<MainWindow>('Z', "center_zoom", GHK_CENTER_ZOOM),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
461 Hotkey<MainWindow>(WKC_ESC, "reset_object_to_place", GHK_RESET_OBJECT_TO_PLACE),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
462 Hotkey<MainWindow>(WKC_DELETE, "delete_windows", GHK_DELETE_WINDOWS),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
463 Hotkey<MainWindow>(WKC_DELETE | WKC_SHIFT, "delete_all_windows", GHK_DELETE_NONVITAL_WINDOWS),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
464 Hotkey<MainWindow>('R' | WKC_CTRL, "refresh_screen", GHK_REFRESH_SCREEN),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
465 #if defined(_DEBUG)
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
466 Hotkey<MainWindow>('0' | WKC_ALT, "crash_game", GHK_CRASH),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
467 Hotkey<MainWindow>('1' | WKC_ALT, "money", GHK_MONEY),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
468 Hotkey<MainWindow>('2' | WKC_ALT, "update_coordinates", GHK_UPDATE_COORDS),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
469 #endif
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
470 Hotkey<MainWindow>('1' | WKC_CTRL, "transparency_signs", GHK_TOGGLE_TRANSPARENCY),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
471 Hotkey<MainWindow>('2' | WKC_CTRL, "transparency_trees", GHK_TOGGLE_TRANSPARENCY + 1),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
472 Hotkey<MainWindow>('3' | WKC_CTRL, "transparency_houses", GHK_TOGGLE_TRANSPARENCY + 2),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
473 Hotkey<MainWindow>('4' | WKC_CTRL, "transparency_industries", GHK_TOGGLE_TRANSPARENCY + 3),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
474 Hotkey<MainWindow>('5' | WKC_CTRL, "transparency_buildings", GHK_TOGGLE_TRANSPARENCY + 4),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
475 Hotkey<MainWindow>('6' | WKC_CTRL, "transparency_bridges", GHK_TOGGLE_TRANSPARENCY + 5),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
476 Hotkey<MainWindow>('7' | WKC_CTRL, "transparency_structures", GHK_TOGGLE_TRANSPARENCY + 6),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
477 Hotkey<MainWindow>('8' | WKC_CTRL, "transparency_catenary", GHK_TOGGLE_TRANSPARENCY + 7),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
478 Hotkey<MainWindow>('9' | WKC_CTRL, "transparency_loading", GHK_TOGGLE_TRANSPARENCY + 8),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
479 Hotkey<MainWindow>('1' | WKC_CTRL | WKC_SHIFT, "invisibility_signs", GHK_TOGGLE_INVISIBILITY),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
480 Hotkey<MainWindow>('2' | WKC_CTRL | WKC_SHIFT, "invisibility_trees", GHK_TOGGLE_INVISIBILITY + 1),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
481 Hotkey<MainWindow>('3' | WKC_CTRL | WKC_SHIFT, "invisibility_houses", GHK_TOGGLE_INVISIBILITY + 2),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
482 Hotkey<MainWindow>('4' | WKC_CTRL | WKC_SHIFT, "invisibility_industries", GHK_TOGGLE_INVISIBILITY + 3),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
483 Hotkey<MainWindow>('5' | WKC_CTRL | WKC_SHIFT, "invisibility_buildings", GHK_TOGGLE_INVISIBILITY + 4),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
484 Hotkey<MainWindow>('6' | WKC_CTRL | WKC_SHIFT, "invisibility_bridges", GHK_TOGGLE_INVISIBILITY + 5),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
485 Hotkey<MainWindow>('7' | WKC_CTRL | WKC_SHIFT, "invisibility_structures", GHK_TOGGLE_INVISIBILITY + 6),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
486 Hotkey<MainWindow>('8' | WKC_CTRL | WKC_SHIFT, "invisibility_catenary", GHK_TOGGLE_INVISIBILITY + 7),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
487 Hotkey<MainWindow>('X' | WKC_CTRL, "transparency_toolbar", GHK_TRANSPARENCY_TOOLBAR),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
488 Hotkey<MainWindow>('X', "toggle_transparency", GHK_TRANSPARANCY),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
489 #ifdef ENABLE_NETWORK
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
490 Hotkey<MainWindow>(_ghk_chat_keys, "chat", GHK_CHAT),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
491 Hotkey<MainWindow>(_ghk_chat_all_keys, "chat_all", GHK_CHAT_ALL),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
492 Hotkey<MainWindow>(_ghk_chat_company_keys, "chat_company", GHK_CHAT_COMPANY),
16292
96db4d85ff89 (svn r21000) -Feature[tte]: chat directly to the server or a bot/admin/irc channel monitoring the server (dihedral)
rubidium <rubidium@openttd.org>
parents: 16144
diff changeset
493 Hotkey<MainWindow>(_ghk_chat_server_keys, "chat_server", GHK_CHAT_SERVER),
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
494 #endif
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
495 HOTKEY_LIST_END(MainWindow)
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
496 };
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
497 Hotkey<MainWindow> *_global_hotkeys = MainWindow::global_hotkeys;
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
498
15431
d730740247bc (svn r20074) -Fix (r20065): highscore window should use the same hotkey for quit as the toolbar
yexo <yexo@openttd.org>
parents: 15416
diff changeset
499 /**
d730740247bc (svn r20074) -Fix (r20065): highscore window should use the same hotkey for quit as the toolbar
yexo <yexo@openttd.org>
parents: 15416
diff changeset
500 * Does the given keycode match one of the keycodes bound to 'quit game'?
d730740247bc (svn r20074) -Fix (r20065): highscore window should use the same hotkey for quit as the toolbar
yexo <yexo@openttd.org>
parents: 15416
diff changeset
501 * @param keycode The keycode that was pressed by the user.
d730740247bc (svn r20074) -Fix (r20065): highscore window should use the same hotkey for quit as the toolbar
yexo <yexo@openttd.org>
parents: 15416
diff changeset
502 * @return True iff the keycode matches one of the hotkeys for 'quit'.
d730740247bc (svn r20074) -Fix (r20065): highscore window should use the same hotkey for quit as the toolbar
yexo <yexo@openttd.org>
parents: 15416
diff changeset
503 */
d730740247bc (svn r20074) -Fix (r20065): highscore window should use the same hotkey for quit as the toolbar
yexo <yexo@openttd.org>
parents: 15416
diff changeset
504 bool IsQuitKey(uint16 keycode)
d730740247bc (svn r20074) -Fix (r20065): highscore window should use the same hotkey for quit as the toolbar
yexo <yexo@openttd.org>
parents: 15416
diff changeset
505 {
d730740247bc (svn r20074) -Fix (r20065): highscore window should use the same hotkey for quit as the toolbar
yexo <yexo@openttd.org>
parents: 15416
diff changeset
506 int num = CheckHotkeyMatch<MainWindow>(_global_hotkeys, keycode, NULL);
d730740247bc (svn r20074) -Fix (r20065): highscore window should use the same hotkey for quit as the toolbar
yexo <yexo@openttd.org>
parents: 15416
diff changeset
507 return num == GHK_QUIT;
d730740247bc (svn r20074) -Fix (r20065): highscore window should use the same hotkey for quit as the toolbar
yexo <yexo@openttd.org>
parents: 15416
diff changeset
508 }
d730740247bc (svn r20074) -Fix (r20065): highscore window should use the same hotkey for quit as the toolbar
yexo <yexo@openttd.org>
parents: 15416
diff changeset
509
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
510
6247
57363e064324 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium <rubidium@openttd.org>
parents: 6231
diff changeset
511 void ShowSelectGameWindow();
57363e064324 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium <rubidium@openttd.org>
parents: 6231
diff changeset
512
11085
8da1855e9f14 (svn r15428) -Codechange: consistently use colour instead of having both color and colour.
rubidium <rubidium@openttd.org>
parents: 10996
diff changeset
513 void SetupColoursAndInitialWindow()
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
514 {
8977
9cfe40b47731 (svn r12769) -Codechange: some coding style cleanups.
rubidium <rubidium@openttd.org>
parents: 8976
diff changeset
515 for (uint i = 0; i != 16; i++) {
11085
8da1855e9f14 (svn r15428) -Codechange: consistently use colour instead of having both color and colour.
rubidium <rubidium@openttd.org>
parents: 10996
diff changeset
516 const byte *b = GetNonSprite(PALETTE_RECOLOUR_START + i, ST_RECOLOUR);
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
517
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
518 assert(b);
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
519 memcpy(_colour_gradient[i], b + 0xC6, sizeof(_colour_gradient[i]));
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
520 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
521
12581
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
522 new MainWindow;
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
523
6201
3b141366478a (svn r8987) -Cleanup: doxygen changes. Again. Mostly (still) @files missing tags and (more than just) a few comments style.
belugas <belugas@openttd.org>
parents: 5894
diff changeset
524 /* XXX: these are not done */
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
525 switch (_game_mode) {
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
526 default: NOT_REACHED();
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
527 case GM_MENU:
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
528 ShowSelectGameWindow();
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
529 break;
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
530
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
531 case GM_NORMAL:
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
532 case GM_EDITOR:
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
533 ShowVitalWindows();
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
534 break;
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
535 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
536 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
537
6247
57363e064324 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium <rubidium@openttd.org>
parents: 6231
diff changeset
538 void ShowVitalWindows()
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
539 {
9240
5cedbfe95435 (svn r13106) -Codechange: rework the toolbar code a little so functions do not have to return the Window they just created.
rubidium <rubidium@openttd.org>
parents: 9205
diff changeset
540 AllocateToolbar();
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
541
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
542 /* Status bad only for normal games */
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
543 if (_game_mode == GM_EDITOR) return;
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
544
8976
cbf8b2b89c08 (svn r12768) -Codechange: move the statusbar GUI to it's own file.
rubidium <rubidium@openttd.org>
parents: 8975
diff changeset
545 ShowStatusBar();
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
546 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
547
8857
a75a0c683fea (svn r12619) -Codechange: lots of documentation about window related stuff. Patch by Alberth.
rubidium <rubidium@openttd.org>
parents: 8806
diff changeset
548 /**
a75a0c683fea (svn r12619) -Codechange: lots of documentation about window related stuff. Patch by Alberth.
rubidium <rubidium@openttd.org>
parents: 8806
diff changeset
549 * Size of the application screen changed.
a75a0c683fea (svn r12619) -Codechange: lots of documentation about window related stuff. Patch by Alberth.
rubidium <rubidium@openttd.org>
parents: 8806
diff changeset
550 * Adapt the game screen-size, re-allocate the open windows, and repaint everything
a75a0c683fea (svn r12619) -Codechange: lots of documentation about window related stuff. Patch by Alberth.
rubidium <rubidium@openttd.org>
parents: 8806
diff changeset
551 */
6247
57363e064324 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium <rubidium@openttd.org>
parents: 6231
diff changeset
552 void GameSizeChanged()
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
553 {
9533
176a9fe1018f (svn r13537) -Fix [FS#2090](r13523): QSortT won't work this way, use Dimension instead of uint16[2] for resolutions
smatz <smatz@openttd.org>
parents: 9481
diff changeset
554 _cur_resolution.width = _screen.width;
176a9fe1018f (svn r13537) -Fix [FS#2090](r13523): QSortT won't work this way, use Dimension instead of uint16[2] for resolutions
smatz <smatz@openttd.org>
parents: 9481
diff changeset
555 _cur_resolution.height = _screen.height;
8985
480d464f5e24 (svn r12779) -Codechange: remove a few constants from openttd.h.
rubidium <rubidium@openttd.org>
parents: 8979
diff changeset
556 ScreenSizeChanged();
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
557 RelocateAllWindows(_screen.width, _screen.height);
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
558 MarkWholeScreenDirty();
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
559 }