regedit: An English (United States) spelling fix.
[wine/multimedia.git] / dlls / wineps.drv / afm2c.c
blob3f8b0ce1d75ac39f9e5d87a878a4592e323548fa
1 /*******************************************************************************
3 * Function to write WINEPS AFM data structures as C
5 * Copyright 2001 Ian Pilcher
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 * NOTES:
23 * PSDRV_AFM2C(AFM *afm) writes the AFM data structure addressed by afm (and
24 * its subsidiary objects) as a C file which can which can then be built in to
25 * the driver. It creates the file in the current directory with a name of
26 * the form {FontName}.c, where {FontName} is the PostScript font name with
27 * hyphens replaced by underscores.
29 * To use this function, do the following:
31 * * Edit dlls/wineps/Makefile (or dlls/wineps/Makefile.in) and add
32 * afm2c.c as a source file.
34 * * Edit dlls/wineps/afm.c and uncomment the call to PSDRV_AFM2C in
35 * PSDRV_DumpFontList() (or wherever it gets moved). The resulting
36 * compiler warning can be safely ignored.
38 * IMPORTANT: For this to work, all glyph names in the AFM data being
39 * written *MUST* already be present in PSDRV_AGLGlyphNames in agl.c.
40 * See mkagl.c in this directory for information on how to generate
41 * updated glyph name information. Note, however, that if the glyph
42 * name information in agl.c is regenerated, *ALL* AFM data must also
43 * be recreated.
47 #include <string.h>
48 #include <stdio.h>
49 #include <math.h>
51 #include "wine/debug.h"
52 #include "psdrv.h"
54 WINE_DEFAULT_DEBUG_CHANNEL(psdrv);
56 static inline void cursorto(FILE *of, int np, int cp)
58 int ntp = np & 0xfffffff8;
59 int ctp = cp & 0xfffffff8;
61 while (ctp < ntp)
63 fputc('\t', of);
64 ctp += 8;
65 cp = ctp;
68 while (cp < np)
70 fputc(' ', of);
71 ++cp;
75 static void writeHeader(FILE *of, const AFM *afm, const char *buffer)
77 int i;
79 fputc('/', of);
80 for (i = 1; i < 80; ++i)
81 fputc('*', of);
82 fprintf(of, "\n"
83 " *\n"
84 " *\tFont metric data for %s\n"
85 " *\n"
86 " *\tCopyright 2001 Ian Pilcher\n"
87 " *\n"
88 " *\n"
89 " *\tSee dlls/wineps/data/COPYRIGHTS for font copyright "
90 "information.\n"
91 " *\n"
92 " */\n"
93 "\n"
94 "#include \"psdrv.h\"\n"
95 "#include \"data/agl.h\"\n", afm->FullName);
98 static void writeMetrics(FILE *of, const AFM *afm, const char *buffer)
100 int i;
102 fputs("\n\n/*\n * Glyph metrics\n */\n\n", of);
104 fprintf(of, "static const AFMMETRICS metrics[%i] =\n{\n",
105 afm->NumofMetrics);
107 for (i = 0; i < afm->NumofMetrics - 1; ++i)
109 fprintf(of, " { %3i, 0x%.4lx, %4g, GN_%s },\n", afm->Metrics[i].C,
110 afm->Metrics[i].UV, afm->Metrics[i].WX, afm->Metrics[i].N->sz);
113 fprintf(of, " { %3i, 0x%.4lx, %4g, GN_%s }\n};\n", afm->Metrics[i].C,
114 afm->Metrics[i].UV, afm->Metrics[i].WX, afm->Metrics[i].N->sz);
117 static void writeAFM(FILE *of, const AFM *afm, const char *buffer)
119 fputs("\n\n/*\n * Font metrics\n */\n\n", of);
121 fprintf(of, "const AFM PSDRV_%s =\n{\n", buffer);
122 cursorto(of, 44, fprintf(of, " \"%s\",", afm->FontName));
123 fputs("/* FontName */\n", of);
124 cursorto(of, 44, fprintf(of, " \"%s\",", afm->FullName));
125 fputs("/* FullName */\n", of);
126 cursorto(of, 44, fprintf(of, " \"%s\",", afm->FamilyName));
127 fputs("/* FamilyName */\n", of);
128 cursorto(of, 44, fprintf(of, " \"%s\",", afm->EncodingScheme));
129 fputs("/* EncodingScheme */\n", of);
130 cursorto(of, 44, fprintf(of, " %s,",
131 (afm->Weight > 550) ? "FW_BOLD" : "FW_NORMAL"));
132 fputs("/* Weight */\n", of);
133 cursorto(of, 44, fprintf(of, " %g,", afm->ItalicAngle));
134 fputs("/* ItalicAngle */\n", of);
135 cursorto(of, 44, fprintf(of, " %s,",
136 afm->IsFixedPitch ? "TRUE" : "FALSE"));
137 fputs("/* IsFixedPitch */\n", of);
138 cursorto(of, 44, fprintf(of, " %g,", afm->UnderlinePosition));
139 fputs("/* UnderlinePosition */\n", of);
140 cursorto(of, 44, fprintf(of, " %g,", afm->UnderlineThickness));
141 fputs("/* UnderlineThickness */\n", of);
142 cursorto(of, 44, fprintf(of, " { %g, %g, %g, %g },", afm->FontBBox.llx,
143 afm->FontBBox.lly, afm->FontBBox.urx, afm->FontBBox.ury));
144 fputs("/* FontBBox */\n", of);
145 cursorto(of, 44, fprintf(of, " %g,", afm->Ascender));
146 fputs("/* Ascender */\n", of);
147 cursorto(of, 44, fprintf(of, " %g,", afm->Descender));
148 fputs("/* Descender */\n", of);
149 fputs(" {\n", of);
150 cursorto(of, 44, 7 + fprintf(of, "\t%u,",
151 (unsigned int)(afm->WinMetrics.usUnitsPerEm)));
152 fputs("/* WinMetrics.usUnitsPerEm */\n", of);
153 cursorto(of, 44, 7 + fprintf(of, "\t%i,",
154 (int)(afm->WinMetrics.sAscender)));
155 fputs("/* WinMetrics.sAscender */\n", of);
156 cursorto(of, 44, 7 + fprintf(of, "\t%i,",
157 (int)(afm->WinMetrics.sDescender)));
158 fputs("/* WinMetrics.sDescender */\n", of);
159 cursorto(of, 44, 7 + fprintf(of, "\t%i,",
160 (int)(afm->WinMetrics.sLineGap)));
161 fputs("/* WinMetrics.sLineGap */\n", of);
162 cursorto(of, 44, 7 + fprintf(of, "\t%i,",
163 (int)(afm->WinMetrics.sAvgCharWidth)));
164 fputs("/* WinMetrics.sAvgCharWidth */\n", of);
165 cursorto(of, 44, 7 + fprintf(of, "\t%i,",
166 (int)(afm->WinMetrics.sTypoAscender)));
167 fputs("/* WinMetrics.sTypoAscender */\n", of);
168 cursorto(of, 44, 7 + fprintf(of, "\t%i,",
169 (int)(afm->WinMetrics.sTypoDescender)));
170 fputs("/* WinMetrics.sTypoDescender */\n", of);
171 cursorto(of, 44, 7 + fprintf(of, "\t%i,",
172 (int)(afm->WinMetrics.sTypoLineGap)));
173 fputs("/* WinMetrics.sTypoLineGap */\n", of);
174 cursorto(of, 44, 7 + fprintf(of, "\t%u,",
175 (unsigned int)(afm->WinMetrics.usWinAscent)));
176 fputs("/* WinMetrics.usWinAscent */\n", of);
177 cursorto(of, 44, 7 + fprintf(of, "\t%u",
178 (unsigned int)(afm->WinMetrics.usWinDescent)));
179 fputs("/* WinMetrics.usWinDescent */\n",of);
180 fputs(" },\n", of);
181 cursorto(of, 44, fprintf(of, " %i,", afm->NumofMetrics));
182 fputs("/* NumofMetrics */\n", of);
183 fputs(" metrics\t\t\t\t /* Metrics */\n};\n", of);
186 void PSDRV_AFM2C(const AFM *afm)
188 char buffer[256];
189 FILE *of;
190 int i;
192 lstrcpynA(buffer, afm->FontName, sizeof(buffer) - 2);
194 for (i = 0; i < strlen(buffer); ++i)
195 if (buffer[i] == '-')
196 buffer[i] = '_';
198 buffer[i] = '.'; buffer[i + 1] = 'c'; buffer[i + 2] = '\0';
200 MESSAGE("writing '%s'\n", buffer);
202 of = fopen(buffer, "w");
203 if (of == NULL)
205 ERR("error opening '%s' for writing\n", buffer);
206 return;
209 buffer[i] = '\0';
211 writeHeader(of, afm, buffer);
212 writeMetrics(of, afm, buffer);
213 writeAFM(of, afm, buffer);
215 fclose(of);