out: support quoted strings for eps file names and link destinations
[neatpost.git] / out.c
blob4ae49f5a5047961657867c0af5923e6cf70b9ff2
1 #include <ctype.h>
2 #include <stdarg.h>
3 #include <stdio.h>
4 #include <stdlib.h>
5 #include <string.h>
6 #include "post.h"
8 static int o_f, o_s, o_m; /* font and size */
9 static int o_h, o_v; /* current user position */
10 static int p_f, p_s, p_m; /* output postscript font */
11 static int o_qtype; /* queued character type */
12 static int o_qv, o_qh, o_qend; /* queued character position */
13 static int o_rh, o_rv, o_rdeg; /* previous rotation position and degree */
14 static int o_gname; /* use glyphshow for all glyphs */
16 char o_fonts[FNLEN * NFONTS] = " ";
18 static void outvf(char *s, va_list ap)
20 vfprintf(stdout, s, ap);
23 static void outf(char *s, ...)
25 va_list ap;
26 va_start(ap, s);
27 outvf(s, ap);
28 va_end(ap);
31 static void o_flush(void)
33 if (o_qtype == 1)
34 outf(") %d %d w\n", o_qh, o_qv);
35 if (o_qtype == 2)
36 outf("] %d %d g\n", o_qh, o_qv);
37 o_qtype = 0;
40 void outgname(int g)
42 o_gname = g;
45 void outpage(void)
47 o_flush();
48 o_v = 0;
49 o_h = 0;
50 p_s = 0;
51 p_f = 0;
52 p_m = 0;
53 o_rdeg = 0;
56 static void o_queue(struct glyph *g)
58 int type = 1 + (g->pos <= 0 || o_gname);
59 if (o_qtype != type || o_qend != o_h || o_qv != o_v) {
60 o_flush();
61 o_qh = o_h;
62 o_qv = o_v;
63 o_qtype = type;
64 outf(type == 1 ? "(" : "[");
66 if (o_qtype == 1) {
67 if (g->pos >= ' ' && g->pos <= '~')
68 outf("%s%c", strchr("()\\", g->pos) ? "\\" : "", g->pos);
69 else
70 outf("\\%d%d%d", (g->pos >> 6) & 7,
71 (g->pos >> 3) & 7, g->pos & 7);
72 } else {
73 outf("/%s", g->id);
75 o_qend = o_h + font_wid(g->font, o_s, g->wid);
78 /* calls o_flush() if necessary */
79 void out(char *s, ...)
81 va_list ap;
82 o_flush();
83 va_start(ap, s);
84 outvf(s, ap);
85 va_end(ap);
88 static void out_fontup(int fid)
90 char fnname[FNLEN];
91 struct font *fn;
92 if (o_m != p_m) {
93 out("%d %d %d rgb\n", CLR_R(o_m), CLR_G(o_m), CLR_B(o_m));
94 p_m = o_m;
96 if (fid != p_f || o_s != p_s) {
97 fn = dev_font(fid);
98 out("%d /%s f\n", o_s, font_name(fn));
99 p_f = fid;
100 p_s = o_s;
101 sprintf(fnname, " %s ", font_name(fn));
102 if (!strstr(o_fonts, fnname))
103 sprintf(strchr(o_fonts, '\0'), "%s ", font_name(fn));
107 void outc(char *c)
109 struct glyph *g;
110 struct font *fn;
111 g = dev_glyph(c, o_f);
112 fn = g ? g->font : dev_font(o_f);
113 if (!g) {
114 outrel(*c == ' ' && fn ? font_swid(fn, o_s) : 1, 0);
115 return;
117 out_fontup(dev_fontid(fn));
118 o_queue(g);
121 void outh(int h)
123 o_h = h;
126 void outv(int v)
128 o_v = v;
131 void outrel(int h, int v)
133 o_h += h;
134 o_v += v;
137 void outfont(int f)
139 if (dev_font(f))
140 o_f = f;
143 /* a font was mounted at pos f */
144 void outmnt(int f)
146 if (p_f == f)
147 p_f = -1;
150 void outsize(int s)
152 if (s > 0)
153 o_s = s;
156 void outcolor(int c)
158 o_m = c;
161 void outrotate(int deg)
163 o_flush();
164 out_fontup(o_f);
165 if (o_rdeg)
166 outf("%d %d %d rot\n", -o_rdeg, o_rh, o_rv);
167 o_rdeg = deg;
168 o_rh = o_h;
169 o_rv = o_v;
170 outf("%d %d %d rot\n", deg, o_h, o_v);
173 static int draw_path; /* number of path segments */
174 static int draw_point; /* point was set for postscript newpath */
176 static void drawmv(void)
178 if (!draw_point)
179 outf("%d %d m ", o_h, o_v);
180 draw_point = 1;
183 /* start a multi-segment path */
184 void drawmbeg(char *s)
186 o_flush();
187 out_fontup(o_f);
188 draw_path = 1;
189 outf("gsave newpath %s\n", s);
192 /* end a multi-segment path */
193 void drawmend(char *s)
195 draw_path = 0;
196 draw_point = 0;
197 outf("%s grestore\n", s);
200 void drawbeg(void)
202 o_flush();
203 out_fontup(o_f);
204 if (draw_path)
205 return;
206 outf("newpath ");
209 void drawend(int close, int fill)
211 if (draw_path)
212 return;
213 draw_point = 0;
214 if (close)
215 outf("closepath ");
216 if (fill)
217 outf("fill\n");
218 else
219 outf("stroke\n");
222 void drawl(int h, int v)
224 drawmv();
225 outrel(h, v);
226 outf("%d %d drawl ", o_h, o_v);
229 void drawc(int c)
231 drawmv();
232 outrel(c, 0);
233 outf("%d %d drawe ", c, c);
236 void drawe(int h, int v)
238 drawmv();
239 outrel(h, 0);
240 outf("%d %d drawe ", h, v);
243 void drawa(int h1, int v1, int h2, int v2)
245 drawmv();
246 outf("%d %d %d %d drawa ", h1, v1, h2, v2);
247 outrel(h1 + h2, v1 + v2);
250 void draws(int h1, int v1, int h2, int v2)
252 drawmv();
253 outf("%d %d %d %d %d %d draws ", o_h, o_v, o_h + h1, o_v + v1,
254 o_h + h1 + h2, o_v + v1 + v2);
255 outrel(h1, v1);
258 static char *strcut(char *dst, char *src)
260 while (*src == ' ' || *src == '\n')
261 src++;
262 if (src[0] == '"') {
263 src++;
264 while (*src && (src[0] != '"' || src[1] == '"')) {
265 if (*src == '"')
266 src++;
267 *dst++ = *src++;
269 if (*src == '"')
270 src++;
271 } else {
272 while (*src && *src != ' ' && *src != '\n')
273 *dst++ = *src++;
275 *dst = '\0';
276 return src;
279 void outeps(char *spec)
281 char eps[1 << 12];
282 char buf[1 << 12];
283 int llx, lly, urx, ury;
284 int hwid, vwid;
285 FILE *filp;
286 int nspec, nbb;
287 spec = strcut(eps, spec);
288 if (!eps[0] || (nspec = sscanf(spec, "%d %d", &hwid, &vwid)) < 0)
289 return;
290 if (nspec < 1)
291 hwid = 0;
292 if (nspec < 2)
293 vwid = 0;
294 if (!(filp = fopen(eps, "r")))
295 return;
296 if (!fgets(buf, sizeof(buf), filp) ||
297 (strcmp(buf, "%!PS-Adobe-2.0 EPSF-1.2\n") &&
298 strcmp(buf, "%!PS-Adobe-2.0 EPSF-2.0\n") &&
299 strcmp(buf, "%!PS-Adobe-3.0 EPSF-3.0\n"))) {
300 fclose(filp);
301 return;
303 nbb = 0;
304 while (fgets(buf, sizeof(buf), filp))
305 if (!strncmp(buf, "%%BoundingBox: ", 15))
306 if ((nbb = sscanf(buf + 15, "%d %d %d %d",
307 &llx, &lly, &urx, &ury)) == 4)
308 break;
309 fclose(filp);
310 if (nbb < 4) /* no BoundingBox comment */
311 return;
312 if (hwid <= 0 && vwid <= 0)
313 hwid = (urx - llx) * dev_res / 72;
314 if (vwid <= 0)
315 vwid = (ury - lly) * hwid / (urx - llx);
316 if (hwid <= 0)
317 hwid = (urx - llx) * vwid / (ury - lly);
318 /* output the EPS file */
319 o_flush();
320 out_fontup(o_f);
321 outf("%d %d %d %d %d %d %d %d EPSFBEG\n",
322 llx, lly, hwid, urx - llx, vwid, ury - lly, o_h, o_v);
323 outf("%%%%BeginDocument: %s\n", eps);
324 filp = fopen(eps, "r");
325 while (fgets(buf, sizeof(buf), filp))
326 out("%s", buf);
327 fclose(filp);
328 outf("%%%%EndDocument\n");
329 outf("EPSFEND\n");
332 void outlink(char *spec)
334 char lnk[1 << 12];
335 int hwid, vwid;
336 int nspec;
337 spec = strcut(lnk, spec);
338 if (!lnk[0] || (nspec = sscanf(spec, "%d %d", &hwid, &vwid)) != 2)
339 return;
340 o_flush();
341 if (isdigit((unsigned char) lnk[0])) {
342 outf("[ /Rect [ %d %d t %d %d t ] /Page %s"
343 "/Subtype /Link /LNK pdfmark\n",
344 o_h, o_v, o_h + hwid, o_v + vwid, lnk);
345 } else {
346 outf("[ /Rect [ %d %d t %d %d t ]"
347 "/Action << /Subtype /URI /URI (%s) >> /Open true "
348 "/Subtype /Link /LNK pdfmark\n",
349 o_h, o_v, o_h + hwid, o_v + vwid, lnk);