mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-19 08:25:35 +00:00
441 lines
11 KiB
C++
441 lines
11 KiB
C++
/* 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#include "common/debug.h"
|
|
#include "common/stream.h"
|
|
#include "common/substream.h"
|
|
#include "common/textconsole.h"
|
|
#include "graphics/surface.h"
|
|
|
|
#include "chewy/atds.h"
|
|
#include "chewy/chewy.h"
|
|
#include "chewy/resource.h"
|
|
|
|
namespace Chewy {
|
|
|
|
Resource::Resource(Common::String filename) {
|
|
const uint32 headerGeneric = MKTAG('N', 'G', 'S', '\0');
|
|
const uint32 headerTxtDec = MKTAG('T', 'C', 'F', '\0');
|
|
const uint32 headerTxtEnc = MKTAG('T', 'C', 'F', '\1');
|
|
const uint32 headerSprite = MKTAG('T', 'A', 'F', '\0');
|
|
const uint32 headerBarrier = MKTAG('G', 'E', 'P', '\0');
|
|
|
|
filename.toLowercase();
|
|
_stream.open(filename);
|
|
|
|
const uint32 header = _stream.readUint32BE();
|
|
const bool isText = (header == headerTxtDec || header == headerTxtEnc);
|
|
const bool isSprite = (header == headerSprite);
|
|
//const bool isSpeech = filename.contains("speech.tvp");
|
|
const bool isBarrier = (header == headerBarrier);
|
|
|
|
if (header != headerGeneric && !isSprite && !isText && !isBarrier)
|
|
error("Invalid resource - %s", filename.c_str());
|
|
|
|
if (isText) {
|
|
_resType = kResourceTCF;
|
|
_encrypted = (header == headerTxtEnc);
|
|
} else if (isSprite) {
|
|
initSprite(filename);
|
|
return;
|
|
} else if (isBarrier) {
|
|
_resType = kResourceGEP;
|
|
_encrypted = false;
|
|
} else {
|
|
_resType = (ResourceType)_stream.readUint16LE();
|
|
_encrypted = false;
|
|
}
|
|
|
|
if (filename.contains("atds.tap"))
|
|
_encrypted = true;
|
|
|
|
_chunkCount = _stream.readUint16LE();
|
|
_chunkList.resize(_chunkCount);
|
|
|
|
if (header == headerGeneric) {
|
|
// NGS files have an index at the end
|
|
_stream.seek(-(int)(_chunkCount * sizeof(uint32)), SEEK_END);
|
|
for (uint i = 0; i < _chunkCount; i++) {
|
|
Chunk &cur = _chunkList[i];
|
|
cur.pos = _stream.readUint32LE();
|
|
}
|
|
}
|
|
|
|
for (uint i = 0; i < _chunkCount; i++) {
|
|
Chunk &cur = _chunkList[i];
|
|
if (header == headerGeneric)
|
|
_stream.seek(cur.pos - 6);
|
|
|
|
cur.size = _stream.readUint32LE();
|
|
|
|
if (isText) {
|
|
cur.type = kResourceUnknown;
|
|
cur.num = _stream.readUint16LE();
|
|
} else if (isBarrier) {
|
|
cur.type = kResourceUnknown;
|
|
cur.num = i;
|
|
cur.size += 6;
|
|
} else {
|
|
cur.type = (ResourceType)_stream.readUint16LE();
|
|
cur.num = 0;
|
|
}
|
|
|
|
cur.pos = _stream.pos();
|
|
|
|
// TODO: Is this workaround necessary anymore
|
|
// with the stream offset fixes
|
|
#if 0
|
|
// WORKAROUND: Patch invalid speech sample
|
|
if (isSpeech && i == 2277 && cur.size == 57028) {
|
|
cur.size = 152057;
|
|
_stream.skip(cur.size);
|
|
_chunkList.push_back(cur);
|
|
_chunkList.push_back(cur);
|
|
continue;
|
|
}
|
|
#endif
|
|
|
|
if (header != headerGeneric)
|
|
_stream.skip(cur.size);
|
|
}
|
|
|
|
_spriteCorrectionsCount = 0;
|
|
_spriteCorrectionsTable = nullptr;
|
|
}
|
|
|
|
Resource::~Resource() {
|
|
_chunkList.clear();
|
|
_stream.close();
|
|
|
|
delete[] _spriteCorrectionsTable;
|
|
_spriteCorrectionsTable = nullptr;
|
|
}
|
|
|
|
uint32 Resource::getChunkCount() const {
|
|
return _chunkList.size();
|
|
}
|
|
|
|
Chunk *Resource::getChunk(uint num) {
|
|
assert(num < _chunkList.size());
|
|
|
|
return &_chunkList[num];
|
|
}
|
|
|
|
uint32 Resource::findLargestChunk(uint start, uint end) {
|
|
uint32 maxSize = 0;
|
|
for (uint i = start; i < end; i++) {
|
|
if (_chunkList[i].size > maxSize)
|
|
maxSize = _chunkList[i].size;
|
|
}
|
|
return maxSize;
|
|
}
|
|
|
|
uint8 *Resource::getChunkData(uint num) {
|
|
assert(num < _chunkList.size());
|
|
|
|
Chunk *chunk = &_chunkList[num];
|
|
uint8 *data = new uint8[chunk->size];
|
|
|
|
_stream.seek(chunk->pos, SEEK_SET);
|
|
_stream.read(data, chunk->size);
|
|
if (_encrypted)
|
|
decrypt(data, chunk->size);
|
|
|
|
return data;
|
|
}
|
|
|
|
void Resource::initSprite(Common::String filename) {
|
|
_resType = kResourceTAF;
|
|
_encrypted = false;
|
|
/*screenMode = */_stream.readUint16LE();
|
|
_chunkCount = _stream.readUint16LE();
|
|
_allSize = _stream.readUint32LE();
|
|
_stream.read(_spritePalette, 3 * 256);
|
|
uint32 nextSpriteOffset = _stream.readUint32LE();
|
|
_spriteCorrectionsCount = _stream.readUint16LE();
|
|
|
|
// Sometimes there's a filler byte
|
|
if ((int32)nextSpriteOffset == _stream.pos() + 1)
|
|
_stream.skip(1);
|
|
|
|
if ((int32)nextSpriteOffset != _stream.pos())
|
|
error("Invalid sprite resource - %s", filename.c_str());
|
|
|
|
for (uint i = 0; i < _chunkCount; i++) {
|
|
Chunk cur;
|
|
|
|
cur.pos = _stream.pos();
|
|
cur.type = kResourceTAF;
|
|
|
|
_stream.skip(2 + 2 + 2);
|
|
nextSpriteOffset = _stream.readUint32LE();
|
|
uint32 spriteImageOffset = _stream.readUint32LE();
|
|
_stream.skip(1);
|
|
|
|
if ((int32)spriteImageOffset != _stream.pos())
|
|
error("Invalid sprite resource - %s", filename.c_str());
|
|
|
|
cur.size = nextSpriteOffset - cur.pos - 15;
|
|
|
|
_stream.skip(cur.size);
|
|
_chunkList.push_back(cur);
|
|
|
|
if (_stream.err())
|
|
error("Sprite stream error - %s", filename.c_str());
|
|
}
|
|
|
|
_spriteCorrectionsTable = new uint16[_chunkCount * 2];
|
|
|
|
for (uint i = 0; i < _chunkCount; i++) {
|
|
_spriteCorrectionsTable[i * 2] = _stream.readUint16LE();
|
|
_spriteCorrectionsTable[i * 2 + 1] = _stream.readUint16LE();
|
|
}
|
|
}
|
|
|
|
void Resource::unpackRLE(uint8 *buffer, uint32 compressedSize, uint32 uncompressedSize) {
|
|
uint32 outPos = 0;
|
|
|
|
for (uint i = 0; i < (compressedSize) / 2 && outPos < uncompressedSize; i++) {
|
|
uint8 count = _stream.readByte();
|
|
uint8 value = _stream.readByte();
|
|
for (uint8 j = 0; j < count && outPos < uncompressedSize; j++) {
|
|
buffer[outPos++] = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
void Resource::decrypt(uint8 *data, uint32 size) {
|
|
uint8 *c = data;
|
|
|
|
for (uint i = 0; i < size; i++) {
|
|
*c = -(*c);
|
|
++c;
|
|
}
|
|
}
|
|
|
|
TAFChunk *SpriteResource::getSprite(uint num) {
|
|
assert(num < _chunkList.size());
|
|
|
|
Chunk *chunk = &_chunkList[num];
|
|
TAFChunk *taf = new TAFChunk();
|
|
|
|
_stream.seek(chunk->pos, SEEK_SET);
|
|
|
|
taf->compressionFlag = _stream.readUint16LE();
|
|
taf->width = _stream.readUint16LE();
|
|
taf->height = _stream.readUint16LE();
|
|
_stream.skip(4 + 4 + 1);
|
|
|
|
taf->data = new uint8[taf->width * taf->height];
|
|
|
|
if (!taf->compressionFlag)
|
|
_stream.read(taf->data, chunk->size);
|
|
else
|
|
unpackRLE(taf->data, chunk->size, taf->width * taf->height);
|
|
|
|
return taf;
|
|
}
|
|
|
|
uint32 SpriteResource::getSpriteData(uint num, uint8 **buf, bool initBuffer) {
|
|
TAFChunk *sprite = getSprite(num);
|
|
uint32 size = sprite->width * sprite->height;
|
|
if (initBuffer)
|
|
*buf = (byte *)malloc(size + 4);
|
|
// Sprite width and height is piggy-banked inside the sprite data
|
|
uint16 *memPtr = (uint16 *)*buf;
|
|
memPtr[0] = sprite->width;
|
|
memPtr[1] = sprite->height;
|
|
memcpy(*buf + 4, sprite->data, size);
|
|
delete sprite;
|
|
|
|
return size + 4;
|
|
}
|
|
|
|
TBFChunk *BackgroundResource::getImage(uint num, bool fixPalette) {
|
|
assert(num < _chunkList.size());
|
|
|
|
Chunk *chunk = &_chunkList[num];
|
|
TBFChunk *tbf = new TBFChunk();
|
|
|
|
_stream.seek(chunk->pos, SEEK_SET);
|
|
|
|
if (_stream.readUint32BE() != MKTAG('T', 'B', 'F', '\0'))
|
|
error("Corrupt TBF resource");
|
|
|
|
tbf->screenMode = _stream.readUint16LE();
|
|
tbf->compressionFlag = _stream.readUint16LE();
|
|
tbf->size = _stream.readUint32LE();
|
|
tbf->width = _stream.readUint16LE();
|
|
tbf->height = _stream.readUint16LE();
|
|
for (int j = 0; j < 3 * 256; j++)
|
|
tbf->palette[j] = fixPalette ? (_stream.readByte() << 2) & 0xff : _stream.readByte();
|
|
|
|
tbf->data = new uint8[tbf->size];
|
|
|
|
if (!tbf->compressionFlag)
|
|
_stream.read(tbf->data, chunk->size);
|
|
else
|
|
unpackRLE(tbf->data, chunk->size, tbf->size);
|
|
|
|
return tbf;
|
|
}
|
|
|
|
SoundChunk *SoundResource::getSound(uint num) {
|
|
assert(num < _chunkList.size());
|
|
|
|
Chunk *chunk = &_chunkList[num];
|
|
SoundChunk *sound = new SoundChunk();
|
|
sound->size = chunk->size;
|
|
sound->data = new uint8[sound->size];
|
|
|
|
_stream.seek(chunk->pos, SEEK_SET);
|
|
_stream.read(sound->data, sound->size);
|
|
|
|
return sound;
|
|
}
|
|
|
|
VideoChunk *VideoResource::getVideoHeader(uint num) {
|
|
assert(num < _chunkList.size());
|
|
|
|
Chunk *chunk = &_chunkList[num];
|
|
VideoChunk *vid = new VideoChunk();
|
|
|
|
_stream.seek(chunk->pos, SEEK_SET);
|
|
|
|
if (_stream.readUint32BE() != MKTAG('C', 'F', 'O', '\0'))
|
|
error("Corrupt video resource");
|
|
|
|
vid->size = _stream.readUint32LE();
|
|
vid->frameCount = _stream.readUint16LE();
|
|
vid->width = _stream.readUint16LE();
|
|
vid->height = _stream.readUint16LE();
|
|
vid->frameDelay = _stream.readUint32LE();
|
|
vid->firstFrameOffset = _stream.readUint32LE();
|
|
|
|
return vid;
|
|
}
|
|
|
|
Common::SeekableReadStream *VideoResource::getVideoStream(uint num) {
|
|
assert(num < _chunkList.size());
|
|
|
|
Chunk *chunk = &_chunkList[num];
|
|
return new Common::SeekableSubReadStream(&_stream, chunk->pos, chunk->pos + chunk->size);
|
|
}
|
|
|
|
DialogResource::DialogResource(Common::String filename) : Resource(filename) {
|
|
_dialogBuffer = new byte[_stream.size()];
|
|
_stream.seek(0, SEEK_SET);
|
|
_dialogStream = new Common::MemorySeekableReadWriteStream(_dialogBuffer, _stream.size());
|
|
_dialogStream->writeStream(&_stream);
|
|
}
|
|
|
|
DialogResource::~DialogResource() {
|
|
delete _dialogStream;
|
|
delete _dialogBuffer;
|
|
}
|
|
|
|
DialogChunk *DialogResource::getDialog(uint dialog, uint block) {
|
|
Chunk *chunk = &_chunkList[dialog];
|
|
DialogChunk *item = new DialogChunk();
|
|
|
|
_dialogStream->seek(chunk->pos + 3 * 6 * block, SEEK_SET);
|
|
|
|
_dialogStream->read(item->show, 6);
|
|
_dialogStream->read(item->next, 6);
|
|
_dialogStream->read(item->flags, 6);
|
|
|
|
return item;
|
|
}
|
|
|
|
bool DialogResource::isItemShown(uint dialog, uint block, uint num) {
|
|
DialogChunk *item = getDialog(dialog, block);
|
|
bool isShown = item->show[num];
|
|
delete item;
|
|
|
|
return isShown;
|
|
}
|
|
|
|
void DialogResource::setItemShown(uint dialog, uint block, uint num, bool shown) {
|
|
Chunk *chunk = &_chunkList[dialog];
|
|
|
|
_dialogStream->seek(chunk->pos + 3 * 6 * block, SEEK_SET);
|
|
|
|
_dialogStream->skip(num);
|
|
_dialogStream->writeByte(shown ? 1 : 0);
|
|
}
|
|
|
|
bool DialogResource::hasExitBit(uint dialog, uint block, uint num) {
|
|
DialogChunk *item = getDialog(dialog, block);
|
|
const bool isExit = (item->flags[num] & ADS_EXIT_BIT) != 0;
|
|
delete item;
|
|
|
|
return isExit;
|
|
}
|
|
|
|
bool DialogResource::hasRestartBit(uint dialog, uint block, uint num) {
|
|
DialogChunk *item = getDialog(dialog, block);
|
|
const bool isRestart = (item->flags[num] & ADS_RESTART_BIT) != 0;
|
|
delete item;
|
|
|
|
return isRestart;
|
|
}
|
|
|
|
bool DialogResource::hasShowBit(uint dialog, uint block, uint num) {
|
|
DialogChunk *item = getDialog(dialog, block);
|
|
const bool isShown = (item->flags[num] & ADS_SHOW_BIT) != 0;
|
|
delete item;
|
|
|
|
return isShown;
|
|
}
|
|
|
|
uint8 DialogResource::getNextBlock(uint dialog, uint block, uint num) {
|
|
DialogChunk *item = getDialog(dialog, block);
|
|
const uint8 next = item->next[num];
|
|
delete item;
|
|
|
|
return next;
|
|
}
|
|
|
|
void DialogResource::loadStream(Common::SeekableReadStream *s) {
|
|
_dialogStream->seek(0, SEEK_SET);
|
|
_dialogStream->writeStream(s, _stream.size());
|
|
}
|
|
|
|
void DialogResource::saveStream(Common::WriteStream* s) {
|
|
_dialogStream->seek(0, SEEK_SET);
|
|
s->writeStream(_dialogStream, _stream.size());
|
|
}
|
|
|
|
void BarrierResource::init(int16 room, int16 bgWidth, int16 bgHeight) {
|
|
assert(room < (int16)_chunkList.size());
|
|
|
|
Chunk *chunk = &_chunkList[room];
|
|
_stream.seek(chunk->pos, SEEK_SET);
|
|
_x = _stream.readSint16LE();
|
|
_y = _stream.readSint16LE();
|
|
_level = _stream.readSint16LE();
|
|
_w = bgWidth / _x;
|
|
_h = bgHeight / _y;
|
|
_room = room;
|
|
}
|
|
|
|
}
|