os/graphics/graphicstools/gdi_tools/bmconv/MAINFUNC.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#if defined(__MSVCDOTNET__) || defined(__TOOLS2__)
sl@0
    17
#include <ostream>
sl@0
    18
#include <iostream>
sl@0
    19
using namespace std;
sl@0
    20
#else //!__MSVCDOTNET__ && !__TOOLS2__
sl@0
    21
#include <ostream.h>
sl@0
    22
#endif //__MSVCDOTNET__
sl@0
    23
sl@0
    24
#include "TOOLSVER.H"
sl@0
    25
#include "BMCONV.H"
sl@0
    26
#include <sys/types.h>
sl@0
    27
#include <sys/stat.h>
sl@0
    28
#include <stdio.h>
sl@0
    29
sl@0
    30
sl@0
    31
/**
sl@0
    32
Returns an informative error message, the result of the program actions performed.
sl@0
    33
@return Informative error string
sl@0
    34
@param aErrorNumber The error returned from the actions performed
sl@0
    35
@param aDestfile The multiple bitmap store file name
sl@0
    36
@param aDestCreated True if the multiple bitmap store has been created/modified
sl@0
    37
*/
sl@0
    38
sl@0
    39
char* ErrorMessage(int aErrorNumber, char* aDestfile=NULL, bool aDestCreated=false)
sl@0
    40
	{
sl@0
    41
	// Remove the multiple bitmap store if it has been created/modified during an fstream session and there has been an error
sl@0
    42
	if(aDestfile && (aErrorNumber != NoError) && (aDestCreated == true))
sl@0
    43
		{
sl@0
    44
		remove(aDestfile);
sl@0
    45
		}
sl@0
    46
sl@0
    47
	switch(aErrorNumber)
sl@0
    48
		{
sl@0
    49
		case NoError:
sl@0
    50
			return "Success.";
sl@0
    51
		case NoMemory:
sl@0
    52
			return "Out of memory.";
sl@0
    53
		case Arg:
sl@0
    54
			return "Bad argument.";
sl@0
    55
		case Files:
sl@0
    56
			return "File does not exist";
sl@0
    57
		case SourceFile:
sl@0
    58
			return "Bad source file(s).";
sl@0
    59
		case DestFile:
sl@0
    60
			return "Bad destination file(s).";
sl@0
    61
		case CommandFile:
sl@0
    62
			return "Bad command file.";
sl@0
    63
		case OutOfRange:
sl@0
    64
			return "Number of sources/targets mismatch.";
sl@0
    65
		case TooManyArgs:
sl@0
    66
			return "Too many arguments.";
sl@0
    67
		case UnknownCompression:
sl@0
    68
			return "Unknown source compression type.";
sl@0
    69
		case CompressionError:
sl@0
    70
			return "Compression error.";
sl@0
    71
		case DecompressionError:
sl@0
    72
			return "Decompression error.";
sl@0
    73
		case Bpp:
sl@0
    74
			return "Invalid bitmap mode specified.";
sl@0
    75
		case PaletteFile:
sl@0
    76
			return "Bad palette file.";
sl@0
    77
		case PaletteSupportNotImplemented:
sl@0
    78
			return "Palettes not supported";
sl@0
    79
		case AlphaFiles:
sl@0
    80
			return "Alpha bitmap file does not exist";
sl@0
    81
		case AlphaDimensions:
sl@0
    82
			return "Alpha channel bitmap's dimensions don't match pixel bitmap's dimensions.";
sl@0
    83
		case AlphaBpp:
sl@0
    84
			return "Alpha channel bitmap must be 8bpp.";
sl@0
    85
		default:
sl@0
    86
			return "Unknown error!";
sl@0
    87
		};
sl@0
    88
	}
sl@0
    89
sl@0
    90
void Header()
sl@0
    91
	{
sl@0
    92
	cout << "\n";
sl@0
    93
	cout << "\n";
sl@0
    94
	cout << "BMCONV version "<< version << ".\n";
sl@0
    95
	}
sl@0
    96
	
sl@0
    97
void Report(int aError)
sl@0
    98
	{
sl@0
    99
	Header();
sl@0
   100
	cout << ErrorMessage(aError) << "\n";
sl@0
   101
	}
