First public contribution.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
21 #if defined(__MSVCDOTNET__) || defined(__TOOLS2__)
25 #else //!__MSVCDOTNET__
28 #endif //__MSVCDOTNET__
33 #define GNUPACK __attribute__((packed))
35 /* on Linux the '/' optchar cannot be supported as filenames can start with '/'. */
36 #define ALTERNATE_OPTCHAR '-'
40 #define ALTERNATE_OPTCHAR '/'
47 const long int KWriteOnceFileStoreUid=268435511;
48 const long int KCBitwiseBitmapUid=268435520;
49 const long int KMultiBitmapRomImageUid=268435521;
50 const long int KMultiBitmapFileImageUid=268435522;
51 const long int KMultiBitmapFileImageChecksum=1194943545;
54 synchronized with enum SEpocBitmapHeader::TColor in \epoc32\include\bitmap.h
58 EMonochromeBitmap = 0,
60 EColorBitmapAlpha =2 ,
61 EColorBitmapAlphaPM = 3,
62 EColorBitmapUndefined = 8
66 Defines the types of file compression.
69 enum TBitmapfileCompression
71 /** Bitmap file is not compressed. */
72 ENoBitmapCompression=0,
73 /** File is compressed using run-length encoding compression. */
75 /** File is compressed using twelve bit run-length encoding compression. */
76 ETwelveBitRLECompression,
77 /** File is compressed using sixteen bit run-length encoding compression. */
78 ESixteenBitRLECompression,
79 /** File is compressed using twenty four bit run-length encoding compression. */
80 ETwentyFourBitRLECompression,
81 /** File is compressed using unsigned thirty two bit run-length encoding compression. */
82 EThirtyTwoUBitRLECompression,
83 /** File is compressed using unsigned thirty two bit run-length encoding compression and includes an alpha channel. */
84 EThirtyTwoABitRLECompression,
85 /** Insert new compression types here */
86 ERLECompressionLast = 255
118 PaletteSupportNotImplemented,
126 struct SEpocBitmapHeader
127 /** Contains information about the bitmap when streaming bitmaps to stores. */
129 /** The size of the bitmap data, in bytes. */
131 /** The size of the structure in which the bitmap data is stored. */
134 long iHeightInPixels;
137 /** The bitmaps number of bits per pixel */
139 /** Whether or not the bitmap is colour. A true value means that the bitmap
142 /** The number of entries in the bitmap's palette. */
143 long iPaletteEntries; // always 0 in current implementations
144 /** The type of compression used to store the bitmap. */
145 TBitmapfileCompression iCompression;
149 #include <pshpack2.h>
157 unsigned char iGreen;
165 #include <pshpack2.h>
170 struct TBitmapFileHeader
172 unsigned short bfType;
173 unsigned long bfSize;
174 unsigned short bfReserved1;
175 unsigned short bfReserved2;
176 unsigned long bfOffBits;
184 struct TBitmapInfoHeader
186 unsigned long biSize;
189 unsigned short biPlanes;
190 unsigned short biBitCount;
191 unsigned long biCompression;
192 unsigned long biSizeImage;
193 long biXPelsPerMeter;
194 long biYPelsPerMeter;
195 unsigned long biClrUsed;
196 unsigned long biClrImportant;
200 #include <pshpack2.h>
207 unsigned char rgbtBlue;
208 unsigned char rgbtGreen;
209 unsigned char rgbtRed;
220 unsigned char iGreen;
222 unsigned char iReserved;
227 24-bit RGB colour value with 8 bits each for red, green and blue.
229 All Graphics drawing functions are specified in terms of a 32-bit TRgb colour
230 containing the three colour values plus 8 unused bits. For hardware which
231 does not support 24-bit colour, a mapping from TRgb to display colours is
234 The supported display modes are enumerated in the TDisplayMode type. In each
235 display mode a unique index can represent each physical colours supported,
236 and which can be mapped onto a full RGB value. The mappings are as follows:
238 16-colour displays use the EGA colour set: black, white, and then both light
239 and dark versions of grey, red, green, blue, cyan, magenta and yellow
241 256-colour displays support 216 colours made up of 6x6x6 RGB values, each
242 containing all possible multiples of 51 for R,G,B values. Additionally, all
243 remaining 10 shades of pure red, green, blue and grey are represented, by
244 adding all remaining multiples of 17. This use of 256 colours is sometimes
245 known as the Netscape colour cube.
247 4096-colour displays effectively support RGB values with 4 bits per primary
250 64k-colour displays effectively support RGB values with 5 bits allocated to
251 red, 6 to green and 5 to blue
253 16 million-colour displays support true colour with 8 bits allocated to each
263 TRgb(long unsigned int val);
264 TRgb(int aRed,int aGreen,int aBlue);
265 TRgb &operator=(const TRgb& aColor);
266 int operator==(const TRgb& aColor);
267 int Difference(const TRgb& col) const;
273 int Color256() const;
275 int Color64K() const;
276 long int Color16M() const;
277 static TRgb Gray2(int aGray2);
278 static TRgb Gray4(int aGray4);
279 static TRgb Gray16(int aGray16);
280 static TRgb Gray256(int aGray256);
281 static TRgb Color16(int aColor16);
282 static TRgb Color256(int aColor256);
283 static TRgb Color4K(int aColor64K);
284 static TRgb Color64K(int aColor64K);
285 static TRgb Color16M(long int aColor16M);
288 unsigned char iGreen;
290 unsigned char iSpare;
304 SEpocBitmapHeader iHeader;
306 int iDataOffset; // offset from "this"
311 Historical note - Pbm is an abbreviation for "Symbian Bitmap"
316 BitmapCompiler(char* aSourcefilenames[],int aNumSources);
318 int Compile(TStoreType aSt,int aCompress,char* aDestfilename,char* aHeaderFilename,char* aPaletteFilename);
320 int AllocatePbmSourcesArray();
321 int LoadSourcefiles();
322 int LoadPbmFile(char* aPbmFilename);
323 int RomImage(bool aCompress);
324 int FileImage(int aCompress);
325 int WriteRomheader();
326 int WriteRombitmap(SEpocBitmapHeader* aPbm);
327 int WriteFileheader();
328 int WriteFilebitmap(SEpocBitmapHeader* aPbm);
329 int WriteHeadStream();
330 int CreateHeader(char* aHeaderFilename);
331 char* UnadornedName(char* aName); // returns pointer to static buffer
332 int LoadPalette(char* aPaletteFilename);
333 void CalculateInversePalette();
335 int CompressBitmap(SEpocBitmapHeader*& aPbm);
336 int CompressByteData(char*& aDest,char* aSrce,int aSize);
337 int WriteCompressedByteData(char*& aDest,char* aData,int aLength, const char* aDestEnd);
338 int WriteCompressedByteValues(char*& aDest,char aValue,int aLength, const char* aDestEnd);
339 int CompressTwelveBitData(char*& aDest,char* aSrce,int aSizeInBytes);
340 int WriteCompressedTwelveBitData(unsigned short*& aDest,unsigned short aData,int aLength);
341 int CompressSixteenBitData(char*& aDest,char* aSrce,int aSize);
342 int WriteCompressedSixteenBitData(char*& aDest,unsigned short* aData,int aLength, const char* aDestEnd);
343 int WriteCompressedSixteenBitValues(char*& aDest,unsigned short aValue,int aLength, const char* aDestEnd);
344 int CompressTwentyFourBitData(char*& aDest,char* aSrce,int aSizeInBytes);
345 int WriteCompressedTwentyFourBitData(char*& aDest,char* aData,int aLength, const char* aDestEnd);
346 int WriteCompressedTwentyFourBitValues(char*& aDest,char aComponent1,char aComponent2,char aComponent3,int aLength, const char* aDestEnd);
347 int CompressThirtyTwoUBitData(char*& aDest,char* aSrce,int aSizeInBytes);
348 int WriteCompressedThirtyTwoUBitData(char*& aDest,char* aData, int aLength, const char* aDestEnd);
349 int WriteCompressedThirtyTwoUBitValues(char*& aDest,char aComponent1, char aComponent2,char aComponent3, int aLength, const char* aDestEnd);
350 int TrueColorPointerCompare(char* aColorPointer,char aComponent1,char aComponent2,char aComponent3);
351 int CompressThirtyTwoABitData(char*& aDest,char* aSrce,int aSizeInBytes);
352 int WriteCompressedThirtyTwoABitData(char*& aDest,char* aData,int aLength,const char* aDestEnd);
353 int WriteCompressedThirtyTwoABitValues(char*& aDest,char aComponent1,char aComponent2,char aComponent3,char aComponent4,int aLength,const char* aDestEnd);
354 int ColorAlphaPointerCompare(char* aColorPointer,char aComponent1,char aComponent2,char aComponent3,char aComponent4);
355 int ReadHexString(char aHexBuf[10],char*& aDataPtr,char* aDataPtrLimit);
356 int HexToInt(char aHighNibble,char aLowNibble);
357 int HexToInt(char aNibble);
358 static void CopyTail(void* aDst, void* aSrc, int aFullSize, int aSkipped);
361 char** iSourcefilenames;
362 SEpocBitmapHeader** iPbmSources;
366 char iInversePalette[4096];
377 int LoadBitmap(char* aFileName,int aBpp,TBitmapColor aColor,SEpocBitmapHeader*& aPbm);
379 int DoLoad(char* aFileName);
380 int DoLoadAlpha(char* aAlphaFileName);
381 int DoConvert(int aBpp,TBitmapColor aColor,SEpocBitmapHeader*& aPbm);
382 TRgb GetBmpPixel(long aXCoord,long aYCoord);
383 unsigned char GetAlphaPixel(long aXCoord,long aYCoord);
385 TBitmapInfoHeader iBmpHeader;
387 TRgbQuad* iBmpColors;
400 int EpocBitmapCount(char* aFilename,int& aCount,int& isRomFormat);
401 int LoadEpocBitmap(char* aFilename,int aIndex);
402 int SaveBitmap(char* aFilename);
403 int SaveAlpha(char* aFilename);
404 int DupBitmap(SEpocBitmapHeader*& aPbm);
405 int ValidateEpocBitmap(char* aFilename);
406 SEpocBitmapHeader Header() const { return iOriginalPbmHeader;};
408 int LoadFile(char* aFilename,int aIndex);
409 int LoadRom(char* aFilename,int aIndex);
410 TRgb GetPixel(int aXCoord,int aYCoord);
411 unsigned char GetAlpha(int aXCoord,int aYCoord);
412 int DoLoadFile(fstream& aFile);
413 int DoLoadRom(fstream& aFile);
414 int ExpandByteRLEData(char* aDest,int aDestSize,char* aSrce,int aSrceSize);
415 int ExpandTwelveBitRLEData(char* aDest,int aDestSizeInBytes,char* aSrce,int aSrceSizeInBytes);
416 int ExpandSixteenBitRLEData(char* aDest,int aDestSizeInBytes,char* aSrce,int aSrceSizeInBytes);
417 int ExpandTwentyFourBitRLEData(char* aDest,int aDestSizeInBytes,char* aSrce,int aSrceSizeInBytes);
418 int ExpandThirtyTwoUBitRLEData(char* aDest,int aDestSizeInBytes,char* aSrce,int aSrceSizeInBytes);
419 int ExpandThirtyTwoABitRLEData(char* aDest,int aDestSizeInBytes,char* aSrce,int aSrceSizeInBytes);
420 int Decompress(int aSize);
422 SEpocBitmapHeader iOriginalPbmHeader;
423 SEpocBitmapHeader iPbmHeader;
433 static int ByteWidth(int aPixelWidth,int aBitsPerPixel);