fnt2bdf.c 17.9 KB
Newer Older
Alexandre Julliard's avatar
Alexandre Julliard committed
1 2 3 4 5 6 7
/************************************************
 *
 * Extract fonts from .fnt or Windows DLL files
 * and convert them to the .bdf format.
 *
 * Copyright 1994-1996 Kevin Carothers and Alex Korobka
 *
8 9 10 11 12 13 14 15 16 17 18 19
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
20
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Alexandre Julliard's avatar
Alexandre Julliard committed
21 22
 */

23
#include "config.h"
24
#include "wine/port.h"
25 26 27 28

#ifdef HAVE_SYS_PARAM_H
# include <sys/param.h>
#endif
Alexandre Julliard's avatar
Alexandre Julliard committed
29 30
#include <sys/types.h>
#include <sys/stat.h>
31
#include <stdio.h>
Alexandre Julliard's avatar
Alexandre Julliard committed
32 33
#include <stdlib.h>
#include <string.h>
34 35 36
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
Alexandre Julliard's avatar
Alexandre Julliard committed
37
#include <fcntl.h>
38 39 40 41
#ifdef HAVE_IO_H
# include <io.h>
#endif

Alexandre Julliard's avatar
Alexandre Julliard committed
42 43 44 45 46 47 48 49
#include "fnt2bdf.h"

#define FILE_ERROR	0
#define FILE_DLL	1
#define FILE_FNT	2

/* global options */

50 51 52 53 54 55 56
static int dump_bdf( fnt_fontS* cpe_font_struct, unsigned char* file_buffer);
static int dump_bdf_hdr(FILE* fs, fnt_fontS* cpe_font_struct, unsigned char* file_buffer);

static char* g_lpstrFileName = NULL;
static char* g_lpstrCharSet = NULL;
static char* g_lpstrInputFile = NULL;
static int   g_outputPoints = 0;
Alexandre Julliard's avatar
Alexandre Julliard committed
57 58 59

/* info */

60
static void usage(void)
Alexandre Julliard's avatar
Alexandre Julliard committed
61
{
Alexandre Julliard's avatar
Alexandre Julliard committed
62 63
    printf("Usage: fnt2bdf [-t] [-c charset] [-o basename] [input file]\n");
    printf("  -c charset\tcharset name for OEM_CHARSET fonts\n");
Alexandre Julliard's avatar
Alexandre Julliard committed
64
    printf("  -f basename\tbasic output filename\n");
Alexandre Julliard's avatar
Alexandre Julliard committed
65
    printf("  -t \t\toutput files by point size instead of pixel height\n");
Alexandre Julliard's avatar
Alexandre Julliard committed
66 67 68 69 70
    printf("  input file\tMSWindows .fon, .fnt, .dll, or .exe file.\n");
    printf("\nExample:\n  fnt2bdf -c winsys vgasys.fnt\n\n");
    exit(-1);
}

71
/* convert little-endian value to the local format */
Alexandre Julliard's avatar
Alexandre Julliard committed
72

73
static int return_data_value(enum data_types dtype, void * pChr)
Alexandre Julliard's avatar
Alexandre Julliard committed
74 75 76 77
{
int   ret_val = 0;

    switch(dtype) {
78
        case (dfChar):
Alexandre Julliard's avatar
Alexandre Julliard committed
79 80
            ret_val = (int) *(unsigned char *)pChr;
            break;
81 82

        case(dfShort):
Alexandre Julliard's avatar
Alexandre Julliard committed
83 84 85
            ret_val = *(unsigned char *)pChr;
            ret_val += (*((unsigned char *)pChr + 1) << 8);
            break;
86

Alexandre Julliard's avatar
Alexandre Julliard committed
87 88 89 90 91 92 93 94
        case(dfLong): {
            int  i;

            for(i=3; i >= 0; i--)  {
                ret_val += *((unsigned char *)pChr + i) << (8*i);
                }
            break;
            }
Alexandre Julliard's avatar
Alexandre Julliard committed
95 96
		case(dfString):
			break;
97
        }
Alexandre Julliard's avatar
Alexandre Julliard committed
98 99 100
    return ret_val;
}