sl@0
   102
sl@0
   103
/**
sl@0
   104
Compiliation information to print to the user at the end of the program.
sl@0
   105
@param aQuiet Flag if the user selected quiet output mode
sl@0
   106
@param aError The error returned from the actions performed
sl@0
   107
@param aType The multiple bitmap store type created
sl@0
   108
@param aDestfile The multiple bitmap store file name
sl@0
   109
@param aBitmapFiles The array of bitmaps used
sl@0
   110
@param aNumFiles The amount of bitmaps used
sl@0
   111
@param aDestCreated True if the multiple bitmap store has been created/modified
sl@0
   112
*/
sl@0
   113
sl@0
   114
void CompilationReport(int aQuiet,int aError,TStoreType aType,char* aDestfile,char** aBitmapFiles,int aNumFiles, bool aDestCreated)
sl@0
   115
	{	
sl@0
   116
	if(!aQuiet || aError)
sl@0
   117
		{
sl@0
   118
		Header();
sl@0
   119
		cout << "Compiling...\n";
sl@0
   120
		if(aType!=ENoStore)
sl@0
   121
			cout << "Multiple bitmap store type: ";
sl@0
   122
		if(aType==EFileStore)
sl@0
   123
			cout << "File store" << "\n";
sl@0
   124
		else if(aType==ERomStore)
sl@0
   125
			cout << "ROM image store" << "\n";
sl@0
   126
		else if(aType==ECompressedRomStore)
sl@0
   127
			cout << "Compressed ROM image store" << "\n";
sl@0
   128
		if(aDestfile!=NULL)
sl@0
   129
			cout << "Epoc file: " << aDestfile << "\n\n";
sl@0
   130
		for(int count=0;count<aNumFiles;count++)
sl@0
   131
			{
sl@0
   132
			cout << "Bitmap file " << count+1 << "	: ";
sl@0
   133
			cout << aBitmapFiles[count] << "\n";
sl@0
   134
			}
sl@0
   135
		cout << ErrorMessage(aError, aDestfile, aDestCreated) << "\n";
sl@0
   136
		}
sl@0
   137
	}
sl@0
   138
	
sl@0
   139
void DecompilationReport(int aError,char* aDestfile,char** aBitmapFiles,int aNumFiles)
sl@0
   140
	{	
sl@0
   141
	Header();
sl@0
   142
	cout << "Decompiling...\n";
sl@0
   143
	if(aDestfile!=NULL)
sl@0
   144
		cout << "Epoc file: " << aDestfile << "\n\n";
sl@0
   145
	for(int count=0;count<aNumFiles;count++)
sl@0
   146
		{
sl@0
   147
		cout << "Bitmap file " << count+1 << "	: ";
sl@0
   148
		cout << aBitmapFiles[count] << "\n";
sl@0
   149
		}
sl@0
   150
	cout << ErrorMessage(aError) << "\n";
sl@0
   151
	}
sl@0
   152
	
sl@0
   153
