2004-08-18 00:33:14 +02:00
|
|
|
/*
|
|
|
|
* fnttofon. Combine several fnt files in one fon file
|
|
|
|
*
|
|
|
|
* Copyright 2004 Huw Davies
|
|
|
|
*
|
|
|
|
* 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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2004-08-18 00:33:14 +02:00
|
|
|
*/
|
|
|
|
|
2005-05-20 11:41:49 +02:00
|
|
|
#include "config.h"
|
2005-08-03 23:25:10 +02:00
|
|
|
#include "wine/port.h"
|
2005-05-20 11:41:49 +02:00
|
|
|
|
2006-05-27 13:24:13 +02:00
|
|
|
#include <signal.h>
|
2004-08-18 00:33:14 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2005-05-20 11:41:49 +02:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
2007-10-18 17:05:11 +02:00
|
|
|
#include <errno.h>
|
2005-05-20 11:41:49 +02:00
|
|
|
#include <fcntl.h>
|
|
|
|
#ifdef HAVE_IO_H
|
|
|
|
# include <io.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wine/winbase16.h"
|
|
|
|
#include "wine/wingdi16.h"
|
|
|
|
|
|
|
|
#include "pshpack1.h"
|
|
|
|
struct _fnt_header
|
|
|
|
{
|
2008-04-11 09:56:33 +02:00
|
|
|
SHORT dfVersion;
|
|
|
|
LONG dfSize;
|
2005-05-20 11:41:49 +02:00
|
|
|
char dfCopyright[60];
|
|
|
|
FONTINFO16 fi;
|
|
|
|
};
|
|
|
|
#include "poppack.h"
|
2004-08-18 00:33:14 +02:00
|
|
|
|
2005-05-20 11:41:49 +02:00
|
|
|
static const BYTE MZ_hdr[] = {'M', 'Z', 0x0d, 0x01, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,
|
2004-08-18 00:33:14 +02:00
|
|
|
0xb8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00,
|
|
|
|
0x0e, 0x1f, 0xba, 0x0e, 0x00, 0xb4, 0x09, 0xcd, 0x21, 0xb8, 0x01, 0x4c, 0xcd, 0x21, 'T', 'h',
|
|
|
|
'i', 's', ' ', 'P', 'r', 'o', 'g', 'r', 'a', 'm', ' ', 'c', 'a', 'n', 'n', 'o',
|
|
|
|
't', ' ', 'b', 'e', ' ', 'r', 'u', 'n', ' ', 'i', 'n', ' ', 'D', 'O', 'S', ' ',
|
|
|
|
'm', 'o', 'd', 'e', 0x0d, 0x0a, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
|
|
|
|
};
|
|
|
|
|
2006-05-27 13:24:13 +02:00
|
|
|
static const char *output_file;
|
|
|
|
|
|
|
|
static void cleanup_files(void)
|
|
|
|
{
|
|
|
|
if (output_file) unlink( output_file );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void exit_on_signal( int sig )
|
|
|
|
{
|
|
|
|
exit(1); /* this will call the atexit functions */
|
|
|
|
}
|
|
|
|
|
2004-08-18 00:33:14 +02:00
|
|
|
static void usage(char **argv)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "%s fntfiles output.fon\n", argv[0]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-12-07 12:44:17 +01:00
|
|
|
#ifndef __GNUC__
|
|
|
|
#define __attribute__(X)
|
|
|
|
#endif
|
|
|
|
|
2004-08-18 00:33:14 +02:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2005-05-20 11:41:49 +02:00
|
|
|
int i, j;
|
2004-08-18 00:33:14 +02:00
|
|
|
FILE *fp, *ofp;
|
|
|
|
long off;
|
|
|
|
char name[200];
|
|
|
|
int c;
|
|
|
|
char *cp;
|
2005-05-20 11:41:49 +02:00
|
|
|
short pt, ver, dpi[2], align, num_files;
|
2004-08-18 00:33:14 +02:00
|
|
|
int resource_table_len, non_resident_name_len, resident_name_len;
|
|
|
|
unsigned short resource_table_off, resident_name_off, module_ref_off, non_resident_name_off, fontdir_off, font_off;
|
|
|
|
char resident_name[200] = "";
|
2005-05-20 11:41:49 +02:00
|
|
|
int fontdir_len = 2;
|
2004-08-18 00:33:14 +02:00
|
|
|
char non_resident_name[200] = "";
|
|
|
|
int *file_lens, nread;
|
2005-05-20 11:41:49 +02:00
|
|
|
unsigned short first_res = 0x0050, pad, res;
|
|
|
|
struct _fnt_header *fnt_header;
|
2004-08-18 00:33:14 +02:00
|
|
|
char buf[0x1000];
|
2005-05-20 11:41:49 +02:00
|
|
|
IMAGE_OS2_HEADER NE_hdr;
|
|
|
|
NE_TYPEINFO rc_type;
|
|
|
|
NE_NAMEINFO rc_name;
|
2004-08-18 00:33:14 +02:00
|
|
|
|
|
|
|
if(argc < 3) {
|
|
|
|
usage(argv);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
num_files = argc - 2;
|
|
|
|
file_lens = malloc(num_files * sizeof(int));
|
|
|
|
for(i = 0; i < num_files; i++) {
|
2005-05-20 11:41:49 +02:00
|
|
|
fp = fopen(argv[i+1], "rb");
|
2004-08-18 00:33:14 +02:00
|
|
|
if(!fp) {
|
2007-10-18 17:05:11 +02:00
|
|
|
fprintf(stderr, "error: unable to open %s for reading: %s\n", argv[i+1], strerror(errno));
|
2004-08-18 00:33:14 +02:00
|
|
|
usage(argv);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
fread(&ver, sizeof(short), 1, fp);
|
|
|
|
if(ver != 0x200 && ver != 0x300) {
|
2007-10-18 17:05:11 +02:00
|
|
|
fprintf(stderr, "error: invalid fnt file %s ver %d\n", argv[i+1], ver);
|
|
|
|
exit(1);
|
2004-08-18 00:33:14 +02:00
|
|
|
}
|
|
|
|
fread(file_lens + i, sizeof(int), 1, fp);
|
|
|
|
fseek(fp, 0x44, SEEK_SET);
|
|
|
|
fread(&pt, sizeof(short), 1, fp);
|
|
|
|
fread(dpi, sizeof(short), 2, fp);
|
|
|
|
fseek(fp, 0x69, SEEK_SET);
|
|
|
|
fread(&off, sizeof(long), 1, fp);
|
|
|
|
fseek(fp, off, SEEK_SET);
|
|
|
|
cp = name;
|
|
|
|
while((c = fgetc(fp)) != 0 && c != EOF)
|
|
|
|
*cp++ = c;
|
|
|
|
*cp = '\0';
|
|
|
|
fprintf(stderr, "%s %d pts %dx%d dpi\n", name, pt, dpi[0], dpi[1]);
|
|
|
|
fclose(fp);
|
2005-05-23 11:51:12 +02:00
|
|
|
/* fontdir entries for version 3 fonts are the same as for version 2 */
|
|
|
|
fontdir_len += 0x74 + strlen(name) + 1;
|
2004-08-18 00:33:14 +02:00
|
|
|
if(i == 0) {
|
|
|
|
sprintf(non_resident_name, "FONTRES 100,%d,%d : %s %d", dpi[0], dpi[1], name, pt);
|
|
|
|
strcpy(resident_name, name);
|
|
|
|
} else {
|
|
|
|
sprintf(non_resident_name + strlen(non_resident_name), ",%d", pt);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(dpi[0] <= 108)
|
|
|
|
strcat(non_resident_name, " (VGA res)");
|
|
|
|
else
|
|
|
|
strcat(non_resident_name, " (8514 res)");
|
|
|
|
non_resident_name_len = strlen(non_resident_name) + 4;
|
|
|
|
|
|
|
|
/* shift count + fontdir entry + num_files of font + nul type + \007FONTDIR */
|
2005-05-20 11:41:49 +02:00
|
|
|
resource_table_len = sizeof(align) + sizeof("FONTDIR") +
|
|
|
|
sizeof(NE_TYPEINFO) + sizeof(NE_NAMEINFO) +
|
|
|
|
sizeof(NE_TYPEINFO) + sizeof(NE_NAMEINFO) * num_files +
|
|
|
|
sizeof(NE_TYPEINFO);
|
|
|
|
resource_table_off = sizeof(NE_hdr);
|
2004-08-18 00:33:14 +02:00
|
|
|
resident_name_off = resource_table_off + resource_table_len;
|
|
|
|
resident_name_len = strlen(resident_name) + 4;
|
|
|
|
module_ref_off = resident_name_off + resident_name_len;
|
2005-05-20 11:41:49 +02:00
|
|
|
non_resident_name_off = sizeof(MZ_hdr) + module_ref_off + sizeof(align);
|
|
|
|
|
|
|
|
memset(&NE_hdr, 0, sizeof(NE_hdr));
|
|
|
|
NE_hdr.ne_magic = 0x454e;
|
|
|
|
NE_hdr.ne_ver = 5;
|
|
|
|
NE_hdr.ne_rev = 1;
|
|
|
|
NE_hdr.ne_flags = NE_FFLAGS_LIBMODULE | NE_FFLAGS_GUI;
|
|
|
|
NE_hdr.ne_cbnrestab = non_resident_name_len;
|
|
|
|
NE_hdr.ne_segtab = sizeof(NE_hdr);
|
|
|
|
NE_hdr.ne_rsrctab = sizeof(NE_hdr);
|
|
|
|
NE_hdr.ne_restab = resident_name_off;
|
|
|
|
NE_hdr.ne_modtab = module_ref_off;
|
|
|
|
NE_hdr.ne_imptab = module_ref_off;
|
|
|
|
NE_hdr.ne_enttab = NE_hdr.ne_modtab;
|
|
|
|
NE_hdr.ne_nrestab = non_resident_name_off;
|
|
|
|
NE_hdr.ne_align = 4;
|
|
|
|
NE_hdr.ne_exetyp = NE_OSFLAGS_WINDOWS;
|
|
|
|
NE_hdr.ne_expver = 0x400;
|
2004-08-18 00:33:14 +02:00
|
|
|
|
|
|
|
fontdir_off = (non_resident_name_off + non_resident_name_len + 15) & ~0xf;
|
|
|
|
font_off = (fontdir_off + fontdir_len + 15) & ~0x0f;
|
2005-05-20 11:41:49 +02:00
|
|
|
|
2006-05-27 13:24:13 +02:00
|
|
|
atexit( cleanup_files );
|
|
|
|
signal( SIGTERM, exit_on_signal );
|
|
|
|
signal( SIGINT, exit_on_signal );
|
|
|
|
#ifdef SIGHUP
|
|
|
|
signal( SIGHUP, exit_on_signal );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
output_file = argv[argc - 1];
|
|
|
|
ofp = fopen(output_file, "wb");
|
2005-05-20 11:41:49 +02:00
|
|
|
|
2004-08-18 00:33:14 +02:00
|
|
|
fwrite(MZ_hdr, sizeof(MZ_hdr), 1, ofp);
|
2005-05-20 11:41:49 +02:00
|
|
|
fwrite(&NE_hdr, sizeof(NE_hdr), 1, ofp);
|
|
|
|
|
|
|
|
align = 4;
|
|
|
|
fwrite(&align, sizeof(align), 1, ofp);
|
|
|
|
|
|
|
|
rc_type.type_id = NE_RSCTYPE_FONTDIR;
|
|
|
|
rc_type.count = 1;
|
|
|
|
rc_type.resloader = 0;
|
|
|
|
fwrite(&rc_type, sizeof(rc_type), 1, ofp);
|
|
|
|
|
|
|
|
rc_name.offset = fontdir_off >> 4;
|
|
|
|
rc_name.length = (fontdir_len + 15) >> 4;
|
|
|
|
rc_name.flags = NE_SEGFLAGS_MOVEABLE | NE_SEGFLAGS_PRELOAD;
|
|
|
|
rc_name.id = resident_name_off - sizeof("FONTDIR") - NE_hdr.ne_rsrctab;
|
|
|
|
rc_name.handle = 0;
|
|
|
|
rc_name.usage = 0;
|
|
|
|
fwrite(&rc_name, sizeof(rc_name), 1, ofp);
|
|
|
|
|
|
|
|
rc_type.type_id = NE_RSCTYPE_FONT;
|
|
|
|
rc_type.count = num_files;
|
|
|
|
rc_type.resloader = 0;
|
|
|
|
fwrite(&rc_type, sizeof(rc_type), 1, ofp);
|
|
|
|
|
2004-08-18 00:33:14 +02:00
|
|
|
for(res = first_res | 0x8000, i = 0; i < num_files; i++, res++) {
|
|
|
|
int len = (file_lens[i] + 15) & ~0xf;
|
2005-05-20 11:41:49 +02:00
|
|
|
|
|
|
|
rc_name.offset = font_off >> 4;
|
|
|
|
rc_name.length = len >> 4;
|
|
|
|
rc_name.flags = NE_SEGFLAGS_MOVEABLE | NE_SEGFLAGS_SHAREABLE | NE_SEGFLAGS_DISCARDABLE;
|
|
|
|
rc_name.id = res;
|
|
|
|
rc_name.handle = 0;
|
|
|
|
rc_name.usage = 0;
|
|
|
|
fwrite(&rc_name, sizeof(rc_name), 1, ofp);
|
|
|
|
|
2004-08-18 00:33:14 +02:00
|
|
|
font_off += len;
|
|
|
|
}
|
2005-05-20 11:41:49 +02:00
|
|
|
|
|
|
|
/* empty type info */
|
|
|
|
memset(&rc_type, 0, sizeof(rc_type));
|
|
|
|
fwrite(&rc_type, sizeof(rc_type), 1, ofp);
|
|
|
|
|
2004-08-18 00:33:14 +02:00
|
|
|
fputc(strlen("FONTDIR"), ofp);
|
|
|
|
fwrite("FONTDIR", strlen("FONTDIR"), 1, ofp);
|
|
|
|
fputc(strlen(resident_name), ofp);
|
|
|
|
fwrite(resident_name, strlen(resident_name), 1, ofp);
|
2005-05-20 11:41:49 +02:00
|
|
|
|
2004-08-18 00:33:14 +02:00
|
|
|
fputc(0x00, ofp); fputc(0x00, ofp);
|
|
|
|
fputc(0x00, ofp);
|
|
|
|
fputc(0x00, ofp); fputc(0x00, ofp);
|
2005-05-20 11:41:49 +02:00
|
|
|
|
2004-08-18 00:33:14 +02:00
|
|
|
fputc(strlen(non_resident_name), ofp);
|
|
|
|
fwrite(non_resident_name, strlen(non_resident_name), 1, ofp);
|
2005-05-20 11:41:49 +02:00
|
|
|
fputc(0x00, ofp); /* terminator */
|
|
|
|
|
|
|
|
/* empty ne_modtab and ne_imptab */
|
2004-08-18 00:33:14 +02:00
|
|
|
fputc(0x00, ofp);
|
2005-05-20 11:41:49 +02:00
|
|
|
fputc(0x00, ofp);
|
|
|
|
|
|
|
|
pad = ftell(ofp) & 0xf;
|
2004-08-18 00:33:14 +02:00
|
|
|
if(pad != 0)
|
|
|
|
pad = 0x10 - pad;
|
|
|
|
for(i = 0; i < pad; i++)
|
|
|
|
fputc(0x00, ofp);
|
|
|
|
|
|
|
|
/* FONTDIR resource */
|
2005-05-20 11:41:49 +02:00
|
|
|
fwrite(&num_files, sizeof(num_files), 1, ofp);
|
2004-08-18 00:33:14 +02:00
|
|
|
|
|
|
|
for(res = first_res, i = 0; i < num_files; i++, res++) {
|
2005-05-20 11:41:49 +02:00
|
|
|
fp = fopen(argv[i+1], "rb");
|
|
|
|
|
|
|
|
fwrite(&res, sizeof(res), 1, ofp);
|
|
|
|
fread(buf, 0x72, 1, fp);
|
|
|
|
|
|
|
|
fnt_header = (struct _fnt_header *)buf;
|
|
|
|
fseek(fp, fnt_header->fi.dfFace, SEEK_SET);
|
2005-05-23 11:51:12 +02:00
|
|
|
fnt_header->fi.dfBitsOffset = 0;
|
|
|
|
fwrite(buf, 0x72, 1, ofp);
|
2005-05-20 11:41:49 +02:00
|
|
|
|
2004-08-18 00:33:14 +02:00
|
|
|
cp = name;
|
|
|
|
while((c = fgetc(fp)) != 0 && c != EOF)
|
|
|
|
*cp++ = c;
|
|
|
|
*cp = '\0';
|
|
|
|
fwrite(name, strlen(name) + 1, 1, ofp);
|
|
|
|
fclose(fp);
|
|
|
|
}
|
2005-05-23 11:51:12 +02:00
|
|
|
|
|
|
|
pad = ftell(ofp) & 0xf;
|
2004-08-18 00:33:14 +02:00
|
|
|
if(pad != 0)
|
|
|
|
pad = 0x10 - pad;
|
|
|
|
for(i = 0; i < pad; i++)
|
|
|
|
fputc(0x00, ofp);
|
|
|
|
|
|
|
|
for(res = first_res, i = 0; i < num_files; i++, res++) {
|
2005-05-20 11:41:49 +02:00
|
|
|
fp = fopen(argv[i+1], "rb");
|
|
|
|
|
2004-08-18 00:33:14 +02:00
|
|
|
while(1) {
|
|
|
|
nread = read(fileno(fp), buf, sizeof(buf));
|
|
|
|
if(!nread) break;
|
|
|
|
fwrite(buf, nread, 1, ofp);
|
|
|
|
}
|
|
|
|
fclose(fp);
|
|
|
|
pad = file_lens[i] & 0xf;
|
|
|
|
if(pad != 0)
|
|
|
|
pad = 0x10 - pad;
|
|
|
|
for(j = 0; j < pad; j++)
|
|
|
|
fputc(0x00, ofp);
|
|
|
|
}
|
|
|
|
fclose(ofp);
|
2006-05-27 13:24:13 +02:00
|
|
|
output_file = NULL;
|
2004-08-18 00:33:14 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|