forked from mbert/elvis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lpps.c
564 lines (482 loc) · 14.2 KB
/
lpps.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
/* lpps.c */
/* Copyright 1995 by Steve Kirkendall */
/* This file contains a driver for Adobe PostScript. The driver supports
* printing text either 1-up or 2-up.
*/
#include "elvis.h"
#ifdef FEATURE_RCSID
char id_lpps[] = "$Id: lpps.c,v 2.31 2003/10/17 17:41:23 steve Exp $";
#endif
#ifdef FEATURE_LPR
#if USE_PROTOTYPES
static void out(char *str, char *param);
static void outdef(char *name, char *value);
static void psmove(int newrow, int newcol);
static void pscenter(int newrow, int newcol, char *cmd);
static void pscolor(_char_ newfont);
static void psstring(_char_ newfont);
static void pagestart(void);
static void pageend(ELVBOOL final);
static void before(int minorno, void (*draw)(_CHAR_));
static void fontch(_char_ font, _CHAR_ ch);
static void page(int linesleft);
static void after(int linesleft);
#endif
/* These variables store the current state of the driver */
static int elvrow; /* Row where elvis thinks cursor is */
static int elvcol; /* Column where elvis thinks cursor is */
static int elvfont; /* Current elvis font */
static unsigned char elvrgb[3]; /* Current color */
static int psrow; /* Row where cursor is located */
static int pscol; /* Column where cursor is located */
static char psfont; /* Current PS font - one of n/b/i */
static ELVBOOL instr; /* Are we in the middle of outputting a string? */
static int width; /* width of current string, measured in characters */
static ELVBOOL twoup; /* Print two logical pages on each piece of paper? */
static ELVBOOL even; /* ElvTrue during printing of second logical page */
static long pagenum;/* Physical page number */
/* This is a pointer to the draw() function to use for outputing individual
* characters. It is set by the before() function, and remains valid until
* the after() function returns.
*/
static void (*prtchar) P_((_CHAR_ ch));
/* Output a constant string to the printer, optionally followed by another
* string, and then an implied newline. This is used mostly for outputting
* the header.
*/
static void out(str, param)
char *str; /* string to be output */
char *param; /* optional second string */
{
while (*str)
{
(*prtchar)((_CHAR_)*str++);
}
while (param && *param)
{
(*prtchar)((_CHAR_)*param++);
}
(*prtchar)((_CHAR_)'\n');
}
/* output a PostScript def command */
static void outdef(name, value)
char *name; /* string to be output */
char *value; /* optional second string */
{
while (*name)
{
(*prtchar)((_CHAR_)*name++);
}
(*prtchar)((_CHAR_)' ');
out(value, " def");
}
/* This function moves the PostScript cursor to a given row/column, if it
* isn't there already.
*/
static void psmove(newrow, newcol)
int newrow; /* new row number, with 0 being the top of the page */
int newcol; /* column number, with 0 being the leftmost column */
{
char buf[50];
int psx, psy; /* PostScript coordinates for position */
/* If the PS cursor is already there, then do nothing */
if (newrow == psrow && newcol == pscol)
return;
/* Convert row/column position to PostScript coordinates. Here, we
* assume that each character is 1/10 of an inch wide and 1/6 of an
* inch high. We also assume that the font's baseline is about 1/6
* of the way up the character cell.
*/
psx = newcol * 72;
psy = (o_lplines - newrow) * 120 - 100;
/* Output a "move" command */
sprintf(buf, "%d.%d %d.%d moveto", psx/10, psx%10, psy/10, psy%10);
out(buf, NULL);
psrow = newrow;
pscol = newcol;
}
/* This function moves the PostScript cursor to the *CENTER* of a the
* character cell for a given row/column, and then optionally outputs some
* other command.
*/
static void pscenter(newrow, newcol, cmd)
int newrow; /* new row number, with 0 being the top of the page */
int newcol; /* column number, with 0 being the leftmost column */
char *cmd; /* command to execute at the center */
{
char buf[100];
int psx, psy; /* PostScript coordinates for position */
/* Convert row/column position to PostScript coordinates. Here, we
* assume that each character is 1/10 of an inch wide and 1/6 of an
* inch high. We also assume that the font's baseline is about 1/6
* of the way up the character cell.
*/
psx = newcol * 72 + 36;
psy = (o_lplines - newrow) * 120 - 60;
/* Output the coordinates and the command */
sprintf(buf, "%d.%d %d.%d %s", psx/10, psx%10, psy/10, psy%10, cmd);
out(buf, NULL);
pscol = -1;
}
static void pscolor(newfont)
_char_ newfont; /* font whose colors to use */
{
char str[100];
unsigned char rgb[3];
/* if "lpcolor" is unset, then do nothing */
if (!o_lpcolor)
return;
/* find the color of this font */
memcpy(rgb, lpfg(newfont), 3);
/* if same as previous color, then do nothing */
if (!memcmp(rgb, elvrgb, 3))
return;
/* output a color change command */
sprintf(str, "%d 255.0 div %d 255.0 div %d 255.0 div setrgbcolor",
rgb[0], rgb[1], rgb[2]);
out(str, NULL);
/* remember the color */
memcpy(elvrgb, rgb, 3);
}
/* This function starts and/or ends a string. It also handles font changes */
static void psstring(newfont)
_char_ newfont; /* font to load */
{
char newps; /* new postscript font */
int oldcol;
int bits;
/* If fonts haven't changed, we don't need to do anything */
if (newfont == elvfont && instr)
return;
/* If we were in a string before, we need to draw it now. */
if (instr)
{
/* end the string */
(*prtchar)(')');
/* drawing underlined strings requires extra work */
bits = colorinfo[elvfont].da.bits;
if (bits & (COLOR_BOXED | COLOR_UNDERLINED))
{
/* Output the string, and also find its width */
out(" dup ElvisShow ElvisStringWidth", NULL);
/* Begin drawing a new path. */
out(" newpath", NULL);
oldcol = pscol;
pscol = -1;
psmove(elvrow, oldcol);
/* BOXED or UNDERLINED? */
if (bits & COLOR_BOXED)
{
/* Draw all four sides of a box */
out(" 0 -3 rmoveto dup 0 rlineto", NULL);
out(" 0 12 rlineto", NULL);
out(" neg 0 rlineto", NULL);
out(" closepath", NULL);
}
else
{
/* Just draw an underline */
out(" 0 -1 rmoveto 0 rlineto", NULL);
}
/* Draw it */
out(" stroke", NULL);
/* That leaves the PS cursor position undefined */
pscol = psrow = -1;
}
else
{
/* output the string */
out(" ElvisShow", NULL);
pscol += width;
}
/* we are no longer in a string */
instr = ElvFalse;
width = 0;
}
/* if no new font is specified, we're done */
if (!newfont)
return;
/* Adjust colors */
pscolor(newfont);
/* Move the cursor to where the new string will be output */
psmove(elvrow, elvcol);
/* If necessary, switch postscript fonts */
bits = colorinfo[newfont].da.bits;
if (bits & COLOR_BOLD)
newps = 'b';
else if (bits & COLOR_ITALIC)
newps = 'i';
else
newps = 'n';
if (bits & COLOR_PROP)
newps = elvtoupper(newps);
if (newps != psfont)
{
switch (newps)
{
case 'n': out("ElvisN", " setfont"); break;
case 'b': out("ElvisB", " setfont"); break;
case 'i': out("ElvisI", " setfont"); break;
case 'N': out("ElvisPN", " setfont"); break;
case 'B': out("ElvisPB", " setfont"); break;
case 'I': out("ElvisPI", " setfont"); break;
}
psfont = newps;
}
elvfont = newfont;
/* start outputing a new string */
(*prtchar)('(');
/* we are now in a string */
instr = ElvTrue;
}
/* Prepare for the next logical page. For one-up printing, this is fairly
* simple. For two-up, it depends on whether this is the first logical page
* on this sheet of paper, or the second logical page.
*/
static void pagestart()
{
char buf[12];
/* reset variables */
elvrow = elvcol = elvfont = 0;
memset(elvrgb, 0, 3);
psfont = '\0';
psrow = psfont = -1; /* to force movement the first time */
instr = ElvFalse;
width = 0;
/* output a comment, if at the top of a physical page */
if (!twoup || !even)
{
sprintf(buf, "%ld", pagenum++);
out("%%Page: page ", buf);
}
/* change graphic context, depending on printing style */
if (!twoup)
{
out("gsave ElvisPage", NULL);
}
else if (!even)
{
out("gsave ElvisLeftPage", NULL);
}
else
{
out("gsave ElvisRightPage", NULL);
}
}
/* This function ends a logical page */
static void pageend(final)
ELVBOOL final; /* is this the last page of the print job? */
{
/* end the current string, if any */
psstring(0);
out("grestore", NULL);
if (!twoup || even || final)
{
out("showpage", NULL);
}
even = (ELVBOOL)!even;
}
/* This is the before() function. It sets the prtchar variable, and outputs
* the PostScript header.
*/
static void before(minorno, draw)
int minorno; /* logical pages per sheet */
void (*draw) P_((_CHAR_)); /* function for sending single char to printer */
{
char *tmp;
FILE *fp;
int ch;
char paper[20];
int j;
/* Set the ptype and out function */
twoup = (ELVBOOL)(minorno == 2);
prtchar = draw;
/* Output the basic header */
out("%!PS-Adobe-2.0", NULL);
out("%%Creator: Elvis ", VERSION);
out("%%Orientation:", twoup ? "Landscape" : "Portrait");
out("%%EndComments", "\n");
out("%%BeginProlog", NULL);
/* output the paper size. This can be used by the lib/elvis.ps file
* to adjust its size and positions.
*/
tmp = lpoptfield("paper", "default");
paper[0] = '(';
for (j = 1; *tmp; tmp++)
{
if (elvalnum(*tmp))
paper[j++] = *tmp;
}
strcpy(&paper[j], ")");
outdef("/ElvisPaper", paper);
outdef("/ElvisBar", lpoptfield("bar", "false"));
outdef("/ElvisFrame", lpoptfield("frame", "true"));
outdef("/ElvisPunch", lpoptfield("punch", "false"));
outdef("/ElvisClip", lpoptfield("clip", "false"));
sprintf(paper, "%ld", o_lplines);
outdef("/ElvisLines", paper);
sprintf(paper, "%ld", o_lpcolumns);
outdef("/ElvisColumns", paper);
/* Define the fonts that we'll be using. Note that we don't define
* fonts for 'g' and 'u' because they're done using graphics and the
* 'n' font.
*
* Also define some page positioning macros.
*/
tmp = iopath(tochar8(o_elvispath), "elvis.ps", ElvFalse);
if (tmp && (fp = fopen(tmp, "r")) != NULL)
{
/* Copy definitions from the "lib/elvis.ps" file */
while ((ch = getc(fp)) != EOF)
{
(*prtchar)((_CHAR_)ch);
}
fclose(fp);
}
else
{
/* Use default definitions. These are not sensitive to the
* lpcolumns, lprows, and lpoptions options.
*/
out("/ElvisN /Courier findfont 12 scalefont def", NULL);
out("/ElvisB /Courier-Bold findfont 12 scalefont def", NULL);
out("/ElvisI /Courier-Oblique findfont 12 scalefont def", NULL);
out("/ElvisPN /Courier findfont 12 scalefont def", NULL);
out("/ElvisPB /Courier-Bold findfont 12 scalefont def", NULL);
out("/ElvisPI /Courier-Oblique findfont 12 scalefont def", NULL);
out("/ElvisPage { 12 36 translate } def", NULL);
out("/ElvisLeftPage { 12 750 translate -90 rotate 0.58 0.75 scale } def", NULL);
out("/ElvisRightPage { newpath 12 394 moveto 576 0 rlineto stroke 12 366 translate -90 rotate 0.58 0.75 scale } def", NULL);
out("/ElvisStringWidth { stringwidth pop } def", NULL);
out("/ElvisShow { show } def", NULL);
}
out("%%EndProlog", "\n");
/* Prepare for first page */
even = ElvFalse;
pagenum = 1;
pagestart();
}
/* This function adds a character to the output, simulating the behavior of
* control characters. (The only possible control character is '\n'.)
*/
static void fontch(font, ch)
_char_ font; /* font of the next character from text image */
_CHAR_ ch; /* the next character */
{
char buf[10];
if (font == 0)
font = 1;
if (ch == '\n')
{
/* end the current string, if any */
psstring(0);
/* add a line break in the PostScipt code */
(*prtchar)('\n');
/* move to the start of the next line */
elvcol = 0;
elvrow++;
}
else if ((colorinfo[font].da.bits & COLOR_GRAPHIC)
&& strchr("123456789|-", (_char_)ch))
{
/* End any current string. */
psstring(0);
/* Move to the center of the character cell */
pscolor(font);
out("newpath", NULL);
pscenter(elvrow, elvcol, "moveto");
/* Maybe draw an uptick */
if (strchr("123456|", (_char_)ch))
out(" 0 6.1 rlineto 0 -6.1 rmoveto", NULL);
/* Maybe draw a downtick */
if (strchr("456789|", (_char_)ch))
out(" 0 -6.1 rlineto 0 6.1 rmoveto", NULL);
/* Maybe draw a lefttick */
if (strchr("235689-", (_char_)ch))
out(" -3.7 0 rlineto 3.7 0 rmoveto", NULL);
/* Maybe draw a righttick */
if (strchr("124578-", (_char_)ch))
out(" 3.7 0 rlineto -3.7 0 rmoveto", NULL);
/* Draw those lines, and move to next character cell */
out(" stroke", NULL);
elvcol++;
pscol = -1;
}
else if ((colorinfo[font].da.bits & COLOR_GRAPHIC)
&& (ch == 'o' || ch == '*'))
{
/* End any current string. */
psstring(0);
/* Stroke a complete circle at center of character cell */
pscolor(font);
out("newpath", NULL);
pscenter(elvrow, elvcol, "3 0 360 arc");
/* Either fill or draw the stroke */
if (ch == 'o')
out(" stroke", NULL);
else
out(" fill", NULL);
elvcol++;
pscol = -1;
}
else if (!instr && ch == ' '
&& (colorinfo[font].da.bits & COLOR_GRAPHIC) != COLOR_GRAPHIC
&& (colorinfo[font].da.bits & COLOR_UNDERLINED) == 0)
{
/* Skip leading spaces because they make the left margin
* be ragged, since variable-pitch fonts are output with a
* varying horizontal scale factor to make their overall
* width be the same as fixed-pitch. We do need to count
* its width though.
*/
elvcol++;
}
else
{
/* start a new string, if necessary */
psstring(font);
/* Add the character to the current string */
if (ch == '(' || ch == ')' || ch == '\\')
{
(*prtchar)('\\');
(*prtchar)(ch);
}
else if (ch >= 127)
{
sprintf(buf, "%03o", ch);
(*prtchar)('\\');
(*prtchar)((_CHAR_)buf[0]);
(*prtchar)((_CHAR_)buf[1]);
(*prtchar)((_CHAR_)buf[2]);
}
else
{
(*prtchar)(ch);
}
elvcol++;
}
}
/* This function is called after every page except the last one */
static void page(linesleft)
int linesleft; /* lines remaining on page */
{
/* end the page */
pageend(ElvFalse);
/* start the next page */
pagestart();
}
/* This function is called at the end of the print job. It can output a
* final formfeed, restore fonts, or whatever.
*/
static void after(linesleft)
int linesleft; /* lines remaining on final page */
{
/* print the last page */
pageend(ElvTrue);
/* output a trailer */
out("%%Trailer", NULL);
}
/* These describe the printer types supported by these functions */
LPTYPE lpps = {"ps", 1, ElvTrue, before, fontch, page, after};
LPTYPE lpps2 = {"ps2", 2, ElvTrue, before, fontch, page, after};
#endif /* FEATURE_LPR */