home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_100 / 145_01 / roff46.c < prev    next >
Text File  |  1979-12-31  |  8KB  |  286 lines

  1. /********************************************************/
  2. /*                            */
  3. /*            ROFF4, Version 1.60            */
  4. /*                            */
  5. /*(C) 1983,4 by Ernest E. Bergmann            */
  6. /*        Physics, Building #16            */
  7. /*        Lehigh Univerisity            */
  8. /*        Bethlehem, Pa. 18015            */
  9. /*                            */
  10. /* Permission is hereby granted for all commercial and    */
  11. /* non-commercial reproduction and distribution of this    */
  12. /* material provided this notice is included.        */
  13. /*                            */
  14. /********************************************************/
  15. /*Jan 14, 1984*/
  16.  
  17. #include "roff4.h"
  18. /**************************************************/
  19. int value(base,string)    /*unsigned conversion*/
  20. int base;        /*radix for conversion*/
  21. char *string;        /*no leading blanks please!*/
  22.             /*trailing whitespace or '\0'*/
  23. {int val,d;
  24. char c;
  25.     val=0;
  26.     for(d=digit(*string);d>=0 && d<base ; d=digit(*string))
  27.         {val = val*base + d;
  28.         string++;
  29.         }
  30.     c=*string;
  31.     if(!c || c==' ' || c==TAB || c=='\n') return(val);
  32.     else return(-1);    /*error return is -1*/
  33. }
  34. /**************************************************/
  35. int digit(d)
  36. char d;
  37. {    d=toupper(d);
  38.     if(d<='9') return(d-'0');
  39.     if(d<'A') return(-1); /*error return is negative val*/
  40.     if(d<='Z') return(10-'A'+d);
  41.     return(-1);    /*error*/
  42. }
  43. /**************************************************/
  44. strln3(s,word,num)
  45.  /*returns printed string length; checks legality of
  46.         word function;keeps track of vertical
  47.         excursions; records them in globals*/
  48. char *s;
  49. int word;    /* boolean, if true, check is made for none
  50.         black characters in the string*/
  51. int num;    /* for expansion of NUMSIGN;set 1 to ignore*/
  52. {int i,i2,p1,p2,p3;
  53. int t,b,h;    /*vertical vars*/
  54. char c, *ss;
  55. ss=s;
  56. t=b=h=0;
  57. p3=p2=p1=-LSZ;
  58. for(c=*s,i2=i=0;c;c=*(++s))
  59.     {if(c==NUMSIGN)
  60.         {i++;
  61.         if(num>9) i++;
  62.         if(num>99) i++;
  63.         if(num>999) i++;
  64.         }
  65.     else if((c!=TCVAL)&&(c!=CFVAL))
  66.         {if((c<=' ')&&(word)) goto error;
  67.         else i++;
  68.         }
  69.     else if(c==CFVAL)
  70.         {c=*(++s);
  71.         if(c==TCVAL) goto error;/*both CFVAL,TCVAL*/
  72.         switch(c)
  73.         {case 'h':
  74.         case 'H':if(i>i2) i2=i;
  75.              if(i) i--;
  76.             else goto error;/*before start*/
  77.             break;
  78.         case '+': h--; if(h<t) t=h; break;
  79.         case '-': h++; if(h>b) b=h; break;
  80.         case 'B':
  81.         case 'b':
  82.         case 'D':
  83.         case 'd':
  84.         case 'u':
  85.         case 'U':
  86.         case 'X':
  87.         case 'x': break;
  88.         case '(': p1=i; break;
  89.         case '[': p2=i; break;
  90.         case '{': p3=i; break;
  91.         case ')': if(i>i2) i2=i; i=p1; break;
  92.         case ']': if(i>i2) i2=i; i=p2; break;
  93.         case '}': if(i>i2) i2=i; i=p3; break;
  94.         default: if(CPTR[c-' ']) break;
  95.         goto error;    /*undecipherable*/
  96.         }}
  97.     else/*c==TCVAL*/
  98.         {if(class(*(s+1))!=BLACK)
  99.         goto error;    /*illegal translation*/
  100.         }
  101.     }
  102. if(h) goto error;
  103. if(word){WTOP=t;
  104.     WBOT=b;
  105.     }
  106. else    {LTOP=t;
  107.     LBOT=b;
  108.     }
  109. if(i>=i2)return(i);
  110. /* else prints beyond last character: */
  111. error:
  112.     /*should be fprint -> STDERR*/
  113.     fprintf(STDERR,"STRLN3:<%s> is illegally formed\n",
  114.                 ss);
  115.     return(strlen(ss));
  116. }
  117. /* A properly formed token string has its first printable
  118. character indicating the lefthand edge and the last printable
  119. character at the right hand edge.  Only legal control pairs
  120. accepted.  It must consist of printable symbols. */
  121. /************************************
  122. set stack like set() sets a variable
  123. *************************************/
  124. setS(param,val,arg_typ,defval,minval,maxval)
  125. int param[STKSIZ+1],val,defval,minval,maxval;
  126. char arg_typ;
  127. {int i;
  128.     if(val==NO_VAL)
  129.         {for(i=0;i<STKSIZ;i++)    /*pop*/
  130.         param[i]=param[i+1];
  131.         param[STKSIZ]=defval;
  132.         }
  133.     else    {for(i=STKSIZ;i;i--)    /*push*/
  134.         param[i]=param[i-1];
  135.         if (arg_typ=='+') *param+=val;
  136.         else if (arg_typ=='-') *param-=val;
  137.         else *param=val;
  138.         }
  139.     *param=min(max(*param,minval),maxval);
  140. if DEBUG fprintf(STDERR,"\n  setS: *param = %d",*param);
  141. }
  142. /******************************************
  143. initialize stack type variable, st, with v
  144. *******************************************/
  145. initsk(st,v)
  146. int st[STKSIZ+1],v;
  147. {int i;
  148.     for(i=STKSIZ+1;i;st[--i]=v);
  149. }
  150. /**************************************************/
  151. gettr()    /*process .tr */
  152. {char chr,*pchr,getcode();
  153. char wrdbuf[MAXLINE];
  154.     getwrd(LINE,wrdbuf);    /*remove .tr*/
  155.     if(getwrd(LINE,wrdbuf)==WE_HAVE_A_WORD)chr=*wrdbuf;
  156.     else return;    /*error: missing args*/
  157.  
  158.     pchr = TREND;
  159.     if('.'==getcode())
  160.         TPTR[chr-' ']=pchr;    /*record pointer*/
  161.     else    {TREND=pchr;
  162.     fprintf(STDERR,"\nError for .TR; error in line:\n%s",
  163.         LINE);
  164.     }
  165. }
  166. /**************************************************/
  167. getpc()    /*process .pc, printer control */
  168. {char chr,*pchr,getcode();
  169. char wrdbuf[MAXLINE];
  170.     getwrd(LINE,wrdbuf);    /*remove .pc*/
  171.     if(getwrd(LINE,wrdbuf)==WE_HAVE_A_WORD)chr=*wrdbuf;
  172.     else return;    /*error: missing args*/
  173.  
  174.     pchr = TREND;
  175.     if('.'==getcode())
  176.         CPTR[chr-' ']=pchr;    /*record pointer*/
  177.     else    {TREND=pchr;
  178.     fprintf(STDERR,"\nError for .PC; error in line:\n%s",
  179.         LINE);
  180.     }
  181. }
  182. /**************************************************/
  183. /*added start() and complete() to avoid contention on TRTBL*/
  184. char getcode()    /*LINE must contain the radix as the first
  185.         token and it and the following lines then
  186.         contain code values finally delimited by a
  187.         token that starts with a '.' ; comments can
  188.         be at the end of any of these lines, set off by
  189.         " ;" */
  190. {int base,code;    /*conversion radix, value*/
  191. char *pcode,ncode;
  192. char wrdbuf[MAXLINE];
  193.     if(TREND>(&TRTBL[TRSIZ-128]))
  194.         fprintf(STDERR,"\nTR table full");
  195.     if(getwrd(LINE,wrdbuf)==WE_HAVE_A_WORD)
  196.        {switch(toupper(*wrdbuf))
  197.         {case 'B': base=2;break;
  198.         case 'O':
  199.         case 'Q': base=8;break;
  200.         case 'D': base=10;break;
  201.         case 'H': base=16;break;
  202.         default: return(FALSE);    /*error*/
  203.         }
  204.     if DEBUG
  205.     fprintf(STDERR,"\nGETCODE:radix token=<%s>,base=<%d>",
  206.                     wrdbuf, base);
  207.        }
  208.     else return(FALSE);    /*error: missing arg*/
  209. start();
  210.     pcode =TREND++;
  211.     *pcode=ncode = 0;
  212.     while(ncode<127)
  213.     {while(getwrd(LINE,wrdbuf)!=WE_HAVE_A_WORD)
  214. #if BDS
  215.         fgets2(LINE,IOBUF);
  216. #else
  217.         fgets2(LINE,iobuf);
  218. #endif
  219.     if DEBUG fprintf(STDERR,"\nGETTR: next token is <%s>",
  220.                 wrdbuf);
  221. #if BDS
  222.      if(';'==*wrdbuf) fgets2(LINE,IOBUF);/*comment*/
  223. #else
  224.      if(';'==*wrdbuf) fgets2(LINE,iobuf);/*comment*/
  225. #endif
  226.      else if('.'==*wrdbuf)
  227.         {*pcode = ncode;        /*save #*/
  228.         complete();
  229.         return(*wrdbuf);
  230.         }
  231.      else    {
  232.         if((code=value(base,wrdbuf)) > -1)
  233.             {*(TREND++) = code;
  234.              ncode++ ;
  235.             }
  236.         else {complete();
  237.              return(*wrdbuf);    /*conversion error*/
  238.              }
  239.         }
  240.     }
  241.     complete();
  242.     fprintf(STDERR,"\nGETCODE: code sequence too long");
  243.     return(FALSE);
  244. }
  245. /**************************************************/
  246. ocode()    /*process .ou*/
  247. {char wrdbuf[MAXLINE],*pcode,*p;
  248.     getwrd(LINE,wrdbuf);    /*remove .ou*/
  249.     p=pcode=TREND;
  250.     if('.'==getcode()) outstr(p);
  251.     else fprintf(STDERR,"\nOCODE: error in:\n%s",LINE);
  252.     TREND=pcode;
  253. }
  254. /**************************************************/
  255. outstr(p)    /*print string whose bytecount is *p */
  256. char *p;
  257. {int i;
  258. for(i=*(p++); i; i--) putchar(*(p++));
  259. }
  260. /**************************************************/
  261. getfr()    /*process .FR ;cf. ocode() */
  262. {char *pchr,getcode(),wrdbuf[MAXLINE];
  263.     getwrd(LINE,wrdbuf);
  264.     if(getwrd(LINE,wrdbuf)==WE_HAVE_A_WORD)
  265.         FRVAL = atoi(wrdbuf);
  266.     else return;
  267.     FRVAL=max(1,FRVAL); FRVAL=min(FRVAL,4);
  268.     pchr=TREND;
  269.     if('.'==getcode()) FRSTRING=pchr;
  270.     else    {TREND = pchr;
  271.         fprintf(STDERR,"\nError for .FR in:\n%s\n",
  272.             LINE);
  273.         }
  274. }
  275. /**************************************************/
  276. getwh()    /*process .WH ;cf. gettr() */
  277. {char *pcode, getcode(), wrdbuf[MAXLINE];
  278.     getwrd(LINE,wrdbuf);
  279.     pcode = TREND;
  280.     if('.'==getcode()) WHSTRING=pcode;
  281.     else    {TREND = pcode;
  282.         fprintf(STDERR,"\nError for .WH in:\n%s\n",
  283.             LINE);
  284.         }
  285. }
  286.