101
static int make_bdf_filename(char* name, fnt_fontS* cpe_font_struct, unsigned char* file_buffer)
Alexandre Julliard's avatar
Alexandre Julliard committed
102
{
103
long	l_nameoffset = return_data_value(dfLong, &cpe_font_struct->hdr.fi.dfFace);
Alexandre Julliard's avatar
Alexandre Julliard committed
104 105 106 107
char*   lpChar;

  if( !g_lpstrFileName )
  {
108
    if( !l_nameoffset ||
109
         l_nameoffset > return_data_value(dfLong, &cpe_font_struct->hdr.dfSize) + 1 )
Alexandre Julliard's avatar
Alexandre Julliard committed
110 111 112 113 114 115 116
         return ERROR_DATA;
    lpChar =  (char*)(file_buffer + l_nameoffset);
  }
    else lpChar = g_lpstrFileName;

  strcpy( name, lpChar );

117
  while( (lpChar = strchr( name, ' ')) )
Alexandre Julliard's avatar
Alexandre Julliard committed
118 119 120 121
         *lpChar = '-';

  /* construct a filename from the font typeface, slant, weight, and size */

122
  if( cpe_font_struct->hdr.fi.dfItalic ) strcat(name, "_i" );
Alexandre Julliard's avatar
Alexandre Julliard committed
123 124 125
  else strcat(name, "_r" );

  lpChar = name + strlen( name );
126 127 128
  sprintf(lpChar, "%d-%d.bdf", return_data_value(dfShort, &cpe_font_struct->hdr.fi.dfWeight),
          (g_outputPoints) ? return_data_value(dfShort, &cpe_font_struct->hdr.fi.dfPoints)
			   : return_data_value(dfShort, &cpe_font_struct->hdr.fi.dfPixHeight) );
Alexandre Julliard's avatar
Alexandre Julliard committed
129 130 131 132 133
  return 0;
}

/* parse FONT resource and write .bdf file */

134
static int parse_fnt_data(unsigned char* file_buffer, int length)
Alexandre Julliard's avatar
Alexandre Julliard committed
135
{
136
  fnt_fontS	cpe_font_struct;
Alexandre Julliard's avatar
Alexandre Julliard committed
137 138
  int     	ic=0, t;

Alexandre Julliard's avatar
Alexandre Julliard committed
139
  memcpy((char *) &cpe_font_struct.hdr, file_buffer, sizeof(fnt_hdrS));
Alexandre Julliard's avatar
Alexandre Julliard committed
140 141 142

  /* check font header */

143
  t = return_data_value(dfShort, &cpe_font_struct.hdr.dfVersion);
Alexandre Julliard's avatar
Alexandre Julliard committed
144 145
  if( t != 0x300 && t != 0x200) return ERROR_VERSION;

146 147 148 149 150 151 152
  t = return_data_value(dfShort, &cpe_font_struct.hdr.fi.dfType);
  if (t & 1)
  {
    fprintf(stderr, "Vector fonts not supported\n");
    return ERROR_DATA;
  }

153
  t = return_data_value(dfLong, &cpe_font_struct.hdr.dfSize);
Alexandre Julliard's avatar
Alexandre Julliard committed
154 155
  if( t > length ) return ERROR_SIZE;
  else
156
  {
Alexandre Julliard's avatar
Alexandre Julliard committed
157 158
    /* set up the charWidth/charOffset  structure pairs (dfCharTable)... */

159
    int l_fchar = return_data_value(dfChar, &cpe_font_struct.hdr.fi.dfFirstChar),
160
	l_lchar = return_data_value(dfChar, &cpe_font_struct.hdr.fi.dfLastChar);
161 162 163 164 165 166
    int l_len   = l_lchar - l_fchar + 1;
    int l_ptr = sizeof(fnt_hdrS);

    /* some fields were introduced for Windows 3.x fonts */
    if( return_data_value(dfShort, &cpe_font_struct.hdr.dfVersion) == 0x200 )
	l_ptr -= 30;
Alexandre Julliard's avatar
Alexandre Julliard committed
167 168 169

    /* malloc size = (# chars) * sizeof(WinCharS) */

170
    if((cpe_font_struct.dfCharTable = (WinCharS *) calloc(sizeof(WinCharS), l_len)) == NULL)
Alexandre Julliard's avatar
Alexandre Julliard committed
171 172 173 174 175 176 177 178 179
	return ERROR_MEMORY;

    /* NOW, convert them all to UNIX (lton) notation... */

    for(ic=0; ic < l_len; ic++) {
   	cpe_font_struct.dfCharTable[ic].charWidth = return_data_value(dfShort, &file_buffer[l_ptr]);
	l_ptr += 2;	/* bump by sizeof(short) */


180
	if( return_data_value(dfShort, &cpe_font_struct.hdr.dfVersion) == 0x200) {
181
	    cpe_font_struct.dfCharTable[ic].charOffset =
Alexandre Julliard's avatar
Alexandre Julliard committed
182
			return_data_value(dfShort, &file_buffer[l_ptr]);
183
	    l_ptr += 2;	/* bump by sizeof(short) */
Alexandre Julliard's avatar
Alexandre Julliard committed
184 185
	    }
	else { 	/*  Windows Version 3.0 type font */
186
	    cpe_font_struct.dfCharTable[ic].charOffset =
Alexandre Julliard's avatar
Alexandre Julliard committed
187 188 189 190 191 192 193 194 195 196
			return_data_value(dfLong, &file_buffer[l_ptr]);
	    l_ptr += 4;	/* bump by sizeof(long) */
	    }
	}
    t = dump_bdf(&cpe_font_struct, file_buffer);
    free( cpe_font_struct.dfCharTable );
  }
  return t;
}

