annotate src/main_gui.cpp @ 15552:683f2dbe75bb draft

(svn r20211) -Codechange: Indented code should have curly braces around it.
author alberth <alberth@openttd.org>
date Sat, 24 Jul 2010 10:14:39 +0000
parents 995eaf7f493c
children e4640748f223
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
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
35 #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
36 #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
37 #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
38 #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
39
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
40 #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
41 #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
42
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
43 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
44 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
45
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
46 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
47 {
6898
a7d1b5936638 (svn r10145) -Fix: make compiling with networking disabled (again) possible.
rubidium <rubidium@openttd.org>
parents: 6857
diff changeset
48 #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
49 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
50
15002
baf0e12ad2b4 (svn r19614) -Codechange: "it's" => "its" where appropriate
smatz <smatz@openttd.org>
parents: 14258
diff changeset
51 /* 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
52 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
53 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
54 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
55
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
56 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
57 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
58 } 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
59 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
60 }
6898
a7d1b5936638 (svn r10145) -Fix: make compiling with networking disabled (again) possible.
rubidium <rubidium@openttd.org>
parents: 6857
diff changeset
61 #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
62 }
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
63
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
64 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
65 {
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
66 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
67 #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
68 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
69 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
70 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
71 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
72
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
73 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
74
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
75 /* 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
76 DoCommandP(0, money_c, _rename_id, CMD_GIVE_MONEY | CMD_MSG(STR_ERROR_INSUFFICIENT_FUNDS), CcGiveMoney, str);
6492
e0b6c88a6650 (svn r9673) -Cleanup: remove spaces before tabs and replace non-indenting tabs with spaces.
rubidium <rubidium@openttd.org>
parents: 6486
diff changeset
77 } 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
78 #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
79 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
80 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
81
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
82 _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
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 /**
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
86 * 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
87 * 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
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 * @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
90 * @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
91 * @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
92 * @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
93 * @param placeproc Procedure which will be called when someone clicks on the map
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
94 * @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
95 */
11702
cdaad565efe5 (svn r16088) -Codechange: merge HighLightStyle and ViewportHighlightMode as they are basically the same thing
rubidium <rubidium@openttd.org>
parents: 11375
diff changeset
96 bool HandlePlacePushButton(Window *w, int widget, CursorID cursor, HighLightStyle mode, PlaceProc *placeproc)
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
97 {
7997
d109780d515b (svn r11555) -Codechange: use the new members introduced in r11551.
rubidium <rubidium@openttd.org>
parents: 7954
diff changeset
98 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
99
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
100 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
101 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
102
7997
d109780d515b (svn r11555) -Codechange: use the new members introduced in r11551.
rubidium <rubidium@openttd.org>
parents: 7954
diff changeset
103 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
104 ResetObjectToPlace();
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
105 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
106 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
107
5668
3d6d9bff3dd8 (svn r8128) -Codechange: Split sprite and palette remap into separate 32 bit values.
peter1138 <peter1138@openttd.org>
parents: 5601
diff changeset
108 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
109 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
110 _place_proc = placeproc;
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
111 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
112 }
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
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
115 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
116 {
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
117 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
118 }
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 #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
121 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
122 {
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
123 _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
124 _rename_what = 3;
10145
dbe302da93a8 (svn r14331) -Codechange: use an enum as additional parameter for ShowQueryString()
smatz <smatz@openttd.org>
parents: 10056
diff changeset
125 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
126 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
127 #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
128
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
129
11368
82c90cd591ab (svn r15718) -Cleanup: apply some comment coding style on the rest of the sources too
rubidium <rubidium@openttd.org>
parents: 11361
diff changeset
130 /* Zooms a viewport in a window in or out
82c90cd591ab (svn r15718) -Cleanup: apply some comment coding style on the rest of the sources too
rubidium <rubidium@openttd.org>
parents: 11361
diff changeset
131 * No button handling or what so ever */
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
132 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
133 {
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
134 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
135
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
136 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
137 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
138
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
139 switch (how) {
15184
68b7b29a6b7e (svn r19813) -Fix (r19807): initialising viewports kinda failed
rubidium <rubidium@openttd.org>
parents: 15178
diff changeset
140 case ZOOM_NONE:
68b7b29a6b7e (svn r19813) -Fix (r19807): initialising viewports kinda failed
rubidium <rubidium@openttd.org>
parents: 15178
diff changeset
141 /* 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
142 break;
68b7b29a6b7e (svn r19813) -Fix (r19807): initialising viewports kinda failed
rubidium <rubidium@openttd.org>
parents: 15178
diff changeset
143
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
144 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
145 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
146 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
147 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
148 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
149
9184
a7020e34c67b (svn r13047) -Codechange: remove vp_d
glx <glx@openttd.org>
parents: 9165
diff changeset
150 w->viewport->scrollpos_x += vp->virtual_width >> 1;
a7020e34c67b (svn r13047) -Codechange: remove vp_d
glx <glx@openttd.org>
parents: 9165
diff changeset
151 w->viewport->scrollpos_y += vp->virtual_height >> 1;
a7020e34c67b (svn r13047) -Codechange: remove vp_d
glx <glx@openttd.org>
parents: 9165
diff changeset
152 w->viewport->dest_scrollpos_x = w->viewport->scrollpos_x;
a7020e34c67b (svn r13047) -Codechange: remove vp_d
glx <glx@openttd.org>
parents: 9165
diff changeset
153 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
154 break;
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
155 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
156 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
157 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
158
9184
a7020e34c67b (svn r13047) -Codechange: remove vp_d
glx <glx@openttd.org>
parents: 9165
diff changeset
159 w->viewport->scrollpos_x -= vp->virtual_width >> 1;
a7020e34c67b (svn r13047) -Codechange: remove vp_d
glx <glx@openttd.org>
parents: 9165
diff changeset
160 w->viewport->scrollpos_y -= vp->virtual_height >> 1;
a7020e34c67b (svn r13047) -Codechange: remove vp_d
glx <glx@openttd.org>
parents: 9165
diff changeset
161 w->viewport->dest_scrollpos_x = w->viewport->scrollpos_x;
a7020e34c67b (svn r13047) -Codechange: remove vp_d
glx <glx@openttd.org>
parents: 9165
diff changeset
162 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
163
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
164 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
165 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
166 break;
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
167 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
168 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
169 vp->virtual_left = w->viewport->scrollpos_x;
a7020e34c67b (svn r13047) -Codechange: remove vp_d
glx <glx@openttd.org>
parents: 9165
diff changeset
170 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
171 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
172 /* 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
173 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
174 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
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
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
177 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
178 {
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
179 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
180
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
181 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
182 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
183 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
184
10642
29bc871ff8d1 (svn r14944) -Cleanup: add spaces around some operators
rubidium <rubidium@openttd.org>
parents: 10507
diff changeset
185 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
186 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
187 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
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 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
190 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
191 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
192 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
193
12581
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
194 /** Widgets of the main window. */
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
195 enum MainWindowWidgets {
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
196 MW_VIEWPORT, ///< Main window viewport.
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
197 };
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
198
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
199 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
200 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
201 };
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
202
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
203 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
204 WDP_MANUAL, 0, 0,
12581
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
205 WC_MAIN_WINDOW, WC_NONE,
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
206 0,
13564
bae287664b02 (svn r18086) -Codechange: remove 'widget' from WindowDesc
rubidium <rubidium@openttd.org>
parents: 13444
diff changeset
207 _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
208 );
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
209
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
210 enum {
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
211 GHK_QUIT,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
212 GHK_CONSOLE,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
213 GHK_BOUNDING_BOXES,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
214 GHK_CENTER,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
215 GHK_CENTER_ZOOM,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
216 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
217 GHK_DELETE_WINDOWS,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
218 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
219 GHK_REFRESH_SCREEN,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
220 GHK_CRASH,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
221 GHK_MONEY,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
222 GHK_UPDATE_COORDS,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
223 GHK_TOGGLE_TRANSPARENCY,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
224 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
225 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
226 GHK_TRANSPARANCY,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
227 GHK_CHAT,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
228 GHK_CHAT_ALL,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
229 GHK_CHAT_COMPANY,
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
230 };
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
231
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
232 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
233 {
12581
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
234 MainWindow() : Window()
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
235 {
12581
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
236 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
237 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
238
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
239 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
240 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
241 }
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
242
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
243 virtual void OnPaint()
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
244 {
12581
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
245 this->DrawWidgets();
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
246 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
247 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
248 static const uint LETTER_SPACING = 10;
995eaf7f493c (svn r20077) -Codechange: remove the space between "open" and "ttd" in the title screen
yexo <yexo@openttd.org>
parents: 15431
diff changeset
249 uint 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
250
15434
995eaf7f493c (svn r20077) -Codechange: remove the space between "open" and "ttd" in the title screen
yexo <yexo@openttd.org>
parents: 15431
diff changeset
251 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
252 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
253 }
995eaf7f493c (svn r20077) -Codechange: remove the space between "open" and "ttd" in the title screen
yexo <yexo@openttd.org>
parents: 15431
diff changeset
254 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
255
15434
995eaf7f493c (svn r20077) -Codechange: remove the space between "open" and "ttd" in the title screen
yexo <yexo@openttd.org>
parents: 15431
diff changeset
256 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
257 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
258 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
259 }
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
260 }
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
261 }
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
262
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
263 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
264 {
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
265 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
266 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
267 HandleExitGameRequest();
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
268 return ES_HANDLED;
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
269 }
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 /* 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
272 * generating the world, otherwise they create threading
02313cc6114e (svn r15711) -Codechange: lots of whitespace cleanup/fixes
rubidium <rubidium@openttd.org>
parents: 11085
diff changeset
273 * problem during the generating, resulting in random
02313cc6114e (svn r15711) -Codechange: lots of whitespace cleanup/fixes
rubidium <rubidium@openttd.org>
parents: 11085
diff changeset
274 * 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
275 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
276
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
277 if (num == GHK_CONSOLE) {
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
278 IConsoleSwitch();
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
279 return ES_HANDLED;
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
280 }
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
281
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
282 if (num == GHK_BOUNDING_BOXES) {
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
283 extern bool _draw_bounding_boxes;
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
284 _draw_bounding_boxes = !_draw_bounding_boxes;
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
285 MarkWholeScreenDirty();
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
286 return ES_HANDLED;
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
287 }
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
288
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
289 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
290
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
291 switch (num) {
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
292 case GHK_CENTER:
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
293 case GHK_CENTER_ZOOM: {
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
294 Point pt = GetTileBelowCursor();
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
295 if (pt.x != -1) {
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
296 if (num == GHK_CENTER_ZOOM) MaxZoomInOut(ZOOM_IN, this);
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
297 ScrollMainWindowTo(pt.x, pt.y);
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
298 }
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
299 break;
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
300 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
301
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
302 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
303 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
304 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
305 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
306
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
307 case GHK_CRASH: // Crash the game
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
308 *(byte*)0 = 0;
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
309 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
310
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
311 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
312 /* 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
313 #ifdef ENABLE_NETWORK
9481
cbb53dc04d5b (svn r13433) -Codechange: remove a now useless global variable.
rubidium <rubidium@openttd.org>
parents: 9428
diff changeset
314 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
315 #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
316 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
317 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
318
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
319 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
320 UpdateAllVirtCoords();
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
321 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
322
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
323 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
324 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
325 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
326 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
327 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
328 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
329 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
330 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
331 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
332 /* 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
333 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
334 MarkWholeScreenDirty();
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
335 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
336
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
337 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
338 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
339 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
340 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
341 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
342 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
343 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
344 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
345 /* 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
346 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
347 MarkWholeScreenDirty();
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
348 break;
8806
104bbcae351d (svn r12547) -Feature: invisibility options to make objects invisible instead of transparent
smatz <smatz@openttd.org>
parents: 8790
diff changeset
349
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
350 case GHK_TRANSPARENCY_TOOLBAR:
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
351 ShowTransparencyToolbar();
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
352 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
353
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
354 case GHK_TRANSPARANCY:
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
355 ResetRestoreAllTransparency();
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
356 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
357
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 #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
359 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
360 if (_networking) {
10462
435b95d3074d (svn r14717) -Change: more 'Index' -> ClientID to not confuse ClientID and ClientIndex
rubidium <rubidium@openttd.org>
parents: 10460
diff changeset
361 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
362 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
363
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
364 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
365 }
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
366 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
367
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
368 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
369 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
370 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
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_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
373 if (_networking) {
10462
435b95d3074d (svn r14717) -Change: more 'Index' -> ClientID to not confuse ClientID and ClientIndex
rubidium <rubidium@openttd.org>
parents: 10460
diff changeset
374 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
375 if (cio == NULL) break;
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
376
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
377 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
378 }
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
379 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
380 #endif
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
381
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
382 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
383 }
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
384 return ES_HANDLED;
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
385 }
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
386
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
387 virtual void OnScroll(Point delta)
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
388 {
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
389 ViewPort *vp = IsPtInWindowViewport(this, _cursor.pos.x, _cursor.pos.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
390
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
391 if (vp == NULL) {
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
392 _cursor.fix_at = false;
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
393 _scrolling_viewport = false;
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
394 }
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
395
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
396 this->viewport->scrollpos_x += ScaleByZoom(delta.x, vp->zoom);
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
397 this->viewport->scrollpos_y += ScaleByZoom(delta.y, vp->zoom);
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
398 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
399 this->viewport->dest_scrollpos_y = this->viewport->scrollpos_y;
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
400 };
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
401
9205
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
402 virtual void OnMouseWheel(int wheel)
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
403 {
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
404 ZoomInOrOutToCursorWindow(wheel < 0, this);
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
405 }
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
406
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
407 virtual void OnResize()
12581
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
408 {
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
409 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
410 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
411 nvp->UpdateViewportCoordinates(this);
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
412 }
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
413 }
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
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 OnInvalidateData(int data)
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
416 {
a8b1f6fa5f79 (svn r13071) -Codechange: make also a class of the MainWindow.
rubidium <rubidium@openttd.org>
parents: 9184
diff changeset
417 /* 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
418 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
419 }
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
420
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
421 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
422 };
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
423
15416
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
424 const uint16 _ghk_quit_keys[] = {'Q' | WKC_CTRL, 'Q' | WKC_META, 0};
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
425 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
426 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
427 const uint16 _ghk_chat_company_keys[] = {WKC_CTRL | WKC_RETURN, WKC_CTRL | 'T', 0};
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
428
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
429 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
430 Hotkey<MainWindow>(_ghk_quit_keys, "quit", GHK_QUIT),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
431 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
432 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
433 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
434 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
435 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
436 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
437 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
438 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
439 #if defined(_DEBUG)
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
440 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
441 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
442 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
443 #endif
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
444 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
445 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
446 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
447 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
448 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
449 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
450 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
451 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
452 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
453 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
454 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
455 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
456 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
457 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
458 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
459 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
460 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
461 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
462 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
463 #ifdef ENABLE_NETWORK
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
464 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
465 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
466 Hotkey<MainWindow>(_ghk_chat_company_keys, "chat_company", GHK_CHAT_COMPANY),
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
467 #endif
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
468 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
469 };
895563a537b9 (svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
yexo <yexo@openttd.org>
parents: 15184
diff changeset
470 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
471
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
472 /**
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
473 * 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
474 * @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
475 * @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
476 */
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
477 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
478 {
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
479 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
480 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
481 }
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
482
5584
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
483
6247
57363e064324 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium <rubidium@openttd.org>
parents: 6231
diff changeset
484 void ShowSelectGameWindow();
57363e064324 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium <rubidium@openttd.org>
parents: 6231
diff changeset
485
11085
8da1855e9f14 (svn r15428) -Codechange: consistently use colour instead of having both color and colour.
rubidium <rubidium@openttd.org>
parents: 10996
diff changeset
486 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
487 {
8977
9cfe40b47731 (svn r12769) -Codechange: some coding style cleanups.
rubidium <rubidium@openttd.org>
parents: 8976
diff changeset
488 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
489 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
490
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
491 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
492 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
493 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
494
12581
374037971842 (svn r17021) -Codechange: Use nested widgets for the main window.
alberth <alberth@openttd.org>
parents: 12391
diff changeset
495 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
496
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
497 /* 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
498 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
499 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
500 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
501 ShowSelectGameWindow();
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
502 break;
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
503
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
504 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
505 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
506 ShowVitalWindows();
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
507 break;
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
508 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
509 }
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 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
512 {
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
513 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
514
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
515 /* 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
516 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
517
8976
cbf8b2b89c08 (svn r12768) -Codechange: move the statusbar GUI to it's own file.
rubidium <rubidium@openttd.org>
parents: 8975
diff changeset
518 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
519 }
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
520
8857
a75a0c683fea (svn r12619) -Codechange: lots of documentation about window related stuff. Patch by Alberth.
rubidium <rubidium@openttd.org>
parents: 8806
diff changeset
521 /**
a75a0c683fea (svn r12619) -Codechange: lots of documentation about window related stuff. Patch by Alberth.
rubidium <rubidium@openttd.org>
parents: 8806
diff changeset
522 * 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
523 * 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
524 */
6247
57363e064324 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium <rubidium@openttd.org>
parents: 6231
diff changeset
525 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
526 {
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
527 _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
528 _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
529 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
530 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
531 MarkWholeScreenDirty();
4b26bd55bd24 (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)
KUDr <KUDr@openttd.org>
parents:
diff changeset
532 }