1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/graphicstools/gdi_tools/bmconv/BMCONV.H Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,436 @@
1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#ifndef __BMCONV_H__
1.20 +#define __BMCONV_H__
1.21 +
1.22 +#include <string.h>
1.23 +
1.24 +#if defined(__MSVCDOTNET__) || defined(__TOOLS2__)
1.25 +#include <fstream>
1.26 +#include <iostream>
1.27 +using namespace std;
1.28 +#else //!__MSVCDOTNET__
1.29 +#include <fstream.h>
1.30 +#include <iostream.h>
1.31 +#endif //__MSVCDOTNET__
1.32 +
1.33 +#include <stdlib.h>
1.34 +
1.35 +#ifdef __LINUX__
1.36 + #define GNUPACK __attribute__((packed))
1.37 + #define OPTCHAR '-'
1.38 + /* on Linux the '/' optchar cannot be supported as filenames can start with '/'. */
1.39 + #define ALTERNATE_OPTCHAR '-'
1.40 +#else
1.41 + #define GNUPACK
1.42 + #define OPTCHAR '-'
1.43 + #define ALTERNATE_OPTCHAR '/'
1.44 +#endif
1.45 +
1.46 +
1.47 +/**
1.48 +@internalComponent
1.49 +*/
1.50 +const long int KWriteOnceFileStoreUid=268435511;
1.51 +const long int KCBitwiseBitmapUid=268435520;
1.52 +const long int KMultiBitmapRomImageUid=268435521;
1.53 +const long int KMultiBitmapFileImageUid=268435522;
1.54 +const long int KMultiBitmapFileImageChecksum=1194943545;
1.55 +/**
1.56 +@internalComponent
1.57 +synchronized with enum SEpocBitmapHeader::TColor in \epoc32\include\bitmap.h
1.58 +*/
1.59 +enum TBitmapColor
1.60 + {
1.61 + EMonochromeBitmap = 0,
1.62 + EColorBitmap = 1,
1.63 + EColorBitmapAlpha =2 ,
1.64 + EColorBitmapAlphaPM = 3,
1.65 + EColorBitmapUndefined = 8
1.66 + };
1.67 +
1.68 +/**
1.69 +Defines the types of file compression.
1.70 +@internalComponent
1.71 +*/
1.72 +enum TBitmapfileCompression
1.73 + {
1.74 + /** Bitmap file is not compressed. */
1.75 + ENoBitmapCompression=0,
1.76 + /** File is compressed using run-length encoding compression. */
1.77 + EByteRLECompression,
1.78 + /** File is compressed using twelve bit run-length encoding compression. */
1.79 + ETwelveBitRLECompression,
1.80 + /** File is compressed using sixteen bit run-length encoding compression. */
1.81 + ESixteenBitRLECompression,
1.82 + /** File is compressed using twenty four bit run-length encoding compression. */
1.83 + ETwentyFourBitRLECompression,
1.84 + /** File is compressed using unsigned thirty two bit run-length encoding compression. */
1.85 + EThirtyTwoUBitRLECompression,
1.86 + /** File is compressed using unsigned thirty two bit run-length encoding compression and includes an alpha channel. */
1.87 + EThirtyTwoABitRLECompression,
1.88 + /** Insert new compression types here */
1.89 + ERLECompressionLast = 255
1.90 + };
1.91 +/**
1.92 +@internalComponent
1.93 +*/
1.94 +enum TStoreType
1.95 + {
1.96 + ENoStore,
1.97 + EFileStore,
1.98 + ERomStore,
1.99 + ECompressedRomStore
1.100 + };
1.101 +/**
1.102 +@internalComponent
1.103 +*/
1.104 +enum Errors
1.105 + {
1.106 + NoCompression=-1,
1.107 + NoError=0,
1.108 + NoMemory,
1.109 + Arg,
1.110 + Files,
1.111 + SourceFile,
1.112 + DestFile,
1.113 + CommandFile,
1.114 + OutOfRange,
1.115 + TooManyArgs,
1.116 + UnknownCompression,
1.117 + CompressionError,
1.118 + DecompressionError,
1.119 + Bpp,
1.120 + PaletteFile,
1.121 + PaletteSupportNotImplemented,
1.122 + AlphaFiles,
1.123 + AlphaDimensions,
1.124 + AlphaBpp
1.125 + };
1.126 +/**
1.127 +@internalComponent
1.128 +*/
1.129 +struct SEpocBitmapHeader
1.130 +/** Contains information about the bitmap when streaming bitmaps to stores. */
1.131 + {
1.132 + /** The size of the bitmap data, in bytes. */
1.133 + long iBitmapSize;
1.134 + /** The size of the structure in which the bitmap data is stored. */
1.135 + long iStructSize;
1.136 + long iWidthInPixels;
1.137 + long iHeightInPixels;
1.138 + long iWidthInTwips;
1.139 + long iHeightInTwips;
1.140 + /** The bitmaps number of bits per pixel */
1.141 + long iBitsPerPixel;
1.142 + /** Whether or not the bitmap is colour. A true value means that the bitmap
1.143 + is colour. */
1.144 + TBitmapColor iColor;
1.145 + /** The number of entries in the bitmap's palette. */
1.146 + long iPaletteEntries; // always 0 in current implementations
1.147 + /** The type of compression used to store the bitmap. */
1.148 + TBitmapfileCompression iCompression;
1.149 + };
1.150 +
1.151 +#ifndef __LINUX__
1.152 +#include <pshpack2.h>
1.153 +#endif
1.154 +/**
1.155 +@internalComponent
1.156 +*/
1.157 +struct TRgb24bit
1.158 + {
1.159 + unsigned char iBlue;
1.160 + unsigned char iGreen;
1.161 + unsigned char iRed;
1.162 + } GNUPACK;
1.163 +#ifndef __LINUX__
1.164 +#include <poppack.h>
1.165 +#endif
1.166 +
1.167 +#ifndef __LINUX__
1.168 +#include <pshpack2.h>
1.169 +#endif
1.170 +/**
1.171 +@internalComponent
1.172 +*/
1.173 +struct TBitmapFileHeader
1.174 + {
1.175 + unsigned short bfType;
1.176 + unsigned long bfSize;
1.177 + unsigned short bfReserved1;
1.178 + unsigned short bfReserved2;
1.179 + unsigned long bfOffBits;
1.180 + } GNUPACK;
1.181 +#ifndef __LINUX__
1.182 +#include <poppack.h>
1.183 +#endif
1.184 +/**
1.185 +@internalComponent
1.186 +*/
1.187 +struct TBitmapInfoHeader
1.188 + {
1.189 + unsigned long biSize;
1.190 + long biWidth;
1.191 + long biHeight;
1.192 + unsigned short biPlanes;
1.193 + unsigned short biBitCount;
1.194 + unsigned long biCompression;
1.195 + unsigned long biSizeImage;
1.196 + long biXPelsPerMeter;
1.197 + long biYPelsPerMeter;
1.198 + unsigned long biClrUsed;
1.199 + unsigned long biClrImportant;
1.200 + };
1.201 +
1.202 +#ifndef __LINUX__
1.203 +#include <pshpack2.h>
1.204 +#endif
1.205 +/**
1.206 +@internalComponent
1.207 +*/
1.208 +struct TRgbTriple
1.209 + {
1.210 + unsigned char rgbtBlue;
1.211 + unsigned char rgbtGreen;
1.212 + unsigned char rgbtRed;
1.213 + } GNUPACK;
1.214 +#ifndef __LINUX__
1.215 +#include <poppack.h>
1.216 +#endif
1.217 +/**
1.218 +@internalComponent
1.219 +*/
1.220 +struct TRgbQuad
1.221 + {
1.222 + unsigned char iBlue;
1.223 + unsigned char iGreen;
1.224 + unsigned char iRed;
1.225 + unsigned char iReserved;
1.226 + };
1.227 +
1.228 +class TRgb
1.229 +/**
1.230 +24-bit RGB colour value with 8 bits each for red, green and blue.
1.231 +
1.232 +All Graphics drawing functions are specified in terms of a 32-bit TRgb colour
1.233 +containing the three colour values plus 8 unused bits. For hardware which
1.234 +does not support 24-bit colour, a mapping from TRgb to display colours is
1.235 +performed.
1.236 +
1.237 +The supported display modes are enumerated in the TDisplayMode type. In each
1.238 +display mode a unique index can represent each physical colours supported,
1.239 +and which can be mapped onto a full RGB value. The mappings are as follows:
1.240 +
1.241 +16-colour displays use the EGA colour set: black, white, and then both light
1.242 +and dark versions of grey, red, green, blue, cyan, magenta and yellow
1.243 +
1.244 +256-colour displays support 216 colours made up of 6x6x6 RGB values, each
1.245 +containing all possible multiples of 51 for R,G,B values. Additionally, all
1.246 +remaining 10 shades of pure red, green, blue and grey are represented, by
1.247 +adding all remaining multiples of 17. This use of 256 colours is sometimes
1.248 +known as the Netscape colour cube.
1.249 +
1.250 +4096-colour displays effectively support RGB values with 4 bits per primary
1.251 +colour
1.252 +
1.253 +64k-colour displays effectively support RGB values with 5 bits allocated to
1.254 +red, 6 to green and 5 to blue
1.255 +
1.256 +16 million-colour displays support true colour with 8 bits allocated to each
1.257 +primary colour
1.258 +
1.259 +@see TDisplayMode
1.260 +@see DynamicPalette
1.261 +@internalComponent
1.262 +*/
1.263 + {
1.264 +public:
1.265 + TRgb();
1.266 + TRgb(long unsigned int val);
1.267 + TRgb(int aRed,int aGreen,int aBlue);
1.268 + TRgb &operator=(const TRgb& aColor);
1.269 + int operator==(const TRgb& aColor);
1.270 + int Difference(const TRgb& col) const;
1.271 + int Gray2() const;
1.272 + int Gray4() const;
1.273 + int Gray16() const;
1.274 + int Gray256() const;
1.275 + int Color16() const;
1.276 + int Color256() const;
1.277 + int Color4K() const;
1.278 + int Color64K() const;
1.279 + long int Color16M() const;
1.280 + static TRgb Gray2(int aGray2);
1.281 + static TRgb Gray4(int aGray4);
1.282 + static TRgb Gray16(int aGray16);
1.283 + static TRgb Gray256(int aGray256);
1.284 + static TRgb Color16(int aColor16);
1.285 + static TRgb Color256(int aColor256);
1.286 + static TRgb Color4K(int aColor64K);
1.287 + static TRgb Color64K(int aColor64K);
1.288 + static TRgb Color16M(long int aColor16M);
1.289 +public:
1.290 + unsigned char iRed;
1.291 + unsigned char iGreen;
1.292 + unsigned char iBlue;
1.293 + unsigned char iSpare;
1.294 + };
1.295 +
1.296 +class Bitmap
1.297 +/**
1.298 +@internalComponent
1.299 +*/
1.300 + {
1.301 +public:
1.302 + int iUid;
1.303 + int iDispMode;
1.304 + void* iHeap;
1.305 + void* iPile;
1.306 + int iByteWidth;
1.307 + SEpocBitmapHeader iHeader;
1.308 + int iChunk;
1.309 + int iDataOffset; // offset from "this"
1.310 + };
1.311 +
1.312 +class BitmapCompiler
1.313 +/**
1.314 +Historical note - Pbm is an abbreviation for "Symbian Bitmap"
1.315 +@internalComponent
1.316 +*/
1.317 + {
1.318 +public:
1.319 + BitmapCompiler(char* aSourcefilenames[],int aNumSources);
1.320 + ~BitmapCompiler();
1.321 + int Compile(TStoreType aSt,int aCompress,char* aDestfilename,char* aHeaderFilename,char* aPaletteFilename);
1.322 +private:
1.323 + int AllocatePbmSourcesArray();
1.324 + int LoadSourcefiles();
1.325 + int LoadPbmFile(char* aPbmFilename);
1.326 + int RomImage(bool aCompress);
1.327 + int FileImage(int aCompress);
1.328 + int WriteRomheader();
1.329 + int WriteRombitmap(SEpocBitmapHeader* aPbm);
1.330 + int WriteFileheader();
1.331 + int WriteFilebitmap(SEpocBitmapHeader* aPbm);
1.332 + int WriteHeadStream();
1.333 + int CreateHeader(char* aHeaderFilename);
1.334 + char* UnadornedName(char* aName); // returns pointer to static buffer
1.335 + int LoadPalette(char* aPaletteFilename);
1.336 + void CalculateInversePalette();
1.337 + void WritePalette();
1.338 + int CompressBitmap(SEpocBitmapHeader*& aPbm);
1.339 + int CompressByteData(char*& aDest,char* aSrce,int aSize);
1.340 + int WriteCompressedByteData(char*& aDest,char* aData,int aLength, const char* aDestEnd);
1.341 + int WriteCompressedByteValues(char*& aDest,char aValue,int aLength, const char* aDestEnd);
1.342 + int CompressTwelveBitData(char*& aDest,char* aSrce,int aSizeInBytes);
1.343 + int WriteCompressedTwelveBitData(unsigned short*& aDest,unsigned short aData,int aLength);
1.344 + int CompressSixteenBitData(char*& aDest,char* aSrce,int aSize);
1.345 + int WriteCompressedSixteenBitData(char*& aDest,unsigned short* aData,int aLength, const char* aDestEnd);
1.346 + int WriteCompressedSixteenBitValues(char*& aDest,unsigned short aValue,int aLength, const char* aDestEnd);
1.347 + int CompressTwentyFourBitData(char*& aDest,char* aSrce,int aSizeInBytes);
1.348 + int WriteCompressedTwentyFourBitData(char*& aDest,char* aData,int aLength, const char* aDestEnd);
1.349 + int WriteCompressedTwentyFourBitValues(char*& aDest,char aComponent1,char aComponent2,char aComponent3,int aLength, const char* aDestEnd);
1.350 + int CompressThirtyTwoUBitData(char*& aDest,char* aSrce,int aSizeInBytes);
1.351 + int WriteCompressedThirtyTwoUBitData(char*& aDest,char* aData, int aLength, const char* aDestEnd);
1.352 + int WriteCompressedThirtyTwoUBitValues(char*& aDest,char aComponent1, char aComponent2,char aComponent3, int aLength, const char* aDestEnd);
1.353 + int TrueColorPointerCompare(char* aColorPointer,char aComponent1,char aComponent2,char aComponent3);
1.354 + int CompressThirtyTwoABitData(char*& aDest,char* aSrce,int aSizeInBytes);
1.355 + int WriteCompressedThirtyTwoABitData(char*& aDest,char* aData,int aLength,const char* aDestEnd);
1.356 + int WriteCompressedThirtyTwoABitValues(char*& aDest,char aComponent1,char aComponent2,char aComponent3,char aComponent4,int aLength,const char* aDestEnd);
1.357 + int ColorAlphaPointerCompare(char* aColorPointer,char aComponent1,char aComponent2,char aComponent3,char aComponent4);
1.358 + int ReadHexString(char aHexBuf[10],char*& aDataPtr,char* aDataPtrLimit);
1.359 + int HexToInt(char aHighNibble,char aLowNibble);
1.360 + int HexToInt(char aNibble);
1.361 + static void CopyTail(void* aDst, void* aSrc, int aFullSize, int aSkipped);
1.362 +private:
1.363 + fstream iDestFile;
1.364 + char** iSourcefilenames;
1.365 + SEpocBitmapHeader** iPbmSources;
1.366 + int iNumSources;
1.367 + int iDefaultPalette;
1.368 + TRgb iPalette[256];
1.369 + char iInversePalette[4096];
1.370 + };
1.371 +
1.372 +class BitmapLoader
1.373 +/**
1.374 +@internalComponent
1.375 +*/
1.376 + {
1.377 +public:
1.378 + BitmapLoader();
1.379 + ~BitmapLoader();
1.380 + int LoadBitmap(char* aFileName,int aBpp,TBitmapColor aColor,SEpocBitmapHeader*& aPbm);
1.381 +private:
1.382 + int DoLoad(char* aFileName);
1.383 + int DoLoadAlpha(char* aAlphaFileName);
1.384 + int DoConvert(int aBpp,TBitmapColor aColor,SEpocBitmapHeader*& aPbm);
1.385 + TRgb GetBmpPixel(long aXCoord,long aYCoord);
1.386 + unsigned char GetAlphaPixel(long aXCoord,long aYCoord);
1.387 +private:
1.388 + TBitmapInfoHeader iBmpHeader;
1.389 + int iNumBmpColors;
1.390 + TRgbQuad* iBmpColors;
1.391 + char* iBmpBits;
1.392 + char* iAlphaBits;
1.393 + };
1.394 +
1.395 +class EpocLoader
1.396 +/**
1.397 +@internalComponent
1.398 +*/
1.399 + {
1.400 +public:
1.401 + EpocLoader();
1.402 + ~EpocLoader();
1.403 + int EpocBitmapCount(char* aFilename,int& aCount,int& isRomFormat);
1.404 + int LoadEpocBitmap(char* aFilename,int aIndex);
1.405 + int SaveBitmap(char* aFilename);
1.406 + int SaveAlpha(char* aFilename);
1.407 + int DupBitmap(SEpocBitmapHeader*& aPbm);
1.408 + int ValidateEpocBitmap(char* aFilename);
1.409 + SEpocBitmapHeader Header() const { return iOriginalPbmHeader;};
1.410 +private:
1.411 + int LoadFile(char* aFilename,int aIndex);
1.412 + int LoadRom(char* aFilename,int aIndex);
1.413 + TRgb GetPixel(int aXCoord,int aYCoord);
1.414 + unsigned char GetAlpha(int aXCoord,int aYCoord);
1.415 + int DoLoadFile(fstream& aFile);
1.416 + int DoLoadRom(fstream& aFile);
1.417 + int ExpandByteRLEData(char* aDest,int aDestSize,char* aSrce,int aSrceSize);
1.418 + int ExpandTwelveBitRLEData(char* aDest,int aDestSizeInBytes,char* aSrce,int aSrceSizeInBytes);
1.419 + int ExpandSixteenBitRLEData(char* aDest,int aDestSizeInBytes,char* aSrce,int aSrceSizeInBytes);
1.420 + int ExpandTwentyFourBitRLEData(char* aDest,int aDestSizeInBytes,char* aSrce,int aSrceSizeInBytes);
1.421 + int ExpandThirtyTwoUBitRLEData(char* aDest,int aDestSizeInBytes,char* aSrce,int aSrceSizeInBytes);
1.422 + int ExpandThirtyTwoABitRLEData(char* aDest,int aDestSizeInBytes,char* aSrce,int aSrceSizeInBytes);
1.423 + int Decompress(int aSize);
1.424 +private:
1.425 + SEpocBitmapHeader iOriginalPbmHeader;
1.426 + SEpocBitmapHeader iPbmHeader;
1.427 + char* iPbmBits;
1.428 + };
1.429 +
1.430 +class BitmapUtils
1.431 +/**
1.432 +@internalComponent
1.433 +*/
1.434 + {
1.435 +public:
1.436 + static int ByteWidth(int aPixelWidth,int aBitsPerPixel);
1.437 + };
1.438 +
1.439 +#endif