PEGASUS: Add a stub debugger

This commit is contained in:
Matthew Hoops 2011-05-12 16:17:12 -04:00
parent 85b2a0574c
commit 50e43a56e7
5 changed files with 97 additions and 0 deletions

View File

@ -0,0 +1,38 @@
/* 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.
*
* $URL$
* $Id$
*
*/
#include "pegasus/console.h"
#include "pegasus/pegasus.h"
namespace Pegasus {
PegasusConsole::PegasusConsole(PegasusEngine *vm) : GUI::Debugger(), _vm(vm) {
// TODO! :P
}
PegasusConsole::~PegasusConsole() {
}
} // End of namespace Pegasus

46
engines/pegasus/console.h Normal file
View File

@ -0,0 +1,46 @@
/* 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.
*
* $URL$
* $Id$
*
*/
#ifndef PEGASUS_CONSOLE_H
#define PEGASUS_CONSOLE_H
#include "gui/debugger.h"
namespace Pegasus {
class PegasusEngine;
class PegasusConsole : public GUI::Debugger {
public:
PegasusConsole(PegasusEngine *vm);
virtual ~PegasusConsole();
private:
PegasusEngine *_vm;
};
} // End of namespace Pegasus
#endif

View File

@ -1,6 +1,7 @@
MODULE := engines/pegasus
MODULE_OBJS = \
console.o \
credits.o \
detection.o \
graphics.o \

View File

@ -30,6 +30,7 @@
#include "base/version.h"
#include "gui/saveload.h"
#include "pegasus/console.h"
#include "pegasus/pegasus.h"
//#define RUN_SUB_MOVIE // :D :D :D :D :D :D
@ -47,9 +48,11 @@ PegasusEngine::~PegasusEngine() {
delete _resFork;
delete _inventoryLid;
delete _biochipLid;
delete _console;
}
Common::Error PegasusEngine::run() {
_console = new PegasusConsole(this);
_gfx = new GraphicsManager(this);
_video = new VideoManager(this);
_sound = new SoundManager(this);
@ -332,4 +335,8 @@ Common::String PegasusEngine::getTimeZoneFolder(TimeZone timeZone) {
return getTimeZoneDesc(timeZone);
}
GUI::Debugger *PegasusEngine::getDebugger() {
return _console;
}
} // End of namespace Pegasus

View File

@ -41,6 +41,7 @@ namespace Video {
namespace Pegasus {
class PegasusConsole;
struct PegasusGameDescription;
class SoundManager;
class VideoManager;
@ -200,6 +201,7 @@ public:
const PegasusGameDescription *_gameDescription;
bool hasFeature(EngineFeature f) const;
GUI::Debugger *getDebugger();
VideoManager *_video;
SoundManager *_sound;
@ -257,6 +259,9 @@ private:
Common::Array<SoundSpot> _currentSoundSpots;
Common::Array<Zoom> _currentZooms;
Common::Array<Extra> _currentExtras;
// Console
PegasusConsole *_console;
};
} // End of namespace Pegasus