197
static int dump_bdf( fnt_fontS* cpe_font_struct, unsigned char* file_buffer)
Alexandre Julliard's avatar
Alexandre Julliard committed
198 199 200
{
  FILE*   fp;
  int	  ic;
201 202
  int	  l_fchar = return_data_value(dfChar, &cpe_font_struct->hdr.fi.dfFirstChar),
	  l_lchar = return_data_value(dfChar, &cpe_font_struct->hdr.fi.dfLastChar);
Alexandre Julliard's avatar
Alexandre Julliard committed
203

Alexandre Julliard's avatar
Alexandre Julliard committed
204
  int     l_len = l_lchar-l_fchar + 1,
205
	  l_hgt = return_data_value(dfChar, &cpe_font_struct->hdr.fi.dfPixHeight);
206
  int	  l_ascent = return_data_value(dfShort, &cpe_font_struct->hdr.fi.dfAscent);
Alexandre Julliard's avatar
Alexandre Julliard committed
207 208 209 210 211
  char    l_filename[256];

    if( (ic = make_bdf_filename(l_filename, cpe_font_struct, file_buffer)) )
	return ic;

212
    if((fp = fopen(l_filename, "w")) == NULL)
Alexandre Julliard's avatar
Alexandre Julliard committed
213 214 215 216 217
    {
      fprintf(stderr, "Couldn't open \"%s\" for output.\n", l_filename);
      return ERROR_FILE;
    }

Alexandre Julliard's avatar
Alexandre Julliard committed
218 219
    ic = dump_bdf_hdr(fp, cpe_font_struct, file_buffer);
    if (ic) return (ic);
Alexandre Julliard's avatar
Alexandre Julliard committed
220 221 222 223 224 225 226

    /* NOW, convert all chars to UNIX (lton) notation... */

    for(ic=0; ic < l_len; ic++) {
	int rowidx, l_span,		/* how many char-cols wide is char? */
	    l_idx = cpe_font_struct->dfCharTable[ic].charOffset;

227
	l_span = (int) (cpe_font_struct->dfCharTable[ic].charWidth-1)/8;
Alexandre Julliard's avatar
Alexandre Julliard committed
228

229
	fprintf(fp, "STARTCHAR %d\n", ic);
Alexandre Julliard's avatar
Alexandre Julliard committed
230
	fprintf(fp, "ENCODING %d\n",   l_fchar);
231
	fprintf(fp, "SWIDTH    %d    %d\n",
232
		cpe_font_struct->dfCharTable[ic].charWidth*1000,
Alexandre Julliard's avatar
Alexandre Julliard committed
233 234
		0);

235
	fprintf(fp, "DWIDTH    %d    %d\n",
Alexandre Julliard's avatar
Alexandre Julliard committed
236 237 238
		cpe_font_struct->dfCharTable[ic].charWidth, 0);

	fprintf(fp, "BBX  %d  %d  %d   %d\n",
239
		cpe_font_struct->dfCharTable[ic].charWidth, l_hgt, 0,
Alexandre Julliard's avatar
Alexandre Julliard committed
240 241 242 243 244 245 246 247 248 249
		l_ascent - l_hgt);

	fprintf(fp, "BITMAP\n");
	for(rowidx=0; rowidx < l_hgt; rowidx++) {
	    switch(l_span) {
		case(0):	/* 1-7 pixels wide font */
		    {
		    fprintf(fp, "%02X\n", (int) file_buffer[l_idx+rowidx]);
		    break;
		    }
250

Alexandre Julliard's avatar
Alexandre Julliard committed
251 252
		case(1):	/* 8-15 pixels wide font */
		    {
253
		    fprintf(fp, "%02X%02X",
Alexandre Julliard's avatar
Alexandre Julliard committed
254 255 256 257 258 259 260
			(int) file_buffer[l_idx+rowidx], file_buffer[l_idx+l_hgt+rowidx]);
		    fprintf(fp, "\n");
		    break;
		    }

		case(2):	/* 16-23 pixels wide font */
		    {
261
		    fprintf(fp, "%02X%02X%02X",
Alexandre Julliard's avatar
Alexandre Julliard committed
262 263 264 265 266 267 268 269 270
			file_buffer[l_idx+rowidx],
		        file_buffer[l_idx+l_hgt+rowidx],
		        file_buffer[l_idx+(2*l_hgt)+rowidx]);
		    fprintf(fp, "\n");
		    break;
		    }

		case(3):	/* 24-31 pixels wide font */
		    {
271
		    fprintf(fp, "%02X%02X%02X%02X",
Alexandre Julliard's avatar
Alexandre Julliard committed
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
			file_buffer[l_idx+rowidx],
			file_buffer[l_idx+l_hgt+rowidx],
			file_buffer[l_idx+(2*l_hgt)+rowidx],
			file_buffer[l_idx+(3*l_hgt)+rowidx]);
		    fprintf(fp, "\n");
		    break;
		    }
		case(4):	/* 32-39 */
		    {
		    fprintf(fp, "%02X%02X%02X%02X%02X",
			file_buffer[l_idx+rowidx],
			file_buffer[l_idx+l_hgt+rowidx],
                        file_buffer[l_idx+(2*l_hgt)+rowidx],
                        file_buffer[l_idx+(3*l_hgt)+rowidx],
			file_buffer[l_idx+(4*l_hgt)+rowidx]);
		    fprintf(fp, "\n");
                    break;
                    }
		default:
		    fclose(fp);
		    unlink(l_filename);
		    return ERROR_DATA;
		}
	    }
	fprintf(fp, "ENDCHAR\n");

	l_fchar++;	/* Go to next one */
	}
fprintf(fp, "ENDFONT\n");
fclose(fp);
return 0;
}


