aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorEugene Sandulenko2019-12-24 18:22:43 +0100
committerEugene Sandulenko2019-12-24 18:22:43 +0100
commitcb95bb4dec15009d565946e5ff16d3be4897613f (patch)
tree20e7f751c53e14460a6f193d8de0e2764eac39d0 /engines
parent00f5d3fcdbd7b45138d342d528460a23bee57bb6 (diff)
downloadscummvm-rg350-cb95bb4dec15009d565946e5ff16d3be4897613f.tar.gz
scummvm-rg350-cb95bb4dec15009d565946e5ff16d3be4897613f.tar.bz2
scummvm-rg350-cb95bb4dec15009d565946e5ff16d3be4897613f.zip
DIRECTOR: Remove redundant code
Diffstat (limited to 'engines')
-rw-r--r--engines/director/images.cpp112
-rw-r--r--engines/director/images.h21
-rw-r--r--engines/director/score.cpp6
3 files changed, 9 insertions, 130 deletions
diff --git a/engines/director/images.cpp b/engines/director/images.cpp
index 793456ddd1..4f2ffc9dc0 100644
--- a/engines/director/images.cpp
+++ b/engines/director/images.cpp
@@ -101,110 +101,10 @@ bool DIBDecoder::loadStream(Common::SeekableReadStream &stream) {
}
/****************************
- * BITD
- ****************************/
-
-BITDDecoder::BITDDecoder(int w, int h) {
- _surface = new Graphics::Surface();
-
- // We make the surface pitch a multiple of 16.
- int pitch = w;
- if (w % 16)
- pitch += 16 - (w % 16);
-
- // HACK: Create a padded surface by adjusting w after create()
- _surface->create(pitch, h, Graphics::PixelFormat::createFormatCLUT8());
- _surface->w = w;
-
- _palette = new byte[256 * 3];
-
- _palette[0] = _palette[1] = _palette[2] = 0;
- _palette[255 * 3 + 0] = _palette[255 * 3 + 1] = _palette[255 * 3 + 2] = 0xff;
-
- _paletteColorCount = 2;
-}
-
-BITDDecoder::~BITDDecoder() {
- destroy();
-}
-
-void BITDDecoder::destroy() {
- _surface = 0;
-
- delete[] _palette;
- _palette = 0;
- _paletteColorCount = 0;
-}
-
-void BITDDecoder::loadPalette(Common::SeekableReadStream &stream) {
- // no op
-}
-
-bool BITDDecoder::loadStream(Common::SeekableReadStream &stream) {
- int x = 0, y = 0;
-
- // If the stream has exactly the required number of bits for this image,
- // we assume it is uncompressed.
- if (stream.size() * 8 == _surface->pitch * _surface->h) {
- debugC(6, kDebugImages, "Skipping compression");
- for (y = 0; y < _surface->h; y++) {
- for (x = 0; x < _surface->pitch; ) {
- byte color = stream.readByte();
- for (int c = 0; c < 8; c++)
- *((byte *)_surface->getBasePtr(x++, y)) = (color & (1 << (7 - c))) ? 0 : 0xff;
- }
- }
-
- return true;
- }
-
- while (y < _surface->h) {
- int n = stream.readSByte();
- int count;
- int b = 0;
- int state = 0;
-
- if (stream.eos())
- break;
-
- if ((n >= 0) && (n <= 127)) { // If n is between 0 and 127 inclusive, copy the next n+1 bytes literally.
- count = n + 1;
- state = 1;
- } else if ((n >= -127) && (n <= -1)) { // Else if n is between -127 and -1 inclusive, copy the next byte -n+1 times.
- b = stream.readByte();
- count = -n + 1;
- state = 2;
- } else { // Else if n is -128, noop.
- count = 0;
- }
-
- for (int i = 0; i < count && y < _surface->h; i++) {
- byte color = 0;
- if (state == 1) {
- color = stream.readByte();
- } else if (state == 2)
- color = b;
-
- for (int c = 0; c < 8; c++) {
- *((byte *)_surface->getBasePtr(x, y)) = (color & (1 << (7 - c))) ? 0 : 0xff;
- x++;
- if (x == _surface->pitch) {
- y++;
- x = 0;
- break;
- }
- }
- }
- }
-
- return true;
-}
-
-/****************************
-* BITD V4+
+* BITD
****************************/
-BITDDecoderV4::BITDDecoderV4(int w, int h, uint16 bitsPerPixel, uint16 pitch) {
+BITDDecoder::BITDDecoder(int w, int h, uint16 bitsPerPixel, uint16 pitch) {
_surface = new Graphics::Surface();
Graphics::PixelFormat pf = Graphics::PixelFormat::createFormatCLUT8();
@@ -238,11 +138,11 @@ BITDDecoderV4::BITDDecoderV4(int w, int h, uint16 bitsPerPixel, uint16 pitch) {
_bitsPerPixel = bitsPerPixel;
}
-BITDDecoderV4::~BITDDecoderV4() {
+BITDDecoder::~BITDDecoder() {
destroy();
}
-void BITDDecoderV4::destroy() {
+void BITDDecoder::destroy() {
_surface = 0;
delete[] _palette;
@@ -250,11 +150,11 @@ void BITDDecoderV4::destroy() {
_paletteColorCount = 0;
}
-void BITDDecoderV4::loadPalette(Common::SeekableReadStream &stream) {
+void BITDDecoder::loadPalette(Common::SeekableReadStream &stream) {
// no op
}
-bool BITDDecoderV4::loadStream(Common::SeekableReadStream &stream) {
+bool BITDDecoder::loadStream(Common::SeekableReadStream &stream) {
int x = 0, y = 0;
// If the stream has exactly the required number of bits for this image,
diff --git a/engines/director/images.h b/engines/director/images.h
index 419b24fc8c..31221b11c0 100644
--- a/engines/director/images.h
+++ b/engines/director/images.h
@@ -61,7 +61,7 @@ private:
class BITDDecoder : public Image::ImageDecoder {
public:
- BITDDecoder(int w, int h);
+ BITDDecoder(int w, int h, uint16 bitsPerPixel, uint16 pitch);
virtual ~BITDDecoder();
// ImageDecoder API
@@ -76,25 +76,6 @@ private:
Graphics::Surface *_surface;
byte *_palette;
uint8 _paletteColorCount;
-};
-
-class BITDDecoderV4 : public Image::ImageDecoder {
-public:
- BITDDecoderV4(int w, int h, uint16 bitsPerPixel, uint16 pitch);
- virtual ~BITDDecoderV4();
-
- // ImageDecoder API
- void destroy();
- virtual bool loadStream(Common::SeekableReadStream &stream);
- virtual const Graphics::Surface *getSurface() const { return _surface; }
- const byte *getPalette() const { return _palette; }
- void loadPalette(Common::SeekableReadStream &stream);
- uint16 getPaletteColorCount() const { return _paletteColorCount; }
-
-private:
- Graphics::Surface *_surface;
- byte *_palette;
- uint8 _paletteColorCount;
uint16 _bitsPerPixel;
};
diff --git a/engines/director/score.cpp b/engines/director/score.cpp
index 5e52251deb..f44c508f4b 100644
--- a/engines/director/score.cpp
+++ b/engines/director/score.cpp
@@ -307,10 +307,8 @@ void Score::loadSpriteImages(bool isSharedCast) {
imgId, w, h, bitmapCast->_flags, bitmapCast->_bytes, bitmapCast->_bitsPerPixel, bitmapCast->_unk2);
if (pic != NULL && bitmapCast != NULL && w > 0 && h > 0) {
- if (_vm->getVersion() < 4 && 0) {
- img = new BITDDecoder(w, h);
- } else if (_vm->getVersion() < 6) {
- img = new BITDDecoderV4(w, h, bitmapCast->_bitsPerPixel, bitmapCast->_pitch);
+ if (_vm->getVersion() < 6) {
+ img = new BITDDecoder(w, h, bitmapCast->_bitsPerPixel, bitmapCast->_pitch);
} else {
img = new Image::BitmapDecoder();
}