mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-12 12:09:15 +00:00
32e85a957d
The code currenly has 4 logically dead lines. Instead of requiring both newWidth and newHeight to be non zero, just make sure one of them is non zero and set the other one to the current size.
370 lines
9.7 KiB
C++
370 lines
9.7 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 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 "video/flic_decoder.h"
|
|
#include "common/endian.h"
|
|
#include "common/rect.h"
|
|
#include "common/stream.h"
|
|
#include "common/system.h"
|
|
#include "common/textconsole.h"
|
|
#include "graphics/surface.h"
|
|
|
|
namespace Video {
|
|
|
|
FlicDecoder::FlicDecoder() {
|
|
}
|
|
|
|
FlicDecoder::~FlicDecoder() {
|
|
close();
|
|
}
|
|
|
|
bool FlicDecoder::loadStream(Common::SeekableReadStream *stream) {
|
|
close();
|
|
|
|
/* uint32 frameSize = */ stream->readUint32LE();
|
|
uint16 frameType = stream->readUint16LE();
|
|
|
|
// Check FLC magic number
|
|
if (frameType != 0xAF12) {
|
|
warning("FlicDecoder::loadStream(): attempted to load non-FLC data (type = 0x%04X)", frameType);
|
|
return false;
|
|
}
|
|
|
|
uint16 frameCount = stream->readUint16LE();
|
|
uint16 width = stream->readUint16LE();
|
|
uint16 height = stream->readUint16LE();
|
|
uint16 colorDepth = stream->readUint16LE();
|
|
if (colorDepth != 8) {
|
|
warning("FlicDecoder::loadStream(): attempted to load an FLC with a palette of color depth %d. Only 8-bit color palettes are supported", colorDepth);
|
|
return false;
|
|
}
|
|
|
|
addTrack(new FlicVideoTrack(stream, frameCount, width, height));
|
|
return true;
|
|
}
|
|
|
|
const Common::List<Common::Rect> *FlicDecoder::getDirtyRects() const {
|
|
const Track *track = getTrack(0);
|
|
|
|
if (track)
|
|
return ((const FlicVideoTrack *)track)->getDirtyRects();
|
|
|
|
return 0;
|
|
}
|
|
|
|
void FlicDecoder::clearDirtyRects() {
|
|
Track *track = getTrack(0);
|
|
|
|
if (track)
|
|
((FlicVideoTrack *)track)->clearDirtyRects();
|
|
}
|
|
|
|
void FlicDecoder::copyDirtyRectsToBuffer(uint8 *dst, uint pitch) {
|
|
Track *track = getTrack(0);
|
|
|
|
if (track)
|
|
((FlicVideoTrack *)track)->copyDirtyRectsToBuffer(dst, pitch);
|
|
}
|
|
|
|
FlicDecoder::FlicVideoTrack::FlicVideoTrack(Common::SeekableReadStream *stream, uint16 frameCount, uint16 width, uint16 height) {
|
|
_fileStream = stream;
|
|
_frameCount = frameCount;
|
|
|
|
_fileStream->readUint16LE(); // flags
|
|
// Note: The normal delay is a 32-bit integer (dword), whereas the overridden delay is a 16-bit integer (word)
|
|
// the frame delay is the FLIC "speed", in milliseconds.
|
|
_frameDelay = _startFrameDelay = _fileStream->readUint32LE();
|
|
|
|
_fileStream->seek(80);
|
|
_offsetFrame1 = _fileStream->readUint32LE();
|
|
_offsetFrame2 = _fileStream->readUint32LE();
|
|
|
|
_surface = new Graphics::Surface();
|
|
_surface->create(width, height, Graphics::PixelFormat::createFormatCLUT8());
|
|
_palette = new byte[3 * 256];
|
|
memset(_palette, 0, 3 * 256);
|
|
_dirtyPalette = false;
|
|
|
|
_curFrame = -1;
|
|
_nextFrameStartTime = 0;
|
|
_atRingFrame = false;
|
|
|
|
// Seek to the first frame
|
|
_fileStream->seek(_offsetFrame1);
|
|
}
|
|
|
|
FlicDecoder::FlicVideoTrack::~FlicVideoTrack() {
|
|
delete _fileStream;
|
|
delete[] _palette;
|
|
|
|
_surface->free();
|
|
delete _surface;
|
|
}
|
|
|
|
bool FlicDecoder::FlicVideoTrack::endOfTrack() const {
|
|
return getCurFrame() >= getFrameCount() - 1;
|
|
}
|
|
|
|
bool FlicDecoder::FlicVideoTrack::rewind() {
|
|
_curFrame = -1;
|
|
_nextFrameStartTime = 0;
|
|
|
|
if (endOfTrack() && _fileStream->pos() < _fileStream->size())
|
|
_atRingFrame = true;
|
|
else
|
|
_fileStream->seek(_offsetFrame1);
|
|
|
|
_frameDelay = _startFrameDelay;
|
|
return true;
|
|
}
|
|
|
|
uint16 FlicDecoder::FlicVideoTrack::getWidth() const {
|
|
return _surface->w;
|
|
}
|
|
|
|
uint16 FlicDecoder::FlicVideoTrack::getHeight() const {
|
|
return _surface->h;
|
|
}
|
|
|
|
Graphics::PixelFormat FlicDecoder::FlicVideoTrack::getPixelFormat() const {
|
|
return _surface->format;
|
|
}
|
|
|
|
#define FLI_SETPAL 4
|
|
#define FLI_SS2 7
|
|
#define FLI_BRUN 15
|
|
#define FLI_COPY 16
|
|
#define PSTAMP 18
|
|
#define FRAME_TYPE 0xF1FA
|
|
|
|
const Graphics::Surface *FlicDecoder::FlicVideoTrack::decodeNextFrame() {
|
|
// Read chunk
|
|
uint32 frameSize = _fileStream->readUint32LE();
|
|
uint16 frameType = _fileStream->readUint16LE();
|
|
uint16 chunkCount = 0;
|
|
|
|
switch (frameType) {
|
|
case FRAME_TYPE:
|
|
{
|
|
chunkCount = _fileStream->readUint16LE();
|
|
// Note: The overridden delay is a 16-bit integer (word), whereas the normal delay is a 32-bit integer (dword)
|
|
// the frame delay is the FLIC "speed", in milliseconds.
|
|
uint16 newFrameDelay = _fileStream->readUint16LE(); // "speed", in milliseconds
|
|
if (newFrameDelay > 0)
|
|
_frameDelay = newFrameDelay;
|
|
|
|
_fileStream->readUint16LE(); // reserved, always 0
|
|
uint16 newWidth = _fileStream->readUint16LE();
|
|
uint16 newHeight = _fileStream->readUint16LE();
|
|
|
|
if ((newWidth != 0) || (newHeight != 0)) {
|
|
if (newWidth == 0)
|
|
newWidth = _surface->w;
|
|
if (newHeight == 0)
|
|
newHeight = _surface->h;
|
|
|
|
_surface->free();
|
|
delete _surface;
|
|
_surface = new Graphics::Surface();
|
|
_surface->create(newWidth, newHeight, Graphics::PixelFormat::createFormatCLUT8());
|
|
}
|
|
}
|
|
break;
|
|
default:
|
|
error("FlicDecoder::decodeFrame(): unknown main chunk type (type = 0x%02X)", frameType);
|
|
break;
|
|
}
|
|
|
|
// Read subchunks
|
|
if (frameType == FRAME_TYPE) {
|
|
for (uint32 i = 0; i < chunkCount; ++i) {
|
|
frameSize = _fileStream->readUint32LE();
|
|
frameType = _fileStream->readUint16LE();
|
|
uint8 *data = new uint8[frameSize - 6];
|
|
_fileStream->read(data, frameSize - 6);
|
|
|
|
switch (frameType) {
|
|
case FLI_SETPAL:
|
|
unpackPalette(data);
|
|
_dirtyPalette = true;
|
|
break;
|
|
case FLI_SS2:
|
|
decodeDeltaFLC(data);
|
|
break;
|
|
case FLI_BRUN:
|
|
decodeByteRun(data);
|
|
break;
|
|
case FLI_COPY:
|
|
copyFrame(data);
|
|
break;
|
|
case PSTAMP:
|
|
/* PSTAMP - skip for now */
|
|
break;
|
|
default:
|
|
error("FlicDecoder::decodeNextFrame(): unknown subchunk type (type = 0x%02X)", frameType);
|
|
break;
|
|
}
|
|
|
|
delete[] data;
|
|
}
|
|
}
|
|
|
|
_curFrame++;
|
|
_nextFrameStartTime += _frameDelay;
|
|
|
|
if (_atRingFrame) {
|
|
// If we decoded the ring frame, seek to the second frame
|
|
_atRingFrame = false;
|
|
_fileStream->seek(_offsetFrame2);
|
|
}
|
|
|
|
return _surface;
|
|
}
|
|
|
|
void FlicDecoder::FlicVideoTrack::copyDirtyRectsToBuffer(uint8 *dst, uint pitch) {
|
|
for (Common::List<Common::Rect>::const_iterator it = _dirtyRects.begin(); it != _dirtyRects.end(); ++it) {
|
|
for (int y = (*it).top; y < (*it).bottom; ++y) {
|
|
const int x = (*it).left;
|
|
memcpy(dst + y * pitch + x, (byte *)_surface->getBasePtr(x, y), (*it).right - x);
|
|
}
|
|
}
|
|
|
|
clearDirtyRects();
|
|
}
|
|
|
|
void FlicDecoder::FlicVideoTrack::copyFrame(uint8 *data) {
|
|
memcpy((byte *)_surface->getPixels(), data, getWidth() * getHeight());
|
|
|
|
// Redraw
|
|
_dirtyRects.clear();
|
|
_dirtyRects.push_back(Common::Rect(0, 0, getWidth(), getHeight()));
|
|
}
|
|
|
|
void FlicDecoder::FlicVideoTrack::decodeByteRun(uint8 *data) {
|
|
byte *ptr = (byte *)_surface->getPixels();
|
|
while ((int32)(ptr - (byte *)_surface->getPixels()) < (getWidth() * getHeight())) {
|
|
int chunks = *data++;
|
|
while (chunks--) {
|
|
int count = (int8)*data++;
|
|
if (count > 0) {
|
|
memset(ptr, *data++, count);
|
|
} else {
|
|
count = -count;
|
|
memcpy(ptr, data, count);
|
|
data += count;
|
|
}
|
|
ptr += count;
|
|
}
|
|
}
|
|
|
|
// Redraw
|
|
_dirtyRects.clear();
|
|
_dirtyRects.push_back(Common::Rect(0, 0, getWidth(), getHeight()));
|
|
}
|
|
|
|
#define OP_PACKETCOUNT 0
|
|
#define OP_UNDEFINED 1
|
|
#define OP_LASTPIXEL 2
|
|
#define OP_LINESKIPCOUNT 3
|
|
|
|
void FlicDecoder::FlicVideoTrack::decodeDeltaFLC(uint8 *data) {
|
|
uint16 linesInChunk = READ_LE_UINT16(data); data += 2;
|
|
uint16 currentLine = 0;
|
|
uint16 packetCount = 0;
|
|
|
|
while (linesInChunk--) {
|
|
uint16 opcode;
|
|
|
|
// First process all the opcodes.
|
|
do {
|
|
opcode = READ_LE_UINT16(data); data += 2;
|
|
|
|
switch ((opcode >> 14) & 3) {
|
|
case OP_PACKETCOUNT:
|
|
packetCount = opcode;
|
|
break;
|
|
case OP_UNDEFINED:
|
|
break;
|
|
case OP_LASTPIXEL:
|
|
*((byte *)_surface->getBasePtr(getWidth() - 1, currentLine)) = (opcode & 0xFF);
|
|
_dirtyRects.push_back(Common::Rect(getWidth() - 1, currentLine, getWidth(), currentLine + 1));
|
|
break;
|
|
case OP_LINESKIPCOUNT:
|
|
currentLine += -(int16)opcode;
|
|
break;
|
|
}
|
|
} while (((opcode >> 14) & 3) != OP_PACKETCOUNT);
|
|
|
|
uint16 column = 0;
|
|
|
|
// Now interpret the RLE data
|
|
while (packetCount--) {
|
|
column += *data++;
|
|
int rleCount = (int8)*data++;
|
|
if (rleCount > 0) {
|
|
memcpy((byte *)_surface->getBasePtr(column, currentLine), data, rleCount * 2);
|
|
data += rleCount * 2;
|
|
_dirtyRects.push_back(Common::Rect(column, currentLine, column + rleCount * 2, currentLine + 1));
|
|
} else if (rleCount < 0) {
|
|
rleCount = -rleCount;
|
|
uint16 dataWord = READ_UINT16(data); data += 2;
|
|
for (int i = 0; i < rleCount; ++i) {
|
|
WRITE_UINT16((byte *)_surface->getBasePtr(column + i * 2, currentLine), dataWord);
|
|
}
|
|
_dirtyRects.push_back(Common::Rect(column, currentLine, column + rleCount * 2, currentLine + 1));
|
|
} else { // End of cutscene ?
|
|
return;
|
|
}
|
|
column += rleCount * 2;
|
|
}
|
|
|
|
currentLine++;
|
|
}
|
|
}
|
|
|
|
void FlicDecoder::FlicVideoTrack::unpackPalette(uint8 *data) {
|
|
uint16 numPackets = READ_LE_UINT16(data); data += 2;
|
|
|
|
if (0 == READ_LE_UINT16(data)) { //special case
|
|
data += 2;
|
|
for (int i = 0; i < 256; ++i) {
|
|
memcpy(_palette + i * 3, data + i * 3, 3);
|
|
}
|
|
} else {
|
|
uint8 palPos = 0;
|
|
|
|
while (numPackets--) {
|
|
palPos += *data++;
|
|
uint8 change = *data++;
|
|
|
|
for (int i = 0; i < change; ++i) {
|
|
memcpy(_palette + (palPos + i) * 3, data + i * 3, 3);
|
|
}
|
|
|
|
palPos += change;
|
|
data += (change * 3);
|
|
}
|
|
}
|
|
}
|
|
|
|
} // End of namespace Video
|