sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef __BMCONV_H__ sl@0: #define __BMCONV_H__ sl@0: sl@0: #include sl@0: sl@0: #if defined(__MSVCDOTNET__) || defined(__TOOLS2__) sl@0: #include sl@0: #include sl@0: using namespace std; sl@0: #else //!__MSVCDOTNET__ sl@0: #include sl@0: #include sl@0: #endif //__MSVCDOTNET__ sl@0: sl@0: #include sl@0: sl@0: #ifdef __LINUX__ sl@0: #define GNUPACK __attribute__((packed)) sl@0: #define OPTCHAR '-' sl@0: /* on Linux the '/' optchar cannot be supported as filenames can start with '/'. */ sl@0: #define ALTERNATE_OPTCHAR '-' sl@0: #else sl@0: #define GNUPACK sl@0: #define OPTCHAR '-' sl@0: #define ALTERNATE_OPTCHAR '/' sl@0: #endif sl@0: sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: const long int KWriteOnceFileStoreUid=268435511; sl@0: const long int KCBitwiseBitmapUid=268435520; sl@0: const long int KMultiBitmapRomImageUid=268435521; sl@0: const long int KMultiBitmapFileImageUid=268435522; sl@0: const long int KMultiBitmapFileImageChecksum=1194943545; sl@0: /** sl@0: @internalComponent sl@0: synchronized with enum SEpocBitmapHeader::TColor in \epoc32\include\bitmap.h sl@0: */ sl@0: enum TBitmapColor sl@0: { sl@0: EMonochromeBitmap = 0, sl@0: EColorBitmap = 1, sl@0: EColorBitmapAlpha =2 , sl@0: EColorBitmapAlphaPM = 3, sl@0: EColorBitmapUndefined = 8 sl@0: }; sl@0: sl@0: /** sl@0: Defines the types of file compression. sl@0: @internalComponent sl@0: */ sl@0: enum TBitmapfileCompression sl@0: { sl@0: /** Bitmap file is not compressed. */ sl@0: ENoBitmapCompression=0, sl@0: /** File is compressed using run-length encoding compression. */ sl@0: EByteRLECompression, sl@0: /** File is compressed using twelve bit run-length encoding compression. */ sl@0: ETwelveBitRLECompression, sl@0: /** File is compressed using sixteen bit run-length encoding compression. */ sl@0: ESixteenBitRLECompression, sl@0: /** File is compressed using twenty four bit run-length encoding compression. */ sl@0: ETwentyFourBitRLECompression, sl@0: /** File is compressed using unsigned thirty two bit run-length encoding compression. */ sl@0: EThirtyTwoUBitRLECompression, sl@0: /** File is compressed using unsigned thirty two bit run-length encoding compression and includes an alpha channel. */ sl@0: EThirtyTwoABitRLECompression, sl@0: /** Insert new compression types here */ sl@0: ERLECompressionLast = 255 sl@0: }; sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: enum TStoreType sl@0: { sl@0: ENoStore, sl@0: EFileStore, sl@0: ERomStore, sl@0: ECompressedRomStore sl@0: }; sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: enum Errors sl@0: { sl@0: NoCompression=-1, sl@0: NoError=0, sl@0: NoMemory, sl@0: Arg, sl@0: Files, sl@0: SourceFile, sl@0: DestFile, sl@0: CommandFile, sl@0: OutOfRange, sl@0: TooManyArgs, sl@0: UnknownCompression, sl@0: CompressionError, sl@0: DecompressionError, sl@0: Bpp, sl@0: PaletteFile, sl@0: PaletteSupportNotImplemented, sl@0: AlphaFiles, sl@0: AlphaDimensions, sl@0: AlphaBpp sl@0: }; sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: struct SEpocBitmapHeader sl@0: /** Contains information about the bitmap when streaming bitmaps to stores. */ sl@0: { sl@0: /** The size of the bitmap data, in bytes. */ sl@0: long iBitmapSize; sl@0: /** The size of the structure in which the bitmap data is stored. */ sl@0: long iStructSize; sl@0: long iWidthInPixels; sl@0: long iHeightInPixels; sl@0: long iWidthInTwips; sl@0: long iHeightInTwips; sl@0: /** The bitmaps number of bits per pixel */ sl@0: long iBitsPerPixel; sl@0: /** Whether or not the bitmap is colour. A true value means that the bitmap sl@0: is colour. */ sl@0: TBitmapColor iColor; sl@0: /** The number of entries in the bitmap's palette. */ sl@0: long iPaletteEntries; // always 0 in current implementations sl@0: /** The type of compression used to store the bitmap. */ sl@0: TBitmapfileCompression iCompression; sl@0: }; sl@0: sl@0: #ifndef __LINUX__ sl@0: #include sl@0: #endif sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: struct TRgb24bit sl@0: { sl@0: unsigned char iBlue; sl@0: unsigned char iGreen; sl@0: unsigned char iRed; sl@0: } GNUPACK; sl@0: #ifndef __LINUX__ sl@0: #include sl@0: #endif sl@0: sl@0: #ifndef __LINUX__ sl@0: #include sl@0: #endif sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: struct TBitmapFileHeader sl@0: { sl@0: unsigned short bfType; sl@0: unsigned long bfSize; sl@0: unsigned short bfReserved1; sl@0: unsigned short bfReserved2; sl@0: unsigned long bfOffBits; sl@0: } GNUPACK; sl@0: #ifndef __LINUX__ sl@0: #include sl@0: #endif sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: struct TBitmapInfoHeader sl@0: { sl@0: unsigned long biSize; sl@0: long biWidth; sl@0: long biHeight; sl@0: unsigned short biPlanes; sl@0: unsigned short biBitCount; sl@0: unsigned long biCompression; sl@0: unsigned long biSizeImage; sl@0: long biXPelsPerMeter; sl@0: long biYPelsPerMeter; sl@0: unsigned long biClrUsed; sl@0: unsigned long biClrImportant; sl@0: }; sl@0: sl@0: #ifndef __LINUX__ sl@0: #include sl@0: #endif sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: struct TRgbTriple sl@0: { sl@0: unsigned char rgbtBlue; sl@0: unsigned char rgbtGreen; sl@0: unsigned char rgbtRed; sl@0: } GNUPACK; sl@0: #ifndef __LINUX__ sl@0: #include sl@0: #endif sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: struct TRgbQuad sl@0: { sl@0: unsigned char iBlue; sl@0: unsigned char iGreen; sl@0: unsigned char iRed; sl@0: unsigned char iReserved; sl@0: }; sl@0: sl@0: class TRgb sl@0: /** sl@0: 24-bit RGB colour value with 8 bits each for red, green and blue. sl@0: sl@0: All Graphics drawing functions are specified in terms of a 32-bit TRgb colour sl@0: containing the three colour values plus 8 unused bits. For hardware which sl@0: does not support 24-bit colour, a mapping from TRgb to display colours is sl@0: performed. sl@0: sl@0: The supported display modes are enumerated in the TDisplayMode type. In each sl@0: display mode a unique index can represent each physical colours supported, sl@0: and which can be mapped onto a full RGB value. The mappings are as follows: sl@0: sl@0: 16-colour displays use the EGA colour set: black, white, and then both light sl@0: and dark versions of grey, red, green, blue, cyan, magenta and yellow sl@0: sl@0: 256-colour displays support 216 colours made up of 6x6x6 RGB values, each sl@0: containing all possible multiples of 51 for R,G,B values. Additionally, all sl@0: remaining 10 shades of pure red, green, blue and grey are represented, by sl@0: adding all remaining multiples of 17. This use of 256 colours is sometimes sl@0: known as the Netscape colour cube. sl@0: sl@0: 4096-colour displays effectively support RGB values with 4 bits per primary sl@0: colour sl@0: sl@0: 64k-colour displays effectively support RGB values with 5 bits allocated to sl@0: red, 6 to green and 5 to blue sl@0: sl@0: 16 million-colour displays support true colour with 8 bits allocated to each sl@0: primary colour sl@0: sl@0: @see TDisplayMode sl@0: @see DynamicPalette sl@0: @internalComponent sl@0: */ sl@0: { sl@0: public: sl@0: TRgb(); sl@0: TRgb(long unsigned int val); sl@0: TRgb(int aRed,int aGreen,int aBlue); sl@0: TRgb &operator=(const TRgb& aColor); sl@0: int operator==(const TRgb& aColor); sl@0: int Difference(const TRgb& col) const; sl@0: int Gray2() const; sl@0: int Gray4() const; sl@0: int Gray16() const; sl@0: int Gray256() const; sl@0: int Color16() const; sl@0: int Color256() const; sl@0: int Color4K() const; sl@0: int Color64K() const; sl@0: long int Color16M() const; sl@0: static TRgb Gray2(int aGray2); sl@0: static TRgb Gray4(int aGray4); sl@0: static TRgb Gray16(int aGray16); sl@0: static TRgb Gray256(int aGray256); sl@0: static TRgb Color16(int aColor16); sl@0: static TRgb Color256(int aColor256); sl@0: static TRgb Color4K(int aColor64K); sl@0: static TRgb Color64K(int aColor64K); sl@0: static TRgb Color16M(long int aColor16M); sl@0: public: sl@0: unsigned char iRed; sl@0: unsigned char iGreen; sl@0: unsigned char iBlue; sl@0: unsigned char iSpare; sl@0: }; sl@0: sl@0: class Bitmap sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: { sl@0: public: sl@0: int iUid; sl@0: int iDispMode; sl@0: void* iHeap; sl@0: void* iPile; sl@0: int iByteWidth; sl@0: SEpocBitmapHeader iHeader; sl@0: int iChunk; sl@0: int iDataOffset; // offset from "this" sl@0: }; sl@0: sl@0: class BitmapCompiler sl@0: /** sl@0: Historical note - Pbm is an abbreviation for "Symbian Bitmap" sl@0: @internalComponent sl@0: */ sl@0: { sl@0: public: sl@0: BitmapCompiler(char* aSourcefilenames[],int aNumSources); sl@0: ~BitmapCompiler(); sl@0: int Compile(TStoreType aSt,int aCompress,char* aDestfilename,char* aHeaderFilename,char* aPaletteFilename); sl@0: private: sl@0: int AllocatePbmSourcesArray(); sl@0: int LoadSourcefiles(); sl@0: int LoadPbmFile(char* aPbmFilename); sl@0: int RomImage(bool aCompress); sl@0: int FileImage(int aCompress); sl@0: int WriteRomheader(); sl@0: int WriteRombitmap(SEpocBitmapHeader* aPbm); sl@0: int WriteFileheader(); sl@0: int WriteFilebitmap(SEpocBitmapHeader* aPbm); sl@0: int WriteHeadStream(); sl@0: int CreateHeader(char* aHeaderFilename); sl@0: char* UnadornedName(char* aName); // returns pointer to static buffer sl@0: int LoadPalette(char* aPaletteFilename); sl@0: void CalculateInversePalette(); sl@0: void WritePalette(); sl@0: int CompressBitmap(SEpocBitmapHeader*& aPbm); sl@0: int CompressByteData(char*& aDest,char* aSrce,int aSize); sl@0: int WriteCompressedByteData(char*& aDest,char* aData,int aLength, const char* aDestEnd); sl@0: int WriteCompressedByteValues(char*& aDest,char aValue,int aLength, const char* aDestEnd); sl@0: int CompressTwelveBitData(char*& aDest,char* aSrce,int aSizeInBytes); sl@0: int WriteCompressedTwelveBitData(unsigned short*& aDest,unsigned short aData,int aLength); sl@0: int CompressSixteenBitData(char*& aDest,char* aSrce,int aSize); sl@0: int WriteCompressedSixteenBitData(char*& aDest,unsigned short* aData,int aLength, const char* aDestEnd); sl@0: int WriteCompressedSixteenBitValues(char*& aDest,unsigned short aValue,int aLength, const char* aDestEnd); sl@0: int CompressTwentyFourBitData(char*& aDest,char* aSrce,int aSizeInBytes); sl@0: int WriteCompressedTwentyFourBitData(char*& aDest,char* aData,int aLength, const char* aDestEnd); sl@0: int WriteCompressedTwentyFourBitValues(char*& aDest,char aComponent1,char aComponent2,char aComponent3,int aLength, const char* aDestEnd); sl@0: int CompressThirtyTwoUBitData(char*& aDest,char* aSrce,int aSizeInBytes); sl@0: int WriteCompressedThirtyTwoUBitData(char*& aDest,char* aData, int aLength, const char* aDestEnd); sl@0: int WriteCompressedThirtyTwoUBitValues(char*& aDest,char aComponent1, char aComponent2,char aComponent3, int aLength, const char* aDestEnd); sl@0: int TrueColorPointerCompare(char* aColorPointer,char aComponent1,char aComponent2,char aComponent3); sl@0: int CompressThirtyTwoABitData(char*& aDest,char* aSrce,int aSizeInBytes); sl@0: int WriteCompressedThirtyTwoABitData(char*& aDest,char* aData,int aLength,const char* aDestEnd); sl@0: int WriteCompressedThirtyTwoABitValues(char*& aDest,char aComponent1,char aComponent2,char aComponent3,char aComponent4,int aLength,const char* aDestEnd); sl@0: int ColorAlphaPointerCompare(char* aColorPointer,char aComponent1,char aComponent2,char aComponent3,char aComponent4); sl@0: int ReadHexString(char aHexBuf[10],char*& aDataPtr,char* aDataPtrLimit); sl@0: int HexToInt(char aHighNibble,char aLowNibble); sl@0: int HexToInt(char aNibble); sl@0: static void CopyTail(void* aDst, void* aSrc, int aFullSize, int aSkipped); sl@0: private: sl@0: fstream iDestFile; sl@0: char** iSourcefilenames; sl@0: SEpocBitmapHeader** iPbmSources; sl@0: int iNumSources; sl@0: int iDefaultPalette; sl@0: TRgb iPalette[256]; sl@0: char iInversePalette[4096]; sl@0: }; sl@0: sl@0: class BitmapLoader sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: { sl@0: public: sl@0: BitmapLoader(); sl@0: ~BitmapLoader(); sl@0: int LoadBitmap(char* aFileName,int aBpp,TBitmapColor aColor,SEpocBitmapHeader*& aPbm); sl@0: private: sl@0: int DoLoad(char* aFileName); sl@0: int DoLoadAlpha(char* aAlphaFileName); sl@0: int DoConvert(int aBpp,TBitmapColor aColor,SEpocBitmapHeader*& aPbm); sl@0: TRgb GetBmpPixel(long aXCoord,long aYCoord); sl@0: unsigned char GetAlphaPixel(long aXCoord,long aYCoord); sl@0: private: sl@0: TBitmapInfoHeader iBmpHeader; sl@0: int iNumBmpColors; sl@0: TRgbQuad* iBmpColors; sl@0: char* iBmpBits; sl@0: char* iAlphaBits; sl@0: }; sl@0: sl@0: class EpocLoader sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: { sl@0: public: sl@0: EpocLoader(); sl@0: ~EpocLoader(); sl@0: int EpocBitmapCount(char* aFilename,int& aCount,int& isRomFormat); sl@0: int LoadEpocBitmap(char* aFilename,int aIndex); sl@0: int SaveBitmap(char* aFilename); sl@0: int SaveAlpha(char* aFilename); sl@0: int DupBitmap(SEpocBitmapHeader*& aPbm); sl@0: int ValidateEpocBitmap(char* aFilename); sl@0: SEpocBitmapHeader Header() const { return iOriginalPbmHeader;}; sl@0: private: sl@0: int LoadFile(char* aFilename,int aIndex); sl@0: int LoadRom(char* aFilename,int aIndex); sl@0: TRgb GetPixel(int aXCoord,int aYCoord); sl@0: unsigned char GetAlpha(int aXCoord,int aYCoord); sl@0: int DoLoadFile(fstream& aFile); sl@0: int DoLoadRom(fstream& aFile); sl@0: int ExpandByteRLEData(char* aDest,int aDestSize,char* aSrce,int aSrceSize); sl@0: int ExpandTwelveBitRLEData(char* aDest,int aDestSizeInBytes,char* aSrce,int aSrceSizeInBytes); sl@0: int ExpandSixteenBitRLEData(char* aDest,int aDestSizeInBytes,char* aSrce,int aSrceSizeInBytes); sl@0: int ExpandTwentyFourBitRLEData(char* aDest,int aDestSizeInBytes,char* aSrce,int aSrceSizeInBytes); sl@0: int ExpandThirtyTwoUBitRLEData(char* aDest,int aDestSizeInBytes,char* aSrce,int aSrceSizeInBytes); sl@0: int ExpandThirtyTwoABitRLEData(char* aDest,int aDestSizeInBytes,char* aSrce,int aSrceSizeInBytes); sl@0: int Decompress(int aSize); sl@0: private: sl@0: SEpocBitmapHeader iOriginalPbmHeader; sl@0: SEpocBitmapHeader iPbmHeader; sl@0: char* iPbmBits; sl@0: }; sl@0: sl@0: class BitmapUtils sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: { sl@0: public: sl@0: static int ByteWidth(int aPixelWidth,int aBitsPerPixel); sl@0: }; sl@0: sl@0: #endif