306
static int dump_bdf_hdr(FILE* fs, fnt_fontS* cpe_font_struct, unsigned char* file_buffer)
Alexandre Julliard's avatar
Alexandre Julliard committed
307
{
308
int	l_fchar = return_data_value(dfChar, &cpe_font_struct->hdr.fi.dfFirstChar),
309
	l_lchar = return_data_value(dfChar, &cpe_font_struct->hdr.fi.dfLastChar);
Alexandre Julliard's avatar
Alexandre Julliard committed
310
int     l_len = l_lchar - l_fchar + 1;
311 312 313
long	l_nameoffset = return_data_value(dfLong, &cpe_font_struct->hdr.fi.dfFace);
int	l_cellheight = return_data_value(dfShort, &cpe_font_struct->hdr.fi.dfPixHeight);
int	l_ascent = return_data_value(dfShort, &cpe_font_struct->hdr.fi.dfAscent);
Alexandre Julliard's avatar
Alexandre Julliard committed
314 315 316 317 318

    fprintf(fs, "STARTFONT   2.1\n");

    /* Compose font name */

319
    if( l_nameoffset &&
320
	l_nameoffset < return_data_value(dfLong, &cpe_font_struct->hdr.dfSize) )
Alexandre Julliard's avatar
Alexandre Julliard committed
321 322 323
    {
      int     dpi, point_size;
      char*   lpFace = (char*)(file_buffer + l_nameoffset), *lpChar;
324
      short   tmWeight = return_data_value(dfShort, &cpe_font_struct->hdr.fi.dfWeight);
Alexandre Julliard's avatar
Alexandre Julliard committed
325

326
      while((lpChar = strchr(lpFace, '-')) )
Alexandre Julliard's avatar
Alexandre Julliard committed
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
	    *lpChar = ' ';

      fprintf(fs, "FONT -windows-%s-", lpFace );

      if( tmWeight == 0 )			/* weight */
	  fputs("medium-", fs);
      else if( tmWeight <= FW_LIGHT )
	  fputs("light-", fs);
      else if( tmWeight <= FW_MEDIUM )
	  fputs("medium-", fs);
      else if( tmWeight <= FW_DEMIBOLD )
	  fputs("demibold-", fs);
      else if( tmWeight <= FW_BOLD )
	  fputs("bold-", fs);
      else fputs("black-", fs);

343
      if( cpe_font_struct->hdr.fi.dfItalic )	/* slant */
Alexandre Julliard's avatar
Alexandre Julliard committed
344 345 346 347 348
	  fputs("i-", fs);
      else fputs("r-", fs);

      /* style */

349
      if( (cpe_font_struct->hdr.fi.dfPitchAndFamily & 0xF0) == FF_SWISS )
Alexandre Julliard's avatar
Alexandre Julliard committed
350 351 352 353 354
	  fputs("normal-sans-", fs);
      else fputs("normal--", fs);	/* still can be -sans */

      /* y extents */

355
      point_size = 10 * return_data_value(dfShort, &cpe_font_struct->hdr.fi.dfPoints );
Alexandre Julliard's avatar
Alexandre Julliard committed
356 357
      dpi = (l_cellheight * 720) / point_size;

358
      fprintf(fs, "%d-%d-%d-%d-",l_cellheight, point_size,
359 360
            return_data_value (dfShort, &cpe_font_struct->hdr.fi.dfHorizRes),
            return_data_value (dfShort, &cpe_font_struct->hdr.fi.dfVertRes));
Alexandre Julliard's avatar
Alexandre Julliard committed
361 362 363

      /* spacing */

364
      if( return_data_value(dfShort, &cpe_font_struct->hdr.fi.dfPixWidth) ) fputs("c-", fs);
Alexandre Julliard's avatar
Alexandre Julliard committed
365
      else fputs("p-", fs);
366

Alexandre Julliard's avatar
Alexandre Julliard committed
367 368
      /* average width */

369
      fprintf( fs, "%d-", 10 * return_data_value(dfShort, &cpe_font_struct->hdr.fi.dfAvgWidth) );
Alexandre Julliard's avatar
Alexandre Julliard committed
370 371 372

      /* charset */

373 374
     if( g_lpstrCharSet ) fprintf(fs, "%s\n", g_lpstrCharSet);
     else
375
      switch( cpe_font_struct->hdr.fi.dfCharSet )
Alexandre Julliard's avatar
Alexandre Julliard committed
376
      {
Alexandre Julliard's avatar
Alexandre Julliard committed
377 378
	/* Microsoft just had to invent its own charsets! */

379
	case ANSI_CHARSET: 	fputs("microsoft-cp1252\n", fs); break;
Alexandre Julliard's avatar
Alexandre Julliard committed
380 381 382 383 384 385
	case GREEK_CHARSET: 	fputs("microsoft-cp1253\n", fs); break;
	case TURKISH_CHARSET: 	fputs("microsoft-cp1254\n", fs); break;
	case HEBREW_CHARSET: 	fputs("microsoft-cp1255\n", fs); break;
	case ARABIC_CHARSET: 	fputs("microsoft-cp1256\n", fs); break;
	case BALTIC_CHARSET: 	fputs("microsoft-cp1257\n", fs); break;
	case RUSSIAN_CHARSET: 	fputs("microsoft-cp1251\n", fs); break;
386
	case EE_CHARSET: 	fputs("microsoft-cp1250\n", fs); break;
Alexandre Julliard's avatar
Alexandre Julliard committed
387
	case SYMBOL_CHARSET: 	fputs("microsoft-symbol\n", fs); break;
Alexandre Julliard's avatar
Alexandre Julliard committed
388 389 390
	case SHIFTJIS_CHARSET: 	fputs("jisx0208.1983-0\n", fs); break;
	case DEFAULT_CHARSET:	fputs("iso8859-1\n", fs); break;

Alexandre Julliard's avatar
Alexandre Julliard committed
391
	default:
392 393 394
	case OEM_CHARSET:
		    fputs("Undefined charset, use -c option.\n", stderr);
		    return ERROR_DATA;
Alexandre Julliard's avatar
Alexandre Julliard committed
395 396 397 398
      }
    }
    else return ERROR_DATA;

399
    fprintf(fs, "SIZE  %d  %d   %d\n",
400
        return_data_value(dfShort, &cpe_font_struct->hdr.fi.dfPoints ),
401 402
	return_data_value(dfShort, &cpe_font_struct->hdr.fi.dfHorizRes),
	return_data_value(dfShort, &cpe_font_struct->hdr.fi.dfVertRes));   /* dfVertRes[2] */
Alexandre Julliard's avatar
Alexandre Julliard committed
403 404

    fprintf(fs, "FONTBOUNDINGBOX %d  %d  %d  %d\n",
405 406
	return_data_value(dfShort, &cpe_font_struct->hdr.fi.dfMaxWidth),
	return_data_value(dfChar, &cpe_font_struct->hdr.fi.dfPixHeight),
Alexandre Julliard's avatar
Alexandre Julliard committed
407 408 409 410 411 412 413
   	0, l_ascent - l_cellheight );

    fprintf(fs, "STARTPROPERTIES  4\n");

    fprintf(fs, "FONT_ASCENT %d\n", l_ascent );                       /*  dfAscent[2] */
    fprintf(fs, "FONT_DESCENT %d\n", l_cellheight - l_ascent );
    fprintf(fs, "CAP_HEIGHT %d\n", l_ascent -
414 415
                                   return_data_value(dfShort, &cpe_font_struct->hdr.fi.dfInternalLeading));
    fprintf(fs, "DEFAULT_CHAR %d\n", return_data_value(dfShort, &cpe_font_struct->hdr.fi.dfDefaultChar));
Alexandre Julliard's avatar
Alexandre Julliard committed
416 417 418 419 420 421 422 423 424

    fprintf(fs, "ENDPROPERTIES\n");

    fprintf(fs, "CHARS  %d\n",  l_len);
    return 0;
}



