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
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2008-09-07 21:46:37 +00:00
|
|
|
#include "kyra/resource.h"
|
|
|
|
#include "kyra/resource_intern.h"
|
2007-09-19 08:40:12 +00:00
|
|
|
|
2006-07-15 20:30:36 +00:00
|
|
|
#include "common/config-manager.h"
|
|
|
|
#include "common/fs.h"
|
2004-10-15 06:06:47 +00:00
|
|
|
|
|
|
|
namespace Kyra {
|
2007-05-23 12:02:31 +00:00
|
|
|
|
2008-10-22 17:44:12 +00:00
|
|
|
Resource::Resource(KyraEngine_v1 *vm) : _archiveCache(), _files(), _archiveFiles(), _protectedFiles(), _loaders(), _vm(vm) {
|
2008-02-07 23:13:13 +00:00
|
|
|
initializeLoaders();
|
2008-09-07 21:46:37 +00:00
|
|
|
|
2010-08-24 13:11:12 +00:00
|
|
|
// Initialize directories for playing from CD or with original
|
|
|
|
// directory structure
|
|
|
|
if (_vm->game() == GI_KYRA3)
|
|
|
|
SearchMan.addSubDirectoryMatching(Common::FSNode(ConfMan.get("path")), "malcolm");
|
|
|
|
|
2008-10-22 17:44:12 +00:00
|
|
|
_files.add("global_search", &Common::SearchManager::instance(), 3, false);
|
2008-09-07 21:46:37 +00:00
|
|
|
// compressed installer archives are added at level '2',
|
|
|
|
// but that's done in Resource::reset not here
|
2008-10-22 17:44:12 +00:00
|
|
|
_files.add("protected", &_protectedFiles, 1, false);
|
|
|
|
_files.add("archives", &_archiveFiles, 0, false);
|
2007-10-09 05:40:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Resource::~Resource() {
|
2008-02-07 23:38:17 +00:00
|
|
|
_loaders.clear();
|
2008-10-22 17:44:12 +00:00
|
|
|
|
|
|
|
for (ArchiveMap::iterator i = _archiveCache.begin(); i != _archiveCache.end(); ++i)
|
|
|
|
delete i->_value;
|
|
|
|
_archiveCache.clear();
|
2007-10-09 05:40:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Resource::reset() {
|
|
|
|
unloadAllPakFiles();
|
|
|
|
|
2008-10-02 16:58:59 +00:00
|
|
|
Common::FSNode dir(ConfMan.get("path"));
|
2008-01-27 19:47:41 +00:00
|
|
|
|
2007-10-09 05:40:20 +00:00
|
|
|
if (!dir.exists() || !dir.isDirectory())
|
|
|
|
error("invalid game path '%s'", dir.getPath().c_str());
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2008-01-10 23:25:19 +00:00
|
|
|
if (_vm->game() == GI_KYRA1) {
|
2006-07-15 20:32:54 +00:00
|
|
|
// We only need kyra.dat for the demo.
|
2009-08-25 22:37:34 +00:00
|
|
|
if (_vm->gameFlags().isDemo && !_vm->gameFlags().isTalkie)
|
2007-10-09 05:40:20 +00:00
|
|
|
return true;
|
2008-12-20 15:27:51 +00:00
|
|
|
|
2009-08-25 22:37:34 +00:00
|
|
|
if (!_vm->gameFlags().isDemo && _vm->gameFlags().isTalkie) {
|
2008-12-20 15:27:51 +00:00
|
|
|
// List of files in the talkie version, which can never be unload.
|
2008-12-29 13:59:35 +00:00
|
|
|
static const char * const list[] = {
|
2008-12-20 15:27:51 +00:00
|
|
|
"ADL.PAK", "CHAPTER1.VRM", "COL.PAK", "FINALE.PAK", "INTRO1.PAK", "INTRO2.PAK",
|
2010-08-24 13:11:12 +00:00
|
|
|
"INTRO3.PAK", "INTRO4.PAK", "MISC.PAK", "SND.PAK", "STARTUP.PAK", "XMI.PAK",
|
2008-12-29 13:59:35 +00:00
|
|
|
"CAVE.APK", "DRAGON1.APK", "DRAGON2.APK", "LAGOON.APK", 0
|
2008-12-20 15:27:51 +00:00
|
|
|
};
|
|
|
|
|
2008-12-29 13:59:35 +00:00
|
|
|
loadProtectedFiles(list);
|
2008-12-20 15:27:51 +00:00
|
|
|
} else {
|
|
|
|
Common::ArchiveMemberList files;
|
|
|
|
|
|
|
|
_files.listMatchingMembers(files, "*.PAK");
|
|
|
|
_files.listMatchingMembers(files, "*.APK");
|
|
|
|
|
|
|
|
for (Common::ArchiveMemberList::const_iterator i = files.begin(); i != files.end(); ++i) {
|
|
|
|
Common::String name = (*i)->getName();
|
|
|
|
name.toUppercase();
|
|
|
|
|
|
|
|
// No PAK file
|
|
|
|
if (name == "TWMUSIC.PAK")
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// We need to only load the script archive for the language the user specified
|
|
|
|
if (name == ((_vm->gameFlags().lang == Common::EN_ANY) ? "JMC.PAK" : "EMC.PAK"))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
Common::Archive *archive = loadArchive(name, *i);
|
|
|
|
if (archive)
|
|
|
|
_files.add(name, archive, 0, false);
|
|
|
|
else
|
|
|
|
error("Couldn't load PAK file '%s'", name.c_str());
|
|
|
|
}
|
|
|
|
}
|
2008-01-10 23:25:19 +00:00
|
|
|
} else if (_vm->game() == GI_KYRA2) {
|
2008-05-24 16:30:18 +00:00
|
|
|
if (_vm->gameFlags().useInstallerPackage)
|
2008-10-22 17:44:12 +00:00
|
|
|
_files.add("installer", loadInstallerArchive("WESTWOOD", "%03d", 6), 2, false);
|
2008-05-24 16:30:18 +00:00
|
|
|
|
2008-12-20 15:27:51 +00:00
|
|
|
// mouse pointer, fonts, etc. required for initialization
|
2008-03-20 12:10:30 +00:00
|
|
|
if (_vm->gameFlags().isDemo && !_vm->gameFlags().isTalkie) {
|
2008-01-10 23:25:19 +00:00
|
|
|
loadPakFile("GENERAL.PAK");
|
|
|
|
} else {
|
|
|
|
loadPakFile("INTROGEN.PAK");
|
|
|
|
loadPakFile("OTHER.PAK");
|
|
|
|
}
|
2007-04-01 13:10:50 +00:00
|
|
|
} else if (_vm->game() == GI_KYRA3) {
|
2008-08-05 12:13:01 +00:00
|
|
|
if (_vm->gameFlags().useInstallerPackage) {
|
|
|
|
if (!loadPakFile("WESTWOOD.001"))
|
2008-12-20 15:27:51 +00:00
|
|
|
error("Couldn't load file: 'WESTWOOD.001'");
|
2008-08-05 12:13:01 +00:00
|
|
|
}
|
2008-05-31 20:48:41 +00:00
|
|
|
|
2008-08-05 12:13:01 +00:00
|
|
|
if (!loadFileList("FILEDATA.FDT"))
|
2008-12-20 15:27:51 +00:00
|
|
|
error("Couldn't load file: 'FILEDATA.FDT'");
|
2008-07-31 10:47:15 +00:00
|
|
|
} else if (_vm->game() == GI_LOL) {
|
2008-08-11 14:47:50 +00:00
|
|
|
if (_vm->gameFlags().useInstallerPackage)
|
2008-10-22 17:44:12 +00:00
|
|
|
_files.add("installer", loadInstallerArchive("WESTWOOD", "%d", 0), 2, false);
|
2008-12-29 13:59:35 +00:00
|
|
|
|
2009-04-28 18:56:54 +00:00
|
|
|
if (!_vm->gameFlags().isTalkie && !_vm->gameFlags().isDemo) {
|
2008-12-29 13:59:35 +00:00
|
|
|
static const char * const list[] = {
|
2009-04-06 17:09:02 +00:00
|
|
|
"GENERAL.PAK", 0
|
2008-12-29 13:59:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
loadProtectedFiles(list);
|
|
|
|
}
|
2006-09-16 14:36:53 +00:00
|
|
|
} else {
|
2008-12-20 15:27:51 +00:00
|
|
|
error("Unknown game id: %d", _vm->game());
|
2009-09-24 17:52:53 +00:00
|
|
|
return false; // for compilers that don't support NORETURN
|
2004-10-15 06:06:47 +00:00
|
|
|
}
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2007-10-09 05:40:20 +00:00
|
|
|
return true;
|
2005-10-12 19:15:32 +00:00
|
|
|
}
|
|
|
|
|
2008-09-07 21:46:37 +00:00
|
|
|
bool Resource::loadPakFile(Common::String filename) {
|
|
|
|
filename.toUppercase();
|
2008-04-10 22:22:35 +00:00
|
|
|
|
2008-11-01 12:49:29 +00:00
|
|
|
Common::ArchiveMemberPtr file = _files.getMember(filename);
|
|
|
|
if (!file)
|
2008-10-21 11:42:08 +00:00
|
|
|
return false;
|
|
|
|
|
2008-11-01 12:49:29 +00:00
|
|
|
return loadPakFile(filename, file);
|
2008-10-21 11:42:08 +00:00
|
|
|
}
|
|
|
|
|
2010-08-24 15:48:43 +00:00
|
|
|
bool Resource::loadPakFile(Common::String name, Common::ArchiveMemberPtr file) {
|
2008-10-21 11:42:08 +00:00
|
|
|
name.toUppercase();
|
|
|
|
|
2008-10-22 17:44:12 +00:00
|
|
|
if (_archiveFiles.hasArchive(name) || _protectedFiles.hasArchive(name))
|
2008-02-09 15:33:04 +00:00
|
|
|
return true;
|
2007-09-19 08:40:12 +00:00
|
|
|
|
2008-10-22 17:44:12 +00:00
|
|
|
Common::Archive *archive = loadArchive(name, file);
|
2008-09-07 21:46:37 +00:00
|
|
|
if (!archive)
|
2006-03-18 14:43:18 +00:00
|
|
|
return false;
|
2006-07-08 13:56:56 +00:00
|
|
|
|
2008-10-22 17:44:12 +00:00
|
|
|
_archiveFiles.add(name, archive, 0, false);
|
2008-02-07 23:13:13 +00:00
|
|
|
|
2005-10-12 19:15:32 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-10-09 05:40:20 +00:00
|
|
|
bool Resource::loadFileList(const Common::String &filedata) {
|
2009-01-23 04:57:18 +00:00
|
|
|
Common::SeekableReadStream *f = createReadStream(filedata);
|
2008-01-27 19:47:41 +00:00
|
|
|
|
2008-09-07 22:30:34 +00:00
|
|
|
if (!f)
|
2007-10-09 05:40:20 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
uint32 filenameOffset = 0;
|
2008-09-07 22:30:34 +00:00
|
|
|
while ((filenameOffset = f->readUint32LE()) != 0) {
|
|
|
|
uint32 offset = f->pos();
|
|
|
|
f->seek(filenameOffset, SEEK_SET);
|
2007-10-09 05:40:20 +00:00
|
|
|
|
2008-04-03 21:42:04 +00:00
|
|
|
uint8 buffer[13];
|
2008-09-07 22:30:34 +00:00
|
|
|
f->read(buffer, sizeof(buffer)-1);
|
2008-04-03 21:42:04 +00:00
|
|
|
buffer[12] = 0;
|
2008-09-07 22:30:34 +00:00
|
|
|
f->seek(offset + 16, SEEK_SET);
|
2007-10-09 05:40:20 +00:00
|
|
|
|
2008-09-07 21:46:37 +00:00
|
|
|
Common::String filename = Common::String((char *)buffer);
|
2007-10-09 05:42:52 +00:00
|
|
|
filename.toUppercase();
|
2007-10-09 05:40:20 +00:00
|
|
|
|
|
|
|
if (filename.hasSuffix(".PAK")) {
|
2008-09-07 21:46:37 +00:00
|
|
|
if (!exists(filename.c_str()) && _vm->gameFlags().isDemo) {
|
2009-01-01 15:06:43 +00:00
|
|
|
// the demo version supplied with Kyra3 does not
|
2008-03-20 11:55:52 +00:00
|
|
|
// contain all pak files listed in filedata.fdt
|
|
|
|
// so we don't do anything here if they are non
|
|
|
|
// existant.
|
2008-03-20 11:58:18 +00:00
|
|
|
} else if (!loadPakFile(filename)) {
|
2008-09-07 22:30:34 +00:00
|
|
|
delete f;
|
2007-10-09 05:40:20 +00:00
|
|
|
error("couldn't load file '%s'", filename.c_str());
|
2009-09-24 17:52:53 +00:00
|
|
|
return false; // for compilers that don't support NORETURN
|
2007-10-09 05:40:20 +00:00
|
|
|
}
|
2008-01-27 19:47:41 +00:00
|
|
|
}
|
2007-10-09 05:40:20 +00:00
|
|
|
}
|
|
|
|
|
2008-09-07 22:30:34 +00:00
|
|
|
delete f;
|
2007-10-09 05:40:20 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-01-10 23:25:19 +00:00
|
|
|
bool Resource::loadFileList(const char * const *filelist, uint32 numFiles) {
|
|
|
|
if (!filelist)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
while (numFiles--) {
|
|
|
|
if (!loadPakFile(filelist[numFiles])) {
|
|
|
|
error("couldn't load file '%s'", filelist[numFiles]);
|
2009-09-24 17:52:53 +00:00
|
|
|
return false; // for compilers that don't support NORETURN
|
2008-01-10 23:25:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-12-29 13:59:35 +00:00
|
|
|
bool Resource::loadProtectedFiles(const char * const * list) {
|
|
|
|
for (uint i = 0; list[i]; ++i) {
|
|
|
|
Common::ArchiveMemberPtr file = _files.getMember(list[i]);
|
|
|
|
if (!file)
|
|
|
|
error("Couldn't find PAK file '%s'", list[i]);
|
|
|
|
|
|
|
|
Common::Archive *archive = loadArchive(list[i], file);
|
|
|
|
if (archive)
|
|
|
|
_protectedFiles.add(list[i], archive, 0, false);
|
|
|
|
else
|
|
|
|
error("Couldn't load PAK file '%s'", list[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-10-21 11:42:08 +00:00
|
|
|
void Resource::unloadPakFile(Common::String filename, bool remFromCache) {
|
2008-09-07 21:46:37 +00:00
|
|
|
filename.toUppercase();
|
2008-10-22 17:44:12 +00:00
|
|
|
|
2008-09-07 22:35:13 +00:00
|
|
|
// We do not remove files from '_protectedFiles' here, since
|
|
|
|
// those are protected against unloading.
|
2008-10-22 17:44:12 +00:00
|
|
|
if (_archiveFiles.hasArchive(filename)) {
|
|
|
|
_archiveFiles.remove(filename);
|
|
|
|
if (remFromCache) {
|
|
|
|
ArchiveMap::iterator iter = _archiveCache.find(filename);
|
|
|
|
if (iter != _archiveCache.end()) {
|
|
|
|
delete iter->_value;
|
|
|
|
_archiveCache.erase(filename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-05-31 20:48:41 +00:00
|
|
|
}
|
|
|
|
|
2008-09-07 21:46:37 +00:00
|
|
|
bool Resource::isInPakList(Common::String filename) {
|
|
|
|
filename.toUppercase();
|
2008-10-22 17:44:12 +00:00
|
|
|
return (_archiveFiles.hasArchive(filename) || _protectedFiles.hasArchive(filename));
|
2004-11-14 20:11:22 +00:00
|
|
|
}
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2008-10-21 11:42:08 +00:00
|
|
|
bool Resource::isInCacheList(Common::String name) {
|
|
|
|
name.toUppercase();
|
|
|
|
return (_archiveCache.find(name) != _archiveCache.end());
|
|
|
|
}
|
|
|
|
|
2007-10-09 05:40:20 +00:00
|
|
|
void Resource::unloadAllPakFiles() {
|
2008-10-22 17:44:12 +00:00
|
|
|
_archiveFiles.clear();
|
|
|
|
_protectedFiles.clear();
|
2008-02-24 12:30:12 +00:00
|
|
|
}
|
|
|
|
|
2008-10-21 11:42:08 +00:00
|
|
|
void Resource::listFiles(const Common::String &pattern, Common::ArchiveMemberList &list) {
|
|
|
|
_files.listMatchingMembers(list, pattern);
|
|
|
|
}
|
|
|
|
|
2008-04-10 22:18:47 +00:00
|
|
|
uint8 *Resource::fileData(const char *file, uint32 *size) {
|
2009-01-23 04:57:18 +00:00
|
|
|
Common::SeekableReadStream *stream = createReadStream(file);
|
2008-02-07 23:13:13 +00:00
|
|
|
if (!stream)
|
|
|
|
return 0;
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2008-02-07 23:13:13 +00:00
|
|
|
uint32 bufferSize = stream->size();
|
|
|
|
uint8 *buffer = new uint8[bufferSize];
|
|
|
|
assert(buffer);
|
2006-07-30 07:51:11 +00:00
|
|
|
if (size)
|
2008-02-07 23:13:13 +00:00
|
|
|
*size = bufferSize;
|
|
|
|
stream->read(buffer, bufferSize);
|
|
|
|
delete stream;
|
|
|
|
return buffer;
|
|
|
|
}
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2008-04-19 14:31:10 +00:00
|
|
|
bool Resource::exists(const char *file, bool errorOutOnFail) {
|
2008-09-07 21:46:37 +00:00
|
|
|
if (_files.hasFile(file))
|
2008-04-19 14:31:10 +00:00
|
|
|
return true;
|
|
|
|
else if (errorOutOnFail)
|
|
|
|
error("File '%s' can't be found", file);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-04-10 22:18:47 +00:00
|
|
|
uint32 Resource::getFileSize(const char *file) {
|
2009-01-23 04:57:18 +00:00
|
|
|
Common::SeekableReadStream *stream = createReadStream(file);
|
2008-09-07 21:46:37 +00:00
|
|
|
if (!stream)
|
|
|
|
return 0;
|
2006-09-16 20:51:05 +00:00
|
|
|
|
2008-09-07 21:46:37 +00:00
|
|
|
uint32 size = stream->size();
|
|
|
|
delete stream;
|
|
|
|
return size;
|
2008-02-07 23:13:13 +00:00
|
|
|
}
|
2006-07-30 07:51:11 +00:00
|
|
|
|
2008-02-07 23:13:13 +00:00
|
|
|
bool Resource::loadFileToBuf(const char *file, void *buf, uint32 maxSize) {
|
2009-01-23 04:57:18 +00:00
|
|
|
Common::SeekableReadStream *stream = createReadStream(file);
|
2008-02-07 23:13:13 +00:00
|
|
|
if (!stream)
|
|
|
|
return false;
|
2007-07-02 23:02:54 +00:00
|
|
|
|
2008-02-07 23:13:13 +00:00
|
|
|
memset(buf, 0, maxSize);
|
2008-09-13 16:51:46 +00:00
|
|
|
stream->read(buf, ((int32)maxSize <= stream->size()) ? maxSize : stream->size());
|
2008-02-07 23:13:13 +00:00
|
|
|
delete stream;
|
|
|
|
return true;
|
|
|
|
}
|
2007-07-02 23:02:54 +00:00
|
|
|
|
2009-01-23 04:57:18 +00:00
|
|
|
Common::SeekableReadStream *Resource::createReadStream(const Common::String &file) {
|
2009-01-23 04:45:44 +00:00
|
|
|
return _files.createReadStreamForMember(file);
|
2006-07-31 16:37:34 +00:00
|
|
|
}
|
|
|
|
|
2010-08-24 15:48:43 +00:00
|
|
|
Common::Archive *Resource::loadArchive(const Common::String &name, Common::ArchiveMemberPtr member) {
|
2008-10-21 11:42:08 +00:00
|
|
|
ArchiveMap::iterator cachedArchive = _archiveCache.find(name);
|
2008-09-07 21:46:37 +00:00
|
|
|
if (cachedArchive != _archiveCache.end())
|
|
|
|
return cachedArchive->_value;
|
2008-02-09 15:08:49 +00:00
|
|
|
|
2009-01-23 04:36:18 +00:00
|
|
|
Common::SeekableReadStream *stream = member->createReadStream();
|
2008-10-03 18:18:42 +00:00
|
|
|
|
2008-09-07 21:46:37 +00:00
|
|
|
if (!stream)
|
2008-10-22 17:44:12 +00:00
|
|
|
return 0;
|
2008-09-07 21:46:37 +00:00
|
|
|
|
2008-10-22 17:44:12 +00:00
|
|
|
Common::Archive *archive = 0;
|
2008-09-07 21:46:37 +00:00
|
|
|
for (LoaderList::const_iterator i = _loaders.begin(); i != _loaders.end(); ++i) {
|
2008-10-03 18:18:42 +00:00
|
|
|
if ((*i)->checkFilename(name)) {
|
|
|
|
if ((*i)->isLoadable(name, *stream)) {
|
2008-09-07 21:46:37 +00:00
|
|
|
stream->seek(0, SEEK_SET);
|
2008-10-22 17:44:12 +00:00
|
|
|
archive = (*i)->load(member, *stream);
|
2008-02-09 15:08:49 +00:00
|
|
|
break;
|
|
|
|
} else {
|
2008-09-07 21:46:37 +00:00
|
|
|
stream->seek(0, SEEK_SET);
|
2008-05-24 16:30:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-07 21:46:37 +00:00
|
|
|
delete stream;
|
2008-05-24 16:30:18 +00:00
|
|
|
|
2008-09-07 21:46:37 +00:00
|
|
|
if (!archive)
|
2008-10-22 17:44:12 +00:00
|
|
|
return 0;
|
2008-05-24 16:30:18 +00:00
|
|
|
|
2008-10-03 18:18:42 +00:00
|
|
|
_archiveCache[name] = archive;
|
2008-09-07 21:46:37 +00:00
|
|
|
return archive;
|
2008-05-24 16:30:18 +00:00
|
|
|
}
|
|
|
|
|
2008-10-22 17:44:12 +00:00
|
|
|
Common::Archive *Resource::loadInstallerArchive(const Common::String &file, const Common::String &ext, const uint8 offset) {
|
2008-09-07 21:46:37 +00:00
|
|
|
ArchiveMap::iterator cachedArchive = _archiveCache.find(file);
|
|
|
|
if (cachedArchive != _archiveCache.end())
|
|
|
|
return cachedArchive->_value;
|
2008-05-24 16:30:18 +00:00
|
|
|
|
2008-10-22 17:44:12 +00:00
|
|
|
Common::Archive *archive = InstallerLoader::load(this, file, ext, offset);
|
2008-09-07 21:46:37 +00:00
|
|
|
if (!archive)
|
2008-10-22 17:44:12 +00:00
|
|
|
return 0;
|
2008-05-24 16:30:18 +00:00
|
|
|
|
2008-09-07 21:46:37 +00:00
|
|
|
_archiveCache[file] = archive;
|
|
|
|
return archive;
|
2008-02-09 15:18:35 +00:00
|
|
|
}
|
|
|
|
|
2008-04-17 16:38:26 +00:00
|
|
|
#pragma mark -
|
|
|
|
|
2008-02-07 23:13:13 +00:00
|
|
|
void Resource::initializeLoaders() {
|
2008-03-28 06:03:59 +00:00
|
|
|
_loaders.push_back(LoaderList::value_type(new ResLoaderPak()));
|
2008-05-24 16:30:18 +00:00
|
|
|
_loaders.push_back(LoaderList::value_type(new ResLoaderInsMalcolm()));
|
2008-04-17 16:38:26 +00:00
|
|
|
_loaders.push_back(LoaderList::value_type(new ResLoaderTlk()));
|
2006-07-08 13:56:56 +00:00
|
|
|
}
|
|
|
|
|
2009-10-04 21:26:33 +00:00
|
|
|
} // End of namespace Kyra
|
2007-04-15 16:41:20 +00:00
|
|
|
|
2008-03-28 06:03:59 +00:00
|
|
|
|
2008-05-31 20:48:41 +00:00
|
|
|
|