2009-06-01 18:05:46 +00: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "common/config-manager.h"
|
|
|
|
#include "common/events.h"
|
|
|
|
#include "common/system.h"
|
|
|
|
#include "common/file.h"
|
|
|
|
|
|
|
|
#include "asylum/asylum.h"
|
2009-06-05 02:51:23 +00:00
|
|
|
#include "asylum/screen.h"
|
2009-06-02 11:23:17 +00:00
|
|
|
#include "asylum/resource.h"
|
2009-06-02 17:44:52 +00:00
|
|
|
#include "asylum/graphics.h"
|
2009-06-01 18:05:46 +00:00
|
|
|
|
|
|
|
namespace Asylum {
|
|
|
|
|
2009-06-05 02:51:23 +00:00
|
|
|
AsylumEngine::AsylumEngine(OSystem *system, Common::Language language)
|
|
|
|
: Engine(system) {
|
2009-06-01 18:05:46 +00:00
|
|
|
|
2009-06-05 02:51:23 +00:00
|
|
|
Common::File::addDefaultDirectory(_gameDataDir.getChild("Data"));
|
|
|
|
Common::File::addDefaultDirectory(_gameDataDir.getChild("Vids"));
|
2009-06-01 18:05:46 +00:00
|
|
|
|
2009-06-05 02:51:23 +00:00
|
|
|
_eventMan->registerRandomSource(_rnd, "asylum");
|
2009-06-01 18:05:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AsylumEngine::~AsylumEngine() {
|
2009-06-05 02:51:23 +00:00
|
|
|
//Common::clearAllDebugChannels();
|
|
|
|
delete _screen;
|
2009-06-01 18:05:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Common::Error AsylumEngine::run() {
|
2009-06-05 02:51:23 +00:00
|
|
|
Common::Error err;
|
|
|
|
err = init();
|
|
|
|
if (err != Common::kNoError)
|
|
|
|
return err;
|
|
|
|
return go();
|
|
|
|
}
|
|
|
|
|
|
|
|
Common::Error AsylumEngine::init() {
|
|
|
|
_screen = new Screen(_system);
|
|
|
|
|
|
|
|
return Common::kNoError;
|
|
|
|
}
|
2009-06-03 20:50:31 +00:00
|
|
|
|
2009-06-05 02:51:23 +00:00
|
|
|
Common::Error AsylumEngine::go() {
|
|
|
|
Resource* res = new Resource;
|
2009-06-05 01:54:56 +00:00
|
|
|
|
2009-06-05 02:51:23 +00:00
|
|
|
res->load("res.001");
|
|
|
|
res->dump();
|
2009-06-05 01:54:56 +00:00
|
|
|
|
2009-06-05 11:27:44 +00:00
|
|
|
GraphicResource *gres = new GraphicResource( res->getResource(1) );
|
2009-06-05 02:51:23 +00:00
|
|
|
gres->dump();
|
2009-06-05 01:54:56 +00:00
|
|
|
|
|
|
|
|
2009-06-05 02:51:23 +00:00
|
|
|
delete res;
|
|
|
|
delete gres;
|
2009-06-05 01:54:56 +00:00
|
|
|
|
2009-06-05 02:51:23 +00:00
|
|
|
return Common::kNoError;
|
2009-06-01 18:05:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Asylum
|