425
static void parse_options(int argc, char **argv)
Alexandre Julliard's avatar
Alexandre Julliard committed
426 427 428 429 430 431 432 433 434 435 436 437 438
{
  int i;

  switch( argc )
  {
    case 2:
	 g_lpstrInputFile = argv[1];
	 break;

    case 3:
    case 4:
    case 5:
    case 6:
Alexandre Julliard's avatar
Alexandre Julliard committed
439 440
    case 7:
    case 8:
Alexandre Julliard's avatar
Alexandre Julliard committed
441 442 443 444 445
	 for( i = 1; i < argc - 1; i++ )
	 {
	   if( argv[i][0] != '-' ||
	       strlen(argv[i]) != 2 ) break;

446
	   if( argv[i][1] == 'c' )
Alexandre Julliard's avatar
Alexandre Julliard committed
447
	       g_lpstrCharSet = argv[i+1];
448 449
	   else
	   if( argv[i][1] == 'f' )
Alexandre Julliard's avatar
Alexandre Julliard committed
450 451 452 453 454 455 456
	       g_lpstrFileName = argv[i+1];
	   else
	   if( argv[i][1] == 't' )
	   {
	      g_outputPoints = 1;
	      continue;
	   }
Alexandre Julliard's avatar
Alexandre Julliard committed
457 458 459 460
	   else
	   usage();

	   i++;
461
	 }
Alexandre Julliard's avatar
Alexandre Julliard committed
462 463 464 465 466 467 468
	 if( i == argc - 1 )
	 {
	   g_lpstrInputFile = argv[i];
	   break;
	 }
    default: usage();
  }
469

Alexandre Julliard's avatar
Alexandre Julliard committed
470 471 472 473
}