void Usage()
sl@0
   154
    {
sl@0
   155
	cout << "\n";
sl@0
   156
	cout << "BMCONV version "<< version << ".\n";
sl@0
   157
	cout << "Symbian OS multiple bitmap file/rom store conversion program.\n";
sl@0
   158
	cout << "Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies).";
sl@0
   159
	cout << "\n";
sl@0
   160
	cout << "\n";
sl@0
   161
	cout << "Usage:\n";
sl@0
   162
	cout << "BMCONV [-r|-s|-n] [-hfilename] [-q] [-pfilename] epocfile [OPT]bmp_1 ... [OPT]bmp_n\n";
sl@0
   163
	cout << "BMCONV [-r|-s|-n] [-q] [-pfilename] epocfile -mepocfile2\n";
sl@0
   164
	cout << "BMCONV -u epocfile bmp_1 [... bmp_n]\n";
sl@0
   165
	cout << "BMCONV -v epocfile\n";
sl@0
   166
	cout << "BMCONV commandfile\n";
sl@0
   167
	cout << "\n";
sl@0
   168
	cout << " -r specifies a ROM image destination file,\n";
sl@0
   169
	cout << " -s specifies a compressed ROM image file,\n";
sl@0
   170
	cout << " -n disables bitmap File Store compression,\n";
sl@0
   171
	cout << " the default is a compressed File Store file.\n\n";
sl@0
   172
	cout << " -q specifies quiet mode - only errors are reported.\n\n";
sl@0
   173
	cout << " -hfilename specifies the filename for the automatic\n";
sl@0
   174
	cout << " generation of a header file for inclusion into code.\n\n";
sl@0
   175
	cout << " -pfilename gives the filename of a palette file containing 256 hex\n";
sl@0
   176
	cout << " numbers (0x00BBGGRR) specifying the palette for 8bpp colour bitmaps.\n";
sl@0
   177
	cout << " (Omission results in the use of a default palette.)\n\n";
sl@0
   178
	cout << " OPT may be one of -1, -2, -4, -8, -c4, -c8, -c12, -c16, -c24 -c32 -c32a\n";
sl@0
   179
	cout << " specifying bits per pixel and grey-scale-colour, or -mepocfile2\n";
sl@0
   180
	cout << " to specify an existing multiple bitmap file. default is -2.\n\n";
sl@0
   181
	cout << " To avoid ambiguity when specifying -c32 with a bitmap file whose name\n";
sl@0
   182
	cout << " begins with an 'a', use a relative or direct directory reference\n";
sl@0
   183
	cout << " e.g. -c32.\\abitmap.bmp or -c32c:\\abitmap.bmp\n";
sl@0
   184
	cout << " Directory names must not include spaces.\n\n";
sl@0
   185
	cout << " -c32a specifies use of an alpha channel in a 32bpp bitmap. Alpha data\n";
sl@0
   186
	cout << " is supplied in a separate 8bpp bmp file with identical dimensions to\n";
sl@0
   187
	cout << " the pixel data. This file must be named as bmp_n with the suffix '-alpha'\n";
sl@0
   188
	cout << " e.g. if bmp_1 is 'my.bmp' then the file 'my-alpha.bmp' is required in the\n";
sl@0
   189
	cout << " same directory.  The alpha file does not need to be specified.\n\n";
sl@0
   190
	cout << " epocfile specifies the epoc multi-bitmap file name.\n";
sl@0
   191
	cout << " bmp_n specifies the nth bitmap file name.\n\n";
sl@0
   192
	cout << " -u decompiles epocfile to bmp_1,...,bmp_n.\n";
sl@0
   193
	cout << " If an alpha channel is present then a further, 8bpp file is output for \n";
sl@0
   194
	cout << " the alpha data, named with an '-alpha' suffix as described above.\n\n";
sl@0
   195
	cout << " -v displays a summary of the bitmaps in epocfile\n";
sl@0
   196
	cout << " otherwise bmp_1,...,bmp_n are compiled to epocfile\n\n";
sl@0
   197
	cout << " commandfile specifies a file containing the commandline\n";
sl@0
   198
	cout << " with commands separated by spaces or newlines.\n\n";
sl@0
   199
	cout << " When bmconv is used on Windows, options may start with '/' or '-'\n";
sl@0
   200
sl@0
   201
	}
sl@0
   202
sl@0
   203
int IsWhiteSpace(char aCharacter)
sl@0
   204
	{
sl@0
   205
	return(aCharacter==' ' || aCharacter=='\n' || aCharacter=='\r' || aCharacter==0x1a);
sl@0
   206
	}
sl@0
   207
sl@0
   208
