ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/px/oki20c.c
Revision: 2.9
Committed: Mon Sep 21 12:13:38 1992 UTC (31 years, 7 months ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 2.8: +20 -10 lines
Log Message:
Changes for PC port

File Contents

# Content
1 /* Copyright (c) 1992 Regents of the University of California */
2
3 #ifndef lint
4 static char SCCSid[] = "$SunId$ LBL";
5 #endif
6
7 /*
8 * oki20c.c - program to dump pixel file to OkiMate 20 color printer.
9 */
10
11 #include <stdio.h>
12 #ifdef MSDOS
13 #include <fcntl.h>
14 #endif
15
16 #include "color.h"
17 #include "resolu.h"
18
19 #define NROWS 1440 /* 10" at 144 dpi */
20 #define NCOLS 960 /* 8" at 120 dpi */
21
22 #define ASPECT (120./144.) /* pixel aspect ratio */
23
24 #define FILTER "pfilt -1 -x %d -y %d -p %f %s",NCOLS,NROWS,ASPECT
25
26 /*
27 * Subtractive primaries are ordered: Yellow, Magenta, Cyan.
28 */
29
30 #define sub_add(sub) (2-(sub)) /* map subtractive to additive pri. */
31
32 long lpat[NCOLS][3];
33
34 int dofilter = 0; /* filter through pfilt first? */
35
36 extern FILE *popen();
37
38
39 main(argc, argv)
40 int argc;
41 char *argv[];
42 {
43 int i, status = 0;
44 #ifdef MSDOS
45 extern int _fmode;
46 _fmode = O_BINARY;
47 setmode(fileno(stdin), O_BINARY);
48 setmode(fileno(stdout), O_BINARY);
49 #endif
50 if (argc > 1 && !strcmp(argv[1], "-p")) {
51 dofilter++;
52 argv++; argc--;
53 }
54 #ifdef _IOLBF
55 stdout->_flag &= ~_IOLBF;
56 #endif
57 if (argc < 2)
58 status = printp(NULL) == -1;
59 else
60 for (i = 1; i < argc; i++)
61 status += printp(argv[i]) == -1;
62 exit(status);
63 }
64
65
66 printp(fname) /* print a picture */
67 char *fname;
68 {
69 char buf[64];
70 FILE *input;
71 int xres, yres;
72 COLR scanline[NCOLS];
73 int i;
74
75 if (dofilter) {
76 if (fname == NULL) {
77 sprintf(buf, FILTER, "");
78 fname = "<stdin>";
79 } else
80 sprintf(buf, FILTER, fname);
81 if ((input = popen(buf, "r")) == NULL) {
82 fprintf(stderr, "Cannot execute: %s\n", buf);
83 return(-1);
84 }
85 } else if (fname == NULL) {
86 input = stdin;
87 fname = "<stdin>";
88 } else if ((input = fopen(fname, "r")) == NULL) {
89 fprintf(stderr, "%s: cannot open\n", fname);
90 return(-1);
91 }
92 /* discard header */
93 if (checkheader(input, COLRFMT, NULL) < 0) {
94 fprintf(stderr, "%s: not a Radiance picture\n", fname);
95 return(-1);
96 }
97 /* get picture dimensions */
98 if (fgetresolu(&xres, &yres, input) < 0) {
99 fprintf(stderr, "%s: bad picture size\n", fname);
100 return(-1);
101 }
102 if (xres > NCOLS) {
103 fprintf(stderr, "%s: resolution mismatch\n", fname);
104 return(-1);
105 }
106 /* set line spacing (overlap for knitting) */
107 fputs("\0333\042", stdout);
108 /* put out scanlines */
109 for (i = yres-1; i >= 0; i--) {
110 if (freadcolrs(scanline, xres, input) < 0) {
111 fprintf(stderr, "%s: read error (y=%d)\n", fname, i);
112 return(-1);
113 }
114 normcolrs(scanline, xres, 0);
115 plotscan(scanline, xres, i);
116 }
117 /* advance page */
118 putchar('\f');
119
120 if (dofilter)
121 pclose(input);
122 else
123 fclose(input);
124
125 return(0);
126 }
127
128
129 plotscan(scan, len, y) /* plot a scanline */
130 COLR scan[];
131 int len;
132 int y;
133 {
134 int bpos;
135 register long c;
136 register int i, j;
137
138 if (bpos = y % 23) {
139
140 for (j = 0; j < 3; j++)
141 for (i = 0; i < len; i++)
142 lpat[i][j] |= (long)colbit(scan[i],i,j) << bpos;
143 return;
144 }
145 fputs("\033\031", stdout);
146
147 for (j = 0; j < 3; j++) {
148 i = (NCOLS + len)/2; /* center image */
149 fputs("\033%O", stdout);
150 putchar(i & 255);
151 putchar(i >> 8);
152 while (i-- > len) {
153 putchar(0);
154 putchar(0);
155 putchar(0);
156 }
157 for (i = 0; i < len; i++) {
158 c = lpat[i][j] | colbit(scan[i],i,j);
159 putchar((int)(c>>16));
160 putchar((int)(c>>8 & 255));
161 putchar((int)(c & 255));
162 if (y) /* repeat this row */
163 lpat[i][j] = (c & 1) << 23;
164 else /* or clear for next image */
165 lpat[i][j] = 0L;
166 }
167 putchar('\r');
168 }
169 putchar('\n');
170 fflush(stdout);
171 }
172
173
174 colbit(col, x, s) /* determine bit value for primary at x */
175 COLR col;
176 register int x;
177 int s;
178 {
179 static int cerr[NCOLS][3];
180 static int err[3];
181 int b, errp;
182 register int a, ison;
183
184 a = sub_add(s); /* use additive primary */
185 b = col[a];
186 errp = err[a];
187 err[a] += b + cerr[x][a];
188 ison = err[a] < 128;
189 if (!ison) err[a] -= 256;
190 err[a] /= 3;
191 cerr[x][a] = err[a] + errp;
192 return(ison);
193 }