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: #if defined(__MSVCDOTNET__) || defined(__TOOLS2__) sl@0: #include sl@0: #include sl@0: using namespace std; sl@0: #else //!__MSVCDOTNET__ && !__TOOLS2__ sl@0: #include sl@0: #endif //__MSVCDOTNET__ sl@0: sl@0: #include "TOOLSVER.H" sl@0: #include "BMCONV.H" sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: sl@0: /** sl@0: Returns an informative error message, the result of the program actions performed. sl@0: @return Informative error string sl@0: @param aErrorNumber The error returned from the actions performed sl@0: @param aDestfile The multiple bitmap store file name sl@0: @param aDestCreated True if the multiple bitmap store has been created/modified sl@0: */ sl@0: sl@0: char* ErrorMessage(int aErrorNumber, char* aDestfile=NULL, bool aDestCreated=false) sl@0: { sl@0: // Remove the multiple bitmap store if it has been created/modified during an fstream session and there has been an error sl@0: if(aDestfile && (aErrorNumber != NoError) && (aDestCreated == true)) sl@0: { sl@0: remove(aDestfile); sl@0: } sl@0: sl@0: switch(aErrorNumber) sl@0: { sl@0: case NoError: sl@0: return "Success."; sl@0: case NoMemory: sl@0: return "Out of memory."; sl@0: case Arg: sl@0: return "Bad argument."; sl@0: case Files: sl@0: return "File does not exist"; sl@0: case SourceFile: sl@0: return "Bad source file(s)."; sl@0: case DestFile: sl@0: return "Bad destination file(s)."; sl@0: case CommandFile: sl@0: return "Bad command file."; sl@0: case OutOfRange: sl@0: return "Number of sources/targets mismatch."; sl@0: case TooManyArgs: sl@0: return "Too many arguments."; sl@0: case UnknownCompression: sl@0: return "Unknown source compression type."; sl@0: case CompressionError: sl@0: return "Compression error."; sl@0: case DecompressionError: sl@0: return "Decompression error."; sl@0: case Bpp: sl@0: return "Invalid bitmap mode specified."; sl@0: case PaletteFile: sl@0: return "Bad palette file."; sl@0: case PaletteSupportNotImplemented: sl@0: return "Palettes not supported"; sl@0: case AlphaFiles: sl@0: return "Alpha bitmap file does not exist"; sl@0: case AlphaDimensions: sl@0: return "Alpha channel bitmap's dimensions don't match pixel bitmap's dimensions."; sl@0: case AlphaBpp: sl@0: return "Alpha channel bitmap must be 8bpp."; sl@0: default: sl@0: return "Unknown error!"; sl@0: }; sl@0: } sl@0: sl@0: void Header() sl@0: { sl@0: cout << "\n"; sl@0: cout << "\n"; sl@0: cout << "BMCONV version "<< version << ".\n"; sl@0: } sl@0: sl@0: void Report(int aError) sl@0: { sl@0: Header(); sl@0: cout << ErrorMessage(aError) << "\n"; sl@0: } sl@0: sl@0: /** sl@0: Compiliation information to print to the user at the end of the program. sl@0: @param aQuiet Flag if the user selected quiet output mode sl@0: @param aError The error returned from the actions performed sl@0: @param aType The multiple bitmap store type created sl@0: @param aDestfile The multiple bitmap store file name sl@0: @param aBitmapFiles The array of bitmaps used sl@0: @param aNumFiles The amount of bitmaps used sl@0: @param aDestCreated True if the multiple bitmap store has been created/modified sl@0: */ sl@0: sl@0: void CompilationReport(int aQuiet,int aError,TStoreType aType,char* aDestfile,char** aBitmapFiles,int aNumFiles, bool aDestCreated) sl@0: { sl@0: if(!aQuiet || aError) sl@0: { sl@0: Header(); sl@0: cout << "Compiling...\n"; sl@0: if(aType!=ENoStore) sl@0: cout << "Multiple bitmap store type: "; sl@0: if(aType==EFileStore) sl@0: cout << "File store" << "\n"; sl@0: else if(aType==ERomStore) sl@0: cout << "ROM image store" << "\n"; sl@0: else if(aType==ECompressedRomStore) sl@0: cout << "Compressed ROM image store" << "\n"; sl@0: if(aDestfile!=NULL) sl@0: cout << "Epoc file: " << aDestfile << "\n\n"; sl@0: for(int count=0;count=4 || aArgc==2) sl@0: { sl@0: for(int count=2;count 0) sl@0: { sl@0: BitmapCompiler mp(&aArgPtrs[firstsource],numsources); sl@0: ret = mp.Compile(storeType,compression,destfilename,headerfilename,palettefilename); sl@0: aDestCreated = true; // The multiple bitmap store has been created/modified sl@0: } sl@0: sl@0: CompilationReport(quiet,ret,storeType,destfilename,&aArgPtrs[firstsource],aNumArgs-firstsource,aDestCreated); sl@0: sl@0: return ret; sl@0: } sl@0: sl@0: void GetInfo(char* aSourceFile) sl@0: { sl@0: Header(); sl@0: sl@0: EpocLoader pl; sl@0: int numSources=-1; sl@0: int romFormat=0; sl@0: int ret = pl.EpocBitmapCount(aSourceFile, numSources, romFormat); sl@0: if (ret) sl@0: { sl@0: cout << "Problem reading number of bitmaps \n"; sl@0: cout << ErrorMessage(ret) << "\n"; sl@0: return; sl@0: } sl@0: sl@0: cout << aSourceFile << " is a " << (romFormat? "ROM image":"File store") sl@0: << " containing " << numSources << ((numSources==1)? " bitmap\n":" bitmaps\n"); sl@0: sl@0: for (int count = 0;count 0) sl@0: cout << "Palette entries " << h.iPaletteEntries; sl@0: sl@0: int byteSize = BitmapUtils::ByteWidth(h.iWidthInPixels,h.iBitsPerPixel) * h.iHeightInPixels; sl@0: int compressionRatio = 0; sl@0: if (byteSize > 0) sl@0: compressionRatio = (h.iBitmapSize - sizeof(SEpocBitmapHeader)) * 100 / byteSize; sl@0: sl@0: switch (h.iCompression) sl@0: { sl@0: case ENoBitmapCompression: sl@0: cout << "No compression\n"; sl@0: break; sl@0: case EByteRLECompression: sl@0: cout << "Bytewise RLE compression " << compressionRatio << "%\n"; sl@0: break; sl@0: case ETwelveBitRLECompression: sl@0: cout << "12 bit RLE compression " << compressionRatio << "%\n"; sl@0: break; sl@0: case ESixteenBitRLECompression: sl@0: cout << "16 bit RLE compression " << compressionRatio << "%\n"; sl@0: break; sl@0: case ETwentyFourBitRLECompression: sl@0: cout << "24 bit RLE compression " << compressionRatio << "%\n"; sl@0: break; sl@0: case EThirtyTwoUBitRLECompression: sl@0: cout << "unsigned 32 bit RLE compression (no alpha channel) " << compressionRatio << "%\n"; sl@0: break; sl@0: case EThirtyTwoABitRLECompression: sl@0: cout << "unsigned 32 bit RLE compression (with alpha channel) " << compressionRatio << "%\n"; sl@0: break; sl@0: // case ERLECompressionLast: // Added to supress unhandled switch warning sl@0: default: sl@0: break; sl@0: } sl@0: } sl@0: } sl@0: sl@0: cout << "\n"; sl@0: } sl@0: sl@0: class TAutoPtr sl@0: { sl@0: public: sl@0: TAutoPtr(char** aPtr) : sl@0: iPtr(aPtr) sl@0: { sl@0: } sl@0: ~TAutoPtr() sl@0: { sl@0: delete iPtr; sl@0: } sl@0: private: sl@0: char** iPtr; sl@0: }; sl@0: sl@0: int main(int argc,char* argv[],char* []) sl@0: { sl@0: if (argc <= 1) sl@0: { sl@0: Usage(); sl@0: return 0; sl@0: } sl@0: sl@0: int optMaxCnt = argc; sl@0: sl@0: if(argc==2) // The single argument must be a command file name sl@0: { sl@0: struct stat fileinfo; sl@0: if (stat(argv[1],&fileinfo)==-1) sl@0: { sl@0: Report(CommandFile); sl@0: return 0; sl@0: } sl@0: optMaxCnt = fileinfo.st_size; sl@0: } sl@0: sl@0: char** argptrs = new char*[optMaxCnt]; sl@0: if(!argptrs) sl@0: { sl@0: Report(NoMemory); sl@0: return 0; sl@0: } sl@0: TAutoPtr autoPtr(argptrs); sl@0: memset(argptrs, 0, optMaxCnt * sizeof(char*)); sl@0: sl@0: int numargs = 0; sl@0: if(argc>2) // Explicit arguments are present sl@0: { sl@0: for(int count=0;count