int ProcessCommandFile(char* aCommandFileName,char** aArgPtrs,int& aNumArgs)
sl@0
   209
    {
sl@0
   210
	struct stat fileinfo;
sl@0
   211
	if (stat(aCommandFileName,&fileinfo)==-1)
sl@0
   212
		return CommandFile;
sl@0
   213
sl@0
   214
	int filesize=fileinfo.st_size;
sl@0
   215
	if (filesize==0)
sl@0
   216
		return NoError;
sl@0
   217
#if defined(__MSVCDOTNET__) || defined(__TOOLS2__)
sl@0
   218
	fstream commandfile(aCommandFileName, ios::in | ios::binary);
sl@0
   219
#else //!__MSVCDOTNET__
sl@0
   220
	fstream commandfile(aCommandFileName, ios::in | ios::binary | ios::nocreate);
sl@0
   221
#endif //__MSVCDOTNET__
sl@0
   222
	if(!commandfile.is_open())
sl@0
   223
		return CommandFile;
sl@0
   224
sl@0
   225
	char* commandData=new char[filesize+1];
sl@0
   226
	if(commandData==NULL)
sl@0
   227
		return NoMemory;
sl@0
   228
sl@0
   229
	memset(commandData,0,filesize+1);
sl@0
   230
	commandfile.read(commandData,filesize);
sl@0
   231
	commandData[filesize]='\0';
sl@0
   232
sl@0
   233
	char* commandptr = (char*)commandData;
sl@0
   234
	char* commandptrLimit = (char*)(commandData + filesize);
sl@0
   235
	while (commandptr < commandptrLimit)
sl@0
   236
		{
sl@0
   237
		if(*commandptr=='/' && *(commandptr+1)=='/')
sl@0
   238
			while(*commandptr!='\n' && *commandptr!='\r' && commandptr < commandptrLimit)
sl@0
   239
				*commandptr++=' ';
sl@0
   240
		else if (*commandptr==0x1a)
sl@0
   241
			*commandptr++=' ';
sl@0
   242
		commandptr++;
sl@0
   243
		}
sl@0
   244
sl@0
   245
	commandptr = (char*)commandData;
sl@0
   246
	while (commandptr < commandptrLimit)
sl@0
   247
		{
sl@0
   248
		while(IsWhiteSpace(*commandptr) && commandptr < commandptrLimit)
sl@0
   249
			*commandptr++='\0';
sl@0
   250
		if (commandptr == commandptrLimit)
sl@0
   251
			break;
sl@0
   252
		aArgPtrs[aNumArgs]=commandptr;
sl@0
   253
		while(!IsWhiteSpace(*commandptr) && commandptr < commandptrLimit)
sl@0
   254
			commandptr++;
sl@0
   255
		if (commandptr == commandptrLimit)
sl@0
   256
			break;
sl@0
   257
		aNumArgs++;
sl@0
   258
		}
sl@0
   259
sl@0
   260
	commandfile.close();
sl@0
   261
	return NoError;
sl@0
   262
    }
sl@0
   263
sl@0
   264
int Decompile(int aArgc,int aNumArgs,char** aArgPtrs)
sl@0
   265
	{
sl@0
   266
	int ret=OutOfRange;
sl@0
   267
	char* destfilename=aArgPtrs[1];
sl@0
   268
sl@0
   269
	if(aArgc>=4 || aArgc==2)
sl@0
   270
		{
sl@0
   271
		for(int count=2;count<aNumArgs;count++)
sl@0
   272
			{
sl@0
   273
			EpocLoader pl;
sl@0
   274
      ret=pl.LoadEpocBitmap(destfilename,count-2);
sl@0
   275
      if(!ret) ret=pl.SaveBitmap(aArgPtrs[count]);
sl@0
   276
      if(ret) break;
sl@0
   277
			}
sl@0
   278
		DecompilationReport(ret,destfilename,&aArgPtrs[2],aNumArgs-2);
sl@0
   279
		}
sl@0
   280
	else
sl@0
   281
		DecompilationReport(ret,NULL,NULL,0);
sl@0
   282
sl@0
   283
	return ret;
sl@0
   284
	}
sl@0
   285
sl@0
   286
