2009-09-17 11:12:59 +02:00
|
|
|
/* Residual - A 3D game interpreter
|
|
|
|
*
|
|
|
|
* Residual is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the AUTHORS
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
2012-01-05 10:07:48 +01: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.
|
2009-09-17 11:12:59 +02:00
|
|
|
|
2012-01-05 10:07:48 +01:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2009-09-17 11:12:59 +02:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2012-01-05 10:07:48 +01:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2009-09-17 11:12:59 +02:00
|
|
|
|
2012-01-05 10:07:48 +01:00
|
|
|
* 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.
|
2009-09-17 11:12:59 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2009-09-14 16:37:24 +02:00
|
|
|
#include "engines/myst3/archive.h"
|
|
|
|
#include "common/debug.h"
|
2009-09-15 17:21:17 +02:00
|
|
|
#include "common/memstream.h"
|
2009-09-14 16:37:24 +02:00
|
|
|
|
2009-09-17 11:12:59 +02:00
|
|
|
namespace Myst3 {
|
|
|
|
|
2009-09-14 16:37:24 +02:00
|
|
|
void Archive::_decryptHeader(Common::SeekableReadStream &inStream, Common::WriteStream &outStream) {
|
|
|
|
static const uint32 addKey = 0x3C6EF35F;
|
|
|
|
static const uint32 multKey = 0x0019660D;
|
|
|
|
|
|
|
|
inStream.seek(0);
|
|
|
|
uint32 encryptedSize = inStream.readUint32LE();
|
|
|
|
uint32 decryptedSize = encryptedSize ^ addKey;
|
|
|
|
|
|
|
|
inStream.seek(0);
|
|
|
|
uint32 currentKey = 0;
|
|
|
|
|
|
|
|
for (uint i = 0; i < decryptedSize; i++) {
|
|
|
|
currentKey += addKey;
|
|
|
|
outStream.writeUint32LE(inStream.readUint32LE() ^ currentKey);
|
|
|
|
currentKey *= multKey;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-15 18:45:55 +02:00
|
|
|
void Archive::_readDirectory() {
|
2009-09-15 17:21:17 +02:00
|
|
|
Common::MemoryWriteStreamDynamic buf(DisposeAfterUse::YES);
|
2009-09-15 18:45:55 +02:00
|
|
|
_decryptHeader(_file, buf);
|
2009-09-14 16:37:24 +02:00
|
|
|
|
|
|
|
Common::MemoryReadStream directory(buf.getData(), buf.size());
|
|
|
|
directory.skip(sizeof(uint32));
|
|
|
|
|
|
|
|
while (directory.pos() < directory.size()) {
|
|
|
|
DirectoryEntry entry;
|
|
|
|
entry.readFromStream(directory);
|
|
|
|
if (entry.hasSubEntries()) {
|
|
|
|
_directory.push_back(entry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Archive::dumpDirectory() {
|
|
|
|
for (uint i = 0; i < _directory.size(); i++) {
|
|
|
|
_directory[i].dump();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-15 18:45:55 +02:00
|
|
|
void Archive::dumpToFiles() {
|
2009-09-14 16:37:24 +02:00
|
|
|
for (uint i = 0; i < _directory.size(); i++) {
|
2009-09-15 18:45:55 +02:00
|
|
|
_directory[i].dumpToFiles(_file);
|
2009-09-14 16:37:24 +02:00
|
|
|
}
|
|
|
|
}
|
2009-09-15 18:45:55 +02:00
|
|
|
|
2011-09-11 10:15:41 +02:00
|
|
|
const DirectorySubEntry *Archive::getDescription(uint16 index, uint16 face, DirectorySubEntry::ResourceType type) {
|
2009-09-15 18:45:55 +02:00
|
|
|
for (uint i = 0; i < _directory.size(); i++) {
|
|
|
|
if (_directory[i].getIndex() == index) {
|
2011-09-11 10:15:41 +02:00
|
|
|
return _directory[i].getItemDescription(face, type);
|
2009-09-15 18:45:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-09-11 10:15:41 +02:00
|
|
|
Common::MemoryReadStream *Archive::getData(const DirectorySubEntry *description) {
|
|
|
|
return description->dumpToMemory(_file);
|
|
|
|
}
|
|
|
|
|
2009-09-15 18:45:55 +02:00
|
|
|
bool Archive::open(const char *fileName) {
|
|
|
|
if (_file.open(fileName)) {
|
|
|
|
_readDirectory();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Archive::close() {
|
2011-09-03 15:39:16 +02:00
|
|
|
_directory.clear();
|
2009-09-15 18:45:55 +02:00
|
|
|
_file.close();
|
|
|
|
}
|
2009-09-17 11:12:59 +02:00
|
|
|
|
|
|
|
} // end of namespace Myst3
|