ScummVM API documentation
console.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22  // Console module header file
23 
24 #ifndef SAGA_CONSOLE_H
25 #define SAGA_CONSOLE_H
26 
27 #include "gui/debugger.h"
28 
29 namespace Saga {
30 
31 class Console : public GUI::Debugger {
32 public:
33  Console(SagaEngine *vm);
34  ~Console() override;
35 
36 private:
37  bool cmdActorWalkTo(int argc, const char **argv);
38 
39  bool cmdAnimInfo(int argc, const char **argv);
40  bool cmdCutawayInfo(int argc, const char **argv);
41  bool cmdPlayCutaway(int argc, const char **argv);
42 
43  bool cmdPlayMusic(int argc, const char **argv);
44  bool cmdPlaySound(int argc, const char **argv);
45  bool cmdPlayVoice(int argc, const char **argv);
46 
47  bool cmdCurrentScene(int argc, const char **argv);
48  bool cmdCurrentChapter(int argc, const char **argv);
49  bool cmdSceneChange(int argc, const char **argv);
50  bool cmdChapterChange(int argc, const char **argv);
51 
52  bool cmdActionMapInfo(int argc, const char **argv);
53  bool cmdObjectMapInfo(int argc, const char **argv);
54 
55  bool cmdWakeUpThreads(int argc, const char **argv);
56 
57  bool cmdCurrentPanelMode(int argc, const char **argv);
58  bool cmdSetPanelMode(int argc, const char **argv);
59 
60  bool cmdSetFontMapping(int argc, const char **argv);
61 
62  bool cmdGlobalFlagsInfo(int argc, const char **argv);
63  bool cmdSetGlobalFlag(int argc, const char **argv);
64  bool cmdClearGlobalFlag(int argc, const char **argv);
65 
66 private:
67  SagaEngine *_vm;
68 };
69 
70 } // End of namespace Saga
71 
72 #endif
Definition: saga.h:497
Definition: debugger.h:41
Definition: actor.h:34
Definition: console.h:31