int Compile(int aNumArgs,int aArgArraySize, char** aArgPtrs)
sl@0
   287
	{
sl@0
   288
	TStoreType storeType = EFileStore;
sl@0
   289
	int compression = 1;
sl@0
   290
	int quiet = 0;
sl@0
   291
	char* headerfilename = NULL;
sl@0
   292
	char* palettefilename = NULL;
sl@0
   293
	char* destfilename = NULL;
sl@0
   294
	int ret = OutOfRange;
sl@0
   295
	bool aDestCreated = false;
sl@0
   296
sl@0
   297
	for(int argnum=0;argnum<aNumArgs;argnum++)
sl@0
   298
		{
sl@0
   299
		if(aArgPtrs[argnum] && (aArgPtrs[argnum][0] == OPTCHAR || aArgPtrs[argnum][0]==ALTERNATE_OPTCHAR))
sl@0
   300
			{
sl@0
   301
			if(aArgPtrs[argnum][1]=='r' || aArgPtrs[argnum][1]=='R')
sl@0
   302
				{
sl@0
   303
				if(storeType==ECompressedRomStore)
sl@0
   304
					{
sl@0
   305
					ret=TooManyArgs;
sl@0
   306
					CompilationReport(quiet,ret,storeType,NULL,NULL,0,aDestCreated);
sl@0
   307
					return ret;
sl@0
   308
					}
sl@0
   309
				storeType=ERomStore;
sl@0
   310
				aArgPtrs[argnum] = NULL;
sl@0
   311
				}
sl@0
   312
			else if(aArgPtrs[argnum][1]=='s' || aArgPtrs[argnum][1]=='S')
sl@0
   313
				{
sl@0
   314
				if(storeType==ERomStore)
sl@0
   315
					{
sl@0
   316
					ret=TooManyArgs;
sl@0
   317
					CompilationReport(quiet,ret,storeType,NULL,NULL,0,aDestCreated);
sl@0
   318
					return ret;
sl@0
   319
					}
sl@0
   320
				storeType=ECompressedRomStore;
sl@0
   321
				aArgPtrs[argnum] = NULL;
sl@0
   322
				}
sl@0
   323
			else if(aArgPtrs[argnum][1]=='n' || aArgPtrs[argnum][1]=='N')
sl@0
   324
				{
sl@0
   325
				compression=0;
sl@0
   326
				aArgPtrs[argnum] = NULL;
sl@0
   327
				}
sl@0
   328
			else if(aArgPtrs[argnum][1]=='h' || aArgPtrs[argnum][1]=='H')
sl@0
   329
				{
sl@0
   330
				headerfilename = &aArgPtrs[argnum][2];
sl@0
   331
				aArgPtrs[argnum] = NULL;
sl@0
   332
				}
sl@0
   333
			else if(aArgPtrs[argnum][1]=='q' || aArgPtrs[argnum][1]=='Q')
sl@0
   334
				{
sl@0
   335
				quiet=1;
sl@0
   336
				aArgPtrs[argnum] = NULL;
sl@0
   337
				}
sl@0
   338
			else if(aArgPtrs[argnum][1]=='p' || aArgPtrs[argnum][1]=='P')
sl@0
   339
				{
sl@0
   340
				palettefilename = &aArgPtrs[argnum][2];
sl@0
   341
				aArgPtrs[argnum] = NULL;
sl@0
   342
				}
sl@0
   343
			}
sl@0
   344
		else
sl@0
   345
			break;		// the RNHQP arguments must precede the output filename
sl@0
   346
		}
sl@0
   347
sl@0
   348
	int firstsource=0;
sl@0
   349
	while(firstsource<aArgArraySize && aArgPtrs[firstsource]==NULL)
sl@0
   350
		firstsource++;
sl@0
   351
	if(firstsource==aArgArraySize) firstsource=0;
sl@0
   352
	destfilename=aArgPtrs[firstsource];
sl@0
   353
	firstsource++;
sl@0
   354
	int numsources=firstsource;
sl@0
   355
	while(numsources<aArgArraySize && aArgPtrs[numsources]!=NULL)
sl@0
   356
		numsources++;
sl@0
   357
	if(numsources==aArgArraySize) numsources=0;
sl@0
   358
	numsources-=firstsource;
sl@0
   359
sl@0
   360
	if (numsources > 0)
sl@0
   361
		{
sl@0
   362
		BitmapCompiler mp(&aArgPtrs[firstsource],numsources);
sl@0
   363
		ret = mp.Compile(storeType,compression,destfilename,headerfilename,palettefilename);
sl@0
   364
		aDestCreated = true;		// The multiple bitmap store has been created/modified
sl@0
   365
		}
sl@0
   366
sl@0
   367
	CompilationReport(quiet,ret,storeType,destfilename,&aArgPtrs[firstsource],aNumArgs-firstsource,aDestCreated);
sl@0
   368
sl@0
   369
	return ret;
sl@0
   370
	}
sl@0
   371
sl@0
   372
