summaryrefslogtreecommitdiff
path: root/main_gui.c
diff options
context:
space:
mode:
authorDarkvater <Darkvater@openttd.org>2005-05-06 20:38:18 +0000
committerDarkvater <Darkvater@openttd.org>2005-05-06 20:38:18 +0000
commit5e4080b5470a5cc619ec989c89055404f2c5515b (patch)
tree679be33cbf3843b3c5ddf01487a1bb53f39d7180 /main_gui.c
parent2c01a244742f5c53a3f45737a88ad30783c7f7d8 (diff)
downloadopenttd-5e4080b5470a5cc619ec989c89055404f2c5515b.tar.xz
(svn r2276) - CodeChange: remove DebugProc() and make the ALT+0...4 codes only available in debug mode
Diffstat (limited to 'main_gui.c')
-rw-r--r--main_gui.c40
1 files changed, 22 insertions, 18 deletions
diff --git a/main_gui.c b/main_gui.c
index 99864a5fb..c7b30a5e3 100644
--- a/main_gui.c
+++ b/main_gui.c
@@ -2292,7 +2292,7 @@ static WindowDesc _main_status_desc = {
StatusBarWndProc
};
-extern void DebugProc(int i);
+extern void UpdateAllStationVirtCoord(void);
static void MainWindowWndProc(Window *w, WindowEvent *e) {
int off_x;
@@ -2339,8 +2339,7 @@ static void MainWindowWndProc(Window *w, WindowEvent *e) {
break;
}
- if (_game_mode == GM_MENU)
- break;
+ if (_game_mode == GM_MENU) break;
switch (e->keypress.keycode) {
case 'C': case 'Z': {
@@ -2356,18 +2355,26 @@ static void MainWindowWndProc(Window *w, WindowEvent *e) {
case WKC_ESC: ResetObjectToPlace(); break;
case WKC_DELETE: DeleteNonVitalWindows(); break;
case WKC_DELETE | WKC_SHIFT: DeleteAllNonVitalWindows(); break;
- case 'Q' | WKC_CTRL: AskExitGame(); break;
- case 'Q' | WKC_META: AskExitGame(); break; // this enables command + Q on mac
+ case 'Q' | WKC_CTRL: case 'Q' | WKC_META: AskExitGame(); break; // this enables command + Q on mac
case 'R' | WKC_CTRL: MarkWholeScreenDirty(); break;
- case '0' | WKC_ALT:
- case '1' | WKC_ALT:
- case '2' | WKC_ALT:
+#if defined(_DEBUG)
+ case '0' | WKC_ALT: /* Crash the game */
+ *(byte*)0 = 0;
+ break;
+ case '1' | WKC_ALT: /* Gimme money */
+ /* Server can not cheat in advertise mode either! */
+ #ifdef ENABLE_NETWORK
+ if (!_networking || !_network_server || !_network_advertise)
+ #endif
+ DoCommandP(0, -10000000, 0, NULL, CMD_MONEY_CHEAT);
+ break;
+ case '2' | WKC_ALT: /* Update the coordinates of all station signs */
+ UpdateAllStationVirtCoord();
+ break;
case '3' | WKC_ALT:
case '4' | WKC_ALT:
-#if defined(_DEBUG)
- DebugProc(e->keypress.keycode - ('0' | WKC_ALT));
-#endif
break;
+#endif
case 'X':
_display_opt ^= DO_TRANS_BUILDINGS;
@@ -2375,15 +2382,12 @@ static void MainWindowWndProc(Window *w, WindowEvent *e) {
break;
#ifdef ENABLE_NETWORK
- case WKC_RETURN:
- case 'T' | WKC_SHIFT:
- if (_networking)
- ShowNetworkChatQueryWindow(DESTTYPE_BROADCAST, 0);
+ case WKC_RETURN: case 'T' | WKC_SHIFT:
+ if (_networking) ShowNetworkChatQueryWindow(DESTTYPE_BROADCAST, 0);
break;
-#endif /* ENABLE_NETWORK */
+#endif
- default:
- return;
+ default: return;
}
e->keypress.cont = false;
break;