2016-09-19 09:39:25 +03:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
|
|
|
* This program 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; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CHEWY_CONSOLE_H
|
|
|
|
#define CHEWY_CONSOLE_H
|
|
|
|
|
|
|
|
#include "gui/debugger.h"
|
|
|
|
|
|
|
|
namespace Chewy {
|
|
|
|
|
|
|
|
class ChewyEngine;
|
|
|
|
|
|
|
|
class Console : public GUI::Debugger {
|
|
|
|
public:
|
|
|
|
Console(ChewyEngine *vm);
|
2020-02-09 12:05:27 +01:00
|
|
|
~Console(void) override;
|
2016-09-19 09:39:25 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
ChewyEngine *_vm;
|
|
|
|
|
|
|
|
bool Cmd_Dump(int argc, const char **argv);
|
2016-09-20 12:10:59 +03:00
|
|
|
bool Cmd_DumpBg(int argc, const char **argv);
|
2017-03-15 10:20:07 +02:00
|
|
|
bool Cmd_DrawImage(int argc, const char **argv);
|
|
|
|
bool Cmd_DrawSprite(int argc, const char **argv);
|
2016-09-20 10:56:47 +03:00
|
|
|
bool Cmd_PlaySound(int argc, const char **argv);
|
|
|
|
bool Cmd_PlaySpeech(int argc, const char **argv);
|
|
|
|
bool Cmd_PlayMusic(int argc, const char **argv);
|
2016-09-21 00:50:53 +03:00
|
|
|
bool Cmd_PlayVideo(int argc, const char **argv);
|
|
|
|
bool Cmd_VideoInfo(int argc, const char **argv);
|
2016-10-03 01:38:48 +03:00
|
|
|
bool Cmd_ErrorMessage(int argc, const char **argv);
|
2016-10-04 02:27:22 +03:00
|
|
|
bool Cmd_Dialog(int argc, const char **argv);
|
2016-10-05 10:47:22 +03:00
|
|
|
bool Cmd_Text(int argc, const char **argv);
|
2017-01-08 20:20:47 +02:00
|
|
|
bool Cmd_Scene(int argc, const char **argv);
|
2016-09-19 09:39:25 +03:00
|
|
|
};
|
|
|
|
|
2016-09-19 09:42:29 +03:00
|
|
|
} // End of namespace Chewy
|
2016-09-19 09:39:25 +03:00
|
|
|
#endif
|