void GetInfo(char* aSourceFile)
sl@0
   373
	{
sl@0
   374
	Header();
sl@0
   375
sl@0
   376
	EpocLoader pl;
sl@0
   377
	int numSources=-1;
sl@0
   378
	int romFormat=0;
sl@0
   379
	int ret = pl.EpocBitmapCount(aSourceFile, numSources, romFormat);
sl@0
   380
	if (ret)
sl@0
   381
		{
sl@0
   382
		cout << "Problem reading number of bitmaps \n";
sl@0
   383
		cout << ErrorMessage(ret) << "\n";
sl@0
   384
		return;
sl@0
   385
		}
sl@0
   386
sl@0
   387
	cout << aSourceFile << " is a " << (romFormat? "ROM image":"File store") 
sl@0
   388
		<< " containing " << numSources << ((numSources==1)? " bitmap\n":" bitmaps\n");
sl@0
   389
sl@0
   390
	for (int count = 0;count<numSources;count++)
sl@0
   391
		{
sl@0
   392
		ret = pl.LoadEpocBitmap(aSourceFile,count);
sl@0
   393
		if (ret == OutOfRange)
sl@0
   394
			break;
sl@0
   395
		cout << "\n";
sl@0
   396
		if (ret)
sl@0
   397
			{
sl@0
   398
			cout << "Problem loading bitmap number " << count << "\n";
sl@0
   399
			cout << ErrorMessage(ret) << "\n";
sl@0
   400
			break;
sl@0
   401
			}
sl@0
   402
		else
sl@0
   403
			{
sl@0
   404
			SEpocBitmapHeader h = pl.Header();
sl@0
   405
			cout << "Bitmap " << count + 1 << " information:\n";
sl@0
   406
			cout << "Pixel size " << h.iWidthInPixels << " x " << h.iHeightInPixels << "\n";
sl@0
   407
			cout << "Twips size " << h.iWidthInTwips << " x " << h.iHeightInTwips << "\n";
sl@0
   408
			cout << h.iBitsPerPixel << " Bpp ";
sl@0
   409
			if (h.iColor == EColorBitmap)
sl@0
   410
				cout << "Colour";
sl@0
   411
			else if (h.iColor == EColorBitmapAlpha || h.iColor == EColorBitmapAlphaPM)
sl@0
   412
				cout << "Colour with alpha channel";
sl@0
   413
			else if(h.iColor == EMonochromeBitmap)
sl@0
   414
				cout << "Monochrome";
sl@0
   415
			else
sl@0
   416
				cout << "Unknown colour format";
sl@0
   417
			cout << "\n";
sl@0
   418
			if (h.iPaletteEntries > 0)
sl@0
   419
				cout << "Palette entries " << h.iPaletteEntries;
sl@0
   420
sl@0
   421
			int byteSize = BitmapUtils::ByteWidth(h.iWidthInPixels,h.iBitsPerPixel) * h.iHeightInPixels;
sl@0
   422
			int compressionRatio = 0;
sl@0
   423
			if (byteSize > 0)
sl@0
   424
				compressionRatio = (h.iBitmapSize - sizeof(SEpocBitmapHeader)) * 100 / byteSize;
sl@0
   425
sl@0
   426
			switch (h.iCompression)
sl@0
   427
				{
sl@0
   428
			case ENoBitmapCompression:
sl@0
   429
				cout << "No compression\n";
sl@0
   430
				break;
sl@0
   431
			case EByteRLECompression:
sl@0
   432
				cout << "Bytewise RLE compression " << compressionRatio << "%\n";
sl@0
   433
				break;
sl@0
   434
			case ETwelveBitRLECompression:
sl@0
   435
				cout << "12 bit RLE compression " << compressionRatio << "%\n";
sl@0
   436
				break;
sl@0
   437
			case ESixteenBitRLECompression:
sl@0
   438
				cout << "16 bit RLE compression " << compressionRatio << "%\n";
sl@0
   439
				break;
sl@0
   440
			case ETwentyFourBitRLECompression:
sl@0
   441
				cout << "24 bit RLE compression " << compressionRatio << "%\n";
sl@0
   442
				break;
sl@0
   443
			case EThirtyTwoUBitRLECompression:
sl@0
   444
				cout << "unsigned 32 bit RLE compression (no alpha channel) " << compressionRatio << "%\n";
sl@0
   445
				break;
sl@0
   446
			case EThirtyTwoABitRLECompression:
sl@0
   447
				cout << "unsigned 32 bit RLE compression (with alpha channel) " << compressionRatio << "%\n";
sl@0
   448
				break;
sl@0
   449
		//	case ERLECompressionLast: // Added to supress unhandled switch warning
sl@0
   450
			default:
sl@0
   451
				break;
sl@0
   452
				}
sl@0
   453
			}
sl@0
   454
		}
sl@0
   455
sl@0
   456
	cout << "\n";
sl@0
   457
	}
