(svn r127) New feature: ingame console. (sign_de)

Press tab to open the console, more info in docs/console.txt
This commit is contained in:
dominik
2004-08-24 08:34:28 +00:00
parent 7efcc84512
commit e2f627a22e
11 changed files with 992 additions and 19 deletions

View File

@@ -9,7 +9,8 @@
#include "command.h"
#include "news.h"
#include "town.h"
#include "vehicle.h"
#include "vehicle.h"
#include "console.h"
#include "table/animcursors.h"
@@ -1687,7 +1688,8 @@ static void MainToolbarWndProc(Window *w, WindowEvent *e)
case WKC_SHIFT | WKC_F11: ShowBuildTreesToolbar(); break;
case WKC_SHIFT | WKC_F12: ShowMusicWindow(); break;
case WKC_CTRL | 'S': _make_screenshot = 1; break;
case WKC_CTRL | 'G': _make_screenshot = 2; break;
case WKC_CTRL | 'G': _make_screenshot = 2; break;
case WKC_TAB: IConsoleSwitch(); e->keypress.keycode=0; break;
case WKC_CTRL | WKC_ALT | 'C': if(!_networking) ShowCheatWindow(); break;
}
} break;