mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 15:21:40 +00:00
ASYLUM: * better resource abstraction using resman
git-svn-id: http://asylumengine.googlecode.com/svn/trunk@56 0bfb4aae-4ea4-11de-8d8d-752d95cf3e3c
This commit is contained in:
parent
dacb2034ca
commit
c98b39142b
@ -31,10 +31,8 @@
|
|||||||
#include "common/stream.h"
|
#include "common/stream.h"
|
||||||
#include "sound/audiostream.h"
|
#include "sound/audiostream.h"
|
||||||
#include "sound/wave.h"
|
#include "sound/wave.h"
|
||||||
|
|
||||||
#include "asylum/asylum.h"
|
|
||||||
#include "asylum/screen.h"
|
#include "asylum/screen.h"
|
||||||
#include "asylum/video.h"
|
#include "asylum/asylum.h"
|
||||||
|
|
||||||
namespace Asylum {
|
namespace Asylum {
|
||||||
|
|
||||||
@ -52,7 +50,6 @@ AsylumEngine::~AsylumEngine() {
|
|||||||
//Common::clearAllDebugChannels();
|
//Common::clearAllDebugChannels();
|
||||||
delete _screen;
|
delete _screen;
|
||||||
delete _resMgr;
|
delete _resMgr;
|
||||||
delete _video;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Common::Error AsylumEngine::run() {
|
Common::Error AsylumEngine::run() {
|
||||||
@ -68,8 +65,7 @@ Common::Error AsylumEngine::init() {
|
|||||||
// initialize engine objects
|
// initialize engine objects
|
||||||
|
|
||||||
_screen = new Screen(_system);
|
_screen = new Screen(_system);
|
||||||
_resMgr = new ResourceManager;
|
_resMgr = new ResourceManager(this);
|
||||||
_video = new Video(_mixer);
|
|
||||||
|
|
||||||
// initializing game
|
// initializing game
|
||||||
// TODO: save dialogue key codes into sntrm_k.txt (need to figure out why they use such thing)
|
// TODO: save dialogue key codes into sntrm_k.txt (need to figure out why they use such thing)
|
||||||
@ -85,7 +81,8 @@ Common::Error AsylumEngine::init() {
|
|||||||
|
|
||||||
Common::Error AsylumEngine::go() {
|
Common::Error AsylumEngine::go() {
|
||||||
// Play intro movie
|
// Play intro movie
|
||||||
_video->playVideo(0);
|
|
||||||
|
_resMgr->loadVideo(0);
|
||||||
|
|
||||||
showMainMenu();
|
showMainMenu();
|
||||||
|
|
||||||
@ -117,7 +114,12 @@ Common::Error AsylumEngine::go() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void AsylumEngine::showMainMenu() {
|
void AsylumEngine::showMainMenu() {
|
||||||
|
// main menu background
|
||||||
|
_resMgr->loadGraphic(1, 0, 0);
|
||||||
|
_resMgr->loadPalette(1, 17);
|
||||||
|
_resMgr->loadCursor(1, 2, 0);
|
||||||
|
|
||||||
|
/*
|
||||||
|
|
||||||
// Music - start
|
// Music - start
|
||||||
|
|
||||||
@ -149,27 +151,7 @@ void AsylumEngine::showMainMenu() {
|
|||||||
_mixer->playInputStream(Audio::Mixer::kMusicSoundType, &_musicHandle, mus);
|
_mixer->playInputStream(Audio::Mixer::kMusicSoundType, &_musicHandle, mus);
|
||||||
|
|
||||||
// Music - end
|
// Music - end
|
||||||
|
*/
|
||||||
|
|
||||||
// eyes animation index table
|
|
||||||
//const uint32 eyesTable[8] = {3, 5, 1, 7, 4, 8, 2, 6};
|
|
||||||
byte pal[256 * 3];
|
|
||||||
_resMgr->getPalette(1, 17, pal);
|
|
||||||
GraphicResource *bg = _resMgr->getGraphic(1, 0)->getEntry(0);
|
|
||||||
GraphicResource *cur = _resMgr->getGraphic(1, 2)->getEntry(0);
|
|
||||||
|
|
||||||
_system->setMouseCursor(cur->data, cur->width, cur->height, 1, 1, 0);
|
|
||||||
// FIXME: is there any reason why the cursor palette is set here,
|
|
||||||
// when it's the same as the rest of the game's palette?
|
|
||||||
//_system->setCursorPalette(pal, 0, 1024);
|
|
||||||
_system->showMouse(true);
|
|
||||||
|
|
||||||
_screen->setFrontBuffer(
|
|
||||||
0, 0,
|
|
||||||
bg->width, bg->height,
|
|
||||||
bg->data);
|
|
||||||
_screen->setPalette(pal);
|
|
||||||
_screen->updateScreen();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace Asylum
|
} // namespace Asylum
|
||||||
|
@ -27,14 +27,13 @@
|
|||||||
#define ASYLUM_ENGINE_H
|
#define ASYLUM_ENGINE_H
|
||||||
|
|
||||||
#include "engines/engine.h"
|
#include "engines/engine.h"
|
||||||
|
|
||||||
#include "asylum/resman.h"
|
#include "asylum/resman.h"
|
||||||
|
|
||||||
namespace Asylum {
|
namespace Asylum {
|
||||||
|
|
||||||
|
class ResourceManager;
|
||||||
class Screen;
|
class Screen;
|
||||||
class Menu;
|
class Menu;
|
||||||
class Video;
|
|
||||||
|
|
||||||
class AsylumEngine: public Engine {
|
class AsylumEngine: public Engine {
|
||||||
public:
|
public:
|
||||||
@ -48,13 +47,16 @@ public:
|
|||||||
virtual Common::Error run();
|
virtual Common::Error run();
|
||||||
virtual bool hasFeature(EngineFeature f) const;
|
virtual bool hasFeature(EngineFeature f) const;
|
||||||
|
|
||||||
|
Screen* getScreen() {
|
||||||
|
return _screen;
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Common::Language _language;
|
Common::Language _language;
|
||||||
Common::RandomSource _rnd;
|
Common::RandomSource _rnd;
|
||||||
|
|
||||||
ResourceManager *_resMgr;
|
ResourceManager *_resMgr;
|
||||||
Screen *_screen;
|
Screen *_screen;
|
||||||
Video *_video;
|
|
||||||
|
|
||||||
void showMainMenu();
|
void showMainMenu();
|
||||||
|
|
||||||
|
@ -35,6 +35,10 @@ Bundle::Bundle() {
|
|||||||
offset = 0;
|
offset = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Bundle::Bundle(uint8 fileNum, uint32 index, uint32 length) {
|
||||||
|
loadRawRecord(parseFilename(fileNum), index, length);
|
||||||
|
}
|
||||||
|
|
||||||
Bundle::Bundle(uint8 fileNum) {
|
Bundle::Bundle(uint8 fileNum) {
|
||||||
Common::File* file = new Common::File;
|
Common::File* file = new Common::File;
|
||||||
Common::String filename = parseFilename(fileNum);
|
Common::String filename = parseFilename(fileNum);
|
||||||
|
@ -44,6 +44,7 @@ class Bundle {
|
|||||||
public:
|
public:
|
||||||
Bundle();
|
Bundle();
|
||||||
Bundle(uint8 fileNum);
|
Bundle(uint8 fileNum);
|
||||||
|
Bundle(uint8 fileNum, uint32 index, uint32 length);
|
||||||
virtual ~Bundle() {}
|
virtual ~Bundle() {}
|
||||||
|
|
||||||
uint8* getData() { return data; }
|
uint8* getData() { return data; }
|
||||||
|
@ -1,76 +1,124 @@
|
|||||||
/* ScummVM - Graphic Adventure Engine
|
/* ScummVM - Graphic Adventure Engine
|
||||||
*
|
*
|
||||||
* ScummVM is the legal property of its developers, whose names
|
* ScummVM is the legal property of its developers, whose names
|
||||||
* are too numerous to list here. Please refer to the COPYRIGHT
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
||||||
* file distributed with this source distribution.
|
* file distributed with this source distribution.
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU General Public License
|
* modify it under the terms of the GNU General Public License
|
||||||
* as published by the Free Software Foundation; either version 2
|
* as published by the Free Software Foundation; either version 2
|
||||||
* of the License, or (at your option) any later version.
|
* of the License, or (at your option) any later version.
|
||||||
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful,
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
|
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
*
|
*
|
||||||
* $URL$
|
* $URL$
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "asylum/resman.h"
|
#include "asylum/resman.h"
|
||||||
|
|
||||||
namespace Asylum {
|
namespace Asylum {
|
||||||
|
|
||||||
GraphicBundle* ResourceManager::getGraphic(uint8 fileNum, uint32 offset) {
|
ResourceManager::ResourceManager(AsylumEngine *vm): _vm(vm) {
|
||||||
Bundle *bun = getBundle(fileNum);
|
_video = new Video(_vm->_mixer);
|
||||||
Bundle *ent = bun->getEntry(offset);
|
}
|
||||||
|
|
||||||
if(!ent->initialized){
|
ResourceManager::~ResourceManager() {
|
||||||
GraphicBundle *gra = new GraphicBundle(fileNum, ent->offset, ent->size);
|
delete _video;
|
||||||
bun->setEntry(offset, gra);
|
}
|
||||||
}
|
|
||||||
|
bool ResourceManager::loadVideo(uint8 fileNum) {
|
||||||
return (GraphicBundle*)bun->getEntry(offset);
|
return _video->playVideo(fileNum);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ResourceManager::getPalette(uint8 fileNum, uint32 offset, byte *palette) {
|
bool ResourceManager::loadGraphic(uint8 fileNum, uint32 offset, uint32 index) {
|
||||||
// Sub-optimal, but a bit cleaner (till we get john_doe's code in)
|
GraphicResource *res = getGraphic(fileNum, offset, index);
|
||||||
Common::File palFile;
|
|
||||||
char filename[256];
|
_vm->getScreen()->setFrontBuffer(0, 0, res->width, res->height, res->data);
|
||||||
sprintf(filename, "res.%03d", fileNum);
|
|
||||||
palFile.open(filename);
|
// TODO proper error check
|
||||||
|
return true;
|
||||||
// Read entries
|
}
|
||||||
/*uint32 entryCount =*/ palFile.readUint32LE();
|
|
||||||
palFile.skip(4 * offset);
|
bool ResourceManager::loadPalette(uint8 fileNum, uint32 offset) {
|
||||||
uint32 offs = palFile.readUint32LE();
|
Bundle *bun = getBundle(fileNum);
|
||||||
palFile.seek(offs, SEEK_SET);
|
Bundle *ent = bun->getEntry(offset);
|
||||||
palFile.skip(32); // TODO: what are these?
|
|
||||||
palFile.read(palette, 256 * 3);
|
if(!ent->initialized){
|
||||||
palFile.close();
|
ent = new Bundle(fileNum, ent->offset, ent->size);
|
||||||
}
|
bun->setEntry(offset, ent);
|
||||||
|
}
|
||||||
Bundle* ResourceManager::getBundle(uint8 fileNum) {
|
|
||||||
// first check if the bundle exists in the cache
|
uint8 palette[256 * 3];
|
||||||
Bundle* bun = NULL;
|
memcpy(palette, ent->getData() + 32, 256 * 3);
|
||||||
|
|
||||||
for (uint32 i = 0; i < _bundleCache.size(); i++) {
|
_vm->getScreen()->setPalette(palette);
|
||||||
if (_bundleCache[i].id == fileNum ){
|
|
||||||
*bun = _bundleCache[i];
|
// TODO proper error check
|
||||||
}
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!bun) {
|
bool ResourceManager::loadCursor(uint8 fileNum, uint32 offet, uint32 index) {
|
||||||
bun = new Bundle(fileNum);
|
GraphicResource *cur = getGraphic(fileNum, offet, index);
|
||||||
}
|
_vm->_system->setMouseCursor(cur->data, cur->width, cur->height, 1, 1, 0);
|
||||||
|
_vm->_system->showMouse(true);
|
||||||
return bun;
|
|
||||||
}
|
// TODO proper error check
|
||||||
|
return true;
|
||||||
} // end of namespace Asylum
|
}
|
||||||
|
|
||||||
|
GraphicResource* ResourceManager::getGraphic(uint8 fileNum, uint32 offset, uint32 index) {
|
||||||
|
Bundle *bun = getBundle(fileNum);
|
||||||
|
Bundle *ent = bun->getEntry(offset);
|
||||||
|
GraphicBundle *gra;
|
||||||
|
|
||||||
|
if(!ent->initialized){
|
||||||
|
gra = new GraphicBundle(fileNum, ent->offset, ent->size);
|
||||||
|
bun->setEntry(offset, gra);
|
||||||
|
}else{
|
||||||
|
gra = (GraphicBundle*)bun->getEntry(offset);
|
||||||
|
}
|
||||||
|
|
||||||
|
return gra->getEntry(index);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
GraphicBundle* ResourceManager::getGraphic(uint8 fileNum, uint32 offset) {
|
||||||
|
Bundle *bun = getBundle(fileNum);
|
||||||
|
Bundle *ent = bun->getEntry(offset);
|
||||||
|
|
||||||
|
if(!ent->initialized){
|
||||||
|
GraphicBundle *gra = new GraphicBundle(fileNum, ent->offset, ent->size);
|
||||||
|
bun->setEntry(offset, gra);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (GraphicBundle*)bun->getEntry(offset);
|
||||||
|
}
|
||||||
|
|
||||||
|
*/
|
||||||
|
Bundle* ResourceManager::getBundle(uint8 fileNum) {
|
||||||
|
// first check if the bundle exists in the cache
|
||||||
|
Bundle* bun = NULL;
|
||||||
|
|
||||||
|
for (uint32 i = 0; i < _bundleCache.size(); i++) {
|
||||||
|
if (_bundleCache[i].id == fileNum ){
|
||||||
|
*bun = _bundleCache[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!bun) {
|
||||||
|
bun = new Bundle(fileNum);
|
||||||
|
}
|
||||||
|
|
||||||
|
return bun;
|
||||||
|
}
|
||||||
|
|
||||||
|
} // end of namespace Asylum
|
||||||
|
@ -31,21 +31,36 @@
|
|||||||
|
|
||||||
#include "asylum/bundle.h"
|
#include "asylum/bundle.h"
|
||||||
#include "asylum/graphicbundle.h"
|
#include "asylum/graphicbundle.h"
|
||||||
|
#include "asylum/video.h"
|
||||||
|
#include "asylum/screen.h"
|
||||||
|
#include "asylum/asylum.h"
|
||||||
|
|
||||||
namespace Asylum {
|
namespace Asylum {
|
||||||
|
|
||||||
|
// forward declarations
|
||||||
|
class AsylumEngine;
|
||||||
|
class Video;
|
||||||
|
|
||||||
class ResourceManager {
|
class ResourceManager {
|
||||||
public:
|
public:
|
||||||
ResourceManager() {};
|
ResourceManager(AsylumEngine *vm);
|
||||||
~ResourceManager() {};
|
virtual ~ResourceManager();
|
||||||
|
|
||||||
GraphicBundle* getGraphic(uint8 fileNum, uint32 offset);
|
bool loadGraphic(uint8 fileNum, uint32 offset, uint32 index);
|
||||||
void getPalette(uint8 fileNum, uint32 offset, byte *palette);
|
bool loadCursor(uint8 fileNum, uint32 offset, uint32 index);
|
||||||
|
bool loadPalette(uint8 fileNum, uint32 offset);
|
||||||
|
bool loadSound(uint8 fileNum, uint32 offset);
|
||||||
|
bool loadMusic(uint8 fileNum, uint32 offset);
|
||||||
|
bool loadVideo(uint8 fileNum);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Common::Array<Bundle> _bundleCache;
|
Common::Array<Bundle> _bundleCache;
|
||||||
|
|
||||||
Bundle* getBundle(uint8 fileNum);
|
Bundle* getBundle(uint8 fileNum);
|
||||||
|
GraphicResource* getGraphic(uint8 fileNum, uint32 offset, uint32 index);
|
||||||
|
|
||||||
|
AsylumEngine *_vm;
|
||||||
|
Video *_video;
|
||||||
|
|
||||||
}; // end of class ResourceManager
|
}; // end of class ResourceManager
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user