sl@0
   458
sl@0
   459
class TAutoPtr
sl@0
   460
	{
sl@0
   461
public:
sl@0
   462
	TAutoPtr(char** aPtr) :
sl@0
   463
		iPtr(aPtr)
sl@0
   464
		{
sl@0
   465
		}
sl@0
   466
	~TAutoPtr()
sl@0
   467
		{
sl@0
   468
		delete iPtr;
sl@0
   469
		}
sl@0
   470
private:
sl@0
   471
	char** iPtr;
sl@0
   472
	};
sl@0
   473
sl@0
   474
int main(int argc,char* argv[],char* [])
sl@0
   475
    {
sl@0
   476
	if (argc <= 1)
sl@0
   477
		{
sl@0
   478
		Usage();
sl@0
   479
		return 0;
sl@0
   480
		}
sl@0
   481
sl@0
   482
	int optMaxCnt = argc;
sl@0
   483
sl@0
   484
	if(argc==2) // The single argument must be a command file name
sl@0
   485
		{
sl@0
   486
		struct stat fileinfo;
sl@0
   487
		if (stat(argv[1],&fileinfo)==-1)
sl@0
   488
			{
sl@0
   489
			Report(CommandFile);
sl@0
   490
			return 0;
sl@0
   491
			}
sl@0
   492
		optMaxCnt = fileinfo.st_size;
sl@0
   493
		}
sl@0
   494
sl@0
   495
	char** argptrs = new char*[optMaxCnt];
sl@0
   496
	if(!argptrs)
sl@0
   497
		{
sl@0
   498
		Report(NoMemory);
sl@0
   499
		return 0;
sl@0
   500
		}
sl@0
   501
	TAutoPtr autoPtr(argptrs);
sl@0
   502
	memset(argptrs, 0, optMaxCnt * sizeof(char*));
sl@0
   503
sl@0
   504
	int numargs = 0;
sl@0
   505
	if(argc>2) // Explicit arguments are present
sl@0
   506
		{
sl@0
   507
		for(int count=0;count<argc-1;count++)
sl@0
   508
			argptrs[count]=argv[count+1];
sl@0
   509
		numargs = argc-1;
sl@0
   510
		}
sl@0
   511
	else // The single argument must be a command file name
sl@0
   512
		{
sl@0
   513
		int ret = ProcessCommandFile(argv[1],argptrs,numargs);
sl@0
   514
		if (ret)
sl@0
   515
			{
sl@0
   516
			Report(ret);
sl@0
   517
			return 0;
sl@0
   518
			}
sl@0
   519
		}
sl@0
   520
sl@0
   521
	if ((argptrs[0]!=NULL && (argptrs[0][0]==OPTCHAR || argptrs[0][0]==ALTERNATE_OPTCHAR)) && (argptrs[0][1]=='u' || argptrs[0][1]=='U')) {
sl@0
   522
		return Decompile(argc,numargs,argptrs); }
sl@0
   523
sl@0
   524
	if ((argptrs[0]!=NULL && (argptrs[0][0]==OPTCHAR || argptrs[0][0]==ALTERNATE_OPTCHAR)) && (argptrs[0][1]=='v' || argptrs[0][1]=='V'))
sl@0
   525
		{
sl@0
   526
		GetInfo(argptrs[1]);
sl@0
   527
		return 0;
sl@0
   528
		}
sl@0
   529
sl@0
   530
	return Compile(numargs,optMaxCnt,argptrs);
sl@0
   531
    }
sl@0
   532