home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / d / dvips551.zip / DVIPS.ZIP / DVIPS.H < prev    next >
C/C++ Source or Header  |  1993-02-13  |  9KB  |  270 lines

  1. /*
  2.  *   This is dvips, a freely redistributable PostScript driver
  3.  *   for dvi files.  It is (C) Copyright 1986-92 by Tomas Rokicki.
  4.  *   You may modify and use this program to your heart's content,
  5.  *   so long as you send modifications to Tomas Rokicki.  It can
  6.  *   be included in any distribution, commercial or otherwise, so
  7.  *   long as the banner string defined below is not modified (except
  8.  *   for the version number) and this banner is printed on program
  9.  *   invocation, or can be printed on program invocation with the -? option.
  10.  */
  11.  
  12. /*   This file is the header for dvips's global data structures. */
  13.  
  14. #define BANNER \
  15.              "This is dvips 5.512 Copyright 1986, 1993 Radical Eye Software\n"
  16. #include <stdio.h>
  17. #if defined(SYSV) || defined(VMS) || defined(__THINK__) || defined(MSDOS)
  18. #else
  19. #include <strings.h>
  20. #endif
  21. #if defined(lint) && defined(sun)
  22. extern char *sprintf() ;
  23. #endif
  24. #include "paths.h"
  25. #include "debug.h"
  26. #ifdef VMS
  27. #include "[]vms.h"
  28. #endif /* VMS */
  29. /*
  30.  *   We use malloc and free; these may need to be customized for your
  31.  *   site.
  32.  */
  33. #ifdef MSDOS
  34. void *malloc() ;
  35. #else
  36. #ifndef IBM6000
  37. char *malloc() ;
  38. #endif
  39. #endif
  40. void free() ;
  41. char *mymalloc() ;
  42. /*
  43.  *   Is your malloc big?
  44.  */
  45. #ifdef MSDOS
  46. #if !defined(__EMX__) && !defined(DJGPP)
  47. #define SMALLMALLOC
  48. #endif
  49. #endif
  50. /*
  51.  *   Constants, used to increase or decrease the capacity of this program.
  52.  */
  53. #define STRINGSIZE (25000)  /* maximum number of strings in program */
  54. #define RASTERCHUNK (8192)  /* size of chunk of raster */
  55. #define MINCHUNK (240)      /* minimum size char to get own raster */
  56. #define STACKSIZE (100)     /* maximum stack size for dvi files */
  57. #define MAXFRAME (10)       /* maximum depth of virtual font recursion */
  58. #define MAXFONTHD (100)     /* number of unique names of included fonts */
  59. #define STDOUTSIZE (75)     /* width of a standard output line */
  60. /*
  61.  *   Other constants, which define printer-dependent stuff.
  62.  */
  63. #define SWMEM (180000)      /* available virtual memory in PostScript printer */
  64. #define DPI (actualdpi)     /* dots per inch */
  65. #define VDPI (vactualdpi)   /* dots per inch */
  66. #define RES_TOLERANCE(dpi) ((int)(1+dpi/500))
  67.                             /* error in file name resolution versus desired */
  68. #define FONTCOST (298)      /* overhead cost of each sw font */
  69. #define PSFONTCOST (1100)   /* overhead cost for PostScript fonts */
  70. #define PSCHARCOST (20)     /* overhead cost for PostScript font chars */
  71. #define DNFONTCOST (35000)  /* overhead cost for downloaded PS font */
  72. #define CHARCOST (15)       /* overhead cost for each character */
  73. #define OVERCOST (30000)    /* cost of overhead */
  74. #define DICTITEMCOST (20)   /* cost per key, value in dictionary */
  75. #define NAMECOST (40)       /* overhead cost of each new name */
  76. /*
  77.  *   Type declarations.  integer must be a 32-bit signed; shalfword must
  78.  *   be a sixteen-bit signed; halfword must be a sixteen-bit unsigned;
  79.  *   quarterword must be an eight-bit unsigned.
  80.  */
  81. #ifdef MSDOS
  82. typedef long integer;
  83. #else
  84. typedef int integer;
  85. #endif
  86. typedef char boolean;
  87. typedef double real;
  88. typedef short shalfword ;
  89. typedef unsigned short halfword ;
  90. typedef unsigned char quarterword ;
  91. #ifndef __THINK__
  92. typedef short Boolean ;
  93. #endif
  94. /*
  95.  *   If the machine has a default integer size of 16 bits, and 32-bit
  96.  *   integers must be manipulated with %ld, set the macro SHORTINT.
  97.  */
  98. #ifdef XENIX
  99. #define SHORTINT
  100. #else
  101. #undef SHORTINT
  102. #endif
  103. #ifdef MSDOS
  104. #if !defined(__EMX__) && !defined(DJGPP)
  105. #define SHORTINT
  106. #endif
  107. #endif
  108.  
  109. /*
  110.  *   This is the structure definition for resident fonts.  We use
  111.  *   a small and simple hash table to handle these.  We don't need
  112.  *   a big hash table.
  113.  */
  114. #define RESHASHPRIME (73)
  115. struct resfont {
  116.    struct resfont *next ;
  117.    char *Keyname, *PSname, *TeXname ;
  118.    char *specialinstructions ;
  119.    char *downloadheader ; /* possibly multiple files */
  120.    quarterword sent ;
  121. } ;
  122.  
  123. /*
  124.  *   A chardesc describes an individual character.  Before the fonts are
  125.  *   downloaded, the flags indicate that the character has already been used
  126.  *   with the following meanings:
  127.  */
  128. typedef struct {
  129.    integer TFMwidth ;
  130.    quarterword *packptr ;
  131.    shalfword pixelwidth ;
  132.    quarterword flags, dmy ;
  133. } chardesctype ;
  134. #define EXISTS (1)
  135. #define PREVPAGE (2)
  136. #define THISPAGE (4)
  137. #define TOOBIG (8) /* not used at the moment */
  138. #define REPACKED (16)
  139. #define BIGCHAR (32)
  140. #define STATUSFLAGS (EXISTS|REPACKED|BIGCHAR)
  141. /*
  142.  *   A fontdesc describes a font.  The name, area, and scalename are located in
  143.  *   the string pool. The nextsize pointer is used to link fonts that are used
  144.  *   in included psfiles and differ only in scaledsize.  Such fonts also have
  145.  *   a non-NULL scalename that gives the scaledsize as found in the included
  146.  *   file.  The psflag indicates that the font has been used in an included
  147.  *   psfile.  It can be 0, PREVPAGE, THISPAGE, or EXISTS.
  148.  */
  149. typedef struct tfd {
  150.    integer checksum, scaledsize, designsize, thinspace ;
  151.    halfword dpi, loadeddpi ;
  152.    halfword alreadyscaled ;
  153.    halfword psname ;
  154.    halfword loaded ;
  155.    halfword maxchars ;
  156.    char *name, *area ;
  157.    struct resfont *resfont ;
  158.    struct tft *localfonts ;
  159.    struct tfd *next ;
  160.    struct tfd *nextsize;
  161.    char *scalename;
  162.    quarterword psflag;
  163.    chardesctype chardesc[256] ;
  164. } fontdesctype ;
  165.  
  166. /*  A fontmap associates a fontdesc with a font number.
  167.  */
  168. typedef struct tft {
  169.    integer fontnum ;
  170.    fontdesctype *desc ;
  171.    struct tft *next ;
  172. } fontmaptype ;
  173.  
  174. /*   Virtual fonts require a `macro' capability that is implemented by
  175.  *   using a stack of `frames'.
  176.  */
  177. typedef struct {
  178.    quarterword *curp, *curl ;
  179.    fontdesctype *curf ;
  180.    fontmaptype *ff ;
  181. } frametype ;
  182.  
  183. /*
  184.  *   The next type holds the font usage information in a 256-bit table;
  185.  *   there's a 1 for each character that was used in a section.
  186.  */
  187. typedef struct {
  188.    fontdesctype *fd ;
  189.    halfword psfused ;
  190.    halfword bitmap[16] ;
  191. } charusetype ;
  192.  
  193. /*   Next we want to record the relevant data for a section.  A section is
  194.  *   a largest portion of the document whose font usage does not overflow
  195.  *   the capacity of the printer.  (If a single page does overflow the
  196.  *   capacity all by itself, it is made into its own section and a warning
  197.  *   message is printed; the page is still printed.)
  198.  *
  199.  *   The sections are in a linked list, built during the prescan phase and
  200.  *   processed in proper order (so that pages stack correctly on output) during
  201.  *   the second phase.
  202.  */
  203. typedef struct t {
  204.    integer bos ;
  205.    struct t *next ;
  206.    halfword numpages ;
  207. } sectiontype ;
  208.  
  209. /*
  210.  *   Sections are actually represented not by sectiontype but by a more
  211.  *   complex data structure of variable size, having the following layout:
  212.  *      sectiontype sect ;
  213.  *      charusetype charuse[numfonts] ;
  214.  *      fontdesctype *sentinel = NULL ;
  215.  *   (Here numfonts is the number of bitmap fonts currently defined.)
  216.  *    Since we can't declare this or take a sizeof it, we build it and
  217.  *   manipulate it ourselves (see the end of the prescan routine).
  218.  */
  219. /*
  220.  *   This is how we build up headers and other lists.
  221.  */
  222. struct header_list {
  223.    struct header_list *next ;
  224.    char *Hname ;
  225.    char name[1] ;
  226. } ;
  227. /*
  228.  *   Some machines define putlong in their library.
  229.  *   We get around this here.
  230.  */
  231. #define putlong was_putlong
  232. /*
  233.  *   Information on available paper sizes is stored here.
  234.  */
  235. struct papsiz {
  236.    struct papsiz *next ;
  237.    integer xsize, ysize ;
  238.    char *name ;
  239.    char *specdat ;
  240. } ;
  241. #ifdef MVSXA /* IBM: MVS/XA */
  242. /* this is where we fix problems with conflicts for truncation
  243.    of long names (we might only do this if LONGNAME not set but ...) */
  244. #   define pprescanpages pprscnpgs  /* confict with pprescan */
  245. #   define flushDashedPath flshDshdPth  /* conflict with flushDash */
  246. #   define PageList PgList  /* re-definition conflict with pagelist  */
  247. /* adding ascii2ebcdic conversion table to extern */
  248.     extern char ascii2ebcdic[] ;
  249. #endif  /* IBM: MVS/XA */
  250. #ifdef VMCMS /* IBM: VM/CMS */
  251. /* this is where we fix problems with conflicts for truncation
  252.    of long names (we might only do this if LONGNAME not set but ...) */
  253. #   define pprescanpages pprscnpgs  /* confict with pprescan */
  254. #   define flushDashedPath flshDshdPth  /* conflict with flushDash */
  255. /* adding ascii2ebcdic conversion table to extern */
  256.     extern char ascii2ebcdic[] ;
  257. /* redefining fopen for VMCMS, see DVIPSCMS.C */
  258.     extern FILE *cmsfopen() ;
  259. #   ifdef fopen
  260. #      undef fopen
  261. #   endif
  262. #   define fopen cmsfopen
  263. #endif  /* IBM: VM/CMS */
  264. /*
  265.  *   Remove namespace conflict with standard library on Macintosh
  266.  */
  267. #ifdef __THINK__
  268. #define newstring newpoolstring
  269. #endif
  270.