| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096 |
- //
- // Copyright (c) 2008-2013 the Urho3D project.
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- //
- #include "Precompiled.h"
- #include "Context.h"
- #include "Decompress.h"
- #include "File.h"
- #include "FileSystem.h"
- #include "Log.h"
- #include <cstring>
- #include <stb_image.h>
- #include <stb_image_write.h>
- #include <jo_jpeg.h>
- #include <SDL_surface.h>
- #include "DebugNew.h"
- #ifndef MAKEFOURCC
- #define MAKEFOURCC(ch0, ch1, ch2, ch3) ((unsigned)(ch0) | ((unsigned)(ch1) << 8) | ((unsigned)(ch2) << 16) | ((unsigned)(ch3) << 24))
- #endif
- #define FOURCC_DXT1 (MAKEFOURCC('D','X','T','1'))
- #define FOURCC_DXT2 (MAKEFOURCC('D','X','T','2'))
- #define FOURCC_DXT3 (MAKEFOURCC('D','X','T','3'))
- #define FOURCC_DXT4 (MAKEFOURCC('D','X','T','4'))
- #define FOURCC_DXT5 (MAKEFOURCC('D','X','T','5'))
- namespace Urho3D
- {
- struct DDColorKey
- {
- unsigned dwColorSpaceLowValue_;
- unsigned dwColorSpaceHighValue_;
- };
- struct DDPixelFormat
- {
- unsigned dwSize_;
- unsigned dwFlags_;
- unsigned dwFourCC_;
- union
- {
- unsigned dwRGBBitCount_;
- unsigned dwYUVBitCount_;
- unsigned dwZBufferBitDepth_;
- unsigned dwAlphaBitDepth_;
- unsigned dwLuminanceBitCount_;
- unsigned dwBumpBitCount_;
- unsigned dwPrivateFormatBitCount_;
- };
- union
- {
- unsigned dwRBitMask_;
- unsigned dwYBitMask_;
- unsigned dwStencilBitDepth_;
- unsigned dwLuminanceBitMask_;
- unsigned dwBumpDuBitMask_;
- unsigned dwOperations_;
- };
- union
- {
- unsigned dwGBitMask_;
- unsigned dwUBitMask_;
- unsigned dwZBitMask_;
- unsigned dwBumpDvBitMask_;
- struct
- {
- unsigned short wFlipMSTypes_;
- unsigned short wBltMSTypes_;
- } multiSampleCaps_;
- };
- union
- {
- unsigned dwBBitMask_;
- unsigned dwVBitMask_;
- unsigned dwStencilBitMask_;
- unsigned dwBumpLuminanceBitMask_;
- };
- union
- {
- unsigned dwRGBAlphaBitMask_;
- unsigned dwYUVAlphaBitMask_;
- unsigned dwLuminanceAlphaBitMask_;
- unsigned dwRGBZBitMask_;
- unsigned dwYUVZBitMask_;
- };
- };
- struct DDSCaps2
- {
- unsigned dwCaps_;
- unsigned dwCaps2_;
- unsigned dwCaps3_;
- union
- {
- unsigned dwCaps4_;
- unsigned dwVolumeDepth_;
- };
- };
- struct DDSurfaceDesc2
- {
- unsigned dwSize_;
- unsigned dwFlags_;
- unsigned dwHeight_;
- unsigned dwWidth_;
- union
- {
- unsigned lPitch_;
- unsigned dwLinearSize_;
- };
- union
- {
- unsigned dwBackBufferCount_;
- unsigned dwDepth_;
- };
- union
- {
- unsigned dwMipMapCount_;
- unsigned dwRefreshRate_;
- unsigned dwSrcVBHandle_;
- };
- unsigned dwAlphaBitDepth_;
- unsigned dwReserved_;
- unsigned lpSurface_; // Do not define as a void pointer, as it is 8 bytes in a 64bit build
- union
- {
- DDColorKey ddckCKDestOverlay_;
- unsigned dwEmptyFaceColor_;
- };
- DDColorKey ddckCKDestBlt_;
- DDColorKey ddckCKSrcOverlay_;
- DDColorKey ddckCKSrcBlt_;
- union
- {
- DDPixelFormat ddpfPixelFormat_;
- unsigned dwFVF_;
- };
- DDSCaps2 ddsCaps_;
- unsigned dwTextureStage_;
- };
- bool CompressedLevel::Decompress(unsigned char* dest)
- {
- if (!data_)
- return false;
-
- switch (format_)
- {
- case CF_DXT1:
- case CF_DXT3:
- case CF_DXT5:
- DecompressImageDXT(dest, data_, width_, height_, depth_, format_);
- return true;
-
- case CF_ETC1:
- DecompressImageETC(dest, data_, width_, height_);
- return true;
-
- case CF_PVRTC_RGB_2BPP:
- case CF_PVRTC_RGBA_2BPP:
- case CF_PVRTC_RGB_4BPP:
- case CF_PVRTC_RGBA_4BPP:
- DecompressImagePVRTC(dest, data_, width_, height_, format_);
- return true;
-
- default:
- // Unknown format
- return false;
- }
- }
- Image::Image(Context* context) :
- Resource(context),
- width_(0),
- height_(0),
- depth_(0),
- components_(0)
- {
- }
- Image::~Image()
- {
- }
- void Image::RegisterObject(Context* context)
- {
- context->RegisterFactory<Image>();
- }
- bool Image::Load(Deserializer& source)
- {
- // Check for DDS, KTX or PVR compressed format
- String fileID = source.ReadFileID();
-
- if (fileID == "DDS ")
- {
- // DDS compressed format
- DDSurfaceDesc2 ddsd;
- source.Read(&ddsd, sizeof(ddsd));
-
- switch (ddsd.ddpfPixelFormat_.dwFourCC_)
- {
- case FOURCC_DXT1:
- compressedFormat_ = CF_DXT1;
- components_ = 3;
- break;
-
- case FOURCC_DXT3:
- compressedFormat_ = CF_DXT3;
- components_ = 4;
- break;
-
- case FOURCC_DXT5:
- compressedFormat_ = CF_DXT5;
- components_ = 4;
- break;
-
- default:
- LOGERROR("Unsupported DDS format");
- return false;
- }
-
- unsigned dataSize = source.GetSize() - source.GetPosition();
- data_ = new unsigned char[dataSize];
- width_ = ddsd.dwWidth_;
- height_ = ddsd.dwHeight_;
- depth_ = ddsd.dwDepth_;
- numCompressedLevels_ = ddsd.dwMipMapCount_;
- if (!numCompressedLevels_)
- numCompressedLevels_ = 1;
- SetMemoryUse(dataSize);
- source.Read(data_.Get(), dataSize);
- }
- else if (fileID == "\253KTX")
- {
- source.Seek(12);
-
- unsigned endianness = source.ReadUInt();
- unsigned type = source.ReadUInt();
- /* unsigned typeSize = */ source.ReadUInt();
- unsigned format = source.ReadUInt();
- unsigned internalFormat = source.ReadUInt();
- /* unsigned baseInternalFormat = */ source.ReadUInt();
- unsigned width = source.ReadUInt();
- unsigned height = source.ReadUInt();
- unsigned depth = source.ReadUInt();
- /* unsigned arrayElements = */ source.ReadUInt();
- unsigned faces = source.ReadUInt();
- unsigned mipmaps = source.ReadUInt();
- unsigned keyValueBytes = source.ReadUInt();
-
- if (endianness != 0x04030201)
- {
- LOGERROR("Big-endian KTX files not supported");
- return false;
- }
-
- if (type != 0 || format != 0)
- {
- LOGERROR("Uncompressed KTX files not supported");
- return false;
- }
-
- if (faces > 1 || depth > 1)
- {
- LOGERROR("3D or cube KTX files not supported");
- return false;
- }
-
- if (mipmaps == 0)
- {
- LOGERROR("KTX files without explicitly specified mipmap count not supported");
- return false;
- }
-
- compressedFormat_ = CF_NONE;
- switch (internalFormat)
- {
- case 0x83f1:
- compressedFormat_ = CF_DXT1;
- components_ = 4;
- break;
-
- case 0x83f2:
- compressedFormat_ = CF_DXT3;
- components_ = 4;
- break;
-
- case 0x83f3:
- compressedFormat_ = CF_DXT5;
- components_ = 4;
- break;
-
- case 0x8d64:
- compressedFormat_ = CF_ETC1;
- components_ = 3;
- break;
-
- case 0x8c00:
- compressedFormat_ = CF_PVRTC_RGB_4BPP;
- components_ = 3;
- break;
-
- case 0x8c01:
- compressedFormat_ = CF_PVRTC_RGB_2BPP;
- components_ = 3;
- break;
-
- case 0x8c02:
- compressedFormat_ = CF_PVRTC_RGBA_4BPP;
- components_ = 4;
- break;
-
- case 0x8c03:
- compressedFormat_ = CF_PVRTC_RGBA_2BPP;
- components_ = 4;
- break;
- }
-
- if (compressedFormat_ == CF_NONE)
- {
- LOGERROR("Unsupported texture format in KTX file");
- return false;
- }
-
- source.Seek(source.GetPosition() + keyValueBytes);
- unsigned dataSize = source.GetSize() - source.GetPosition() - mipmaps * sizeof(unsigned);
-
- data_ = new unsigned char[dataSize];
- width_ = width;
- height_ = height;
- numCompressedLevels_ = mipmaps;
-
- unsigned dataOffset = 0;
- for (unsigned i = 0; i < mipmaps; ++i)
- {
- unsigned levelSize = source.ReadUInt();
- if (levelSize + dataOffset > dataSize)
- {
- LOGERROR("KTX mipmap level data size exceeds file size");
- return false;
- }
-
- source.Read(&data_[dataOffset], levelSize);
- dataOffset += levelSize;
- if (source.GetPosition() & 3)
- source.Seek((source.GetPosition() + 3) & 0xfffffffc);
- }
-
- SetMemoryUse(dataSize);
- }
- else if (fileID == "PVR\3")
- {
- /* unsigned flags = */ source.ReadUInt();
- unsigned pixelFormatLo = source.ReadUInt();
- /* unsigned pixelFormatHi = */ source.ReadUInt();
- /* unsigned colourSpace = */ source.ReadUInt();
- /* unsigned channelType = */ source.ReadUInt();
- unsigned height = source.ReadUInt();
- unsigned width = source.ReadUInt();
- unsigned depth = source.ReadUInt();
- /* unsigned numSurfaces = */ source.ReadUInt();
- unsigned numFaces = source.ReadUInt();
- unsigned mipmapCount = source.ReadUInt();
- unsigned metaDataSize = source.ReadUInt();
-
- if (depth > 1 || numFaces > 1)
- {
- LOGERROR("3D or cube PVR files not supported");
- return false;
- }
-
- if (mipmapCount == 0)
- {
- LOGERROR("PVR files without explicitly specified mipmap count not supported");
- return false;
- }
-
- compressedFormat_ = CF_NONE;
- switch (pixelFormatLo)
- {
- case 0:
- compressedFormat_ = CF_PVRTC_RGB_2BPP;
- components_ = 3;
- break;
-
- case 1:
- compressedFormat_ = CF_PVRTC_RGBA_2BPP;
- components_ = 4;
- break;
-
- case 2:
- compressedFormat_ = CF_PVRTC_RGB_4BPP;
- components_ = 3;
- break;
-
- case 3:
- compressedFormat_ = CF_PVRTC_RGBA_4BPP;
- components_ = 4;
- break;
-
- case 6:
- compressedFormat_ = CF_ETC1;
- components_ = 3;
- break;
-
- case 7:
- compressedFormat_ = CF_DXT1;
- components_ = 4;
- break;
-
- case 9:
- compressedFormat_ = CF_DXT3;
- components_ = 4;
- break;
-
- case 11:
- compressedFormat_ = CF_DXT5;
- components_ = 4;
- break;
- }
-
- if (compressedFormat_ == CF_NONE)
- {
- LOGERROR("Unsupported texture format in PVR file");
- return false;
- }
-
- source.Seek(source.GetPosition() + metaDataSize);
- unsigned dataSize = source.GetSize() - source.GetPosition();
-
- data_ = new unsigned char[dataSize];
- width_ = width;
- height_ = height;
- numCompressedLevels_ = mipmapCount;
-
- source.Read(data_.Get(), dataSize);
- SetMemoryUse(dataSize);
- }
- else
- {
- // Not DDS, KTX or PVR, use STBImage to load other image formats as uncompressed
- source.Seek(0);
- int width, height;
- unsigned components;
- unsigned char* pixelData = GetImageData(source, width, height, components);
- if (!pixelData)
- {
- LOGERROR("Could not load image " + source.GetName() + ": " + String(stbi_failure_reason()));
- return false;
- }
- SetSize(width, height, components);
- SetData(pixelData);
- FreeImageData(pixelData);
- }
-
- return true;
- }
- void Image::SetSize(int width, int height, unsigned components)
- {
- SetSize(width, height, 1, components);
- }
- void Image::SetSize(int width, int height, int depth, unsigned components)
- {
- if (width == width_ && height == height_ && depth == depth_ && components == components_)
- return;
-
- if (width <= 0 || height <= 0 || depth <= 0)
- return;
-
- data_ = new unsigned char[width * height * depth * components];
- width_ = width;
- height_ = height;
- depth_ = depth;
- components_ = components;
- compressedFormat_ = CF_NONE;
- numCompressedLevels_ = 0;
-
- SetMemoryUse(width * height * depth * components);
- }
- void Image::SetData(const unsigned char* pixelData)
- {
- memcpy(data_.Get(), pixelData, width_ * height_ * depth_ * components_);
- }
- bool Image::LoadColorLUT(Deserializer& source)
- {
- String fileID = source.ReadFileID();
-
- if (fileID == "DDS " || fileID == "\253KTX" || fileID == "PVR\3")
- {
- LOGERROR("Invalid image format, can not load image");
- return false;
- }
- source.Seek(0);
- int width, height;
- unsigned components;
- unsigned char* pixelDataIn = GetImageData(source, width, height, components);
- if (!pixelDataIn)
- {
- LOGERROR("Could not load image " + source.GetName() + ": " + String(stbi_failure_reason()));
- return false;
- }
- if (components != 3)
- {
- LOGERROR("Invalid image format, can not load image");
- return false;
- }
- SetSize(COLOR_LUT_SIZE, COLOR_LUT_SIZE, COLOR_LUT_SIZE, components);
- SetMemoryUse(width_ * height_ * depth_ * components);
- unsigned char* pixelDataOut = GetData();
- for (int z = 0; z < depth_; ++z)
- {
- for (int y = 0; y < height_; ++y)
- {
- unsigned char* in = &pixelDataIn[z*width_*3 + y*width*3];
- unsigned char* out = &pixelDataOut[z*width_*height_*3 + y*width_*3];
- for (int x = 0; x < width_*3; x += 3)
- {
- out[x] = in[x];
- out[x+1] = in[x+1];
- out[x+2] = in[x+2];
- }
- }
- }
- FreeImageData(pixelDataIn);
- return true;
- }
- void Image::FlipVertical()
- {
- if (!data_)
- return;
-
- if (IsCompressed())
- {
- LOGERROR("Can not flip a compressed image");
- return;
- }
-
- SharedArrayPtr<unsigned char> newData(new unsigned char[width_ * height_ * components_]);
- unsigned rowSize = width_ * components_;
-
- for (int y = 0; y < height_; ++y)
- memcpy(&newData[(height_ - y - 1) * rowSize], &data_[y * rowSize], rowSize);
-
- data_ = newData;
- }
- bool Image::SaveBMP(const String& fileName)
- {
- FileSystem* fileSystem = GetSubsystem<FileSystem>();
- if (fileSystem && !fileSystem->CheckAccess(GetPath(fileName)))
- {
- LOGERROR("Access denied to " + fileName);
- return false;
- }
-
- if (IsCompressed())
- {
- LOGERROR("Can not save compressed image to BMP");
- return false;
- }
-
- if (data_)
- return stbi_write_bmp(fileName.CString(), width_, height_, components_, data_.Get()) != 0;
- else
- return false;
- }
- bool Image::SavePNG(const String& fileName)
- {
- FileSystem* fileSystem = GetSubsystem<FileSystem>();
- if (fileSystem && !fileSystem->CheckAccess(GetPath(fileName)))
- {
- LOGERROR("Access denied to " + fileName);
- return false;
- }
-
- if (IsCompressed())
- {
- LOGERROR("Can not save compressed image to PNG");
- return false;
- }
-
- if (data_)
- return stbi_write_png(GetNativePath(fileName).CString(), width_, height_, components_, data_.Get(), 0) != 0;
- else
- return false;
- }
- bool Image::SaveTGA(const String& fileName)
- {
- FileSystem* fileSystem = GetSubsystem<FileSystem>();
- if (fileSystem && !fileSystem->CheckAccess(GetPath(fileName)))
- {
- LOGERROR("Access denied to " + fileName);
- return false;
- }
-
- if (IsCompressed())
- {
- LOGERROR("Can not save compressed image to TGA");
- return false;
- }
-
- if (data_)
- return stbi_write_tga(GetNativePath(fileName).CString(), width_, height_, components_, data_.Get()) != 0;
- else
- return false;
- }
- bool Image::SaveJPG(const String & fileName, int quality)
- {
- FileSystem* fileSystem = GetSubsystem<FileSystem>();
- if (fileSystem && !fileSystem->CheckAccess(GetPath(fileName)))
- {
- LOGERROR("Access denied to " + fileName);
- return false;
- }
-
- if (IsCompressed())
- {
- LOGERROR("Can not save compressed image to JPG");
- return false;
- }
-
- if (data_)
- return jo_write_jpg(GetNativePath(fileName).CString(), data_.Get(), width_, height_, components_, quality) != 0;
- else
- return false;
- }
- unsigned char* Image::GetImageData(Deserializer& source, int& width, int& height, unsigned& components)
- {
- unsigned dataSize = source.GetSize();
-
- SharedArrayPtr<unsigned char> buffer(new unsigned char[dataSize]);
- source.Read(buffer.Get(), dataSize);
- return stbi_load_from_memory(buffer.Get(), dataSize, &width, &height, (int *)&components, 0);
- }
- void Image::FreeImageData(unsigned char* pixelData)
- {
- if (!pixelData)
- return;
-
- stbi_image_free(pixelData);
- }
- SharedPtr<Image> Image::GetNextLevel() const
- {
- if (IsCompressed())
- {
- LOGERROR("Can not generate mip level from compressed data");
- return SharedPtr<Image>();
- }
- if (components_ < 1 || components_ > 4)
- {
- LOGERROR("Illegal number of image components for mip level generation");
- return SharedPtr<Image>();
- }
-
- int widthOut = width_ / 2;
- int heightOut = height_ / 2;
- int depthOut = depth_ / 2;
-
- if (widthOut < 1)
- widthOut = 1;
- if (heightOut < 1)
- heightOut = 1;
- if (depthOut < 1)
- depthOut = 1;
-
- SharedPtr<Image> mipImage(new Image(context_));
- if (depth_ > 1)
- mipImage->SetSize(widthOut, heightOut, depthOut, components_);
- else
- mipImage->SetSize(widthOut, heightOut, components_);
-
- const unsigned char* pixelDataIn = data_.Get();
- unsigned char* pixelDataOut = mipImage->data_.Get();
-
- // 1D case
- if (depth_ == 1 && (height_ == 1 || width_ == 1))
- {
- // Loop using the larger dimension
- if (widthOut < heightOut)
- widthOut = heightOut;
-
- switch (components_)
- {
- case 1:
- for (int x = 0; x < widthOut; ++x)
- pixelDataOut[x] = ((unsigned)pixelDataIn[x*2] + pixelDataIn[x*2+1]) >> 1;
- break;
-
- case 2:
- for (int x = 0; x < widthOut*2; x += 2)
- {
- pixelDataOut[x] = ((unsigned)pixelDataIn[x*2] + pixelDataIn[x*2+2]) >> 1;
- pixelDataOut[x+1] = ((unsigned)pixelDataIn[x*2+1] + pixelDataIn[x*2+3]) >> 1;
- }
- break;
-
- case 3:
- for (int x = 0; x < widthOut*3; x += 3)
- {
- pixelDataOut[x] = ((unsigned)pixelDataIn[x*2] + pixelDataIn[x*2+3]) >> 1;
- pixelDataOut[x+1] = ((unsigned)pixelDataIn[x*2+1] + pixelDataIn[x*2+4]) >> 1;
- pixelDataOut[x+2] = ((unsigned)pixelDataIn[x*2+2] + pixelDataIn[x*2+5]) >> 1;
- }
- break;
-
- case 4:
- for (int x = 0; x < widthOut*4; x += 4)
- {
- pixelDataOut[x] = ((unsigned)pixelDataIn[x*2] + pixelDataIn[x*2+4]) >> 1;
- pixelDataOut[x+1] = ((unsigned)pixelDataIn[x*2+1] + pixelDataIn[x*2+5]) >> 1;
- pixelDataOut[x+2] = ((unsigned)pixelDataIn[x*2+2] + pixelDataIn[x*2+6]) >> 1;
- pixelDataOut[x+3] = ((unsigned)pixelDataIn[x*2+3] + pixelDataIn[x*2+7]) >> 1;
- }
- break;
- }
- }
- // 2D case
- else if (depth_ == 1)
- {
- switch (components_)
- {
- case 1:
- for (int y = 0; y < heightOut; ++y)
- {
- const unsigned char* inUpper = &pixelDataIn[(y*2)*width_];
- const unsigned char* inLower = &pixelDataIn[(y*2+1)*width_];
- unsigned char* out = &pixelDataOut[y*widthOut];
-
- for (int x = 0; x < widthOut; ++x)
- {
- out[x] = ((unsigned)inUpper[x*2] + inUpper[x*2+1] + inLower[x*2] + inLower[x*2+1]) >> 2;
- }
- }
- break;
-
- case 2:
- for (int y = 0; y < heightOut; ++y)
- {
- const unsigned char* inUpper = &pixelDataIn[(y*2)*width_*2];
- const unsigned char* inLower = &pixelDataIn[(y*2+1)*width_*2];
- unsigned char* out = &pixelDataOut[y*widthOut*2];
-
- for (int x = 0; x < widthOut*2; x += 2)
- {
- out[x] = ((unsigned)inUpper[x*2] + inUpper[x*2+2] + inLower[x*2] + inLower[x*2+2]) >> 2;
- out[x+1] = ((unsigned)inUpper[x*2+1] + inUpper[x*2+3] + inLower[x*2+1] + inLower[x*2+3]) >> 2;
- }
- }
- break;
-
- case 3:
- for (int y = 0; y < heightOut; ++y)
- {
- const unsigned char* inUpper = &pixelDataIn[(y*2)*width_*3];
- const unsigned char* inLower = &pixelDataIn[(y*2+1)*width_*3];
- unsigned char* out = &pixelDataOut[y*widthOut*3];
-
- for (int x = 0; x < widthOut*3; x += 3)
- {
- out[x] = ((unsigned)inUpper[x*2] + inUpper[x*2+3] + inLower[x*2] + inLower[x*2+3]) >> 2;
- out[x+1] = ((unsigned)inUpper[x*2+1] + inUpper[x*2+4] + inLower[x*2+1] + inLower[x*2+4]) >> 2;
- out[x+2] = ((unsigned)inUpper[x*2+2] + inUpper[x*2+5] + inLower[x*2+2] + inLower[x*2+5]) >> 2;
- }
- }
- break;
-
- case 4:
- for (int y = 0; y < heightOut; ++y)
- {
- const unsigned char* inUpper = &pixelDataIn[(y*2)*width_*4];
- const unsigned char* inLower = &pixelDataIn[(y*2+1)*width_*4];
- unsigned char* out = &pixelDataOut[y*widthOut*4];
-
- for (int x = 0; x < widthOut*4; x += 4)
- {
- out[x] = ((unsigned)inUpper[x*2] + inUpper[x*2+4] + inLower[x*2] + inLower[x*2+4]) >> 2;
- out[x+1] = ((unsigned)inUpper[x*2+1] + inUpper[x*2+5] + inLower[x*2+1] + inLower[x*2+5]) >> 2;
- out[x+2] = ((unsigned)inUpper[x*2+2] + inUpper[x*2+6] + inLower[x*2+2] + inLower[x*2+6]) >> 2;
- out[x+3] = ((unsigned)inUpper[x*2+3] + inUpper[x*2+7] + inLower[x*2+3] + inLower[x*2+7]) >> 2;
- }
- }
- break;
- }
- }
- // 3D case
- else
- {
- switch (components_)
- {
- case 1:
- for (int z = 0; z < depthOut; ++z)
- {
- const unsigned char* inOuter = &pixelDataIn[(z*2)*width_*height_];
- const unsigned char* inInner = &pixelDataIn[(z*2+1)*width_*height_];
- for (int y = 0; y < heightOut; ++y)
- {
- const unsigned char* inOuterUpper = &inOuter[(y*2)*width_];
- const unsigned char* inOuterLower = &inOuter[(y*2+1)*width_];
- const unsigned char* inInnerUpper = &inInner[(y*2)*width_];
- const unsigned char* inInnerLower = &inInner[(y*2+1)*width_];
- unsigned char* out = &pixelDataOut[z*widthOut*heightOut + y*widthOut];
-
- for (int x = 0; x < widthOut; ++x)
- {
- out[x] = ((unsigned)inOuterUpper[x*2] + inOuterUpper[x*2+1] + inOuterLower[x*2] + inOuterLower[x*2+1] +
- inInnerUpper[x*2] + inInnerUpper[x*2+1] + inInnerLower[x*2] + inInnerLower[x*2+1]) >> 3;
- }
- }
- }
- break;
-
- case 2:
- for (int z = 0; z < depthOut; ++z)
- {
- const unsigned char* inOuter = &pixelDataIn[(z*2)*width_*height_*2];
- const unsigned char* inInner = &pixelDataIn[(z*2+1)*width_*height_*2];
- for (int y = 0; y < heightOut; ++y)
- {
- const unsigned char* inOuterUpper = &inOuter[(y*2)*width_*2];
- const unsigned char* inOuterLower = &inOuter[(y*2+1)*width_*2];
- const unsigned char* inInnerUpper = &inInner[(y*2)*width_*2];
- const unsigned char* inInnerLower = &inInner[(y*2+1)*width_*2];
- unsigned char* out = &pixelDataOut[z*widthOut*heightOut*2 + y*widthOut*2];
-
- for (int x = 0; x < widthOut*2; x += 2)
- {
- out[x] = ((unsigned)inOuterUpper[x*2] + inOuterUpper[x*2+2] + inOuterLower[x*2] + inOuterLower[x*2+2] +
- inInnerUpper[x*2] + inInnerUpper[x*2+2] + inInnerLower[x*2] + inInnerLower[x*2+2]) >> 3;
- out[x+1] = ((unsigned)inOuterUpper[x*2+1] + inOuterUpper[x*2+3] + inOuterLower[x*2+1] + inOuterLower[x*2+3] +
- inInnerUpper[x*2+1] + inInnerUpper[x*2+3] + inInnerLower[x*2+1] + inInnerLower[x*2+3]) >> 3;
- }
- }
- }
- break;
-
- case 3:
- for (int z = 0; z < depthOut; ++z)
- {
- const unsigned char* inOuter = &pixelDataIn[(z*2)*width_*height_*3];
- const unsigned char* inInner = &pixelDataIn[(z*2+1)*width_*height_*3];
- for (int y = 0; y < heightOut; ++y)
- {
- const unsigned char* inOuterUpper = &inOuter[(y*2)*width_*3];
- const unsigned char* inOuterLower = &inOuter[(y*2+1)*width_*3];
- const unsigned char* inInnerUpper = &inInner[(y*2)*width_*3];
- const unsigned char* inInnerLower = &inInner[(y*2+1)*width_*3];
- unsigned char* out = &pixelDataOut[z*widthOut*heightOut*3 + y*widthOut*3];
-
- for (int x = 0; x < widthOut*3; x += 3)
- {
- out[x] = ((unsigned)inOuterUpper[x*2] + inOuterUpper[x*2+3] + inOuterLower[x*2] + inOuterLower[x*2+3] +
- inInnerUpper[x*2] + inInnerUpper[x*2+3] + inInnerLower[x*2] + inInnerLower[x*2+3]) >> 3;
- out[x+1] = ((unsigned)inOuterUpper[x*2+1] + inOuterUpper[x*2+4] + inOuterLower[x*2+1] + inOuterLower[x*2+4] +
- inInnerUpper[x*2+1] + inInnerUpper[x*2+4] + inInnerLower[x*2+1] + inInnerLower[x*2+4]) >> 3;
- out[x+2] = ((unsigned)inOuterUpper[x*2+2] + inOuterUpper[x*2+5] + inOuterLower[x*2+2] + inOuterLower[x*2+5] +
- inInnerUpper[x*2+2] + inInnerUpper[x*2+5] + inInnerLower[x*2+2] + inInnerLower[x*2+5]) >> 3;
- }
- }
- }
- break;
-
- case 4:
- for (int z = 0; z < depthOut; ++z)
- {
- const unsigned char* inOuter = &pixelDataIn[(z*2)*width_*height_*4];
- const unsigned char* inInner = &pixelDataIn[(z*2+1)*width_*height_*4];
- for (int y = 0; y < heightOut; ++y)
- {
- const unsigned char* inOuterUpper = &inOuter[(y*2)*width_*4];
- const unsigned char* inOuterLower = &inOuter[(y*2+1)*width_*4];
- const unsigned char* inInnerUpper = &inInner[(y*2)*width_*4];
- const unsigned char* inInnerLower = &inInner[(y*2+1)*width_*4];
- unsigned char* out = &pixelDataOut[z*widthOut*heightOut*4 + y*widthOut*4];
-
- for (int x = 0; x < widthOut*4; x += 4)
- {
- out[x] = ((unsigned)inOuterUpper[x*2] + inOuterUpper[x*2+4] + inOuterLower[x*2] + inOuterLower[x*2+4] +
- inInnerUpper[x*2] + inInnerUpper[x*2+4] + inInnerLower[x*2] + inInnerLower[x*2+4]) >> 3;
- out[x+1] = ((unsigned)inOuterUpper[x*2+1] + inOuterUpper[x*2+5] + inOuterLower[x*2+1] + inOuterLower[x*2+5] +
- inInnerUpper[x*2+1] + inInnerUpper[x*2+5] + inInnerLower[x*2+1] + inInnerLower[x*2+5]) >> 3;
- out[x+2] = ((unsigned)inOuterUpper[x*2+2] + inOuterUpper[x*2+6] + inOuterLower[x*2+2] + inOuterLower[x*2+6] +
- inInnerUpper[x*2+2] + inInnerUpper[x*2+6] + inInnerLower[x*2+2] + inInnerLower[x*2+6]) >> 3;
- }
- }
- }
- break;
- }
- }
-
- return mipImage;
- }
- CompressedLevel Image::GetCompressedLevel(unsigned index) const
- {
- CompressedLevel level;
-
- if (compressedFormat_ == CF_NONE)
- {
- LOGERROR("Image is not compressed");
- return level;
- }
- if (index >= numCompressedLevels_)
- {
- LOGERROR("Compressed image mip level out of bounds");
- return level;
- }
-
- level.format_ = compressedFormat_;
- level.width_ = width_;
- level.height_ = height_;
- level.depth_ = depth_;
-
- if (compressedFormat_ < CF_PVRTC_RGB_2BPP)
- {
- level.blockSize_ = (compressedFormat_ == CF_DXT1 || compressedFormat_ == CF_ETC1) ? 8 : 16;
- unsigned i = 0;
- unsigned offset = 0;
-
- for (;;)
- {
- if (!level.width_)
- level.width_ = 1;
- if (!level.height_)
- level.height_ = 1;
- if (!level.depth_)
- level.depth_ = 1;
-
- level.rowSize_ = ((level.width_ + 3) / 4) * level.blockSize_;
- level.rows_ = ((level.height_ + 3) / 4);
- level.data_ = data_.Get() + offset;
- level.dataSize_ = level.depth_ * level.rows_ * level.rowSize_;
-
- if (offset + level.dataSize_ > GetMemoryUse())
- {
- LOGERROR("Compressed level is outside image data. Offset: " + String(offset) + " Size: " + String(level.dataSize_) +
- " Datasize: " + String(GetMemoryUse()));
- level.data_ = 0;
- return level;
- }
-
- if (i == index)
- return level;
-
- offset += level.dataSize_;
- level.width_ /= 2;
- level.height_ /= 2;
- level.depth_ /= 2;
- ++i;
- }
- }
- else
- {
- level.blockSize_ = compressedFormat_ < CF_PVRTC_RGB_4BPP ? 2 : 4;
- unsigned i = 0;
- unsigned offset = 0;
-
- for (;;)
- {
- if (!level.width_)
- level.width_ = 1;
- if (!level.height_)
- level.height_ = 1;
-
- int dataWidth = Max(level.width_, level.blockSize_ == 2 ? 16 : 8);
- int dataHeight = Max(level.height_, 8);
- level.data_ = data_.Get() + offset;
- level.dataSize_ = (dataWidth * dataHeight * level.blockSize_ + 7) >> 3;
- level.rows_ = dataHeight;
- level.rowSize_ = level.dataSize_ / level.rows_;
-
- if (offset + level.dataSize_ > GetMemoryUse())
- {
- LOGERROR("Compressed level is outside image data. Offset: " + String(offset) + " Size: " + String(level.dataSize_) +
- " Datasize: " + String(GetMemoryUse()));
- level.data_ = 0;
- return level;
- }
-
- if (i == index)
- return level;
-
- offset += level.dataSize_;
- level.width_ /= 2;
- level.height_ /= 2;
- ++i;
- }
- }
- }
- SDL_Surface* Image::GetSDLSurface(const IntRect& rect) const
- {
- if (!data_)
- return 0;
-
- if (IsCompressed())
- {
- LOGERROR("Can not get SDL surface from compressed image " + GetName());
- return 0;
- }
-
- if (components_ < 3)
- {
- LOGERROR("Can not get SDL surface from image " + GetName() + " with less than 3 components");
- return 0;
- }
-
- IntRect imageRect = rect;
- // Use full image if illegal rect
- if (imageRect.left_ < 0 || imageRect.top_ < 0 || imageRect.right_ > width_ || imageRect.bottom_ > height_ ||
- imageRect.left_ >= imageRect.right_ || imageRect.top_ >= imageRect.bottom_)
- {
- imageRect.left_ = 0;
- imageRect.top_ = 0;
- imageRect.right_ = width_;
- imageRect.bottom_ = height_;
- }
-
- int imageWidth = width_;
- int width = imageRect.Width();
- int height = imageRect.Height();
- // Assume little-endian for all the supported platforms
- unsigned rMask = 0x000000ff;
- unsigned gMask = 0x0000ff00;
- unsigned bMask = 0x00ff0000;
- unsigned aMask = 0xff000000;
- SDL_Surface* surface = SDL_CreateRGBSurface(0, width, height, components_ * 8, rMask, gMask, bMask, aMask);
- if (surface)
- {
- SDL_LockSurface(surface);
-
- unsigned char* destination = reinterpret_cast<unsigned char*>(surface->pixels);
- unsigned char* source = data_ + components_ * (imageWidth * imageRect.top_ + imageRect.left_);
- for (int i = 0; i < height; ++i)
- {
- memcpy(destination, source, components_ * width);
- destination += surface->pitch;
- source += components_ * imageWidth;
- }
-
- SDL_UnlockSurface(surface);
- }
- else
- LOGERROR("Failed to create SDL surface from image " + GetName());
-
- return surface;
- }
- }
|