Initial support for adding fonts at run-time. Currently we only support
[sgt/halibut] / bk_ps.c
1 /*
2 * PostScript backend for Halibut
3 */
4
5 #include <assert.h>
6 #include "halibut.h"
7 #include "paper.h"
8
9 static void ps_comment(FILE *fp, char const *leader, word *words);
10
11 paragraph *ps_config_filename(char *filename)
12 {
13 return cmdline_cfg_simple("ps-filename", filename, NULL);
14 }
15
16 void ps_backend(paragraph *sourceform, keywordlist *keywords,
17 indexdata *idx, void *vdoc) {
18 document *doc = (document *)vdoc;
19 int font_index;
20 font_encoding *fe;
21 page_data *page;
22 int pageno;
23 FILE *fp;
24 char *filename;
25 paragraph *p;
26
27 IGNORE(keywords);
28 IGNORE(idx);
29
30 filename = dupstr("output.ps");
31 for (p = sourceform; p; p = p->next) {
32 if (p->type == para_Config) {
33 if (!ustricmp(p->keyword, L"ps-filename")) {
34 sfree(filename);
35 filename = dupstr(adv(p->origkeyword));
36 }
37 }
38 }
39
40 fp = fopen(filename, "w");
41 if (!fp) {
42 error(err_cantopenw, filename);
43 return;
44 }
45
46 fprintf(fp, "%%!PS-Adobe-3.0\n");
47 fprintf(fp, "%%%%Creator: Halibut, %s\n", version);
48 fprintf(fp, "%%%%DocumentData: Clean8Bit\n");
49 fprintf(fp, "%%%%LanguageLevel: 1\n");
50 for (pageno = 0, page = doc->pages; page; page = page->next)
51 pageno++;
52 fprintf(fp, "%%%%Pages: %d\n", pageno);
53 for (p = sourceform; p; p = p->next)
54 if (p->type == para_Title)
55 ps_comment(fp, "%%Title: ", p->words);
56 fprintf(fp, "%%%%DocumentNeededResources:\n");
57 for (fe = doc->fonts->head; fe; fe = fe->next)
58 /* XXX This may request the same font multiple times. */
59 fprintf(fp, "%%%%+ font %s\n", fe->font->info->name);
60 fprintf(fp, "%%%%DocumentSuppliedResources: procset Halibut 0 0\n");
61 fprintf(fp, "%%%%EndComments\n");
62
63 fprintf(fp, "%%%%BeginProlog\n");
64 fprintf(fp, "%%%%BeginResource: procset Halibut 0 0\n");
65 /*
66 * Supply a prologue function which allows a reasonably
67 * compressed representation of the text on the pages.
68 *
69 * Expects two arguments: a y-coordinate, and then an array.
70 * Elements of the array are processed sequentially as follows:
71 *
72 * - a number is treated as an x-coordinate
73 * - an array is treated as a (font, size) pair
74 * - a string is shown
75 */
76 fprintf(fp,
77 "/tdict 4 dict dup begin\n"
78 " /arraytype {aload pop scalefont setfont} bind def\n"
79 " /realtype {1 index moveto} bind def\n"
80 " /integertype /realtype load def\n"
81 " /stringtype {show} bind def\n"
82 "end def\n"
83 "/t { tdict begin {dup type exec} forall end pop } bind def\n");
84
85 fprintf(fp, "%%%%EndResource\n");
86 fprintf(fp, "%%%%EndProlog\n");
87
88 fprintf(fp, "%%%%BeginSetup\n");
89
90 /*
91 * This is as good a place as any to put version IDs.
92 */
93 for (p = sourceform; p; p = p->next)
94 if (p->type == para_VersionID)
95 ps_comment(fp, "% ", p->words);
96
97 for (fe = doc->fonts->head; fe; fe = fe->next)
98 /* XXX This may request the same font multiple times. */
99 fprintf(fp, "%%%%IncludeResource: font %s\n", fe->font->info->name);
100
101 /*
102 * Re-encode the fonts.
103 */
104 font_index = 0;
105 for (fe = doc->fonts->head; fe; fe = fe->next) {
106 char fname[40];
107 int i;
108
109 sprintf(fname, "f%d", font_index++);
110 fe->name = dupstr(fname);
111
112 fprintf(fp, "/%s findfont dup length dict begin\n",
113 fe->font->info->name);
114 fprintf(fp, "{1 index /FID ne {def} {pop pop} ifelse} forall\n");
115 fprintf(fp, "/Encoding [\n");
116 for (i = 0; i < 256; i++)
117 fprintf(fp, "/%s%c", fe->vector[i] ? fe->vector[i] : ".notdef",
118 i % 4 == 3 ? '\n' : ' ');
119 fprintf(fp, "] def\n");
120 fprintf(fp, "currentdict end\n");
121 fprintf(fp, "/fontname-%s exch definefont /%s exch def\n\n",
122 fe->name, fe->name);
123 }
124 fprintf(fp, "%%%%EndSetup\n");
125
126 /*
127 * Output the text and graphics.
128 */
129 pageno = 0;
130 for (page = doc->pages; page; page = page->next) {
131 text_fragment *frag, *frag_end;
132 rect *r;
133
134 pageno++;
135 fprintf(fp, "%%%%Page: %d %d\n", pageno, pageno);
136 fprintf(fp, "save\n");
137
138 #if 0
139 {
140 xref *xr;
141 /*
142 * I used this diagnostic briefly to ensure that
143 * cross-reference rectangles were being put where they
144 * should be.
145 */
146 for (xr = page->first_xref; xr; xr = xr->next) {
147 fprintf(fp, "gsave 0.7 setgray %g %g moveto",
148 xr->lx/FUNITS_PER_PT, xr->ty/FUNITS_PER_PT);
149 fprintf(fp, " %g %g lineto %g %g lineto",
150 xr->lx/FUNITS_PER_PT, xr->by/FUNITS_PER_PT,
151 xr->rx/FUNITS_PER_PT, xr->by/FUNITS_PER_PT);
152 fprintf(fp, " %g %g lineto closepath fill grestore\n",
153 xr->rx/FUNITS_PER_PT, xr->ty/FUNITS_PER_PT);
154 }
155 }
156 #endif
157
158 for (r = page->first_rect; r; r = r->next) {
159 fprintf(fp, "%g %g moveto %g 0 rlineto 0 %g rlineto "
160 "-%g 0 rlineto closepath fill\n",
161 r->x / FUNITS_PER_PT, r->y / FUNITS_PER_PT,
162 r->w / FUNITS_PER_PT, r->h / FUNITS_PER_PT,
163 r->w / FUNITS_PER_PT);
164 }
165
166 frag = page->first_text;
167 while (frag) {
168 font_encoding *fe;
169 int fs;
170 char *c;
171
172 /*
173 * Collect all the adjacent text fragments with the
174 * same y-coordinate.
175 */
176 for (frag_end = frag;
177 frag_end && frag_end->y == frag->y;
178 frag_end = frag_end->next);
179
180 fprintf(fp, "%g[", frag->y / FUNITS_PER_PT);
181
182 fe = NULL;
183 fs = -1;
184
185 while (frag && frag != frag_end) {
186
187 if (frag->fe != fe || frag->fontsize != fs)
188 fprintf(fp, "[%s %d]", frag->fe->name, frag->fontsize);
189 fe = frag->fe;
190 fs = frag->fontsize;
191
192 fprintf(fp, "%g(", frag->x/FUNITS_PER_PT);
193 for (c = frag->text; *c; c++) {
194 if (*c == '(' || *c == ')' || *c == '\\')
195 fputc('\\', fp);
196 fputc(*c, fp);
197 }
198 fprintf(fp, ")");
199
200 frag = frag->next;
201 }
202
203 fprintf(fp, "]t\n");
204 }
205
206 fprintf(fp, "restore showpage\n");
207 }
208
209 fprintf(fp, "%%%%EOF\n");
210
211 fclose(fp);
212
213 sfree(filename);
214 }
215
216 static void ps_comment(FILE *fp, char const *leader, word *words)
217 {
218 fprintf(fp, "%s", leader);
219
220 for (; words; words = words->next) {
221 char *text;
222 int type;
223
224 switch (words->type) {
225 case word_HyperLink:
226 case word_HyperEnd:
227 case word_UpperXref:
228 case word_LowerXref:
229 case word_XrefEnd:
230 case word_IndexRef:
231 continue;
232 }
233
234 type = removeattr(words->type);
235
236 switch (type) {
237 case word_Normal:
238 text = utoa_dup(words->text, CS_ASCII);
239 break;
240 case word_WhiteSpace:
241 text = dupstr(" ");
242 break;
243 case word_Quote:
244 text = dupstr("'");
245 break;
246 }
247
248 fputs(text, fp);
249 sfree(text);
250 }
251
252 fprintf(fp, "\n");
253 }