/* read file data and return file type */

474
static int get_resource_table(int fd, unsigned char** lpdata, int fsize)
Alexandre Julliard's avatar
Alexandre Julliard committed
475
{
Alexandre Julliard's avatar
Alexandre Julliard committed
476 477
  IMAGE_DOS_HEADER mz_header;
  IMAGE_OS2_HEADER ne_header;
478 479
  long s, offset, size;
  int retval;
Alexandre Julliard's avatar
Alexandre Julliard committed
480 481 482

  lseek( fd, 0, SEEK_SET );

483
  if( read(fd, &mz_header, sizeof(mz_header)) != sizeof(mz_header) )
Alexandre Julliard's avatar
Alexandre Julliard committed
484 485
      return FILE_ERROR;

Alexandre Julliard's avatar
Alexandre Julliard committed
486
  s = return_data_value(dfShort, &mz_header.e_magic);
Alexandre Julliard's avatar
Alexandre Julliard committed
487

Alexandre Julliard's avatar
Alexandre Julliard committed
488
  if( s == IMAGE_DOS_SIGNATURE)		/* looks like .dll file so far... */
Alexandre Julliard's avatar
Alexandre Julliard committed
489
  {
Alexandre Julliard's avatar
Alexandre Julliard committed
490
    s = return_data_value(dfShort, &mz_header.e_lfanew);
Alexandre Julliard's avatar
Alexandre Julliard committed
491 492 493 494 495 496 497
    lseek( fd, s, SEEK_SET );

    if( read(fd, &ne_header, sizeof(ne_header)) != sizeof(ne_header) )
	return FILE_ERROR;

    s = return_data_value(dfShort, &ne_header.ne_magic);

Alexandre Julliard's avatar
Alexandre Julliard committed
498
    if( s == IMAGE_NT_SIGNATURE)
Alexandre Julliard's avatar
Alexandre Julliard committed
499 500
    {
       fprintf( stderr, "Do not know how to handle 32-bit Windows DLLs.\n");
501
       return FILE_ERROR;
Alexandre Julliard's avatar
Alexandre Julliard committed
502
    }
Alexandre Julliard's avatar
Alexandre Julliard committed
503
    else if ( s != IMAGE_OS2_SIGNATURE) return FILE_ERROR;
Alexandre Julliard's avatar
Alexandre Julliard committed
504

505 506
    s = return_data_value(dfShort, &ne_header.ne_rsrctab);
    size = return_data_value(dfShort, &ne_header.ne_restab);
Alexandre Julliard's avatar
Alexandre Julliard committed
507 508 509 510

    if( size > fsize ) return FILE_ERROR;

    size -= s;
Alexandre Julliard's avatar
Alexandre Julliard committed
511
    offset = s + return_data_value(dfShort, &mz_header.e_lfanew);
Alexandre Julliard's avatar
Alexandre Julliard committed
512 513 514 515 516 517

    if( size <= sizeof(NE_TYPEINFO) ) return FILE_ERROR;
    retval = FILE_DLL;
  }
  else if( s == 0x300 || s == 0x200 )		/* maybe .fnt ? */
  {
518
    size = return_data_value(dfLong, &((fnt_hdrS *)&mz_header)->dfSize);
Alexandre Julliard's avatar
Alexandre Julliard committed
519 520 521

    if( size != fsize ) return FILE_ERROR;
    offset  = 0;
522
    retval = FILE_FNT;
Alexandre Julliard's avatar
Alexandre Julliard committed
523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546
  }
  else return FILE_ERROR;

  *lpdata = (unsigned char*)malloc(size);

  if( *lpdata )
  {
    lseek( fd, offset, SEEK_SET );
    if( read(fd, *lpdata, size) != size )
           { free( *lpdata ); *lpdata = NULL; }
  }
  return retval;
}


