ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/px/psign.c
(Generate patch)

Comparing ray/src/px/psign.c (file contents):
Revision 2.3 by greg, Sat Jun 6 07:40:51 1992 UTC vs.
Revision 2.9 by greg, Tue Jul 7 17:35:42 1992 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1991 Regents of the University of California */
1 > /* Copyright (c) 1992 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 16 | Line 16 | static char SCCSid[] = "$SunId$ LBL";
16  
17   #include  "font.h"
18  
19 + #ifndef  SSS
20 + #define  SSS                    3       /* super-sample size */
21 + #endif
22 +
23   #define  MAXLINE                512     /* longest allowable line */
24  
25   #ifndef  DEFPATH
# Line 27 | Line 31 | static char SCCSid[] = "$SunId$ LBL";
31  
32   char  *fontfile = "helvet.fnt";         /* our font file */
33  
34 < COLR  bgcolr = WHTCOLR;                 /* background color */
35 < COLR  fgcolr = BLKCOLR;                 /* foreground color */
34 > COLOR  bgcolor = WHTCOLOR;              /* background color */
35 > COLOR  fgcolor = BLKCOLOR;              /* foreground color */
36  
37   int  direct = 'r';                      /* direction (right, up, left, down) */
38  
39 < int  cheight = 32;                      /* character height */
39 > int  cheight = 32*SSS;                  /* character height */
40   double  aspect = 1.67;                  /* height/width character aspect */
41 + double  spacing = 0.0;                  /* character spacing */
42   int  cwidth;                            /* computed character width */
43  
44   unsigned char  *ourbitmap;              /* our output bitmap */
# Line 46 | Line 51 | int  xdim;                             /* size of horizontal scan (bytes) */
51   #define  clrbit(x,y)            bitop(x,y,&=~)
52   #define  tglbit(x,y)            bitop(x,y,^=)
53  
49 typedef unsigned char  GLYPH;
50
54   FONT  *ourfont;                         /* our font */
55  
56   char  *libpath;                         /* library search path */
57  
58   typedef struct line {
59          char  *s;               /* line w/o LF */
60 +        short  *sp;             /* character spacing */
61          struct line  *next;     /* next line up */
62   } LINE;
63  
64   LINE  *ourtext;                         /* our text */
65   int  nlines, maxline;                   /* text dimensions */
66 + int  maxwidth;                          /* maximum line width (dvi) */
67  
68   extern char  *getenv();
64 extern char  *malloc(), *calloc();
69  
70  
71   main(argc, argv)
# Line 75 | Line 79 | char  *argv[];
79                  case 'c':                       /* color */
80                          switch (argv[an][2]) {
81                          case 'f':                       /* foreground */
82 <                                setcolr(fgcolr, atof(argv[an+1]),
82 >                                setcolor(fgcolor, atof(argv[an+1]),
83                                                  atof(argv[an+2]),
84                                                  atof(argv[an+3]));
85                                  an += 3;
86                                  break;
87                          case 'b':                       /* background */
88 <                                setcolr(bgcolr, atof(argv[an+1]),
88 >                                setcolor(bgcolor, atof(argv[an+1]),
89                                                  atof(argv[an+2]),
90                                                  atof(argv[an+3]));
91                                  an += 3;
# Line 105 | Line 109 | char  *argv[];
109                                  goto unkopt;
110                          }
111                          break;
112 +                case 'x':                       /* x resolution */
113 +                        xsiz = atoi(argv[++an])*SSS;
114 +                        break;
115 +                case 'y':
116 +                        ysiz = atoi(argv[++an])*SSS;
117 +                        break;
118                  case 'h':                       /* height of characters */
119 <                        cheight = atoi(argv[++an]);
119 >                        cheight = atoi(argv[++an])*SSS;
120 >                        xsiz = xsiz = 0;
121                          break;
122                  case 'a':                       /* aspect ratio */
123                          aspect = atof(argv[++an]);
124                          break;
125 +                case 's':                       /* spacing */
126 +                        spacing = atof(argv[++an]);
127 +                        break;
128                  default:;
129   unkopt:
130                          fprintf(stderr, "%s: unknown option: %s\n",
131                                          argv[0], argv[an]);
132                          exit(1);
133                  }
134 +                                        /* load font file */
135 +        if ((libpath = getenv(ULIBVAR)) == NULL)
136 +                libpath = DEFPATH;
137 +        ourfont = getfont(fontfile);
138                                          /* get text */
139          if (an == argc)
140                  gettext(stdin);
# Line 125 | Line 143 | unkopt:
143  
144                                          /* create bit map */
145          makemap();
128                                        /* load font file */
129        if ((libpath = getenv(ULIBVAR)) == NULL)
130                libpath = DEFPATH;
131        ourfont = getfont(fontfile);
146                                          /* convert text to bitmap */
147          maptext();
148                                          /* print header */
# Line 144 | Line 158 | unkopt:
158  
159   makemap()                       /* create the bit map */
160   {
161 <        cwidth = cheight/aspect + 0.5;
161 >        double  pictaspect;
162 >        
163          if (direct == 'r' || direct == 'l') {
164 <                xsiz = maxline*cwidth;
165 <                ysiz = nlines*cheight;
164 >                if (xsiz == 0 || ysiz == 0) {
165 >                        cwidth = cheight/aspect + 0.5;
166 >                        xsiz = (long)maxwidth*cwidth >> 8;
167 >                        ysiz = nlines*cheight;
168 >                } else {
169 >                        pictaspect = 256*nlines*aspect/maxwidth;
170 >                        if (pictaspect*xsiz < ysiz)
171 >                                ysiz = pictaspect*xsiz + 0.5;
172 >                        else
173 >                                xsiz = ysiz/pictaspect + 0.5;
174 >                        cheight = ysiz/nlines;
175 >                        cwidth = cheight/aspect + 0.5;
176 >                }
177          } else {                        /* reverse orientation */
178 <                xsiz = nlines*cheight;
179 <                ysiz = maxline*cwidth;
178 >                if (xsiz == 0 || ysiz == 0) {
179 >                        cwidth = cheight/aspect + 0.5;
180 >                        xsiz = nlines*cheight;
181 >                        ysiz = (long)maxwidth*cwidth >> 8;
182 >                } else {
183 >                        pictaspect = maxwidth/(256*nlines*aspect);
184 >                        if (pictaspect*xsiz < ysiz)
185 >                                ysiz = pictaspect*xsiz + 0.5;
186 >                        else
187 >                                xsiz = ysiz/pictaspect + 0.5;
188 >                        cheight = xsiz/nlines;
189 >                        cwidth = cheight/aspect + 0.5;
190 >                }
191          }
192 +        if (xsiz % SSS)
193 +                xsiz += SSS - xsiz%SSS;
194 +        if (ysiz % SSS)
195 +                ysiz += SSS - ysiz%SSS;
196          xdim = (xsiz+7)/8;
197 <        ourbitmap = (BYTE *)calloc(ysiz, xdim);
198 <        if (ourbitmap == NULL) {
199 <                fprintf(stderr, "out of memory in makemap\n");
200 <                exit(1);
160 <        }
197 >        ourbitmap = (BYTE *)bmalloc(ysiz*xdim);
198 >        if (ourbitmap == NULL)
199 >                error(SYSTEM, "Out of memory in makemap");
200 >        bzero((char *)ourbitmap, ysiz*xdim);
201   }
202  
203  
# Line 170 | Line 210 | FILE  *fp;
210          int  len;
211  
212          maxline = 0;
213 +        maxwidth = 0;
214          nlines = 0;
215          while (fgets(buf, MAXLINE, fp) != NULL) {
216                  curl = (LINE *)malloc(sizeof(LINE));
217                  if (curl == NULL)
218                          goto memerr;
219                  len = strlen(buf);
220 <                curl->s = malloc(len--);
221 <                if (curl->s == NULL)
220 >                curl->s = malloc(len);
221 >                curl->sp = (short *)malloc(sizeof(short)*len--);
222 >                if (curl->s == NULL | curl->sp == NULL)
223                          goto memerr;
224 +                if (len > maxline)
225 +                        maxline = len;
226                  strncpy(curl->s, buf, len);
227                  curl->s[len] = '\0';
228 +                if (spacing < -1./256.)
229 +                        len = squeeztext(curl->sp, curl->s, ourfont,
230 +                                        (int)(spacing*-256.0));
231 +                else if (spacing > 1./256.)
232 +                        len = proptext(curl->sp, curl->s, ourfont,
233 +                                        (int)(spacing*256.0), 3);
234 +                else
235 +                        len = uniftext(curl->sp, curl->s, ourfont);
236 +                if (len > maxwidth)
237 +                        maxwidth = len;
238                  curl->next = ourtext;
239                  ourtext = curl;
186                if (len > maxline)
187                        maxline = len;
240                  nlines++;
241          }
242          return;
243   memerr:
244 <        fprintf(stderr, "out of memory in gettext\n");
193 <        exit(1);
244 >        error(SYSTEM, "Out of memory in gettext");
245   }
246  
247  
# Line 214 | Line 265 | char  *av[];
265          *--cp = '\0';
266          ourtext->next = NULL;
267          maxline = strlen(ourtext->s);
268 +        ourtext->sp = (short *)malloc(sizeof(short)*(maxline+1));
269 +        if (ourtext->sp == NULL)
270 +                goto memerr;
271 +        if (spacing < 0.0)
272 +                maxwidth = squeeztext(ourtext->sp, ourtext->s, ourfont,
273 +                                (int)(spacing*-256.0));
274 +        else if (spacing > 0.0)
275 +                maxwidth = proptext(ourtext->sp, ourtext->s, ourfont,
276 +                                (int)(spacing*256.0), 3);
277 +        else
278 +                maxwidth = uniftext(ourtext->sp, ourtext->s, ourfont);
279          nlines = 1;
280          return;
281   memerr:
282 <        fprintf(stderr, "out of memory in arg_text\n");
221 <        exit(1);
282 >        error(SYSTEM, "Out of memory in arg_text");
283   }
284  
285  
286   maptext()                       /* map our text */
287   {
288          register LINE  *curl;
289 <        int  l;
290 <        register int  c;
289 >        int  l, len;
290 >        register int  i, c;
291  
292 <        for (l = 0, curl = ourtext; curl != NULL; l++, curl = curl->next)
293 <                for (c = strlen(curl->s)-1; c >= 0; c--)
294 <                        mapglyph(ourfont->fg[curl->s[c]&0xff], c, l);
292 >        for (l = 0, curl = ourtext; curl != NULL; l += 256, curl = curl->next) {
293 >                len = strlen(curl->s); c = 0;
294 >                for (i = 0; i < len; i++) {
295 >                        c += curl->sp[i];
296 >                        mapglyph(ourfont->fg[curl->s[i]&0xff], c, l);
297 >                }
298 >        }
299   }
300  
301  
# Line 245 | Line 310 | int  tx0, ty0;
310          if (gl == NULL)
311                  return;
312  
248        tx0 <<= 8; ty0 <<= 8;
313          n = gl->nverts;
314          gp = gvlist(gl);
315          mapcoord(p0, gp[2*n-2]+tx0, gp[2*n-1]+ty0);
# Line 325 | Line 389 | int  run, rise;
389   writemap(fp)                    /* write out bitmap */
390   FILE  *fp;
391   {
392 +        COLR  pixval[SSS*SSS+1];        /* possible pixel values */
393 +        COLOR  ctmp0, ctmp1;
394 +        double  d;
395          COLR  *scanout;
396 <        int  y;
397 <        register int  x;
396 >        int  x, y;
397 >        register int  i, j;
398 >        int  cnt;
399          register int  inglyph;
400  
401 <        fprintf(fp, "-Y %d +X %d\n", ysiz, xsiz);
401 >        fprintf(fp, "-Y %d +X %d\n", ysiz/SSS, xsiz/SSS);
402  
403 <        scanout = (COLR *)malloc(xsiz*sizeof(COLR));
404 <        if (scanout == NULL) {
405 <                fprintf(stderr, "out of memory in writemap\n");
406 <                exit(1);
403 >        scanout = (COLR *)malloc(xsiz/SSS*sizeof(COLR));
404 >        if (scanout == NULL)
405 >                error(SYSTEM, "Out of memory in writemap");
406 >        for (i = 0; i <= SSS*SSS; i++) {        /* compute possible values */
407 >                copycolor(ctmp0, fgcolor);
408 >                d = (double)i/(SSS*SSS);
409 >                scalecolor(ctmp0, d);
410 >                copycolor(ctmp1, bgcolor);
411 >                d = 1.0 - d;
412 >                scalecolor(ctmp1, d);
413 >                addcolor(ctmp0, ctmp1);
414 >                setcolr(pixval[i], colval(ctmp0,RED),
415 >                                colval(ctmp0,GRN), colval(ctmp0,BLU));
416          }
417 <        for (y = ysiz-1; y >= 0; y--) {
417 >        for (y = ysiz/SSS-1; y >= 0; y--) {
418                  inglyph = 0;
419 <                for (x = 0; x < xsiz; x++) {
420 <                        if (tstbit(x, y))
421 <                                inglyph ^= 1;
422 <                        if (inglyph)
423 <                                copycolr(scanout[x], fgcolr);
424 <                        else
425 <                                copycolr(scanout[x], bgcolr);
419 >                for (x = 0; x < xsiz/SSS; x++) {
420 >                        cnt = 0;
421 >                        for (j = 0; j < SSS; j++)
422 >                                for (i = 0; i < SSS; i++) {
423 >                                        if (tstbit(x*SSS+i, y*SSS+j))
424 >                                                inglyph ^= 1<<j;
425 >                                        if (inglyph & 1<<j)
426 >                                                cnt++;
427 >                                }
428 >                        copycolr(scanout[x], pixval[cnt]);
429                  }
430 <                if (fwritecolrs(scanout, xsiz, fp) < 0) {
430 >                if (fwritecolrs(scanout, xsiz/SSS, fp) < 0) {
431                          fprintf(stderr, "write error in writemap\n");
432                          exit(1);
433                  }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines