2013-05-20 12:45:54 +10: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 "voyeur/files.h"
|
2013-05-25 20:51:53 -04:00
|
|
|
#include "voyeur/graphics.h"
|
|
|
|
#include "voyeur/voyeur.h"
|
2013-05-20 12:45:54 +10:00
|
|
|
|
|
|
|
namespace Voyeur {
|
|
|
|
|
|
|
|
#define BOLT_GROUP_SIZE 16
|
|
|
|
|
2013-05-25 15:36:57 -04:00
|
|
|
BoltFilesState::BoltFilesState() {
|
|
|
|
_curLibPtr = NULL;
|
|
|
|
_curGroupPtr = NULL;
|
|
|
|
_curMemberPtr = NULL;
|
|
|
|
_curMemInfoPtr = NULL;
|
|
|
|
_fromGroupFlag = 0;
|
|
|
|
_xorMask = 0;
|
|
|
|
_encrypt = false;
|
2013-05-20 12:45:54 +10:00
|
|
|
_curFilePosition = 0;
|
2013-05-25 15:36:57 -04:00
|
|
|
_bufferEnd = 0;
|
|
|
|
_bufferBegin = 0;
|
|
|
|
_bytesLeft = 0;
|
|
|
|
_bufSize = 0;
|
|
|
|
_bufStart = NULL;
|
|
|
|
_bufPos = NULL;
|
2013-05-22 14:00:47 +10:00
|
|
|
_historyIndex = 0;
|
2013-05-25 15:36:57 -04:00
|
|
|
_runLength = 0;
|
|
|
|
_decompState = 0;
|
|
|
|
_runType = 0;
|
|
|
|
_runValue = 0;
|
|
|
|
_runOffset = 0;
|
|
|
|
Common::fill(&_historyBuffer[0], &_historyBuffer[0x200], 0);
|
2013-05-25 20:51:53 -04:00
|
|
|
_curFd = NULL;
|
|
|
|
_boltPageFrame = NULL;
|
2013-05-22 12:07:17 +10:00
|
|
|
}
|
|
|
|
|
2013-06-07 20:15:26 -04:00
|
|
|
#define NEXT_BYTE if (--_bytesLeft < 0) nextBlock()
|
2013-05-22 12:07:17 +10:00
|
|
|
|
2013-05-25 15:36:57 -04:00
|
|
|
byte *BoltFilesState::decompress(byte *buf, int size, int mode) {
|
2013-06-06 23:48:46 -04:00
|
|
|
if (!buf) {
|
2013-05-22 12:07:17 +10:00
|
|
|
buf = new byte[size];
|
2013-06-06 23:48:46 -04:00
|
|
|
Common::fill(buf, buf + size, 0);
|
|
|
|
}
|
2013-05-22 12:07:17 +10:00
|
|
|
byte *bufP = buf;
|
|
|
|
|
|
|
|
if (mode & 8) {
|
|
|
|
_decompState = 1;
|
|
|
|
_runType = 0;
|
|
|
|
_runLength = size;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (size > 0) {
|
|
|
|
if (!_decompState) {
|
|
|
|
NEXT_BYTE;
|
|
|
|
byte nextByte = *_bufPos++;
|
|
|
|
|
|
|
|
switch (nextByte & 0xC0) {
|
|
|
|
case 0:
|
|
|
|
_runType = 0;
|
|
|
|
_runLength = 30 - (nextByte & 0x1f) + 1;
|
|
|
|
break;
|
|
|
|
case 0x40:
|
|
|
|
_runType = 1;
|
|
|
|
_runLength = 35 - (nextByte & 0x1f);
|
|
|
|
NEXT_BYTE;
|
|
|
|
_runOffset = *_bufPos++ + ((nextByte & 0x20) << 3);
|
|
|
|
break;
|
|
|
|
case 0x80:
|
|
|
|
_runType = 1;
|
|
|
|
_runLength = (nextByte & 0x20) ? ((32 - (nextByte & 0x1f)) << 2) + 2 :
|
|
|
|
(32 - (nextByte & 0x1f)) << 2;
|
|
|
|
NEXT_BYTE;
|
|
|
|
_runOffset = *_bufPos++ << 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
_runType = 2;
|
|
|
|
|
|
|
|
if (nextByte & 0x20) {
|
|
|
|
_runLength = 0;
|
|
|
|
} else {
|
|
|
|
NEXT_BYTE;
|
|
|
|
_runLength = ((32 - (nextByte & 0x1f)) + (*_bufPos++ << 5)) << 2;
|
|
|
|
NEXT_BYTE;
|
|
|
|
_bufPos++;
|
|
|
|
NEXT_BYTE;
|
|
|
|
_runValue = *_bufPos++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
_runOffset = _historyIndex - _runOffset;
|
|
|
|
}
|
|
|
|
|
|
|
|
int runOffset = _runOffset & 0x1ff;
|
|
|
|
int len;
|
|
|
|
if (_runLength <= size) {
|
|
|
|
len = _runLength;
|
|
|
|
_decompState = 0;
|
|
|
|
} else {
|
|
|
|
_decompState = 1;
|
2013-06-06 23:48:46 -04:00
|
|
|
len = size;
|
|
|
|
_runLength -= size;
|
2013-05-22 12:07:17 +10:00
|
|
|
if (_runType == 1)
|
|
|
|
_runOffset += len;
|
|
|
|
}
|
|
|
|
|
2013-05-22 14:00:47 +10:00
|
|
|
// Reduce the remaining size
|
|
|
|
size -= len;
|
|
|
|
|
2013-05-22 12:07:17 +10:00
|
|
|
// Handle the run lengths
|
|
|
|
switch (_runType) {
|
|
|
|
case 0:
|
|
|
|
while (len-- > 0) {
|
|
|
|
NEXT_BYTE;
|
2013-05-25 20:51:53 -04:00
|
|
|
byte v = *_bufPos++;
|
|
|
|
_historyBuffer[_historyIndex] = v;
|
|
|
|
*bufP++ = v;
|
2013-05-22 12:07:17 +10:00
|
|
|
_historyIndex = (_historyIndex + 1) & 0x1ff;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
while (len-- > 0) {
|
|
|
|
_historyBuffer[_historyIndex] = _historyBuffer[runOffset];
|
|
|
|
*bufP++ = _historyBuffer[runOffset];
|
|
|
|
_historyIndex = (_historyIndex + 1) & 0x1ff;
|
2013-05-25 20:51:53 -04:00
|
|
|
runOffset = (runOffset + 1) & 0x1ff;
|
2013-05-22 12:07:17 +10:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
while (len-- > 0) {
|
|
|
|
_historyBuffer[_historyIndex] = _runValue;
|
2013-05-22 14:00:47 +10:00
|
|
|
*bufP++ = _runValue;
|
2013-05-22 12:07:17 +10:00
|
|
|
_historyIndex = (_historyIndex + 1) & 0x1ff;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2013-05-25 15:36:57 -04:00
|
|
|
#undef NEXT_BYTE
|
|
|
|
|
|
|
|
void BoltFilesState::nextBlock() {
|
2013-05-22 12:07:17 +10:00
|
|
|
if (_curFilePosition != _bufferEnd)
|
2013-05-25 20:51:53 -04:00
|
|
|
_curFd->seek(_bufferEnd);
|
2013-05-22 12:07:17 +10:00
|
|
|
|
2013-05-22 13:15:43 +10:00
|
|
|
_bufferBegin = _bufferEnd;
|
2013-05-25 20:51:53 -04:00
|
|
|
int bytesRead = _curFd->read(_bufStart, _bufSize);
|
2013-05-22 12:07:17 +10:00
|
|
|
|
|
|
|
_bufferEnd = _curFilePosition = _bufferBegin + bytesRead;
|
2013-05-22 13:15:43 +10:00
|
|
|
_bytesLeft = bytesRead - 1;
|
2013-05-22 12:07:17 +10:00
|
|
|
_bufPos = _bufStart;
|
|
|
|
}
|
|
|
|
|
2013-05-25 15:36:57 -04:00
|
|
|
/*------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
FilesManager::FilesManager() {
|
|
|
|
_decompressSize = 0x7000;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FilesManager::openBoltLib(const Common::String &filename, BoltFile *&boltFile) {
|
|
|
|
if (boltFile != NULL) {
|
|
|
|
_boltFilesState._curLibPtr = boltFile;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Specific library classes for buoy.blt versus stampblt.blt
|
|
|
|
// Create the bolt file interface object and load the index
|
|
|
|
boltFile = _boltFilesState._curLibPtr = new BoltFile(_boltFilesState);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-06-10 21:29:12 -04:00
|
|
|
byte *FilesManager::fload(const Common::String &filename, int *size) {
|
|
|
|
Common::File f;
|
|
|
|
int filesize;
|
|
|
|
byte *data = NULL;
|
|
|
|
|
|
|
|
if (f.open(filename)) {
|
|
|
|
// Read in the file
|
|
|
|
filesize = f.size();
|
|
|
|
data = new byte[filesize];
|
|
|
|
f.read(data, filesize);
|
|
|
|
} else {
|
|
|
|
filesize = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (size)
|
|
|
|
*size = filesize;
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2013-05-25 15:36:57 -04:00
|
|
|
/*------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
const BoltMethodPtr BoltFile::_fnInitType[25] = {
|
|
|
|
&BoltFile::initDefault, &BoltFile::initDefault, &BoltFile::initDefault, &BoltFile::initDefault,
|
|
|
|
&BoltFile::initDefault, &BoltFile::initDefault, &BoltFile::initDefault, &BoltFile::initDefault,
|
|
|
|
&BoltFile::sInitPic, &BoltFile::initDefault, &BoltFile::vInitCMap, &BoltFile::vInitCycl,
|
|
|
|
&BoltFile::initDefault, &BoltFile::initDefault, &BoltFile::initDefault, &BoltFile::initViewPort,
|
|
|
|
&BoltFile::initViewPortList, &BoltFile::initDefault, &BoltFile::initFontInfo,
|
|
|
|
&BoltFile::initSoundMap, &BoltFile::initDefault, &BoltFile::initDefault, &BoltFile::initDefault,
|
|
|
|
&BoltFile::initDefault, &BoltFile::initDefault
|
|
|
|
};
|
|
|
|
|
|
|
|
BoltFile::BoltFile(BoltFilesState &state): _state(state) {
|
2013-05-25 20:51:53 -04:00
|
|
|
_state._curFd = &_file;
|
|
|
|
if (!_file.open("bvoy.blt"))
|
2013-05-25 15:36:57 -04:00
|
|
|
error("Could not open buoy.blt");
|
|
|
|
_state._curFilePosition = 0;
|
|
|
|
|
|
|
|
// Read in the file header
|
|
|
|
byte header[16];
|
2013-05-25 20:51:53 -04:00
|
|
|
_file.read(&header[0], 16);
|
2013-05-25 15:36:57 -04:00
|
|
|
|
|
|
|
if (strncmp((const char *)&header[0], "BOLT", 4) != 0)
|
|
|
|
error("Tried to load non-bolt file");
|
|
|
|
|
|
|
|
int totalGroups = header[11] ? header[11] : 0x100;
|
|
|
|
for (int i = 0; i < totalGroups; ++i)
|
2013-05-25 20:51:53 -04:00
|
|
|
_groups.push_back(BoltGroup(_state._curFd));
|
2013-05-25 15:36:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
BoltFile::~BoltFile() {
|
2013-05-25 20:51:53 -04:00
|
|
|
_state._curFd->close();
|
2013-05-25 15:36:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool BoltFile::getBoltGroup(uint32 id) {
|
|
|
|
++_state._fromGroupFlag;
|
|
|
|
_state._curLibPtr = this;
|
|
|
|
_state._curGroupPtr = &_groups[(id >> 8) & 0xff];
|
|
|
|
|
|
|
|
if (!_state._curGroupPtr->_loaded) {
|
|
|
|
// Load the group index
|
|
|
|
_state._curGroupPtr->load();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_state._curGroupPtr->_callInitGro)
|
|
|
|
initGro();
|
|
|
|
|
|
|
|
if ((id >> 16) != 0) {
|
|
|
|
id &= 0xff00;
|
|
|
|
for (int idx = 0; idx < _state._curGroupPtr->_count; ++idx, ++id) {
|
|
|
|
byte *member = getBoltMember(id);
|
|
|
|
assert(member);
|
|
|
|
}
|
|
|
|
} else if (!_state._curGroupPtr->_processed) {
|
|
|
|
_state._curGroupPtr->_processed = true;
|
|
|
|
_state._curGroupPtr->load();
|
|
|
|
}
|
|
|
|
|
|
|
|
resolveAll();
|
|
|
|
--_state._fromGroupFlag;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-06-05 21:28:51 -04:00
|
|
|
void BoltFile::freeBoltGroup(uint32 id) {
|
2013-06-08 15:49:44 -04:00
|
|
|
_state._curLibPtr = this;
|
|
|
|
_state._curGroupPtr = &_groups[(id >> 8) & 0xff];
|
|
|
|
|
|
|
|
// Unload the group
|
|
|
|
_state._curGroupPtr->unload();
|
2013-06-05 21:28:51 -04:00
|
|
|
}
|
|
|
|
|
2013-05-28 22:39:32 -04:00
|
|
|
BoltEntry &BoltFile::getBoltEntry(uint32 id) {
|
2013-05-28 23:57:16 -04:00
|
|
|
BoltGroup &group = _groups[id >> 24];
|
|
|
|
assert(group._loaded);
|
2013-05-28 22:39:32 -04:00
|
|
|
|
2013-05-28 23:57:16 -04:00
|
|
|
BoltEntry &entry = group._entries[(id >> 16) & 0xff];
|
2013-05-28 22:39:32 -04:00
|
|
|
assert(!entry.hasResource() || (id & 0xffff) == 0);
|
|
|
|
|
|
|
|
return entry;
|
|
|
|
}
|
|
|
|
|
2013-05-28 23:57:16 -04:00
|
|
|
PictureResource *BoltFile::getPictureResouce(uint32 id) {
|
|
|
|
if ((int32)id == -1)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return getBoltEntry(id)._picResource;
|
|
|
|
}
|
|
|
|
|
2013-06-05 21:28:51 -04:00
|
|
|
CMapResource *BoltFile::getCMapResource(uint32 id) {
|
|
|
|
if ((int32)id == -1)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return getBoltEntry(id)._cMapResource;
|
|
|
|
}
|
|
|
|
|
2013-05-25 15:36:57 -04:00
|
|
|
byte *BoltFile::memberAddr(uint32 id) {
|
|
|
|
BoltGroup &group = _groups[id >> 8];
|
|
|
|
if (!group._loaded)
|
|
|
|
return NULL;
|
|
|
|
|
2013-05-28 22:39:32 -04:00
|
|
|
// If an entry already has a processed representation, we shouldn't
|
|
|
|
// still be accessing the raw data
|
|
|
|
BoltEntry &entry = group._entries[id & 0xff];
|
|
|
|
assert(!entry.hasResource());
|
|
|
|
|
|
|
|
return entry._data;
|
2013-05-25 15:36:57 -04:00
|
|
|
}
|
|
|
|
|
2013-05-25 23:30:48 -04:00
|
|
|
byte *BoltFile::memberAddrOffset(uint32 id) {
|
2013-05-28 23:57:16 -04:00
|
|
|
BoltGroup &group = _groups[id >> 24];
|
2013-05-25 23:30:48 -04:00
|
|
|
if (!group._loaded)
|
|
|
|
return NULL;
|
|
|
|
|
2013-05-28 22:39:32 -04:00
|
|
|
// If an entry already has a processed representation, we shouldn't
|
|
|
|
// still be accessing the raw data
|
|
|
|
BoltEntry &entry = group._entries[(id >> 16) & 0xff];
|
|
|
|
assert(!entry.hasResource());
|
|
|
|
|
|
|
|
return entry._data + (id & 0xffff);
|
2013-05-25 23:30:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Resolves an Id to an offset within a loaded resource
|
|
|
|
*/
|
|
|
|
void BoltFile::resolveIt(uint32 id, byte **p) {
|
|
|
|
if ((int32)id == -1) {
|
|
|
|
*p = NULL;
|
|
|
|
} else {
|
|
|
|
byte *ptr = memberAddrOffset(id);
|
|
|
|
if (ptr) {
|
|
|
|
*p = ptr;
|
|
|
|
} else {
|
|
|
|
*p = NULL;
|
|
|
|
assert(_state._resolves.size() < 1000);
|
|
|
|
_state._resolves.push_back(ResolveEntry(id, p));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-29 23:21:07 -04:00
|
|
|
void BoltFile::resolveFunction(uint32 id, GraphicMethodPtr *fn) {
|
2013-05-25 23:30:48 -04:00
|
|
|
if ((int32)id == -1) {
|
|
|
|
*fn = NULL;
|
|
|
|
} else {
|
|
|
|
error("Function fnTermGro array not supported");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Resolve any data references to within resources that weren't
|
|
|
|
* previously loaded, but are now
|
|
|
|
*/
|
|
|
|
void BoltFile::resolveAll() {
|
|
|
|
for (uint idx = 0; idx < _state._resolves.size(); ++idx)
|
|
|
|
*_state._resolves[idx]._p = memberAddrOffset(_state._resolves[idx]._id);
|
|
|
|
}
|
|
|
|
|
2013-05-25 15:36:57 -04:00
|
|
|
byte *BoltFile::getBoltMember(uint32 id) {
|
|
|
|
_state._curLibPtr = this;
|
|
|
|
|
|
|
|
// Get the group, and load it's entry list if not already loaded
|
|
|
|
_state._curGroupPtr = &_groups[(id >> 8) & 0xff];
|
|
|
|
if (!_state._curGroupPtr->_loaded)
|
|
|
|
_state._curGroupPtr->load();
|
|
|
|
|
|
|
|
// Get the entry
|
|
|
|
_state._curMemberPtr = &_state._curGroupPtr->_entries[id & 0xff];
|
|
|
|
if (_state._curMemberPtr->_field1)
|
|
|
|
initMem(_state._curMemberPtr->_field1);
|
|
|
|
|
|
|
|
// Return the data for the entry if it's already been loaded
|
|
|
|
if (_state._curMemberPtr->_data)
|
|
|
|
return _state._curMemberPtr->_data;
|
|
|
|
|
|
|
|
_state._xorMask = _state._curMemberPtr->_xorMask;
|
|
|
|
_state._encrypt = (_state._curMemberPtr->_mode & 0x10) != 0;
|
|
|
|
|
|
|
|
if (_state._curGroupPtr->_processed) {
|
|
|
|
// TODO: Figure out weird access type. Uncompressed read perhaps?
|
|
|
|
//int fileDiff = _state._curGroupPtr->_fileOffset - _state._curMemberPtr->_fileOffset;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
_state._bufStart = _state._decompressBuf;
|
|
|
|
_state._bufSize = DECOMPRESS_SIZE;
|
|
|
|
|
2013-05-25 20:51:53 -04:00
|
|
|
if ((_state._curFd != &_file) || (_state._curMemberPtr->_fileOffset < _state._bufferBegin)
|
|
|
|
|| (_state._curMemberPtr->_fileOffset >= _state._bufferEnd)) {
|
2013-05-25 15:36:57 -04:00
|
|
|
_state._bytesLeft = 0;
|
|
|
|
_state._bufPos = _state._bufStart;
|
|
|
|
_state._bufferBegin = -1;
|
|
|
|
_state._bufferEnd = _state._curMemberPtr->_fileOffset;
|
|
|
|
} else {
|
2013-05-25 20:51:53 -04:00
|
|
|
_state._bufPos = _state._curMemberPtr->_fileOffset - _state._bufferBegin + _state._bufStart;
|
|
|
|
_state._bytesLeft = _state._bufSize - (_state._bufPos - _state._bufStart);
|
2013-05-25 15:36:57 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_state._decompState = 0;
|
|
|
|
_state._historyIndex = 0;
|
|
|
|
|
|
|
|
// Initialise the resource
|
|
|
|
assert(_state._curMemberPtr->_initMethod < 25);
|
|
|
|
(this->*_fnInitType[_state._curMemberPtr->_initMethod])();
|
|
|
|
|
|
|
|
return _state._curMemberPtr->_data;
|
|
|
|
}
|
|
|
|
|
2013-05-25 09:58:03 -04:00
|
|
|
void BoltFile::initDefault() {
|
2013-05-25 15:36:57 -04:00
|
|
|
_state._curMemberPtr->_data = _state.decompress(0, _state._curMemberPtr->_size,
|
|
|
|
_state._curMemberPtr->_mode);
|
2013-05-25 09:58:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void BoltFile::sInitPic() {
|
2013-05-25 15:36:57 -04:00
|
|
|
// Read in the header data
|
2013-05-25 20:51:53 -04:00
|
|
|
_state._curMemberPtr->_data = _state.decompress(NULL, 24, _state._curMemberPtr->_mode);
|
|
|
|
_state._curMemberPtr->_picResource = new PictureResource(_state,
|
|
|
|
_state._curMemberPtr->_data);
|
2013-05-25 09:58:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void BoltFile::vInitCMap() {
|
2013-05-27 23:01:15 -04:00
|
|
|
initDefault();
|
|
|
|
_state._curMemberPtr->_cMapResource = new CMapResource(
|
|
|
|
_state, _state._curMemberPtr->_data);
|
2013-05-25 09:58:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void BoltFile::vInitCycl() {
|
2013-05-27 23:01:15 -04:00
|
|
|
initDefault();
|
|
|
|
_state._vm->_eventsManager.vStopCycle();
|
|
|
|
_state._curMemberPtr->_vInitCyclResource = new VInitCyclResource(
|
|
|
|
_state, _state._curMemberPtr->_data);
|
2013-05-25 09:58:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void BoltFile::initViewPort() {
|
2013-05-25 23:30:48 -04:00
|
|
|
initDefault();
|
|
|
|
_state._curMemberPtr->_viewPortResource = new ViewPortResource(
|
|
|
|
_state, _state._curMemberPtr->_data);
|
2013-05-25 09:58:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void BoltFile::initViewPortList() {
|
2013-05-26 22:18:54 -04:00
|
|
|
initDefault();
|
2013-05-31 21:03:16 -04:00
|
|
|
|
|
|
|
ViewPortListResource *res;
|
|
|
|
_state._curMemberPtr->_viewPortListResource = res = new ViewPortListResource(
|
2013-05-26 22:18:54 -04:00
|
|
|
_state, _state._curMemberPtr->_data);
|
2013-05-31 21:03:16 -04:00
|
|
|
|
2013-06-05 21:28:51 -04:00
|
|
|
_state._vm->_graphicsManager._viewPortListPtr = res;
|
2013-05-31 21:03:16 -04:00
|
|
|
_state._vm->_graphicsManager._vPort = &res->_entries[0];
|
2013-05-25 09:58:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void BoltFile::initFontInfo() {
|
2013-05-27 23:01:15 -04:00
|
|
|
initDefault();
|
|
|
|
_state._curMemberPtr->_fontResource = new FontResource(
|
|
|
|
_state, _state._curMemberPtr->_data);
|
2013-05-25 09:58:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void BoltFile::initSoundMap() {
|
2013-05-27 23:01:15 -04:00
|
|
|
initDefault();
|
2013-05-25 09:58:03 -04:00
|
|
|
}
|
|
|
|
|
2013-05-20 12:45:54 +10:00
|
|
|
/*------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
BoltGroup::BoltGroup(Common::SeekableReadStream *f): _file(f) {
|
|
|
|
byte buffer[BOLT_GROUP_SIZE];
|
|
|
|
|
2013-05-22 12:07:17 +10:00
|
|
|
_loaded = false;
|
2013-05-20 12:45:54 +10:00
|
|
|
|
|
|
|
_file->read(&buffer[0], BOLT_GROUP_SIZE);
|
2013-05-22 12:07:17 +10:00
|
|
|
_processed = buffer[0] != 0;
|
2013-05-20 12:45:54 +10:00
|
|
|
_callInitGro = buffer[1] != 0;
|
2013-06-05 21:28:51 -04:00
|
|
|
_termGroIndex = buffer[2];
|
2013-05-21 11:18:40 +10:00
|
|
|
_count = buffer[3] ? buffer[3] : 256; // TODO: Added this in. Check it's okay
|
2013-05-20 12:45:54 +10:00
|
|
|
_fileOffset = READ_LE_UINT32(&buffer[8]);
|
|
|
|
}
|
|
|
|
|
2013-06-08 15:49:44 -04:00
|
|
|
BoltGroup::~BoltGroup() {
|
|
|
|
}
|
|
|
|
|
2013-05-20 12:45:54 +10:00
|
|
|
void BoltGroup::load() {
|
|
|
|
_file->seek(_fileOffset);
|
|
|
|
|
|
|
|
// Read the entries
|
2013-05-21 13:19:12 +10:00
|
|
|
for (int i = 0; i < _count; ++i)
|
2013-05-20 12:45:54 +10:00
|
|
|
_entries.push_back(BoltEntry(_file));
|
2013-05-21 11:18:40 +10:00
|
|
|
|
|
|
|
_loaded = true;
|
2013-05-20 12:45:54 +10:00
|
|
|
}
|
|
|
|
|
2013-06-08 15:49:44 -04:00
|
|
|
void BoltGroup::unload() {
|
|
|
|
if (!_loaded)
|
|
|
|
return;
|
|
|
|
|
|
|
|
_entries.clear();
|
|
|
|
_loaded = false;
|
|
|
|
}
|
|
|
|
|
2013-05-20 12:45:54 +10:00
|
|
|
/*------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
BoltEntry::BoltEntry(Common::SeekableReadStream *f): _file(f) {
|
2013-05-21 11:18:40 +10:00
|
|
|
_data = NULL;
|
2013-05-25 15:36:57 -04:00
|
|
|
_picResource = NULL;
|
2013-05-25 23:30:48 -04:00
|
|
|
_viewPortResource = NULL;
|
2013-05-27 23:01:15 -04:00
|
|
|
_viewPortListResource = NULL;
|
|
|
|
_fontResource = NULL;
|
|
|
|
_cMapResource = NULL;
|
|
|
|
_vInitCyclResource = NULL;
|
2013-05-21 11:18:40 +10:00
|
|
|
|
|
|
|
byte buffer[16];
|
|
|
|
_file->read(&buffer[0], 16);
|
|
|
|
_mode = buffer[0];
|
|
|
|
_field1 = buffer[1];
|
2013-05-25 09:58:03 -04:00
|
|
|
_initMethod = buffer[3];
|
2013-05-21 11:18:40 +10:00
|
|
|
_xorMask = buffer[4] & 0xff; // TODO: Is this right??
|
|
|
|
_size = READ_LE_UINT32(&buffer[4]);
|
|
|
|
_fileOffset = READ_LE_UINT32(&buffer[8]);
|
2013-05-20 12:45:54 +10:00
|
|
|
}
|
|
|
|
|
2013-05-21 11:18:40 +10:00
|
|
|
BoltEntry::~BoltEntry() {
|
|
|
|
delete[] _data;
|
2013-05-25 15:36:57 -04:00
|
|
|
delete _picResource;
|
2013-05-25 23:30:48 -04:00
|
|
|
delete _viewPortResource;
|
2013-05-26 22:18:54 -04:00
|
|
|
delete _viewPortListResource;
|
2013-05-27 23:01:15 -04:00
|
|
|
delete _fontResource;
|
|
|
|
delete _cMapResource;
|
|
|
|
delete _vInitCyclResource;
|
2013-05-21 11:18:40 +10:00
|
|
|
}
|
2013-05-20 12:45:54 +10:00
|
|
|
|
2013-05-21 11:18:40 +10:00
|
|
|
void BoltEntry::load() {
|
2013-05-25 15:36:57 -04:00
|
|
|
// TODO: Currently, all entry loading and decompression is done in BoltFile::memberAddr.
|
|
|
|
// Ideally, a lot of the code should be moved here
|
|
|
|
}
|
|
|
|
|
2013-05-28 22:39:32 -04:00
|
|
|
/**
|
|
|
|
* Returns true if the given bolt entry has an attached resource
|
|
|
|
*/
|
|
|
|
bool BoltEntry::hasResource() const {
|
|
|
|
return _picResource || _viewPortResource || _viewPortListResource
|
|
|
|
|| _fontResource || _cMapResource || _vInitCyclResource;
|
|
|
|
}
|
|
|
|
|
2013-05-25 15:36:57 -04:00
|
|
|
/*------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
PictureResource::PictureResource(BoltFilesState &state, const byte *src) {
|
|
|
|
_flags = READ_LE_UINT16(src);
|
|
|
|
_select = src[2];
|
|
|
|
_pick = src[3];
|
|
|
|
_onOff = src[4];
|
|
|
|
_depth = src[5];
|
2013-05-29 23:21:07 -04:00
|
|
|
|
|
|
|
int xs = READ_LE_UINT16(&src[6]);
|
|
|
|
int ys = READ_LE_UINT16(&src[8]);
|
|
|
|
_bounds = Common::Rect(xs, ys, xs + READ_LE_UINT16(&src[10]),
|
|
|
|
ys + READ_LE_UINT16(&src[12]));
|
2013-05-25 15:36:57 -04:00
|
|
|
_maskData = READ_LE_UINT32(&src[14]);
|
2013-06-08 17:51:41 -04:00
|
|
|
_planeSize = READ_LE_UINT16(&src[22]);
|
2013-05-25 15:36:57 -04:00
|
|
|
|
|
|
|
_imgData = NULL;
|
2013-05-25 20:51:53 -04:00
|
|
|
|
2013-05-29 23:21:07 -04:00
|
|
|
int nbytes = _bounds.width() * _bounds.height();
|
2013-05-25 20:51:53 -04:00
|
|
|
if (_flags & 0x20) {
|
2013-05-29 23:21:07 -04:00
|
|
|
error("TODO: sInitPic flags&0x20");
|
2013-05-25 20:51:53 -04:00
|
|
|
} else if (_flags & 8) {
|
|
|
|
int mode = 0;
|
2013-05-29 23:21:07 -04:00
|
|
|
if (_bounds.width() == 320) {
|
2013-05-25 20:51:53 -04:00
|
|
|
mode = 147;
|
|
|
|
state._sImageShift = 2;
|
|
|
|
state._SVGAReset = false;
|
|
|
|
} else {
|
|
|
|
state._SVGAReset = true;
|
2013-05-29 23:21:07 -04:00
|
|
|
if (_bounds.width() == 640) {
|
|
|
|
if (_bounds.height() == 400) {
|
2013-05-25 20:51:53 -04:00
|
|
|
mode = 220;
|
|
|
|
state._sImageShift = 3;
|
|
|
|
} else {
|
|
|
|
mode = 221;
|
|
|
|
state._sImageShift = 3;
|
|
|
|
}
|
2013-05-29 23:21:07 -04:00
|
|
|
} else if (_bounds.width() == 800) {
|
2013-05-25 20:51:53 -04:00
|
|
|
mode = 222;
|
|
|
|
state._sImageShift = 3;
|
2013-05-29 23:21:07 -04:00
|
|
|
} else if (_bounds.width() == 1024) {
|
2013-05-25 20:51:53 -04:00
|
|
|
mode = 226;
|
|
|
|
state._sImageShift = 3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mode != state._vm->_graphicsManager._SVGAMode) {
|
|
|
|
state._vm->_graphicsManager._SVGAMode = mode;
|
2013-06-05 21:28:51 -04:00
|
|
|
state._vm->_graphicsManager.clearPalette();
|
2013-05-25 20:51:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// byte *imgData = _imgData;
|
|
|
|
if (_flags & 0x10) {
|
|
|
|
// TODO: Figure out what it's doing. Looks like a direct clearing
|
|
|
|
// of the screen directly
|
|
|
|
} else {
|
|
|
|
// TODO: Figure out direct screen loading
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (_flags & 0x1000) {
|
|
|
|
if (!(_flags & 0x10))
|
|
|
|
nbytes = state._curMemberPtr->_size - 24;
|
|
|
|
|
|
|
|
int mask = (nbytes + 0x3FFF) >> 14;
|
|
|
|
_imgData = NULL;
|
|
|
|
|
|
|
|
if (state._boltPageFrame == 0)
|
|
|
|
state.EMSGetFrameAddr(&state._boltPageFrame);
|
|
|
|
if (state._boltPageFrame != 0) {
|
|
|
|
if (!state.EMSAllocatePages(&_planeSize)) {
|
|
|
|
_maskData = mask;
|
|
|
|
|
|
|
|
for (int idx = 0; idx < mask; ++idx)
|
|
|
|
state.EMSMapPageHandle(_planeSize, idx, idx);
|
|
|
|
|
|
|
|
state.decompress(state._boltPageFrame, nbytes, state._curMemberPtr->_mode);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_flags & 0x10) {
|
|
|
|
_imgData = new byte[nbytes];
|
2013-06-06 23:48:46 -04:00
|
|
|
Common::fill(_imgData, _imgData + nbytes, 0);
|
2013-05-25 20:51:53 -04:00
|
|
|
} else {
|
|
|
|
_imgData = state.decompress(NULL, nbytes, state._curMemberPtr->_mode);
|
|
|
|
}
|
|
|
|
}
|
2013-05-25 15:36:57 -04:00
|
|
|
}
|
|
|
|
|
2013-06-08 17:51:41 -04:00
|
|
|
PictureResource::PictureResource() {
|
|
|
|
_select = 0;
|
|
|
|
_pick = 0;
|
|
|
|
_onOff = 0;
|
|
|
|
_depth = 0;
|
|
|
|
_maskData = 0;
|
|
|
|
_planeSize = 0;
|
|
|
|
|
|
|
|
_imgData = NULL;
|
|
|
|
}
|
|
|
|
|
2013-05-25 15:36:57 -04:00
|
|
|
PictureResource::~PictureResource() {
|
|
|
|
delete _imgData;
|
2013-05-20 12:45:54 +10:00
|
|
|
}
|
|
|
|
|
2013-05-25 23:30:48 -04:00
|
|
|
/*------------------------------------------------------------------------*/
|
|
|
|
|
2013-05-28 22:39:32 -04:00
|
|
|
ViewPortResource::ViewPortResource(BoltFilesState &state, const byte *src):
|
|
|
|
_state(state) {
|
2013-05-30 08:31:06 -04:00
|
|
|
_flags = READ_LE_UINT16(src);
|
2013-05-28 23:57:16 -04:00
|
|
|
_next = state._curLibPtr->getBoltEntry(READ_LE_UINT32(src + 2))._viewPortResource;
|
2013-05-31 21:31:33 -04:00
|
|
|
_pageCount = READ_LE_UINT16(src + 6);
|
|
|
|
_pageIndex = READ_LE_UINT16(src + 8);
|
|
|
|
_lastPage = READ_LE_UINT16(src + 10);
|
|
|
|
|
|
|
|
int xs = READ_LE_UINT16(src + 12);
|
|
|
|
int ys = READ_LE_UINT16(src + 14);
|
|
|
|
_bounds = Common::Rect(xs, ys, xs + READ_LE_UINT16(src + 16),
|
|
|
|
ys + READ_LE_UINT16(src + 18));
|
2013-05-28 22:39:32 -04:00
|
|
|
_field18 = READ_LE_UINT16(src + 0x18);
|
|
|
|
|
2013-05-31 21:31:33 -04:00
|
|
|
_currentPic = state._curLibPtr->getPictureResouce(READ_LE_UINT32(src + 0x20));
|
2013-05-29 23:21:07 -04:00
|
|
|
_activePage = state._curLibPtr->getPictureResouce(READ_LE_UINT32(src + 0x24));
|
2013-05-31 21:31:33 -04:00
|
|
|
_pages[0] = state._curLibPtr->getPictureResouce(READ_LE_UINT32(src + 0x28));
|
|
|
|
_pages[1] = state._curLibPtr->getPictureResouce(READ_LE_UINT32(src + 0x2C));
|
2013-05-28 23:57:16 -04:00
|
|
|
|
2013-05-25 23:30:48 -04:00
|
|
|
state._curLibPtr->resolveIt(READ_LE_UINT32(src + 0x30), &_field30);
|
2013-05-28 22:39:32 -04:00
|
|
|
|
2013-06-01 12:35:50 -04:00
|
|
|
// Get the rect list
|
2013-06-01 20:07:20 -04:00
|
|
|
for (int listIndex = 0; listIndex < 3; ++listIndex) {
|
|
|
|
_rectListCount[listIndex] = (int16)READ_LE_UINT16(src + 0x40 + 2 * listIndex);
|
|
|
|
uint32 id = READ_LE_UINT32(src + 0x34 + listIndex * 4);
|
2013-06-01 12:35:50 -04:00
|
|
|
|
2013-06-01 20:07:20 -04:00
|
|
|
if (id == -1) {
|
|
|
|
_rectListPtr[listIndex] = NULL;
|
|
|
|
} else {
|
|
|
|
_rectListPtr[listIndex] = new Common::Array<Common::Rect>();
|
|
|
|
|
|
|
|
if (_rectListCount[listIndex] > 0) {
|
|
|
|
int16 *rectList = (int16 *)state._curLibPtr->memberAddrOffset(id);
|
|
|
|
for (int i = 0; i < _rectListCount[listIndex]; ++i) {
|
|
|
|
int xs = FROM_LE_16(rectList[0]);
|
|
|
|
int ys = FROM_LE_16(rectList[1]);
|
|
|
|
_rectListPtr[i]->push_back(Common::Rect(xs, ys, xs + FROM_LE_16(rectList[2]),
|
|
|
|
ys + FROM_LE_16(rectList[3])));
|
|
|
|
}
|
|
|
|
}
|
2013-06-01 12:35:50 -04:00
|
|
|
}
|
|
|
|
}
|
2013-05-31 22:13:28 -04:00
|
|
|
|
2013-05-29 23:21:07 -04:00
|
|
|
xs = READ_LE_UINT16(src + 0x46);
|
|
|
|
ys = READ_LE_UINT16(src + 0x48);
|
|
|
|
_clipRect = Common::Rect(xs, ys, xs + READ_LE_UINT16(src + 0x4A),
|
|
|
|
ys + READ_LE_UINT16(src + 0x4C));
|
2013-05-28 22:39:32 -04:00
|
|
|
|
2013-05-25 23:30:48 -04:00
|
|
|
state._curLibPtr->resolveIt(READ_LE_UINT32(src + 0x7A), &_field7A);
|
|
|
|
|
2013-05-29 23:21:07 -04:00
|
|
|
state._curLibPtr->resolveFunction(READ_LE_UINT32(src + 0x7E), (GraphicMethodPtr *)&_fn1);
|
|
|
|
state._curLibPtr->resolveFunction(READ_LE_UINT32(src + 0x82), (GraphicMethodPtr *)&_setupFn);
|
|
|
|
state._curLibPtr->resolveFunction(READ_LE_UINT32(src + 0x86), (GraphicMethodPtr *)&_addFn);
|
|
|
|
state._curLibPtr->resolveFunction(READ_LE_UINT32(src + 0x8A), (GraphicMethodPtr *)&_restoreFn);
|
2013-05-25 23:30:48 -04:00
|
|
|
|
2013-05-29 23:21:07 -04:00
|
|
|
if (!_restoreFn && _addFn)
|
|
|
|
_addFn = &GraphicsManager::addRectNoSaveBack;
|
2013-05-25 23:30:48 -04:00
|
|
|
}
|
|
|
|
|
2013-06-01 12:35:50 -04:00
|
|
|
ViewPortResource::~ViewPortResource() {
|
|
|
|
for (int i = 0; i < 3; ++i)
|
|
|
|
delete _rectListPtr[i];
|
|
|
|
}
|
|
|
|
|
2013-05-29 23:21:07 -04:00
|
|
|
void ViewPortResource::setupViewPort(PictureResource *page, Common::Rect *clipRect,
|
|
|
|
ViewPortSetupPtr setupFn, ViewPortAddPtr addFn, ViewPortRestorePtr restoreFn) {
|
2013-05-31 21:31:33 -04:00
|
|
|
PictureResource *pic = _currentPic;
|
2013-05-30 08:31:06 -04:00
|
|
|
Common::Rect r = _bounds;
|
|
|
|
r.translate(pic->_bounds.left, pic->_bounds.top);
|
2013-05-29 23:21:07 -04:00
|
|
|
int xDiff, yDiff;
|
|
|
|
|
|
|
|
if (page) {
|
|
|
|
// Clip based on the passed picture resource
|
|
|
|
xDiff = page->_bounds.left - r.left;
|
|
|
|
yDiff = page->_bounds.top - r.top;
|
|
|
|
|
|
|
|
if (xDiff > 0) {
|
2013-05-30 08:31:06 -04:00
|
|
|
int width = r.width();
|
2013-05-29 23:21:07 -04:00
|
|
|
r.left = page->_bounds.left;
|
2013-05-30 08:31:06 -04:00
|
|
|
r.setWidth(xDiff <= width ? width - xDiff : 0);
|
2013-05-29 23:21:07 -04:00
|
|
|
}
|
|
|
|
if (yDiff > 0) {
|
2013-05-30 08:31:06 -04:00
|
|
|
int height = r.height();
|
2013-05-29 23:21:07 -04:00
|
|
|
r.top = page->_bounds.top;
|
2013-05-30 08:31:06 -04:00
|
|
|
r.setHeight(yDiff <= height ? height - yDiff : 0);
|
2013-05-29 23:21:07 -04:00
|
|
|
}
|
2013-05-28 22:39:32 -04:00
|
|
|
|
2013-05-30 08:31:06 -04:00
|
|
|
xDiff = r.right - page->_bounds.right;
|
|
|
|
yDiff = r.bottom - page->_bounds.bottom;
|
2013-05-28 22:39:32 -04:00
|
|
|
|
2013-05-29 23:21:07 -04:00
|
|
|
if (xDiff > 0)
|
|
|
|
r.setWidth(xDiff <= r.width() ? r.width() - xDiff : 0);
|
|
|
|
if (yDiff > 0)
|
|
|
|
r.setHeight(yDiff <= r.height() ? r.height() - yDiff : 0);
|
|
|
|
}
|
2013-05-28 22:39:32 -04:00
|
|
|
|
2013-05-29 23:21:07 -04:00
|
|
|
if (clipRect) {
|
|
|
|
// Clip based on the passed clip rectangles
|
|
|
|
xDiff = clipRect->left - r.left;
|
|
|
|
yDiff = clipRect->top - r.top;
|
|
|
|
|
|
|
|
if (xDiff > 0) {
|
2013-05-30 08:31:06 -04:00
|
|
|
int width = r.width();
|
2013-05-29 23:21:07 -04:00
|
|
|
r.left = clipRect->left;
|
2013-05-30 08:31:06 -04:00
|
|
|
r.setWidth(xDiff <= width ? width - xDiff : 0);
|
2013-05-29 23:21:07 -04:00
|
|
|
}
|
|
|
|
if (yDiff > 0) {
|
2013-05-30 08:31:06 -04:00
|
|
|
int height = r.height();
|
2013-05-29 23:21:07 -04:00
|
|
|
r.top = clipRect->top;
|
2013-05-30 08:31:06 -04:00
|
|
|
r.setHeight(yDiff <= height ? height - yDiff : 0);
|
2013-05-29 23:21:07 -04:00
|
|
|
}
|
2013-05-30 08:31:06 -04:00
|
|
|
|
2013-05-29 23:21:07 -04:00
|
|
|
xDiff = r.right - clipRect->right;
|
|
|
|
yDiff = r.right - clipRect->right;
|
|
|
|
|
|
|
|
if (xDiff > 0)
|
|
|
|
r.setWidth(xDiff <= r.width() ? r.width() - xDiff : 0);
|
|
|
|
if (yDiff > 0)
|
|
|
|
r.setHeight(yDiff <= r.height() ? r.height() - yDiff : 0);
|
|
|
|
}
|
2013-05-31 18:40:04 -04:00
|
|
|
// clip = (0x20, 0x14, width: 0x140, height: 0C8h
|
2013-05-29 23:21:07 -04:00
|
|
|
_activePage = page;
|
|
|
|
_field18 = 0;
|
2013-05-31 18:40:04 -04:00
|
|
|
_clipRect = r;
|
2013-05-29 23:21:07 -04:00
|
|
|
_setupFn = setupFn;
|
|
|
|
_addFn = addFn;
|
|
|
|
_restoreFn = restoreFn;
|
2013-05-28 22:39:32 -04:00
|
|
|
|
2013-05-29 23:21:07 -04:00
|
|
|
if (setupFn)
|
|
|
|
(_state._vm->_graphicsManager.*setupFn)(this);
|
2013-05-28 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void ViewPortResource::setupViewPort() {
|
2013-05-29 23:21:07 -04:00
|
|
|
setupViewPort(_state._vm->_graphicsManager._backgroundPage, NULL,
|
|
|
|
&GraphicsManager::setupMCGASaveRect, &GraphicsManager::addRectOptSaveRect,
|
|
|
|
&GraphicsManager::restoreMCGASaveRect);
|
2013-05-28 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
2013-05-26 22:18:54 -04:00
|
|
|
/*------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
ViewPortListResource::ViewPortListResource(BoltFilesState &state, const byte *src) {
|
2013-05-27 23:01:15 -04:00
|
|
|
uint count = READ_LE_UINT16(src);
|
|
|
|
|
2013-06-07 22:07:57 -04:00
|
|
|
// Load palette map
|
|
|
|
byte *palData = state._curLibPtr->memberAddr(READ_LE_UINT32(src + 4));
|
|
|
|
for (uint i = 0; i < 256; ++i, palData += 16)
|
|
|
|
_palette.push_back(ViewPortPalEntry(palData));
|
2013-05-26 22:18:54 -04:00
|
|
|
|
2013-06-07 22:07:57 -04:00
|
|
|
// Load view port pointer list
|
|
|
|
uint32 *idP = (uint32 *)&src[8];
|
2013-05-26 22:18:54 -04:00
|
|
|
for (uint i = 0; i < count; ++i, ++idP) {
|
|
|
|
uint32 id = READ_LE_UINT32(idP);
|
2013-05-28 22:39:32 -04:00
|
|
|
BoltEntry &entry = state._curLibPtr->getBoltEntry(id);
|
|
|
|
|
|
|
|
assert(entry._viewPortResource);
|
|
|
|
_entries.push_back(entry._viewPortResource);
|
2013-05-26 22:18:54 -04:00
|
|
|
}
|
2013-06-07 22:07:57 -04:00
|
|
|
}
|
2013-06-05 21:28:51 -04:00
|
|
|
|
2013-06-07 22:07:57 -04:00
|
|
|
/*------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
ViewPortPalEntry::ViewPortPalEntry(const byte *src) {
|
|
|
|
uint16 *v = (uint16 *)src;
|
|
|
|
_rEntry = READ_LE_UINT16(v++);
|
|
|
|
_gEntry = READ_LE_UINT16(v++);
|
|
|
|
_bEntry = READ_LE_UINT16(v++);
|
2013-06-08 10:31:37 -04:00
|
|
|
_rChange = READ_LE_UINT16(v++);
|
|
|
|
_gChange = READ_LE_UINT16(v++);
|
|
|
|
_bChange = READ_LE_UINT16(v++);
|
|
|
|
_palIndex = READ_LE_UINT16(v++);
|
2013-05-26 22:18:54 -04:00
|
|
|
}
|
|
|
|
|
2013-06-07 22:07:57 -04:00
|
|
|
|
2013-05-27 23:01:15 -04:00
|
|
|
/*------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
FontResource::FontResource(BoltFilesState &state, const byte *src) {
|
|
|
|
state._curLibPtr->resolveIt(READ_LE_UINT32(src + 0xC), &_fieldC);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*------------------------------------------------------------------------*/
|
|
|
|
|
2013-06-05 21:28:51 -04:00
|
|
|
CMapResource::CMapResource(BoltFilesState &state, const byte *src): _vm(state._vm) {
|
2013-06-05 22:10:13 -04:00
|
|
|
_steps = src[0];
|
|
|
|
_fadeStatus = src[1];
|
2013-05-27 23:01:15 -04:00
|
|
|
_start = READ_LE_UINT16(src + 2);
|
|
|
|
_end = READ_LE_UINT16(src + 4);
|
|
|
|
|
|
|
|
int count = _end - _start;
|
2013-06-05 21:28:51 -04:00
|
|
|
_entries = new byte[count * 3];
|
|
|
|
Common::copy(src + 6, src + 6 + 3 * count, _entries);
|
2013-05-27 23:01:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
CMapResource::~CMapResource() {
|
2013-06-05 21:28:51 -04:00
|
|
|
delete[] _entries;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CMapResource::startFade() {
|
|
|
|
_vm->_eventsManager.startFade(this);
|
2013-05-27 23:01:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
VInitCyclResource::VInitCyclResource(BoltFilesState &state, const byte *src) {
|
|
|
|
for (int i = 0; i < 4; ++i) {
|
|
|
|
state._curLibPtr->resolveIt(READ_LE_UINT32(src + 8 + i * 4), &_ptr[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-20 12:45:54 +10:00
|
|
|
} // End of namespace Voyeur
|