/* entry point */

int main(int argc, char **argv)
{
  unsigned char* lpdata = NULL;
  int 		 fd;

  parse_options( argc, argv);

547
  if( (fd = open( g_lpstrInputFile, O_RDONLY | O_BINARY)) )
Alexandre Julliard's avatar
Alexandre Julliard committed
548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563
  {
    int    i;
    struct stat file_stat;

    fstat( fd, &file_stat);
    i = get_resource_table( fd, &lpdata, file_stat.st_size );

    switch(i)
    {
	case FILE_DLL:
	     if( lpdata )
	     {
	       int	    j, count = 0;
	       NE_TYPEINFO* pTInfo = (NE_TYPEINFO*)(lpdata + 2);
	       NE_NAMEINFO* pFontStorage = NULL;

564
	       while( (i = return_data_value(dfShort, &pTInfo->type_id)) )
Alexandre Julliard's avatar
Alexandre Julliard committed
565 566 567 568 569 570
	       {
		  j = return_data_value(dfShort, &pTInfo->count);
		  if( i == NE_RSCTYPE_FONT )
		  {
		    count = j;
		    pFontStorage = (NE_NAMEINFO*)(pTInfo + 1);
571
		    break; /* found one */
Alexandre Julliard's avatar
Alexandre Julliard committed
572 573 574 575 576 577 578 579 580
		  }

		  pTInfo = (NE_TYPEINFO *)((char*)(pTInfo+1) + j*sizeof(NE_NAMEINFO));
	       }
	       if( pFontStorage && count )
	       {
		 unsigned short		size_shift = return_data_value(dfShort, lpdata);
		 unsigned char*		lpfont = NULL;
		 unsigned		offset;
581
		 int			length;
Alexandre Julliard's avatar
Alexandre Julliard committed
582 583 584 585 586

		 for( j = 0; j < count; j++, pFontStorage++ )
		 {
		    length = return_data_value(dfShort, &pFontStorage->length) << size_shift;
		    offset = return_data_value(dfShort, &pFontStorage->offset) << size_shift;
587

Alexandre Julliard's avatar
Alexandre Julliard committed
588 589
		    if( !(lpfont = (unsigned char*) realloc( lpfont, length )) )
		    {
590
			fprintf(stderr, "Memory allocation error.\n" );
Alexandre Julliard's avatar
Alexandre Julliard committed
591
			exit(1);
Alexandre Julliard's avatar
Alexandre Julliard committed
592 593 594 595 596
		    }

		    lseek( fd, offset, SEEK_SET );
		    if( read(fd, lpfont, length) != length )
		    {
597
			fprintf(stderr, "Unable to read Windows DLL.\n" );
Alexandre Julliard's avatar
Alexandre Julliard committed
598
			exit(1);
Alexandre Julliard's avatar
Alexandre Julliard committed
599 600 601
		    }

		    if( (i = parse_fnt_data( lpfont, length )) )
Alexandre Julliard's avatar
Alexandre Julliard committed
602
		    {
603
			fprintf(stderr, "Unable to parse font data: Error %d\n", i );
Alexandre Julliard's avatar
Alexandre Julliard committed
604 605
			exit(1);
		    }
Alexandre Julliard's avatar
Alexandre Julliard committed
606 607
		 }
		 free(lpfont); free(lpdata);
Alexandre Julliard's avatar
Alexandre Julliard committed
608 609 610 611
		 exit(0);
	       }
	       else
	       {
612
                 fprintf(stderr, "No fonts found.\n" );
Alexandre Julliard's avatar
Alexandre Julliard committed
613
		 exit(1);
Alexandre Julliard's avatar
Alexandre Julliard committed
614 615 616
	       }
	       free( lpdata );
	     }
Alexandre Julliard's avatar
Alexandre Julliard committed
617 618
	     else
	     {
619
               fprintf(stderr, "Unable to read Windows DLL.\n" );
Alexandre Julliard's avatar
Alexandre Julliard committed
620 621
	       exit(1);
	     }
Alexandre Julliard's avatar
Alexandre Julliard committed
622 623 624 625 626 627
	     break;

	case FILE_FNT:
	     if( lpdata )
	     {
	       if( (i = parse_fnt_data( lpdata, file_stat.st_size )) )
Alexandre Julliard's avatar
Alexandre Julliard committed
628
	       {
629
                   fprintf(stderr, "Unable to parse font data: Error %d\n", i );
Alexandre Julliard's avatar
Alexandre Julliard committed
630 631
		   exit(1);
	       }
Alexandre Julliard's avatar
Alexandre Julliard committed
632 633
	       free( lpdata );
	     }
Alexandre Julliard's avatar
Alexandre Julliard committed
634 635
	     else
	     {
636
               fprintf(stderr, "Unable to read .FNT file.\n" );
Alexandre Julliard's avatar
Alexandre Julliard committed
637 638
	       exit(1);
	     }
Alexandre Julliard's avatar
Alexandre Julliard committed
639 640 641
	     break;

	case FILE_ERROR:
642
             fprintf(stderr, "Corrupt or invalid file.\n" );
Alexandre Julliard's avatar
Alexandre Julliard committed
643
	     exit(1);
Alexandre Julliard's avatar
Alexandre Julliard committed
644 645
    }
    close(fd);
Alexandre Julliard's avatar
Alexandre Julliard committed
646 647 648 649
    exit(0);
  }
  else
  {
650
    fprintf(stderr, "Unable to open '%s'.\n", g_lpstrInputFile );
Alexandre Julliard's avatar
Alexandre Julliard committed
651
    exit(1);
Alexandre Julliard's avatar
Alexandre Julliard committed
652 653
  }
}