aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2012-06-01 00:43:12 +0200
committerEinar Johan Trøan Sømåen2012-06-02 13:07:08 +0200
commit03284a3f88d618455c290e5dc4a50ab72ce586e8 (patch)
tree2c1684559691968a3f384571668ad29f198f98b6 /engines
parentc05059ea8a78ef2c6f0f6f9caff3495f7ab28ade (diff)
downloadscummvm-rg350-03284a3f88d618455c290e5dc4a50ab72ce586e8.tar.gz
scummvm-rg350-03284a3f88d618455c290e5dc4a50ab72ce586e8.tar.bz2
scummvm-rg350-03284a3f88d618455c290e5dc4a50ab72ce586e8.zip
WINTERMUTE: Add TGA-support to BSurfaceSDL
Diffstat (limited to 'engines')
-rw-r--r--engines/wintermute/BSurfaceSDL.cpp4
-rw-r--r--engines/wintermute/graphics/tga.cpp164
-rw-r--r--engines/wintermute/graphics/tga.h57
-rw-r--r--engines/wintermute/module.mk1
4 files changed, 226 insertions, 0 deletions
diff --git a/engines/wintermute/BSurfaceSDL.cpp b/engines/wintermute/BSurfaceSDL.cpp
index d12a9b7a8f..732bb45429 100644
--- a/engines/wintermute/BSurfaceSDL.cpp
+++ b/engines/wintermute/BSurfaceSDL.cpp
@@ -37,6 +37,7 @@
#include "graphics/pixelformat.h"
#include "graphics/surface.h"
#include "engines/wintermute/graphics/transparentSurface.h"
+#include "engines/wintermute/graphics/tga.h"
#include "common/stream.h"
#include "BFileManager.h"
#include "PlatformSDL.h"
@@ -76,7 +77,10 @@ HRESULT CBSurfaceSDL::Create(const char *Filename, bool default_ck, byte ck_red,
if (strFileName.hasSuffix(".png")) {
imgDecoder = new Graphics::PNGDecoder();
} else if (strFileName.hasSuffix(".bmp")) {
+ warning("Loaded BMP WITH FILENAME!!!! %s", Filename);
imgDecoder = new Graphics::BitmapDecoder();
+ } else if (strFileName.hasSuffix(".tga")) {
+ imgDecoder = new WinterMute::TGA();
} else {
error("CBSurfaceSDL::Create : Unsupported fileformat %s", Filename);
}
diff --git a/engines/wintermute/graphics/tga.cpp b/engines/wintermute/graphics/tga.cpp
new file mode 100644
index 0000000000..6ea6974ce7
--- /dev/null
+++ b/engines/wintermute/graphics/tga.cpp
@@ -0,0 +1,164 @@
+/* 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.
+ */
+
+/* Based on code from eos https://github.com/DrMcCoy/xoreos/
+ * relicensed under GPLv2+ with permission from DrMcCoy and clone2727
+ */
+
+#include "common/util.h"
+#include "common/stream.h"
+#include "common/textconsole.h"
+#include "common/error.h"
+
+#include "engines/wintermute/graphics/tga.h"
+
+namespace WinterMute {
+
+TGA::TGA() {
+
+}
+
+TGA::~TGA() {
+ destroy();
+}
+
+void TGA::destroy() {
+ _surface.free();
+}
+
+bool TGA::loadStream(Common::SeekableReadStream &tga) {
+ byte imageType, pixelDepth;
+ bool success;
+ success = readHeader(tga, imageType, pixelDepth);
+ success = readData (tga, imageType, pixelDepth);
+
+ if (tga.err()) {
+ warning("Failed reading TGA-file");
+ return false;
+ }
+ return success;
+}
+
+bool TGA::readHeader(Common::SeekableReadStream &tga, byte &imageType, byte &pixelDepth) {
+ if (!tga.seek(0)) {
+ warning("Failed reading TGA-file");
+ return false;
+ }
+
+ // TGAs have an optional "id" string in the header
+ uint32 idLength = tga.readByte();
+
+ // Number of colors in the color map / palette
+ if (tga.readByte() != 0) {
+ warning("Unsupported feature: Color map");
+ return false;
+ }
+
+ // Image type. 2 == unmapped RGB, 3 == Grayscale
+ imageType = tga.readByte();
+ if ((imageType != 2) && (imageType != 3)) {
+ warning("Unsupported image type: %d", imageType);
+ return false;
+ }
+
+ // Color map specifications + X + Y
+ tga.skip(5 + 2 + 2);
+
+ // Image dimensions
+ _surface.w = tga.readUint16LE();
+ _surface.h = tga.readUint16LE();
+
+ // Bits per pixel
+ pixelDepth = tga.readByte();
+ _surface.format.bytesPerPixel = pixelDepth / 8;
+
+ if (imageType == 2) {
+ if (pixelDepth == 24) {
+ _hasAlpha = false;
+ _format = Graphics::PixelFormat(pixelDepth/8, 8, 8, 8, 0, 16, 8, 0, 0);
+ } else if (pixelDepth == 16 || pixelDepth == 32) {
+ _hasAlpha = true;
+ _format = Graphics::PixelFormat(pixelDepth/8, 8, 8, 8, 8, 24, 16, 8, 0);
+ } else {
+ warning("Unsupported pixel depth: %d, %d", imageType, pixelDepth);
+ return false;
+ }
+ } else if (imageType == 3) {
+ if (pixelDepth != 8) {
+ warning("Unsupported pixel depth: %d, %d", imageType, pixelDepth);
+ return false;
+ }
+
+ _hasAlpha = false;
+ _format = Graphics::PixelFormat(1, 0, 0, 0, 0, 0, 0, 0, 0);
+ }
+
+ // Image descriptor
+ tga.skip(1);
+
+ // Skip the id string
+ tga.skip(idLength);
+ return true;
+}
+
+bool TGA::readData(Common::SeekableReadStream &tga, byte imageType, byte pixelDepth) {
+ if (imageType == 2) {
+ _surface.create(_surface.w, _surface.h, _format);
+
+ if (pixelDepth == 16) {
+ // Convert from 16bpp to 32bpp
+ // 16bpp TGA is ARGB1555
+ uint16 count = _surface.w * _surface.h;
+ byte *dst = (byte*)_surface.pixels;
+
+ while (count--) {
+ uint16 pixel = tga.readUint16LE();
+
+ *dst++ = (pixel & 0x1F) << 3;
+ *dst++ = (pixel & 0x3E0) >> 2;
+ *dst++ = (pixel & 0x7C00) >> 7;
+ *dst++ = (pixel & 0x8000) ? 0xFF : 0x00;
+ }
+
+ } else {
+ // Read it in raw
+ tga.read(_surface.pixels, _surface.pitch * _surface.w);
+ }
+ } else if (imageType == 3) {
+ _surface.create(_surface.w, _surface.h, _surface.format);
+
+ byte *data = (byte*)_surface.pixels;
+ uint32 count = _surface.w * _surface.h;
+
+ while (count-- > 0) {
+ byte g = tga.readByte();
+
+ memset(data, g, 3);
+ data[3] = 0xFF;
+
+ data += 4;
+ }
+
+ }
+ return true;
+}
+
+} // End of namespace Graphics
diff --git a/engines/wintermute/graphics/tga.h b/engines/wintermute/graphics/tga.h
new file mode 100644
index 0000000000..727d10c1a3
--- /dev/null
+++ b/engines/wintermute/graphics/tga.h
@@ -0,0 +1,57 @@
+/* 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.
+ */
+
+/* Based on code from eos https://github.com/DrMcCoy/xoreos/
+ * relicensed under GPLv2+ with permission from DrMcCoy and clone2727
+ */
+
+#ifndef WINTERMUTE_GRAPHICS_IMAGES_TGA_H
+#define WINTERMUTE_GRAPHICS_IMAGES_TGA_H
+
+#include "graphics/surface.h"
+#include "graphics/decoders/image_decoder.h"
+
+namespace Common {
+ class SeekableReadStream;
+}
+
+namespace WinterMute {
+
+/** TarGa image. */
+class TGA : public Graphics::ImageDecoder {
+public:
+ TGA();
+ virtual ~TGA();
+ virtual void destroy();
+ virtual const Graphics::Surface *getSurface() const { return &_surface; };
+ virtual bool loadStream(Common::SeekableReadStream &stream);
+private:
+ Graphics::PixelFormat _format;
+ bool _hasAlpha;
+ Graphics::Surface _surface;
+ // Loading helpers
+ bool readHeader(Common::SeekableReadStream &tga, byte &imageType, byte &pixelDepth);
+ bool readData(Common::SeekableReadStream &tga, byte imageType, byte pixelDepth);
+};
+
+} // End of namespace Graphics
+
+#endif // GRAPHICS_IMAGES_TGA_H
diff --git a/engines/wintermute/module.mk b/engines/wintermute/module.mk
index b5ad3e9921..6faab5d506 100644
--- a/engines/wintermute/module.mk
+++ b/engines/wintermute/module.mk
@@ -14,6 +14,7 @@ MODULE_OBJS := \
scriptables/SXStore.o \
scriptables/SXString.o \
graphics/transparentSurface.o \
+ graphics/tga.o \
AdActor.o \
AdActorDir.o \
AdEntity.o \