[BACK]Return to term_ps.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/term_ps.c between version 1.16 and 1.20

version 1.16, 2010/06/29 14:18:05 version 1.20, 2010/06/30 12:30:36
Line 22 
Line 22 
   
 #include <assert.h>  #include <assert.h>
 #include <stdarg.h>  #include <stdarg.h>
   #include <stdint.h>
 #include <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
Line 358  static const struct font fonts[TERMFONT__MAX] = {
Line 359  static const struct font fonts[TERMFONT__MAX] = {
         } while (/* CONSTCOND */ 0)          } while (/* CONSTCOND */ 0)
   
   
 static  void              ps_letter(struct termp *, char);  static  double            ps_hspan(const struct termp *,
                                   const struct roffsu *);
   static  size_t            ps_width(const struct termp *, char);
   static  void              ps_advance(struct termp *, size_t);
 static  void              ps_begin(struct termp *);  static  void              ps_begin(struct termp *);
 static  void              ps_end(struct termp *);  static  void              ps_end(struct termp *);
 static  void              ps_advance(struct termp *, size_t);  
 static  void              ps_endline(struct termp *);  static  void              ps_endline(struct termp *);
 static  void              ps_fclose(struct termp *);  static  void              ps_fclose(struct termp *);
 static  size_t            ps_width(const struct termp *, char);  static  void              ps_letter(struct termp *, char);
 static  void              ps_pclose(struct termp *);  static  void              ps_pclose(struct termp *);
 static  void              ps_pletter(struct termp *, int);  static  void              ps_pletter(struct termp *, int);
 static  void              ps_printf(struct termp *, const char *, ...);  static  void              ps_printf(struct termp *, const char *, ...);
Line 373  static void    ps_setfont(struct termp *, enum termfon
Line 376  static void    ps_setfont(struct termp *, enum termfon
   
   
 void *  void *
 ps_alloc(void)  ps_alloc(char *outopts)
 {  {
         struct termp    *p;          struct termp    *p;
         size_t           pagex, pagey, margin;          size_t           pagex, pagey, margin, lineheight;
           const char      *toks[2];
           const char      *paper;
           char            *v;
   
         if (NULL == (p = term_alloc(TERMENC_ASCII)))          if (NULL == (p = term_alloc(TERMENC_ASCII)))
                 return(NULL);                  return(NULL);
   
         pagex = 612;          p->advance = ps_advance;
         pagey = 792;  
         margin = 72;  
   
         p->type = TERMTYPE_PS;  
         p->letter = ps_letter;  
         p->begin = ps_begin;          p->begin = ps_begin;
         p->end = ps_end;          p->end = ps_end;
         p->advance = ps_advance;  
         p->endline = ps_endline;          p->endline = ps_endline;
           p->hspan = ps_hspan;
           p->letter = ps_letter;
           p->type = TERMTYPE_PS;
         p->width = ps_width;          p->width = ps_width;
   
           toks[0] = "paper";
           toks[1] = NULL;
   
           paper = "letter";
   
           while (outopts && *outopts)
                   switch (getsubopt(&outopts, UNCONST(toks), &v)) {
                   case (0):
                           paper = v;
                           break;
                   default:
                           break;
                   }
   
           if (0 == strcasecmp(paper, "a4")) {
                   pagex = 595 * 100;
                   pagey = 842 * 100;
           } else {
                   pagex = 612 * 100;
                   pagey = 792 * 100;
           }
   
           margin = 72 * 100;
           lineheight = 12 * 100;
   
         assert(margin * 2 < pagex);          assert(margin * 2 < pagex);
         assert(margin * 2 < pagey);          assert(margin * 2 < pagey);
   
Line 403  ps_alloc(void)
Line 431  ps_alloc(void)
         p->engine.ps.footer = (margin / 2);          p->engine.ps.footer = (margin / 2);
         p->engine.ps.bottom = margin;          p->engine.ps.bottom = margin;
         p->engine.ps.left = margin;          p->engine.ps.left = margin;
         p->engine.ps.lineheight = 12;          p->engine.ps.lineheight = lineheight;
   
         p->defrmargin = pagex - (margin * 2);          p->defrmargin = pagex - (margin * 2);
         return(p);          return(p);
Line 587  ps_pletter(struct termp *p, int c)
Line 615  ps_pletter(struct termp *p, int c)
   
         if ( ! (PS_INLINE & p->engine.ps.psstate)) {          if ( ! (PS_INLINE & p->engine.ps.psstate)) {
                 ps_printf(p, "%zu %zu moveto\n(",                  ps_printf(p, "%zu %zu moveto\n(",
                                 p->engine.ps.pscol,                                  (size_t)(p->engine.ps.pscol / 100),
                                 p->engine.ps.psrow);                                  (size_t)(p->engine.ps.psrow / 100));
                 p->engine.ps.psstate |= PS_INLINE;                  p->engine.ps.psstate |= PS_INLINE;
         }          }
   
Line 617  ps_pletter(struct termp *p, int c)
Line 645  ps_pletter(struct termp *p, int c)
   
         if (c <= 32 || (c - 32 > MAXCHAR)) {          if (c <= 32 || (c - 32 > MAXCHAR)) {
                 ps_putchar(p, ' ');                  ps_putchar(p, ' ');
                 p->engine.ps.pscol += (fonts[f].gly[0].wx / 100);                  p->engine.ps.pscol += fonts[f].gly[0].wx;
                 return;                  return;
         }          }
   
         ps_putchar(p, c);          ps_putchar(p, c);
         c -= 32;          c -= 32;
         p->engine.ps.pscol += (fonts[f].gly[c].wx / 100);          p->engine.ps.pscol += fonts[f].gly[c].wx;
 }  }
   
   
Line 793  ps_width(const struct termp *p, char c)
Line 821  ps_width(const struct termp *p, char c)
 {  {
   
         if (c <= 32 || c - 32 >= MAXCHAR)          if (c <= 32 || c - 32 >= MAXCHAR)
                 return(fonts[(int)TERMFONT_NONE].gly[0].wx / 100);                  return(fonts[(int)TERMFONT_NONE].gly[0].wx);
   
         c -= 32;          c -= 32;
         return(fonts[(int)TERMFONT_NONE].gly[(int)c].wx / 100);          return(fonts[(int)TERMFONT_NONE].gly[(int)c].wx);
 }  }
   
   
   static double
   ps_hspan(const struct termp *p, const struct roffsu *su)
   {
           double           r;
   
           /*
            * All of these measurements are derived by converting from the
            * native measurement to AFM units, which are (scalesize/1000).
            * Since scalesize is 10 for us, we can just skip to (x/100).
            */
   
           switch (su->unit) {
           case (SCALE_CM):
                   r = su->scale * 28.34 * 100;
                   break;
           case (SCALE_IN):
                   r = su->scale * 72 * 100;
                   break;
           case (SCALE_PC):
                   r = su->scale * 12 * 100;
                   break;
           case (SCALE_PT):
                   r = su->scale * 100;
                   break;
           case (SCALE_EM):
                   r = su->scale *
                           fonts[(int)TERMFONT_NONE].gly[109 - 32].wx;
                   break;
           case (SCALE_MM):
                   r = su->scale * 2.834 * 100;
                   break;
           case (SCALE_EN):
                   r = su->scale *
                           fonts[(int)TERMFONT_NONE].gly[110 - 32].wx;
                   break;
           case (SCALE_VS):
                   r = su->scale * p->engine.ps.lineheight;
                   break;
           default:
                   r = su->scale;
                   break;
           }
   
           return(r);
   }
   

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.20

CVSweb