2007-05-30 21:56:52 +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.
|
2004-10-15 06:06:47 +00:00
|
|
|
*
|
|
|
|
* 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
|
2005-10-18 01:30:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2004-10-15 06:06:47 +00:00
|
|
|
*
|
2006-02-09 12:19:53 +00:00
|
|
|
* $URL$
|
|
|
|
* $Id$
|
2004-10-15 06:06:47 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2007-02-20 17:33:54 +00:00
|
|
|
#ifndef KYRA_RESOURCE_H
|
|
|
|
#define KYRA_RESOURCE_H
|
2004-10-15 06:06:47 +00:00
|
|
|
|
2007-09-19 08:40:12 +00:00
|
|
|
|
2004-10-15 06:06:47 +00:00
|
|
|
#include "common/scummsys.h"
|
|
|
|
#include "common/str.h"
|
2006-02-17 15:37:25 +00:00
|
|
|
#include "common/file.h"
|
2004-10-15 06:06:47 +00:00
|
|
|
#include "common/list.h"
|
2008-02-07 23:13:13 +00:00
|
|
|
#include "common/hash-str.h"
|
|
|
|
#include "common/hashmap.h"
|
|
|
|
#include "common/stream.h"
|
2004-10-15 06:06:47 +00:00
|
|
|
|
2005-06-24 16:01:42 +00:00
|
|
|
#include "kyra/kyra.h"
|
2004-10-15 06:06:47 +00:00
|
|
|
|
|
|
|
namespace Kyra {
|
|
|
|
|
2008-02-07 23:13:13 +00:00
|
|
|
struct ResFileEntry {
|
|
|
|
Common::String parent;
|
|
|
|
uint32 size;
|
2006-07-08 13:56:56 +00:00
|
|
|
|
2008-02-07 23:13:13 +00:00
|
|
|
bool preload;
|
2008-02-09 15:46:06 +00:00
|
|
|
bool mounted;
|
2008-02-07 23:13:13 +00:00
|
|
|
bool prot;
|
2006-09-16 20:51:05 +00:00
|
|
|
|
2008-02-07 23:13:13 +00:00
|
|
|
enum kType {
|
|
|
|
kRaw = 0,
|
|
|
|
kPak = 1,
|
|
|
|
kIns = 2,
|
|
|
|
kAutoDetect
|
2004-11-14 20:11:22 +00:00
|
|
|
};
|
2008-02-07 23:13:13 +00:00
|
|
|
kType type;
|
|
|
|
uint32 offset;
|
2004-11-14 20:11:22 +00:00
|
|
|
};
|
2004-10-15 06:06:47 +00:00
|
|
|
|
2008-02-07 23:13:13 +00:00
|
|
|
typedef Common::HashMap<Common::String, ResFileEntry, Common::IgnoreCase_Hash, Common::IgnoreCase_EqualTo> ResFileMap;
|
|
|
|
class Resource;
|
2007-09-19 08:40:12 +00:00
|
|
|
|
2008-02-07 23:13:13 +00:00
|
|
|
class ResArchiveLoader {
|
2006-07-08 13:56:56 +00:00
|
|
|
public:
|
2008-02-09 16:18:44 +00:00
|
|
|
struct File {
|
|
|
|
File() : filename(), entry() {}
|
|
|
|
File(const Common::String &f, const ResFileEntry &e) : filename(f), entry(e) {}
|
|
|
|
|
|
|
|
Common::String filename;
|
|
|
|
ResFileEntry entry;
|
|
|
|
};
|
|
|
|
typedef Common::List<File> FileList;
|
|
|
|
|
2008-02-07 23:13:13 +00:00
|
|
|
virtual ~ResArchiveLoader() {}
|
2006-07-08 13:56:56 +00:00
|
|
|
|
2008-02-09 15:18:35 +00:00
|
|
|
virtual bool checkFilename(Common::String filename) const = 0;
|
2008-02-07 23:13:13 +00:00
|
|
|
virtual bool isLoadable(const Common::String &filename, Common::SeekableReadStream &stream) const = 0;
|
2008-02-09 16:18:44 +00:00
|
|
|
virtual bool loadFile(const Common::String &filename, Common::SeekableReadStream &stream, FileList &files) const = 0;
|
2008-02-07 23:13:13 +00:00
|
|
|
// parameter 'archive' can be deleted by this method and it may not be deleted from the caller
|
2008-02-09 16:18:44 +00:00
|
|
|
virtual Common::SeekableReadStream *loadFileFromArchive(const Common::String &file, Common::SeekableReadStream *archive, const ResFileEntry entry) const = 0;
|
2006-09-16 20:51:05 +00:00
|
|
|
|
2008-02-07 23:13:13 +00:00
|
|
|
virtual ResFileEntry::kType getType() const = 0;
|
|
|
|
protected:
|
2006-07-08 13:56:56 +00:00
|
|
|
};
|
|
|
|
|
2005-08-19 22:12:09 +00:00
|
|
|
class Resource {
|
2004-11-14 20:11:22 +00:00
|
|
|
public:
|
2007-04-01 13:10:50 +00:00
|
|
|
Resource(KyraEngine *vm);
|
2005-08-19 22:12:09 +00:00
|
|
|
~Resource();
|
2007-09-19 08:40:12 +00:00
|
|
|
|
2007-10-09 05:40:20 +00:00
|
|
|
bool reset();
|
|
|
|
|
2008-02-24 12:30:12 +00:00
|
|
|
bool addSearchPath(const Common::String &path);
|
|
|
|
|
2007-05-23 12:02:31 +00:00
|
|
|
bool loadPakFile(const Common::String &filename);
|
2006-06-03 18:30:07 +00:00
|
|
|
void unloadPakFile(const Common::String &filename);
|
2007-05-23 12:02:31 +00:00
|
|
|
bool isInPakList(const Common::String &filename) const;
|
2004-10-15 06:06:47 +00:00
|
|
|
|
2007-10-09 05:40:20 +00:00
|
|
|
bool loadFileList(const Common::String &filedata);
|
2008-01-10 23:25:19 +00:00
|
|
|
bool loadFileList(const char * const *filelist, uint32 numFiles);
|
2007-10-09 05:40:20 +00:00
|
|
|
// This unloads *all* pakfiles, even kyra.dat and protected ones
|
|
|
|
void unloadAllPakFiles();
|
|
|
|
|
2007-05-23 12:02:31 +00:00
|
|
|
uint32 getFileSize(const char *file) const;
|
|
|
|
uint8* fileData(const char *file, uint32 *size) const;
|
2008-02-07 23:13:13 +00:00
|
|
|
Common::SeekableReadStream *getFileStream(const Common::String &file) const;
|
2004-10-15 06:06:47 +00:00
|
|
|
|
2007-09-19 08:40:12 +00:00
|
|
|
bool loadFileToBuf(const char *file, void *buf, uint32 maxSize);
|
2004-11-14 20:11:22 +00:00
|
|
|
protected:
|
2008-02-07 23:13:13 +00:00
|
|
|
bool isAccessable(const Common::String &file) const;
|
|
|
|
|
|
|
|
void detectFileTypes();
|
|
|
|
|
|
|
|
void initializeLoaders();
|
|
|
|
const ResArchiveLoader *getLoader(ResFileEntry::kType type) const;
|
|
|
|
typedef Common::List<ResArchiveLoader*>::iterator LoaderIterator;
|
|
|
|
typedef Common::List<ResArchiveLoader*>::const_iterator CLoaderIterator;
|
|
|
|
Common::List<ResArchiveLoader*> _loaders;
|
|
|
|
ResFileMap _map;
|
2007-05-23 12:02:31 +00:00
|
|
|
|
2007-04-01 13:10:50 +00:00
|
|
|
KyraEngine *_vm;
|
2004-11-14 20:11:22 +00:00
|
|
|
};
|
2004-10-15 06:06:47 +00:00
|
|
|
|
2006-03-18 14:43:18 +00:00
|
|
|
// TODO?: maybe prefix all things here with 'kKyra1' instead of 'k'
|
|
|
|
enum kKyraResources {
|
|
|
|
kLoadAll = -1,
|
|
|
|
|
|
|
|
kForestSeq,
|
|
|
|
kKallakWritingSeq,
|
|
|
|
kKyrandiaLogoSeq,
|
|
|
|
kKallakMalcolmSeq,
|
|
|
|
kMalcolmTreeSeq,
|
|
|
|
kWestwoodLogoSeq,
|
|
|
|
|
|
|
|
kDemo1Seq,
|
|
|
|
kDemo2Seq,
|
|
|
|
kDemo3Seq,
|
|
|
|
kDemo4Seq,
|
|
|
|
|
|
|
|
kAmuleteAnimSeq,
|
|
|
|
|
|
|
|
kOutroReunionSeq,
|
|
|
|
|
|
|
|
kIntroCPSStrings,
|
|
|
|
kIntroCOLStrings,
|
|
|
|
kIntroWSAStrings,
|
|
|
|
kIntroStrings,
|
|
|
|
|
|
|
|
kOutroHomeString,
|
|
|
|
|
|
|
|
kRoomFilenames,
|
|
|
|
kRoomList,
|
|
|
|
|
|
|
|
kCharacterImageFilenames,
|
2007-09-19 08:40:12 +00:00
|
|
|
|
2006-03-18 14:43:18 +00:00
|
|
|
kItemNames,
|
|
|
|
kTakenStrings,
|
|
|
|
kPlacedStrings,
|
|
|
|
kDroppedStrings,
|
|
|
|
kNoDropStrings,
|
|
|
|
|
|
|
|
kPutDownString,
|
|
|
|
kWaitAmuletString,
|
|
|
|
kBlackJewelString,
|
|
|
|
kPoisonGoneString,
|
|
|
|
kHealingTipString,
|
|
|
|
kWispJewelStrings,
|
|
|
|
kMagicJewelStrings,
|
|
|
|
|
|
|
|
kThePoisonStrings,
|
|
|
|
kFluteStrings,
|
|
|
|
|
|
|
|
kFlaskFullString,
|
|
|
|
kFullFlaskString,
|
|
|
|
|
|
|
|
kVeryCleverString,
|
2006-04-23 14:43:16 +00:00
|
|
|
kNewGameString,
|
2007-09-19 08:40:12 +00:00
|
|
|
|
2006-03-18 14:43:18 +00:00
|
|
|
kDefaultShapes,
|
|
|
|
kHealing1Shapes,
|
|
|
|
kHealing2Shapes,
|
|
|
|
kPoisonDeathShapes,
|
|
|
|
kFluteShapes,
|
|
|
|
kWinter1Shapes,
|
|
|
|
kWinter2Shapes,
|
|
|
|
kWinter3Shapes,
|
|
|
|
kDrinkShapes,
|
|
|
|
kWispShapes,
|
|
|
|
kMagicAnimShapes,
|
|
|
|
kBranStoneShapes,
|
|
|
|
|
|
|
|
kPaletteList,
|
|
|
|
|
2006-04-23 14:43:16 +00:00
|
|
|
kGUIStrings,
|
|
|
|
kConfigStrings,
|
2007-09-19 08:40:12 +00:00
|
|
|
|
2008-01-10 23:25:19 +00:00
|
|
|
kAudioTracks,
|
|
|
|
kAudioTracksIntro,
|
|
|
|
|
|
|
|
kKyra1TownsSFXwdTable,
|
|
|
|
kKyra1TownsSFXbtTable,
|
|
|
|
kKyra1TownsCDATable,
|
2007-02-07 19:51:19 +00:00
|
|
|
kCreditsStrings,
|
2007-09-19 08:40:12 +00:00
|
|
|
|
2008-01-10 23:25:19 +00:00
|
|
|
k2SeqplayPakFiles,
|
|
|
|
k2SeqplayCredits,
|
2008-02-10 18:34:48 +00:00
|
|
|
k2SeqplayCreditsSpecial,
|
2008-01-10 23:25:19 +00:00
|
|
|
k2SeqplayStrings,
|
|
|
|
k2SeqplaySfxFiles,
|
|
|
|
k2SeqplayTlkFiles,
|
|
|
|
k2SeqplaySeqData,
|
|
|
|
k2SeqplayIntroTracks,
|
|
|
|
k2SeqplayFinaleTracks,
|
|
|
|
k2SeqplayIntroCDA,
|
|
|
|
k2SeqplayFinaleCDA,
|
2008-02-10 18:34:48 +00:00
|
|
|
k2SeqplayShapeDefs,
|
2008-01-10 23:25:19 +00:00
|
|
|
|
|
|
|
k2IngamePakFiles,
|
2008-01-27 02:05:37 +00:00
|
|
|
k2IngameSfxFiles,
|
|
|
|
k2IngameSfxIndex,
|
2008-01-10 23:25:19 +00:00
|
|
|
k2IngameTracks,
|
|
|
|
k2IngameCDA,
|
2008-02-17 02:06:04 +00:00
|
|
|
k2IngameTalkObjIndex,
|
|
|
|
k2IngameTimJpStrings,
|
2008-03-15 00:16:11 +00:00
|
|
|
k2IngameItemAnimTable,
|
2008-01-10 23:25:19 +00:00
|
|
|
|
2006-03-18 14:43:18 +00:00
|
|
|
kMaxResIDs
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Shape;
|
|
|
|
struct Room;
|
|
|
|
|
|
|
|
class StaticResource {
|
|
|
|
public:
|
2008-01-03 15:20:33 +00:00
|
|
|
static const Common::String staticDataFilename() { return "kyra.dat"; }
|
2008-01-03 14:53:18 +00:00
|
|
|
|
2007-04-01 13:10:50 +00:00
|
|
|
StaticResource(KyraEngine *vm) : _vm(vm), _resList(), _fileLoader(0), _builtIn(0), _filenameTable(0) {}
|
2006-03-18 14:43:18 +00:00
|
|
|
~StaticResource() { deinit(); }
|
2007-09-19 08:40:12 +00:00
|
|
|
|
2006-07-15 20:46:27 +00:00
|
|
|
static bool checkKyraDat();
|
2006-03-18 14:43:18 +00:00
|
|
|
|
|
|
|
bool init();
|
|
|
|
void deinit();
|
|
|
|
|
2006-04-09 00:44:08 +00:00
|
|
|
const char * const*loadStrings(int id, int &strings);
|
2006-03-18 14:43:18 +00:00
|
|
|
const uint8 *loadRawData(int id, int &size);
|
|
|
|
const Shape *loadShapeTable(int id, int &entries);
|
|
|
|
const Room *loadRoomTable(int id, int &entries);
|
2006-04-09 00:44:08 +00:00
|
|
|
const uint8 * const*loadPaletteTable(int id, int &entries);
|
2006-03-18 14:43:18 +00:00
|
|
|
|
|
|
|
// use '-1' to prefetch/unload all ids
|
|
|
|
// prefetchId retruns false if only on of the resources
|
|
|
|
// can't be loaded and it breaks then the first res
|
|
|
|
// can't be loaded
|
|
|
|
bool prefetchId(int id);
|
|
|
|
void unloadId(int id);
|
|
|
|
private:
|
2007-04-01 13:10:50 +00:00
|
|
|
KyraEngine *_vm;
|
2006-03-18 14:43:18 +00:00
|
|
|
|
|
|
|
struct FilenameTable;
|
|
|
|
struct ResData;
|
|
|
|
struct FileType;
|
|
|
|
|
|
|
|
bool checkResList(int id, int &type, const void *&ptr, int &size);
|
|
|
|
const void *checkForBuiltin(int id, int &type, int &size);
|
|
|
|
const FilenameTable *searchFile(int id);
|
|
|
|
const FileType *getFiletype(int type);
|
|
|
|
const void *getData(int id, int requesttype, int &size);
|
|
|
|
|
|
|
|
bool loadLanguageTable(const char *filename, void *&ptr, int &size);
|
|
|
|
bool loadStringTable(const char *filename, void *&ptr, int &size);
|
|
|
|
bool loadRawData(const char *filename, void *&ptr, int &size);
|
|
|
|
bool loadShapeTable(const char *filename, void *&ptr, int &size);
|
|
|
|
bool loadRoomTable(const char *filename, void *&ptr, int &size);
|
|
|
|
bool loadPaletteTable(const char *filename, void *&ptr, int &size);
|
2007-09-19 08:40:12 +00:00
|
|
|
|
2006-03-18 14:43:18 +00:00
|
|
|
void freeRawData(void *&ptr, int &size);
|
|
|
|
void freeStringTable(void *&ptr, int &size);
|
|
|
|
void freeShapeTable(void *&ptr, int &size);
|
|
|
|
void freeRoomTable(void *&ptr, int &size);
|
|
|
|
void freePaletteTable(void *&ptr, int &size);
|
|
|
|
|
|
|
|
uint8 *getFile(const char *name, int &size);
|
|
|
|
|
|
|
|
enum kResTypes {
|
|
|
|
kLanguageList,
|
|
|
|
kStringList,
|
|
|
|
kRoomList,
|
|
|
|
kShapeList,
|
|
|
|
kRawData,
|
2008-01-10 23:25:19 +00:00
|
|
|
kPaletteTable,
|
|
|
|
|
|
|
|
k2SeqData
|
2006-03-18 14:43:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct BuiltinRes {
|
|
|
|
int id;
|
|
|
|
int type;
|
|
|
|
int size;
|
|
|
|
const void *data;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct FilenameTable {
|
|
|
|
int id;
|
|
|
|
int type;
|
|
|
|
const char *filename;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct FileType {
|
|
|
|
int type;
|
|
|
|
typedef bool (StaticResource::*LoadFunc)(const char *filename, void *&ptr, int &size);
|
|
|
|
typedef void (StaticResource::*FreeFunc)(void *&ptr, int &size);
|
|
|
|
|
|
|
|
LoadFunc load;
|
|
|
|
FreeFunc free;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ResData {
|
|
|
|
int id;
|
|
|
|
int type;
|
|
|
|
int size;
|
|
|
|
void *data;
|
|
|
|
};
|
|
|
|
|
|
|
|
Common::List<ResData> _resList;
|
|
|
|
|
|
|
|
const FileType *_fileLoader;
|
|
|
|
const BuiltinRes *_builtIn;
|
|
|
|
const FilenameTable *_filenameTable;
|
|
|
|
};
|
|
|
|
|
2004-10-15 06:06:47 +00:00
|
|
|
} // end of namespace Kyra
|
|
|
|
|
|
|
|
#endif
|
2007-04-15 16:41:20 +00:00
|
|
|
|
2008-02-17 02:06:04 +00:00
|
|
|
|