home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume5 / hpgl2ps-v2 < prev    next >
Internet Message Format  |  1989-02-03  |  60KB

  1. Path: xanth!ames!amdcad!sun!pitstop!sundc!seismo!uunet!munnari!basser!root
  2. From: damc@natmlab.dms.oz.AU (Don McCormick)
  3. Newsgroups: comp.sources.misc
  4. Subject: v05i067: HPGL to PostScript Translator, version 2
  5. Message-ID: <1659@basser.oz>
  6. Date: 7 Dec 88 06:17:16 GMT
  7. Sender: root@basser.oz
  8. Organization: CSIRO Maths and Stats & Applied Physics, Sydney, Australia
  9. Lines: 2656
  10. Approved: john@cs.su.oz.AU
  11.  
  12. Posting-number: Volume 5, Issue 67
  13. Submitted-by: Don McCormick <damc@natmlab.dms.oz.AU>
  14. Archive-name: hpgl2ps-v2
  15.  
  16. I am posting this improved version of hpgl2ps.
  17.  
  18. The filter will work on the HPGL output from the CAD packages, AUTOCAD and
  19. VERSACAD.
  20.  
  21. Don McCormick
  22.  
  23. #--------------------------- Cut here ------------------------------------------
  24. # This is a shell archive.  Remove anything before this line, then
  25. # unpack it by saving it in a file and typing "sh file".  (Files
  26. # unpacked will be owned by you and have default permissions.)
  27. #
  28. # This archive contains:
  29. # README dxy2ps.man hpgl2ps.man Makefile changesizes.c circle.c defcoords.c defn.h dxy2ps.c dxycom.c end_draw.c getval.c hpgl2ps.c hpglcom.c linesize.c linetype.c manualfeed.c plotdot.c plotinit.c plotps.c ps_macros.c rectangle.c textps.c viewport.c window.c test1.dxy test1.hpgl
  30.  
  31. echo x - README
  32. cat > "README" << '//E*O*F README//'
  33. There are two filters in this package that are based on the Roland
  34. plotter command set.
  35.  
  36. 1. DXY: A simple command set that is used with all DXY plotters
  37.  
  38. 2. RD-GL: This command set is a superset of the HP (Hewlett Packard)
  39.    graphics language however it is compatable with the 7475A command
  40.    set. In fact this version of the hpgl2ps filter has been rewritten
  41.    using the 7475A command hand book.
  42.  
  43. Not all the commands of DXY or RD-GL (HPGL) are implemented (approx 95%
  44. are) and those commands that are not are skipped and a warning given.
  45. It is very easy to add to this filter if a particular unimplemented
  46. command is desired.
  47.  
  48. If you wish to implement a command go to the relevant portion in the
  49. command switch "dxycom.c" or "hpglcom.c" and call an appropriate user
  50. written procedure.  (You will need a good knowledge of writing
  51. PostScript programs). Also don't forget to put the procedure name in
  52. the Makefile.
  53.  
  54. The filters call the procedure "getopt" that is used to interpret
  55. command line options and arguments and is normally available on 4.3 bsd
  56. and Sys V Unix. For those sites running 4.1 or 4.2 it may be available
  57. as a local library and must be written into the Makefile.
  58.  
  59. IF YOU DONT HAVE GETOPT YOU WILL HAVE REWRITE THE CODE THAT INTERPRETS
  60. COMMAND LINE OPTIONS AND ARGUMENTS.
  61.  
  62. A procedure called "rint" is called in "dxycom.c" and "linetype.c"
  63. if you dont have this call in your maths library then the following
  64. C code will have to be written.
  65.  
  66. Call the following rint.c (put "rint.o" in the Makefile).
  67.  
  68. /*-----------Start rint.c------------------*/
  69.  
  70. int rint(f) double f; 
  71. {return (int)(f + ((f>0) ? 0.5 : -0.5));}
  72.  
  73. /*------------ End rint.c------------------*/
  74.  
  75. NOTE 1: The PostScript macros are written into a C procedure to allow
  76. each filter to be a single stand alone program. These macros can easily
  77. be incorporated into other filter programs.
  78.  
  79. NOTE 2: I have written some test procedures for the testing of each
  80. filter they are "test1.hpgl" for hpgl2ps and "test1.dxy" for dxy2ps.
  81.  
  82. Don McCormick.
  83.  
  84. //E*O*F README//
  85.  
  86. echo x - dxy2ps.man
  87. cat > "dxy2ps.man" << '//E*O*F dxy2ps.man//'
  88. .TH DXY2PS (1L) "25 September 1987"
  89. .SH NAME
  90. dxy2ps - A Roland DXY plot command filter to PostScript
  91. .SH SYNOPSIS
  92. \fBdxy2ps\fR
  93. [\fB-amr\fR]
  94. [\fB-l \fIline sizes\fR]
  95. [\fB-s \fIscale\fR]
  96. [\fB-x \fIoffset\fR]
  97. [\fB-y \fIoffset\fR]
  98. [\fIplotfile\fR]
  99. .SH DESCRIPTION
  100. This filter is used to convert the Roland DXY and the Roland 
  101. Graphics Language (RD-GL) (which is a superset of the Hewlet Packard
  102. Graphics Language (HP-GL)) commands to PostScript.
  103. .PP
  104. The RD-GL commands are only operated on if each command is prefixed with
  105. a "^", therfore if your plotfile only contains HP-GL or RD-GL commands
  106. use the filter \fBhpgl2ps\fR.
  107. .PP
  108. The default conditions for \fBdxy2ps\fR are:
  109. .TP
  110. .B 1.
  111. The plot translation is from ISO A3 (420mm x 297mm) to ISO A4
  112. (297mm x 210mm) on the LaserWriter.
  113. .TP
  114. .B 2.
  115. Line thicknesses are in millimeters and are for lines (pens) 1 to 9:
  116. ( 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 1.0, 1.25, 1.5 )
  117. .TP
  118. .B Note:
  119. If the plotfile is not specified then standard input is assumed.
  120. .SH ARGUMENTS
  121. .TP
  122. .B -a
  123. Draw on an A4 ISO (297mm x 210mm) sheet of paper. This will give an
  124. aproximate 1:1 translation to the LaserWriter.
  125. .TP
  126. \fB-l \fIline sizes\fR
  127. This option allows the default line sizes to be replaced with different
  128. sizes starting from line (pen) one through nine. The new sizes (real or
  129. integer) are entered in a comma seperated string (\fIline size\fR) and
  130. are in millimeters. Only the sizes entered in the string will be
  131. changed with respect to lines (pens) one to nine while nonentered line
  132. (pen) sizes will retain the default sizes.
  133. .sp
  134. In the following example only the first three sizes will be changed.
  135. .sp
  136. eg: dxy2ps -l 0.4,0.3,1 file | lpr -Plaser1
  137. .TP
  138. .B -m
  139. Enable the manual feed on the LaserWriter (cutoff time 3 minutes).
  140. .TP
  141. .B -r
  142. Rotate plot(s) through 90 degrees. (The plot is made smaller)
  143. .TP
  144. \fB-s\fI scale\fR Scale the plot from 0.1 to 3 times its original
  145. size.
  146. .TP
  147. \fB-x\fI offset\fR Place an X offset (in mm) in the plot.
  148. .TP
  149. \fB-y\fI offset\fR Place an Y offset (in mm) in the plot.
  150. .PP
  151. \fBNote:\fR Offsets are with respect to the 0, 0 (origin) of the HP-GL
  152. / RD-GL plotting commands, thus if the minimum plotting coordinates are
  153. below either the X and/or Y zero axis then a positive offset is
  154. applied.  Similarly if the minimum plot coordinates are above the X
  155. and/or Y zero axis then a negative offset is applied.
  156. .SH FILES
  157. /usr/local/bin/dxy2ps
  158. .br
  159. /usr/local/bin/hpgl2ps
  160. .SH AUTHOR
  161. Don McCormick
  162. .br
  163. CSIRO
  164. .br
  165. Division of Applied Physics
  166. .br
  167. PO 218, Lindfield, N.S.W., 2070
  168. .br
  169. Australia
  170. .SH BUGS
  171. Some of the graphics commands are unimplemented and a warning will be
  172. displayed. If this command is vital then it must be written into the code.
  173. .PP
  174. No interactive command is suported.
  175. .PP
  176. If any bugs are found notify damc@natmlab or damc@nifty or root.
  177. //E*O*F dxy2ps.man//
  178.  
  179. echo x - hpgl2ps.man
  180. cat > "hpgl2ps.man" << '//E*O*F hpgl2ps.man//'
  181. .TH HPGL2PS (1L) "25 September 1987"
  182. .SH NAME
  183. hpgl2ps - A HP (Hewlett Packard) plot command filter to PostScript
  184. .SH SYNOPSIS
  185. \fBhpgl2ps\fR
  186. [\fB-amr\fR]
  187. [\fB-l \fIline sizes\fR]
  188. [\fB-s \fIscale\fR]
  189. [\fB-x \fIoffset\fR]
  190. [\fB-y \fIoffset\fR]
  191. [\fIplotfile\fR]
  192. .SH DESCRIPTION
  193. This filter is used to convert the Hewlett Packard Graphic Language (HP-GL)
  194. 9873C plotter commands to PostScript. The HP-GL commands are a subset of the
  195. Roland plotter command set (RD-GL).
  196. .PP
  197. The default conditions for \fBhpgl2ps\fR are:
  198. .TP
  199. .B 1.
  200. The plot translation is from ISO A3 (420mm x 297mm) to ISO A4
  201. (297mm x 210mm) on the LaserWriter.
  202. .TP
  203. .B 2.
  204. Line thicknesses are in millimeters and are for lines (pens) 1 to 9:
  205. ( 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 1.0, 1.25, 1.5 )
  206. .TP
  207. .B Note:
  208. If the plotfile is not specified then standard input is assumed.
  209. .SH ARGUMENTS
  210. .TP
  211. .B -a
  212. Draw on an A4 ISO (297mm x 210mm) sheet of paper. This will give an
  213. aproximate 1:1 translation to the LaserWriter.
  214. .TP
  215. \fB-l \fIline sizes\fR
  216. This option allows the default line sizes to be replaced with different
  217. sizes starting from line (pen) one through nine. The new sizes (real or
  218. integer) are entered in a comma seperated string (\fIline size\fR) and
  219. are in millimeters. Only the sizes entered in the string will be
  220. changed with respect to lines (pens) one to nine while nonentered line
  221. (pen) sizes will retain the default sizes.
  222. .sp
  223. In the following example only the first three sizes will be changed.
  224. .sp
  225. eg: hpgl2ps -l 0.4,0.3,1 file | lpr -Plaser1
  226. .TP
  227. .B -m
  228. Enable the manual feed on the LaserWriter (cutoff time 3 minutes).
  229. .TP
  230. .B -r
  231. Rotate plot(s) through 90 degrees. (The plot is made smaller)
  232. .TP
  233. \fB-s\fI scale\fR Scale the plot from 0.1 to 3 times its original
  234. size.
  235. .TP
  236. \fB-x\fI offset\fR Place an X offset (in mm) in the plot.
  237. .TP
  238. \fB-y\fI offset\fR Place an Y offset (in mm) in the plot.
  239. .PP
  240. \fBNote:\fR Offsets are with respect to the 0, 0 (origin) of the HP-GL
  241. / RD-GL plotting commands, thus if the minimum plotting coordinates are
  242. below either the X and/or Y zero axis then a positive offset is
  243. applied.  Similarly if the minimum plot coordinates are above the X
  244. and/or Y zero axis then a negative offset is applied.
  245. .SH FILES
  246. /usr/local/bin/hpgl2ps
  247. .SH AUTHOR
  248. Don McCormick
  249. .br
  250. CSIRO
  251. .br
  252. Division of Applied Physics
  253. .br
  254. PO 218, Lindfield, N.S.W., 2070
  255. .br
  256. Australia
  257. .SH BUGS
  258. Some of the graphics commands are unimplemented and a warning will be
  259. displayed. If this command is vital then it must be written into the code.
  260. .PP
  261. No interactive command is suported.
  262. .PP
  263. If any bugs are found notify damc@natmlab or damc@nifty or root.
  264. //E*O*F hpgl2ps.man//
  265.  
  266. echo x - Makefile
  267. cat > "Makefile" << '//E*O*F Makefile//'
  268. # 1.0 dxy2ps and hpgl2ps (Copyright) D McCormick
  269. # Commercial reproduction prohibited.
  270. #
  271. FILTER1=    dxy2ps
  272. FILTER2=    hpgl2ps
  273. INSDIR=        /usr/local/bin
  274. INCLUDE=    defn.h
  275. LOCALLIB=    libroland.a
  276. AR=        ar
  277. ARFLAGS=    ru
  278. LOADLIBES=    -lm 
  279. CFLAGS=     -g
  280.  
  281. OBJ1=    dxy2ps.o
  282.  
  283. OBJ2=    hpgl2ps.o
  284.  
  285. OBJC=    changesizes.o circle.o      defcoords.o   dxycom.o\
  286.     end_draw.o    getval.o      hpglcom.o     linesize.o\
  287.     linetype.o    manualfeed.o  plotdot.o     plotinit.o\
  288.     plotps.o      ps_macros.o   rectangle.o   textps.o\
  289.     viewport.o    window.o
  290.  
  291. all:        $(FILTER1) $(FILTER2)
  292.  
  293. $(FILTER1):    $(LOCALLIB) $(OBJ1)
  294.         $(CC) $(CFLAGS) -o $@ $(OBJ1) $(LOCALLIB) $(LOADLIBES)
  295.  
  296. $(FILTER2):    $(LOCALLIB) $(OBJ2)
  297.         $(CC) $(CFLAGS) -o $@ $(OBJ2) $(LOCALLIB) $(LOADLIBES)
  298.  
  299. $(LOCALLIB):    $(OBJC)
  300.         $(AR) $(ARFLAGS) $@ $(OBJC)
  301.         ranlib $(LOCALLIB)
  302.  
  303. $(OBJC):    $(INCLUDE)
  304.  
  305. $(OBJ1):    $(INCLUDE)
  306.  
  307. $(OBJ2):    $(INCLUDE)
  308.  
  309. install:    $(FILTER1) $(FILTER2)
  310.         install -s $(FILTER1) $(INSDIR)
  311.         install -s $(FILTER2) $(INSDIR)
  312.  
  313. clean:
  314.         -rm -f *.o a.out core libroland.a
  315. //E*O*F Makefile//
  316.  
  317. echo x - changesizes.c
  318. cat > "changesizes.c" << '//E*O*F changesizes.c//'
  319. /*
  320.  * This utility will take a string of real numbers seperated by commas and
  321.  * put them in an array. 
  322.  *
  323.  * Don McCormick 
  324.  */
  325. #include "defn.h"
  326.  
  327. #define ERROR1 "Only 9 line sizes allowed"
  328. #define ERROR2 "Too many decimal points in number"
  329. #define ERROR3 "line size specification incorrect"
  330. #define ERROR4 "Max no of characters for each line size is 5"
  331.  
  332. changesizes(sizebuf)
  333. char    sizebuf[50];
  334. {
  335.     int     i;
  336.     int     j = 0;
  337.     int     k = 0;
  338.     int     DECIMAL = 0;
  339.     float   number;
  340.     char    numbuf[5];
  341.  
  342.     for (i = 0; i < 50; i++)
  343.     {
  344.     if (sizebuf[i] == ',' || sizebuf[i] == NULL)
  345.     {
  346.         if ((number = atof(numbuf)) >= 0.01 && number <= 10)
  347.         pen_size[j] = number;    /* Put number in array */
  348.         else
  349.         fprintf(stderr, "Warning: line size too large ignored \n");
  350.  
  351.         if (sizebuf[i] == NULL) return;
  352.  
  353.         if (j++ > 8)
  354.         {
  355.         fprintf(stderr, "Error: %s\n", ERROR1);
  356.         exit(1);
  357.         }
  358.         for (k = 0; k < 5; k++)
  359.         numbuf[k] = NULL;    /* Clear number buffer */
  360.  
  361.         k = 0;
  362.         DECIMAL = 0;    /* One decimal per number */
  363.  
  364.         while (sizebuf[i + 1] == ',' && sizebuf[i + 1] != NULL)
  365.         i++;        /* Get rid of extra commas */
  366.     } else
  367.     {
  368.         if ((sizebuf[i] >= '0' && sizebuf[i] <= '9')
  369.         || sizebuf[i] == '.')
  370.         {
  371.         if (sizebuf[i] == '.')
  372.         {
  373.             if (DECIMAL == 1)
  374.             {
  375.                 fprintf(stderr, "Error: %s\n", ERROR2);
  376.                 exit(1);
  377.             }
  378.             DECIMAL = 1;
  379.         }
  380.         numbuf[k] = sizebuf[i];
  381.         } else
  382.         {
  383.         fprintf(stderr, "Error: %s\n", ERROR3);
  384.         exit(1);
  385.         }
  386.         if (k++ > 5)
  387.         {
  388.         fprintf(stderr, "Error: %s\n", ERROR4);
  389.         exit(1);
  390.         }
  391.     }
  392.     }
  393. }
  394. //E*O*F changesizes.c//
  395.  
  396. echo x - circle.c
  397. cat > "circle.c" << '//E*O*F circle.c//'
  398. #include "defn.h"
  399.  
  400. circle(type)
  401. int    type;
  402. {
  403.     float    radius;
  404.     float    start_angle = 0;
  405.     float    end_angle = 360;
  406.     float    chord_angle = 0;
  407.     float    Xc, Yc;
  408.     float    percent;
  409.     float    distance;
  410.     float    length;
  411.     float    angle;
  412.  
  413.     end_draw();
  414.  
  415.     switch (type)
  416.     {
  417.     case RDGLCIRCLE:
  418.     if (SIGNED_NUMERIC)
  419.         radius = getval() * XSCALE;
  420.     if (SIGNED_NUMERIC)
  421.         chord_angle = getval();
  422.     Xc = absX;
  423.     Yc = absY;
  424.     break;
  425.  
  426.     case CIRCLE:
  427.     if (SIGNED_NUMERIC)
  428.         absX = Xc = getval() * XSCALE + XOFFSET;
  429.     if (SIGNED_NUMERIC)
  430.         absY = Yc = getval() * YSCALE + YOFFSET;
  431.     if (SIGNED_NUMERIC)
  432.         radius = getval() * XSCALE;
  433.     if (SIGNED_NUMERIC)
  434.         start_angle = getval();
  435.     if (SIGNED_NUMERIC)
  436.         end_angle = getval();
  437.     if (SIGNED_NUMERIC)
  438.         chord_angle = getval();
  439.     break;
  440.  
  441.     case RCIRCLE:
  442.     if (SIGNED_NUMERIC)
  443.         radius = getval() * XSCALE;
  444.     if (SIGNED_NUMERIC)
  445.         start_angle = getval();
  446.     if (SIGNED_NUMERIC)
  447.         end_angle = getval();
  448.     if (SIGNED_NUMERIC)
  449.         chord_angle = getval();
  450.     angle = deg2rad * (90.0 - start_angle);
  451.     Xc = absX - radius * cos(angle);
  452.     angle = deg2rad * (90.0 - start_angle);
  453.     Yc = absY + radius * sin(angle);
  454.     break;
  455.  
  456.     case CCIRCLE:
  457.     if (SIGNED_NUMERIC)
  458.        absX = getval() * XSCALE + XOFFSET;
  459.     if (SIGNED_NUMERIC)
  460.        absY = getval() * YSCALE + YOFFSET;
  461.     break;
  462.  
  463.     case ACIRCLE:
  464.     Xc = absX;
  465.     Yc = absY;
  466.     if (SIGNED_NUMERIC)
  467.         radius = getval() * XSCALE;
  468.     if (SIGNED_NUMERIC)
  469.         start_angle = getval();
  470.     if (SIGNED_NUMERIC)
  471.         end_angle = getval();
  472.     if (SIGNED_NUMERIC)
  473.         chord_angle = getval();
  474.     break;
  475.  
  476.     case SCIRCLE:
  477.     if (SIGNED_NUMERIC)
  478.         percent = getval();
  479.     if (SIGNED_NUMERIC)
  480.         distance = getval();
  481.     if (SIGNED_NUMERIC)
  482.         length = getval();
  483.     fprintf(stderr,
  484.         "Warning: segment and indication lines not available yet\n");
  485.     break;
  486.     }
  487.  
  488.     printf("%g %g %g %g %g %g Ellipse\n",
  489.         Xc, Yc, radius, radius, start_angle, end_angle);
  490. }
  491. //E*O*F circle.c//
  492.  
  493. echo x - defcoords.c
  494. cat > "defcoords.c" << '//E*O*F defcoords.c//'
  495. /*
  496.  *    Define Scaling plotting points.
  497.  *        P1 (P1x, P1y),  P2 (P2x, P2y)
  498.  *
  499.  *    Define User Unit mapping points.
  500.  *        U1 (U1x, U1y),  U2 (U2x, U2y)
  501.  *
  502.  *    Plotter PaperSize can be:
  503.  *        "A3" ISO (297mm by 420mm)
  504.  *        "A4" ISO (210mm by 297mm)
  505.  *        "A"  ANSI (8.5" by 11")
  506.  *        "B"  ANSI (11" by 17")
  507.  *
  508.  *    Maximum Plotting Range ( HPGL Plotter units) maxXrange, maxYrange
  509.  *
  510.  *        "A4" ISO 0-11040 by 0-7721     (274.6mm by 192.1mm)
  511.  *        "A3" ISO 0-16158 by 0-11040    (401.9mm by 274.6mm)
  512.  *        "A"  ANSI 0-10365 by 0-7962    (10.15" by 7.8")
  513.  *        "B"  ANSI 0-16640 by 0-10365    (16.3" by 10.15")
  514.  *
  515.  *      Note: will be scaled to fit on A4 LaserWriter paper.
  516.  *
  517.  *    Mode can be:    "HPGL" or "DXY"
  518.  *
  519.  * Don McCormick
  520.  */
  521.  
  522. #include "defn.h"
  523.  
  524. defcoords()
  525. {
  526.     if (strcmp(Mode, "HPGL") == 0)
  527.     {
  528.     if (strcmp(PaperSize, "A3") == 0)    /* HP-GL ISO A3 420mm * 297mm */
  529.     {
  530.         maxXrange = 16158;
  531.         maxYrange = 11040;
  532.         P2x = U2x = 15370;
  533.         P2y = U2y = 10602;
  534.         P1x = U1x = 170;
  535.         P1y = U1y = 602;
  536.     }
  537.     else                    /* HP-GL ISO A4 297mm * 210mm */
  538.     {
  539.         maxXrange = 11040;
  540.         maxYrange = 7721;
  541.         P2x = U2x = 10603;
  542.         P2y = U2y = 7721;
  543.         P1x = U1x = 603;
  544.         P1y = U1y = 521;
  545.     }
  546.     }
  547.     else
  548.     {
  549.     if (strcmp(PaperSize, "A3") == 0)    /* DXY ISO A3 420mm * 297mm */
  550.     {
  551.         maxXrange = P2x = U2x = 3800;
  552.         maxYrange = P2y = U2y = 2700;
  553.     }
  554.     else                    /* DXY ISO A4 297mm * 210mm */
  555.     {
  556.         maxXrange = P2x = U2x = 2700;
  557.         maxYrange = P2y = U2x = 1920;
  558.     }
  559.         P1x = P1y = U1x = U1y = 0.0;
  560.     }
  561. }
  562. //E*O*F defcoords.c//
  563.  
  564. echo x - defn.h
  565. cat > "defn.h" << '//E*O*F defn.h//'
  566. /*
  567.  *
  568.  *    The following definations allow for the efficient 
  569.  *    translation of DXY and RD-GL codes to PostScript code
  570.  *
  571.  */
  572.  
  573. #include <stdio.h>
  574. #include <math.h>
  575. #include <ctype.h>
  576. #include <string.h>
  577.  
  578. #define TRUE    1
  579. #define FALSE    0
  580.  
  581. #define CR    '\015'
  582. #define LF    '\012'
  583. #define SPACE    '\040'
  584.  
  585. #define SIGNED_NUMERIC  (ungetc(( ch = getc(stream)),stream) != EOF ) &&\
  586.         (((ch>='0') && (ch<='9')) || (ch=='-') || (ch=='+')\
  587.         || (ch==' ') || (ch==',') || (ch == '.'))
  588.  
  589. #define CIRCLE    21        /* DXY Circle */
  590. #define RCIRCLE 22        /* DXY Relative Circle */
  591. #define CCIRCLE 23        /* DXY Centered Circle */
  592. #define ACIRCLE 24        /* DXY Arc plus Circle */
  593. #define SCIRCLE 25        /* DXY Segment Circle */
  594. #define RDGLARCABS 26        /* RD-GL Arc Absolute */
  595. #define RDGLARCREL 27        /* RD-GL Arc Relative */
  596. #define RDGLCIRCLE 28        /* RD-GL Circle */
  597.  
  598. #define TEXT    31
  599. #define MARK    32
  600.  
  601. #define LINETYPE    41
  602. #define LINESCALE    42
  603. #define LINE_TYPE_SCALE    43
  604. /*
  605.  *    Maximum PostScript Page Coordinates (in mm)
  606.  */
  607. #define    PAGEHEIGHT    297;
  608. #define    PAGEWIDTH    210;
  609. #define PAGEMARGIN    8;        /* Margin around paper */
  610. /*
  611.  *    Files to open if any
  612.  */
  613. FILE    *stream;
  614. FILE    *fopen();
  615. /*
  616.  *    Plotting Parameters that will contain the necessary PostScript
  617.  *    commands to plot (see dxy2ps.c for the initialisation) and
  618.  *    ps_macros.c for the plotting macros).
  619.  */
  620. char    *MOVE;
  621. char    *RMOVE;
  622. char    *DRAW;
  623. char    *RDRAW;
  624. /*
  625.  *    Definition of "ch" used in SIGNED_NUMERIC
  626.  */
  627. char    ch;
  628. /*
  629.  *    Define the function getval() which returns a real number.
  630.  */
  631. float    getval();
  632. /*
  633.  *    Scaling parameters used for translation from DXY and RD-GL
  634.  *    coordinate sytem to the PostScript coordinate system which
  635.  *    has been defined in millimeters. (See above)
  636.  *
  637.  *    The procedure viewport.c allows the program to initialise
  638.  *    plotting scaling points and the user scaling points as well
  639.  *    as allowing the commands "IP" and "SC" to change them.
  640.  */
  641. float    SCALE;            /* User selected plot scale */
  642. float    XSCALE;            /* */
  643. float    YSCALE;            /* */
  644. float    XOFFSET;        /* */
  645. float    YOFFSET;        /* */
  646. float    maxXrange, maxYrange;    /* Max plotting range in plotter units */
  647. float    P1x, P1y;        /* Scaling point P1 area coords */
  648. float    P2x, P2y;        /* Scaling point P2 area coords */
  649. float    U1x, U1y;        /* User U1 area coords */
  650. float    U2x, U2y;        /* User U2 area coords */
  651. /*
  652.  *    End of line terminator (RD-GL / HP-GL)
  653.  */
  654. char    EOL;
  655. /*
  656.  *    PostScript Coordinate parameters
  657.  */
  658. float    lastXmove;
  659. float    lastYmove;
  660. float    absX;
  661. float    absY;
  662. float    xval;
  663. float    yval;
  664. float    xoffset, yoffset;
  665. /*
  666.  *    Extra parameters
  667.  */
  668. float    char_angle;
  669. float    char_height;
  670. float    char_width;
  671. float    char_space;
  672. float    char_slant;
  673.  
  674. char    *font;
  675.  
  676. char    symbol;
  677.  
  678. int    dcount;
  679. /*
  680.  *    Degree radian conversion parameter ie: deg_rad = asin(1) / 90.0;
  681.  *    ( Defined in dxy2ps.c or rdgl2ps.c )
  682.  */
  683. float    deg2rad;
  684. /*
  685.  *    Line / pen size parameter (max 9 sizes)
  686.  */
  687. float    pen_size[9];
  688. /*
  689.  *    Paper size (ie A3 or A4) and Mode (HPGL or DXY)
  690.  */
  691. char    *PaperSize;
  692. char    *Mode;
  693. /*
  694.  *    Flags
  695.  */
  696. int    LANDSCAPE;
  697. int    DRAW_FLAG;
  698. int    PLOTABS;
  699. int    PENDOWN;
  700. int    SETDOT;     /* HP-GL commands only */
  701. int    SYMBOL;        /* HP-GL commands only */
  702. int    DEBUG;
  703. int    SCALING;    /* True when SC command is detected */
  704. //E*O*F defn.h//
  705.  
  706. echo x - dxy2ps.c
  707. cat > "dxy2ps.c" << '//E*O*F dxy2ps.c//'
  708. #include    "defn.h"
  709.  
  710. #define USAGE "Usage: dxy2ps [-amr] [-l line sizes] [-s scale] [-x offset] [-y offset] [file]\n"
  711.  
  712. main(argc, argv)
  713. int     argc;
  714. char   *argv[];
  715. {
  716.     extern int optind;
  717.     extern char *optarg;
  718.  
  719.     int     op;
  720.     int     opt;
  721.     int        MANUAL_FEED = 0;            /* DEFAULT: No manual feed */
  722.  
  723.     PaperSize = "A3";
  724.     Mode = "DXY";
  725.     defcoords();            /* Set up plotter coordinates */
  726.  
  727.     plotinit();            /* Get other initialisations */
  728.  
  729.     while ((opt = getopt(argc, argv, "al:ms:x:y:r")) != EOF)
  730.     {
  731.     switch (opt)
  732.     {
  733.     case 'a':        /* DXY ISO A4 297mm * 210mm */
  734.         PaperSize = "A4";
  735.             defcoords();
  736.         break;
  737.  
  738.     case 'l':
  739.         changesizes(optarg);
  740.         break;
  741.  
  742.     case 'm':
  743.         MANUAL_FEED = 1;
  744.         break;
  745.  
  746.     case 'r':
  747.         LANDSCAPE = FALSE;
  748.         break;
  749.  
  750.     case 's':
  751.         SCALE = atof(optarg);
  752.         if (SCALE < 0.1)
  753.         SCALE = 0.1;
  754.         else
  755.         if (SCALE > 3)
  756.         SCALE = 3;
  757.         break;
  758.  
  759.     case 'x':
  760.         xoffset = atof(optarg);
  761.         break;
  762.  
  763.     case 'y':
  764.         yoffset = atof(optarg);
  765.         break;
  766.  
  767.     default:
  768.         fprintf(stderr, "%s\n", USAGE);
  769.         exit(1);
  770.     }
  771.     }
  772.     if (optind == argc)
  773.     stream = stdin;
  774.     else if ((stream = fopen(argv[optind], "r")) == NULL)
  775.     {
  776.     fprintf(stderr, "ERROR: cannot open \"%s\"\n", argv[optind]);
  777.     exit(1);
  778.     }
  779.     ps_macros();            /* Output PostScript Macros */
  780.  
  781.     viewport(1);            /* Scale the viewport for the plot */
  782.  
  783.     printf("/%s %g Font\n", font, char_height);
  784.  
  785.     if (MANUAL_FEED)
  786.     manualfeed(1);
  787.  
  788.     while ((op = getc(stream)) != EOF)
  789.     if ((isalpha(op) > 0) || op == '^')
  790.         dxycom(op);
  791.  
  792.     end_draw();
  793.  
  794.     printf("showpage\n");
  795.  
  796.     if (MANUAL_FEED)
  797.     manualfeed(0);
  798. }
  799. //E*O*F dxy2ps.c//
  800.  
  801. echo x - dxycom.c
  802. cat > "dxycom.c" << '//E*O*F dxycom.c//'
  803. #include "defn.h"
  804.  
  805. dxycom(dxyop)
  806. char    dxyop;
  807. {
  808.     int intval;
  809.     int hpglop;
  810.  
  811.     switch (dxyop)
  812.     {
  813.     case 'H':            /* HOME */
  814.     case 'h':
  815.     break;
  816.  
  817.     case 'D':            /* DRAW */
  818.     case 'd':
  819.     plotps(DRAW);
  820.     break;
  821.  
  822.     case 'M':            /* MOVE */
  823.     case 'm':
  824.     plotps(MOVE);
  825.     break;
  826.  
  827.     case 'I':            /* RELATIVE DRAW */
  828.     case 'i':
  829.     plotps(RDRAW);
  830.     break;
  831.  
  832.     case 'R':            /* RELATIVE MOVE */
  833.     case 'r':
  834.     plotps(RMOVE);
  835.     break;
  836.  
  837.     case 'L':            /* LINE TYPE */
  838.     case 'l':
  839.     linetype(LINETYPE);
  840.     break;
  841.  
  842.     case 'B':            /* LINE SCALE */
  843.     case 'b':
  844.     linetype(LINESCALE);
  845.     break;
  846.  
  847.     case 'X':            /* AXIS */
  848.     case 'x':
  849.     {
  850.         int     p, q, r;
  851.  
  852.         p = rint(getval());
  853.         q = rint(getval());
  854.         r = rint(getval());
  855.         fprintf(stderr, "Warning %c not implemented yet\n", dxyop);
  856.     }
  857.     break;
  858.  
  859.     case 'P':            /* PRINT */
  860.     case 'p':
  861.     textps(TEXT);
  862.     break;
  863.  
  864.     case 'S':            /* ALPHA SCALE */
  865.     case 's':
  866.     {
  867.         int n;
  868.  
  869.         if (SIGNED_NUMERIC)
  870.             n = rint(getval());
  871.         else
  872.         n = 3;
  873.         char_height = (n + 1) * 0.8 * SCALE;
  874.         char_width = (n + 1) * 0.4 * SCALE;
  875.         char_space = (n + 1) * 0.2 * SCALE;
  876.     }
  877.     printf("/%s %g %g %g DefFont\n",
  878.         font, char_width, char_height, char_slant);
  879.     break;
  880.  
  881.     case 'Q':            /* ALPHA ROTATE */
  882.     case 'q':
  883.     intval = rint(getval());
  884.     switch (intval)
  885.     {
  886.     case 0:
  887.         char_angle = 0.0;
  888.         break;
  889.  
  890.     case 1:
  891.         char_angle = 90.0;
  892.         break;
  893.  
  894.     case 2:
  895.         char_angle = 180.0;
  896.         break;
  897.  
  898.     case 3:
  899.         char_angle = 270.0;
  900.         break;
  901.     }
  902.     break;
  903.  
  904.     case 'N':            /* MARK */
  905.     case 'n':
  906.     textps(MARK);
  907.     break;
  908.  
  909.     case 'J':            /* PEN CHANGE */
  910.     case 'j':
  911.     linesize();
  912.     break;
  913.  
  914.     case 'C':            /* CIRCLE */
  915.     case 'c':
  916.     circle(CIRCLE);
  917.     break;
  918.  
  919.     case 'E':            /* RELATIVE CIRCLE */
  920.     case 'e':
  921.     circle(RCIRCLE);
  922.     break;
  923.  
  924.     case 'A':            /* CIRCLE CENTER */
  925.     case 'a':
  926.     circle(CCIRCLE);
  927.     break;
  928.  
  929.     case 'G':            /* ARC + CIRCLE */
  930.     case 'g':
  931.     circle(ACIRCLE);
  932.     break;
  933.  
  934.     case 'K':            /* SEGMENT AND INDICATION LINES FOR CIRCLES */
  935.     case 'k':
  936.     circle(SCIRCLE);
  937.     break;
  938.  
  939.     case 'T':            /* HATCHING */
  940.     case 't':
  941.     rectangle();
  942.     break;
  943.  
  944.     case '^':            /* CALL HP-GL / RD-GL COMMANDS */
  945.     end_draw();
  946.     if ((hpglop = getc(stream)) != EOF)
  947.         hpglcom(hpglop);
  948.     break;
  949.  
  950.     default:
  951.     fprintf(stderr, "Warning: %c Unknown DXY command\n", dxyop);
  952.     break;
  953.     }
  954. }
  955. //E*O*F dxycom.c//
  956.  
  957. echo x - end_draw.c
  958. cat > "end_draw.c" << '//E*O*F end_draw.c//'
  959. #include "defn.h"
  960.  
  961. end_draw()
  962. {
  963.     if (DRAW_FLAG)
  964.     {
  965.     if (lastXmove == absX && lastYmove == absY)
  966.         printf("closepath\n");
  967.  
  968.     printf("stroke\n");
  969.     DRAW_FLAG = 0;
  970.     }
  971.     dcount = 0;
  972. }
  973. //E*O*F end_draw.c//
  974.  
  975. echo x - getval.c
  976. cat > "getval.c" << '//E*O*F getval.c//'
  977. /*
  978.  * Returns a real number 
  979.  */
  980.  
  981. #include "defn.h"
  982.  
  983. #define ERROR "Two or more decimal places in a number"
  984.  
  985. float
  986. getval()
  987. {
  988.     char    valbuf[10];
  989.     float   value;
  990.     int     DECIMAL = 0;
  991.     int     i;
  992.  
  993.     /* Null the value buffer "valbuf" */
  994.     for (i = 0; i < 10; i++)
  995.     valbuf[i] = NULL;
  996.  
  997.     i = 0;
  998.     ch = getc(stream);
  999.  
  1000. /*
  1001.  * Get Rid of seperators
  1002.  */
  1003.     while ((ch == ' ') || (ch == ','))
  1004.     ch = getc(stream);
  1005.  
  1006.     while ((ch >= '0' && ch <= '9') || ch == '.' || ch == '-' || ch == '+')
  1007.     {
  1008.     if (ch == '.')
  1009.     {
  1010.         if (DECIMAL)
  1011.         {
  1012.         fprintf(stderr,"Error: %s\n", ERROR);
  1013.         exit(1);
  1014.         }
  1015.         DECIMAL = 1;
  1016.     }
  1017.     valbuf[i++] = ch;
  1018.     ch = getc(stream);
  1019.     }
  1020.     ungetc(ch, stream);        /* Put non numeric char back */
  1021.     value = atof (valbuf);
  1022.     return (value);
  1023. }
  1024. //E*O*F getval.c//
  1025.  
  1026. echo x - hpgl2ps.c
  1027. cat > "hpgl2ps.c" << '//E*O*F hpgl2ps.c//'
  1028. #include    "defn.h"
  1029.  
  1030. #define USAGE "Usage: hpgl2ps [-amr] [-l line sizes] [-s scale] [-x offset] [-y offset] [file]\n"
  1031.  
  1032. main(argc, argv)
  1033. int     argc ;
  1034. char   *argv[] ;
  1035. {
  1036.     extern int optind ;
  1037.     extern char *optarg ;
  1038.  
  1039.     int     op ;
  1040.     int     opt ;
  1041.     int        MANUAL_FEED = 0 ;            /* DEFAULT: No manual feed */
  1042.  
  1043.     DEBUG = FALSE ;
  1044.     SCALING = FALSE ;
  1045.     PaperSize = "A3" ;
  1046.     Mode = "HPGL" ;
  1047.     defcoords() ;
  1048.  
  1049.     plotinit() ;            /* Get other initialiasations */
  1050.  
  1051.     while ((opt = getopt(argc, argv, "Dal:ms:x:y:r")) != EOF)
  1052.     {
  1053.     switch (opt)
  1054.     {
  1055.     case 'D':
  1056.         DEBUG = TRUE ;
  1057.         break ;
  1058.  
  1059.     case 'a':        /* HP-GL ISO A4 297mm * 210mm */
  1060.         PaperSize = "A4" ;
  1061.         defcoords() ;
  1062.         break ;
  1063.  
  1064.     case 'l':
  1065.         changesizes(optarg) ;
  1066.         break ;
  1067.  
  1068.     case 'm':
  1069.         MANUAL_FEED = 1 ;
  1070.         break ;
  1071.  
  1072.     case 'r':
  1073.         LANDSCAPE = FALSE ;
  1074.         break ;
  1075.  
  1076.     case 's':
  1077.         SCALE = atof(optarg) ;
  1078.         if (SCALE < 0.1)
  1079.         SCALE = 0.1 ;
  1080.         else
  1081.         if (SCALE > 3)
  1082.         SCALE = 3 ;
  1083.         break ;
  1084.  
  1085.     case 'x':
  1086.         xoffset = atof(optarg) ;
  1087.         break ;
  1088.  
  1089.     case 'y':
  1090.         yoffset = atof(optarg) ;
  1091.         break ;
  1092.  
  1093.     default:
  1094.         fprintf(stderr, "%s\n", USAGE) ;
  1095.         exit(1) ;
  1096.     }
  1097.     }
  1098.     if (optind == argc)
  1099.     stream = stdin ;
  1100.     else if ((stream = fopen(argv[optind], "r")) == NULL)
  1101.     {
  1102.     fprintf(stderr, "ERROR: cannot open \"%s\"\n", argv[optind]) ;
  1103.     exit(1) ;
  1104.     }
  1105.     ps_macros() ;            /* Output PostScript Macros */
  1106.  
  1107.     viewport(1) ;            /* Scale the viewport for the plot */
  1108.  
  1109.     if (MANUAL_FEED)
  1110.     manualfeed(1) ;
  1111.  
  1112.     while ((op = getc(stream)) != EOF)
  1113.     if (isalpha(op) > 0)
  1114.         hpglcom(op) ;
  1115.  
  1116.     end_draw() ;
  1117.  
  1118.     printf("showpage\n") ;
  1119.  
  1120.     if (MANUAL_FEED)
  1121.     manualfeed(0) ;
  1122. }
  1123. //E*O*F hpgl2ps.c//
  1124.  
  1125. echo x - hpglcom.c
  1126. cat > "hpglcom.c" << '//E*O*F hpglcom.c//'
  1127. /*
  1128.  * This procedure translates RD-GL (Roland DG Graphic Language) into the
  1129.  * equivalent PostScript language. 
  1130.  *
  1131.  * The RD-GL is a superset equivalent to HP-GL 
  1132.  *
  1133.  * Don McCormick 
  1134.  */
  1135.  
  1136. #include "defn.h"
  1137.  
  1138. /* The folowing defaults should be 0.5% and 1.0% for the respective  character
  1139.  * width and height, however this is too small when scaled to Postcript
  1140.  * charcter sizes.
  1141.  */
  1142. float DEFWIDTH = 0.0075 ;    /* 0.75 % of P2x - P1x for default char width */
  1143. float DEFHEIGHT = 0.015 ;    /* 1.5 % of P2y - P1y for default char height */
  1144.  
  1145. /*
  1146.  * Note the 1.4 multiplier allows for an approx conversion
  1147.  * between the plotter char size and what would be expected
  1148.  * on the Laser printer.
  1149.  */
  1150. float PSmult = 1.4 ;
  1151.  
  1152. hpglcom(op1)
  1153. char    op1 ;
  1154. {
  1155.     char    op2 ;
  1156.     int     arg ;
  1157.  
  1158.     PSmult *= SCALE ;
  1159.  
  1160.     switch (op1)
  1161.     {
  1162.     case 'A':
  1163.     case 'a':
  1164.     op2 = getc(stream) ;
  1165.     switch (op2)
  1166.     {
  1167.     case 'A':        /* (AA) Arc Absolute */
  1168.     case 'a':
  1169.         while (((arg = getc(stream)) != EOF) && isalpha(arg) == 0) ;
  1170.         ungetc(arg, stream) ;
  1171.         fprintf(stderr, "Warning: Arc absolute not implemented yet\n") ;
  1172.         break ;
  1173.  
  1174.     case 'P':        /* (AP) Automatic Pen Lift (not implemented) */
  1175.     case 'p':
  1176.         while (((arg = getc(stream)) != EOF) && isalpha(arg) == 0) ;
  1177.         ungetc(arg, stream) ;
  1178.         break ;
  1179.  
  1180.     case 'R':        /* (AR) Arc Relative */
  1181.     case 'r':
  1182.         while (((arg = getc(stream)) != EOF) && isalpha(arg) == 0) ;
  1183.         ungetc(arg, stream) ;
  1184.         fprintf(stderr, "Warning: Arc relative not implemented yet\n") ;
  1185.         break ;
  1186.  
  1187.     default:
  1188.         fprintf(stderr, "Warning: %c%c Unknown HP-GL Command\n\n", op1, op2) ;
  1189.     }
  1190.     break ;
  1191.  
  1192.     case 'C':
  1193.     case 'c':
  1194.     op2 = getc(stream) ;
  1195.     switch (op2)
  1196.     {
  1197.     case 'A':        /* (CA) Alternate Character Set (Not Used) */
  1198.     case 'a':
  1199.         while (((arg = getc(stream)) != EOF) && isalpha(arg) == 0) ;
  1200.         ungetc(arg, stream) ;
  1201.         fprintf(stderr, "Warning: Alt character set not implemented yet\n") ;
  1202.         break ;
  1203.  
  1204.     case 'I':        /* (CI) Circle */
  1205.     case 'i':
  1206.         circle(RDGLCIRCLE) ;
  1207.         break ;
  1208.  
  1209.     case 'P':        /* (CP) Character Plot */
  1210.     case 'p':
  1211.         {
  1212.         float   xspace, yspace ;
  1213.  
  1214.         xspace = getval() * XSCALE * (char_width + char_space) ;
  1215.         yspace = getval() * YSCALE * (char_width + char_space) ;
  1216.         end_draw() ;
  1217.         printf("    %g mm %g mm %s\n", xspace, yspace, RMOVE) ;
  1218.         }
  1219.         break ;
  1220.  
  1221.     case 'S':        /* (CS) Standard Character Set */
  1222.     case 's':
  1223.         while (((arg = getc(stream)) != EOF) && isalpha(arg) == 0) ;
  1224.         ungetc(arg, stream) ;
  1225.         break ;
  1226.  
  1227.     default:
  1228.         fprintf(stderr, "Warning: %c%c Unknown HP-GL Command\n", op1, op2) ;
  1229.     }
  1230.     break ;
  1231.  
  1232.     case 'D':
  1233.     case 'd':
  1234.     op2 = getc(stream) ;
  1235.     switch (op2)
  1236.     {
  1237.     case 'C':        /* (DC) Digitize Clear (Not Used) */
  1238.     case 'c':
  1239.         break ;
  1240.  
  1241.     case 'F':        /* (DF) Default */
  1242.     case 'f':
  1243.         SETDOT = FALSE ;
  1244.         PENDOWN = FALSE ;
  1245.         SYMBOL = 0 ;
  1246.         EOL = '\003' ;
  1247.         char_angle = 0 ;
  1248.         char_slant = 0 ;
  1249.         char_width = DEFWIDTH * (P2x - P1x) * XSCALE * PSmult ;
  1250.         char_height = DEFHEIGHT * (P2y - P1y) * YSCALE * PSmult ;
  1251.         char_space = char_width * (1/.67 - 1) ;
  1252.         printf("/%s %g %g %g DefFont\n",
  1253.         font, char_width, char_height, char_slant) ;
  1254.         break ;
  1255.  
  1256.     case 'I':        /* (DI) Absolute Direction */
  1257.     case 'i':
  1258.         {
  1259.         float   run, rise ;
  1260.  
  1261.         if (SIGNED_NUMERIC)
  1262.         {
  1263.             run = getval() * XSCALE ;
  1264.             rise = getval() * YSCALE ;
  1265.             char_angle = atan2(rise, run) / deg2rad ;
  1266.         }
  1267.         else
  1268.             char_angle = 0 ;
  1269.         }
  1270.         break ;
  1271.  
  1272.     case 'P':        /* (DP) Digitize Point (Not Used) */
  1273.     case 'p':
  1274.         break ;
  1275.  
  1276.     case 'R':        /* (DR) Relative Direction */
  1277.     case 'r':
  1278.         {
  1279.         float   run, rise ;
  1280.  
  1281.         if (SIGNED_NUMERIC)
  1282.         {
  1283.             run = getval() * XSCALE ;
  1284.             rise = getval() * YSCALE ;
  1285.             char_angle += atan2(rise, run) / deg2rad ;
  1286.         }
  1287.         else
  1288.             char_angle = 0 ;
  1289.         }
  1290.         break ;
  1291.  
  1292.     case 'T':        /* (DT) Define Label Terminator */
  1293.     case 't':
  1294.         if ((arg = getc(stream)) != EOF)
  1295.         EOL = arg ;    /* End of label terminator */
  1296.         break ;
  1297.  
  1298.     default:
  1299.         fprintf(stderr, "Warning: %c%c Unknown HP-GL Command\n", op1, op2) ;
  1300.     }
  1301.     break ;
  1302.  
  1303.     case 'E':
  1304.     case 'e':
  1305.     op2 = getc(stream) ;
  1306.     switch (op2)
  1307.     {
  1308.     case 'A':        /* (EA) Edge Rectangle Absolute */
  1309.     case 'a':
  1310.         break ;
  1311.  
  1312.     case 'R':        /* (ER) Edge Rectangle Relative */
  1313.     case 'r':
  1314.         break ;
  1315.  
  1316.     case 'W':        /* (EW) Edge Wedge */
  1317.     case 'w':
  1318.         break ;
  1319.  
  1320.     default:
  1321.         fprintf(stderr, "Warning: %c%c Unknown RD-GL Command\n", op1, op2) ;
  1322.     }
  1323.     break ;
  1324.  
  1325.     case 'F':
  1326.     case 'f':
  1327.     op2 = getc(stream) ;
  1328.     switch (op2)
  1329.     {
  1330.     case 'T':        /* (FT) Fill Type */
  1331.     case 't':
  1332.         fprintf(stderr, "Warning: Fill type not implemented yet\n") ;
  1333.         break ;
  1334.  
  1335.     default:
  1336.         fprintf(stderr, "Warning: %c%c Unknown HP-GL Command\n", op1, op2) ;
  1337.     }
  1338.     break ;
  1339.  
  1340.     case 'I':
  1341.     case 'i':
  1342.     op2 = getc(stream) ;
  1343.     switch (op2)
  1344.     {
  1345.     case 'M':        /* (IM) Input Mask (Not Used) */
  1346.     case 'm':
  1347.         break ;
  1348.  
  1349.     case 'N':        /* (IN) Initialize */
  1350.     case 'n':
  1351.         defcoords() ;
  1352.         SETDOT = FALSE ;
  1353.         PENDOWN = FALSE ;
  1354.         SYMBOL = 0 ;
  1355.         EOL = '\003' ;
  1356.         char_angle = 0 ;
  1357.         char_slant = 0 ;
  1358.         char_width = DEFWIDTH * (P2x - P1x) * XSCALE * PSmult ;
  1359.         char_height = DEFHEIGHT * (P2y - P1y) * YSCALE * PSmult ;
  1360.         char_space = char_width * (1/0.67 - 1) ;
  1361.         printf("/%s %g %g %g DefFont\n",
  1362.         font, char_width, char_height, char_slant) ;
  1363.         break ;
  1364.  
  1365.     case 'P':        /* (IP) Input P1 and P2 */
  1366.     case 'p':
  1367.         if (SIGNED_NUMERIC)
  1368.         {
  1369.         P1x = getval() ;
  1370.             if (SIGNED_NUMERIC)
  1371.             P1y = getval() ;
  1372.         else
  1373.         {
  1374.             fprintf(stderr,"Error expecting P1y from IP instruction\n") ;
  1375.             defcoords() ;        /* Set default coordinates */
  1376.             break ;
  1377.         }
  1378.         }
  1379.         else
  1380.         {
  1381.         defcoords() ;        /* Set default coordinates */
  1382.         break ;
  1383.         }
  1384.  
  1385.         if (SIGNED_NUMERIC)
  1386.         {
  1387.         P2x= getval() ;
  1388.             if (SIGNED_NUMERIC)
  1389.             P2y = getval() ;
  1390.         else
  1391.         {
  1392.             fprintf(stderr,"Error expecting P2y from IP instruction\n") ;
  1393.             defcoords() ;        /* Set default coordinates */
  1394.             break ;
  1395.         }
  1396.         }
  1397.         else
  1398.         {
  1399.         P2x += P1x ;            /* P2 tracks P1 */
  1400.         P2y += P1y ;            /* P2 tracks P1 */
  1401.         }
  1402.         viewport(0) ;
  1403.         break ;
  1404.  
  1405.     case 'W':        /* (IW) Input Window */
  1406.     case 'w':
  1407.         window() ;
  1408.         break ;
  1409.  
  1410.     default:
  1411.         fprintf(stderr, "Warning: %c%c Unknown HP-GL Command\n", op1, op2) ;
  1412.     }
  1413.     break ;
  1414.  
  1415.     case 'L':
  1416.     case 'l':
  1417.     op2 = getc(stream) ;
  1418.     switch (op2)
  1419.     {
  1420.     case 'B':        /* (LB) Label */
  1421.     case 'b':
  1422.         textps(TEXT) ;
  1423.         break ;
  1424.  
  1425.     case 'T':        /* (LT) Line Type */
  1426.     case 't':
  1427.         linetype(LINE_TYPE_SCALE) ;
  1428.         break ;
  1429.  
  1430.     default:
  1431.         fprintf(stderr, "Warning: %c%c Unknown HP-GL Command\n", op1, op2) ;
  1432.     }
  1433.     break ;
  1434.  
  1435.     case 'O':
  1436.     case 'o':
  1437.     op2 = getc(stream) ;
  1438.     switch (op2)
  1439.     {
  1440.     case 'A':        /* (OA) Output Actual Position */
  1441.     case 'a':
  1442.         break ;
  1443.  
  1444.     case 'C':        /* (OC) Output Commanded Position */
  1445.     case 'c':
  1446.         break ;
  1447.  
  1448.     case 'D':        /* (OD) Output Digitise */
  1449.     case 'd':
  1450.         break ;
  1451.  
  1452.     case 'E':        /* (OD) Output Error */
  1453.     case 'e':
  1454.         break ;
  1455.  
  1456.     case 'P':        /* (OP) Output P1 and P2 */
  1457.     case 'p':
  1458.         break ;
  1459.  
  1460.     case 'S':        /* (OS) Output Status */
  1461.     case 's':
  1462.         break ;
  1463.  
  1464.     case 'W':        /* (OW) Output Window */
  1465.     case 'w':
  1466.         break ;
  1467.  
  1468.     default:
  1469.         fprintf(stderr, "Warning: %c%c Unknown HP-GL Command\n", op1, op2) ;
  1470.     }
  1471.     break ;
  1472.  
  1473.     case 'P':
  1474.     case 'p':
  1475.     op2 = getc(stream) ;
  1476.     switch (op2)
  1477.     {
  1478.     case 'A':        /* (PA) Plot Absolute */
  1479.     case 'a':
  1480.         PLOTABS = TRUE ;
  1481.         if (SIGNED_NUMERIC)
  1482.         if (SETDOT || SYMBOL)
  1483.             plotdot(MOVE) ;
  1484.         else if (PENDOWN)
  1485.             plotps(DRAW) ;
  1486.         else
  1487.             plotps(MOVE) ;
  1488.         break ;
  1489.  
  1490.     case 'D':        /* (PD) Pen Down */
  1491.     case 'd':
  1492.         PENDOWN = TRUE ;
  1493.         if (SIGNED_NUMERIC)
  1494.         if (SETDOT || SYMBOL)
  1495.             plotdot(MOVE) ;
  1496.         else if (PLOTABS)
  1497.             plotps(DRAW) ;
  1498.         else 
  1499.             plotps(RDRAW) ;
  1500.         break ;
  1501.  
  1502.     case 'R':        /* (PR) Plot Relative */
  1503.     case 'r':
  1504.         PLOTABS = FALSE ;
  1505.         if (SIGNED_NUMERIC)
  1506.         if (SETDOT || SYMBOL)
  1507.             plotdot(RMOVE) ;
  1508.         else if (PENDOWN)
  1509.             plotps(RDRAW) ;
  1510.         else
  1511.             plotps(RMOVE) ;
  1512.         break ;
  1513.  
  1514.     case 'T':        /* (PT) Pen Thickness */
  1515.     case 't':
  1516.         {
  1517.         float   linewidth ;
  1518.  
  1519.         linewidth = getval() * SCALE ;        /* In mm */
  1520.         printf("%g mm setlinewidth\n", linewidth) ;
  1521.         }
  1522.         break ;
  1523.  
  1524.     case 'U':        /* (PU) Pen Up */
  1525.     case 'u':
  1526.         PENDOWN = FALSE ;
  1527.         if (SIGNED_NUMERIC)
  1528.         if (SETDOT)
  1529.             plotdot(MOVE) ;
  1530.         else if (PLOTABS)
  1531.             plotps(MOVE) ;
  1532.         else
  1533.             plotps(RMOVE) ;
  1534.         break ;
  1535.  
  1536.     default:
  1537.         fprintf(stderr, "Warning: %c%c Unknown HP-GL Command\n", op1, op2) ;
  1538.     }
  1539.     break ;
  1540.  
  1541.     case 'R':
  1542.     case 'r':
  1543.     op2 = getc(stream) ;
  1544.     switch (op2)
  1545.     {
  1546.     case 'A':        /* (RA) Shade Rectange Absolute */
  1547.     case 'a':
  1548.         break ;
  1549.  
  1550.     case 'R':        /* (RR) Shade Rectangle Relative */
  1551.     case 'r':
  1552.         break ;
  1553.  
  1554.     default:
  1555.         fprintf(stderr, "Warning: %c%c Unknown RD-GL Command\n", op1, op2) ;
  1556.     }
  1557.     break ;
  1558.  
  1559.     case 'S':
  1560.     case 's':
  1561.     op2 = getc(stream) ;
  1562.     switch (op2)
  1563.     {
  1564.     case 'A':        /* (SA) Select Alternate Set (Not Used) */
  1565.     case 'a':
  1566.         break ;
  1567.  
  1568.     case 'C':        /* (SC) Scale */
  1569.     case 'c':
  1570.         if (SIGNED_NUMERIC)
  1571.         U1x = getval() ;
  1572.         else            /* Turn Scaling off */
  1573.         {
  1574.         SCALING = FALSE ;
  1575.         break ;
  1576.         }
  1577.  
  1578.         if (SIGNED_NUMERIC)
  1579.         U2x = getval() ;
  1580.         else
  1581.         {
  1582.         fprintf(stderr,"Error expecting U2x from SC instruction\n") ;
  1583.         SCALING = FALSE ;
  1584.         defcoords() ;        /* Set up default conditions */
  1585.         break ;
  1586.         }
  1587.         if (SIGNED_NUMERIC)
  1588.         U1y = getval() ;
  1589.         else
  1590.         {
  1591.         fprintf(stderr,"Error expecting U1y from SC instruction\n") ;
  1592.         SCALING = FALSE ;
  1593.         defcoords() ;        /* Set up default conditions */
  1594.         break ;
  1595.         }
  1596.         if (SIGNED_NUMERIC)
  1597.         {
  1598.         U2y = getval() ;
  1599.             SCALING = TRUE ;
  1600.         }
  1601.         else
  1602.         {
  1603.         fprintf(stderr,"Error expecting U2y from SC instruction\n") ;
  1604.         SCALING = FALSE ;
  1605.         defcoords() ;        /* Set up default conditions */
  1606.         break ;
  1607.         }
  1608.         viewport(0) ;
  1609.         break ;
  1610.  
  1611.     case 'I':        /* (SI) Absolute Character Size */
  1612.     case 'i':
  1613.         if (SIGNED_NUMERIC)
  1614.         {
  1615.         char_width = getval() * 10 * PSmult ;    /* In mm */
  1616.         char_height = getval() * 10 * PSmult ;    /* In mm */
  1617.         char_width *= 11040 / maxXrange ; /* Scale to A4 paper */
  1618.         char_height *= 7721 / maxYrange ; /* Scale to A4 paper */
  1619.         } else
  1620.         {
  1621.         if (((arg = getc(stream)) == ' ;') || isalpha(arg) != 0)
  1622.         {
  1623.             ungetc(arg, stream) ;
  1624.             if (strcmp(PaperSize, "A4") == 0)
  1625.             {
  1626.                 char_width = 1.87 * PSmult ;
  1627.                 char_height = 2.69 * PSmult ;
  1628.             char_width *= 11040 / maxXrange ;
  1629.             char_height *= 7721 / maxYrange ;
  1630.             }
  1631.             else
  1632.             {
  1633.                 char_width = 2.85 * PSmult ;
  1634.                 char_height = 3.75 * PSmult ;
  1635.             char_width *= 11040 / maxXrange ; /* Scale to A4 paper */
  1636.             char_height *= 7721 / maxYrange ; /* Scale to A4 paper */
  1637.             }
  1638.         }
  1639.         }
  1640.         char_space = char_width * (1/.67 - 1) ;
  1641.         printf("/%s %g %g %g DefFont\n",
  1642.         font, char_width, char_height, char_slant) ;
  1643.         break ;
  1644.  
  1645.     case 'L':        /* (SL) Character Slant */
  1646.     case 'l':
  1647.         if (SIGNED_NUMERIC)
  1648.         char_slant = char_height * getval() ;
  1649.         else
  1650.         char_slant = 0 ;
  1651.  
  1652.         char_space = char_width * (1/.67 - 1) ;
  1653.         printf("/%s %g %g %g DefFont\n",
  1654.         font, char_width, char_height, char_slant) ;
  1655.         break ;
  1656.  
  1657.     case 'M':        /* (SM) Symbol Mode */
  1658.     case 'm':
  1659.         if ((arg = getc(stream)) != EOF && arg != ' ;' && isgraph(arg) > 0)
  1660.         {
  1661.          symbol = arg ;
  1662.          SYMBOL = 1 ;
  1663.         }
  1664.         else
  1665.         SYMBOL = 0 ;
  1666.         break ;
  1667.  
  1668.     case 'P':        /* (SP) Pen Select */
  1669.     case 'p':
  1670.         linesize() ;
  1671.         break ;
  1672.  
  1673.     case 'R':        /* (SR) Relative Character Size */
  1674.     case 'r':
  1675.         {
  1676.         float   pwidth, pheight ;
  1677.  
  1678.         if (SIGNED_NUMERIC)
  1679.         {
  1680.             pwidth = getval() ;        /* Percent */
  1681.             pheight = getval() ;    /* Percent */
  1682.         } else
  1683.         {
  1684.             pwidth = DEFWIDTH * 100 ;
  1685.             pheight = DEFHEIGHT * 100 ;
  1686.         }
  1687.         char_width = (P2x - P1x) * XSCALE * pwidth / 100.0 * PSmult ;
  1688.         char_height = (P2y - P1y) * YSCALE * pheight / 100.0 * PSmult ;
  1689.             char_space = char_width * (1/.67 - 1) ;
  1690.         char_width *= 11040 / maxXrange ; /* Scale to A4 paper */
  1691.         char_height *= 7721 / maxYrange ; /* Scale to A4 paper */
  1692.         }
  1693.         printf("/%s %g %g %g DefFont\n",
  1694.         font, char_width, char_height, char_slant) ;
  1695.         break ;
  1696.  
  1697.     default:
  1698.         fprintf(stderr, "Warning: %c%c Unknown HP-GL Command\n", op1, op2) ;
  1699.     }
  1700.     break ;
  1701.  
  1702.     case 'T':
  1703.     case 't':
  1704.     op2 = getc(stream) ;
  1705.     switch (op2)
  1706.     {
  1707.     case 'L':        /* (TL) Tick Length */
  1708.     case 'l':
  1709.         while (((arg = getc(stream)) != EOF) && isalpha(arg) == 0) ;
  1710.         ungetc(arg, stream) ;
  1711.         fprintf(stderr, "Warning: Tick length not implemented yet\n") ;
  1712.         break ;
  1713.  
  1714.     default:
  1715.         fprintf(stderr, "Warning: %c%c Unknown HP-GL Command\n", op1, op2) ;
  1716.     }
  1717.     break ;
  1718.  
  1719.     case 'U':
  1720.     case 'u':
  1721.     op2 = getc(stream) ;
  1722.     switch (op2)
  1723.     {
  1724.     case 'C':        /* (UC) User Defined Character */
  1725.     case 'c':
  1726.         while (((arg = getc(stream)) != EOF) && isalpha(arg) == 0) ;
  1727.         ungetc(arg, stream) ;
  1728.         fprintf(stderr, "Warning: User defined character not implemented yet\n") ;
  1729.         break ;
  1730.  
  1731.     default:
  1732.         fprintf(stderr, "Warning: %c%c Unknown HP-GL Command\n", op1, op2) ;
  1733.     }
  1734.     break ;
  1735.  
  1736.     case 'V':
  1737.     case 'v':
  1738.     op2 = getc(stream) ;
  1739.     switch (op2)
  1740.     {
  1741.     case 'S':        /* (VS) Velocity Select */
  1742.     case 's':
  1743.         while (((arg = getc(stream)) != EOF) && isalpha(arg) == 0) ;
  1744.         ungetc(arg, stream) ;
  1745.         break ;
  1746.  
  1747.     default:
  1748.         fprintf(stderr, "Warning: %c%c Unknown HP-GL Command\n", op1, op2) ;
  1749.     }
  1750.     break ;
  1751.  
  1752.     case 'W':
  1753.     case 'w':
  1754.     op2 = getc(stream) ;
  1755.     switch (op2)
  1756.     {
  1757.     case 'G':        /* (WS) Shade Wedge */
  1758.     case 'g':
  1759.         break ;
  1760.  
  1761.     default:
  1762.         fprintf(stderr, "Warning: %c%c Unknown RD-GL Command\n", op1, op2) ;
  1763.     }
  1764.     break ;
  1765.  
  1766.     case 'X':
  1767.     case 'x':
  1768.     op2 = getc(stream) ;
  1769.     switch (op2)
  1770.     {
  1771.     case 'T':        /* (XT) X Tick */
  1772.     case 't':
  1773.         while (((arg = getc(stream)) != EOF) && isalpha(arg) == 0) ;
  1774.         ungetc(arg, stream) ;
  1775.         fprintf(stderr, "Warning: X tick not implemented yet\n") ;
  1776.         break ;
  1777.  
  1778.     default:
  1779.         fprintf(stderr, "Warning: %c%c Unknown HP-GL Command\n", op1, op2) ;
  1780.     }
  1781.     break ;
  1782.  
  1783.     case 'Y':
  1784.     case 'y':
  1785.     op2 = getc(stream) ;
  1786.     switch (op2)
  1787.     {
  1788.     case 'T':        /* (YT) Y Tick */
  1789.     case 't':
  1790.         while (((arg = getc(stream)) != EOF) && isalpha(arg) == 0) ;
  1791.         ungetc(arg, stream) ;
  1792.         fprintf(stderr, "Warning: Y tick not implemented yet\n") ;
  1793.         break ;
  1794.  
  1795.     default:
  1796.         fprintf(stderr, "Warning: %c%c Unknown HP-GL Command\n", op1, op2) ;
  1797.     }
  1798.     break ;
  1799.  
  1800.     default:
  1801.     fprintf(stderr, "Warning: %c Unknown HP-GL First Op Command\n", op1) ;
  1802.     break ;
  1803.     }
  1804. }
  1805. //E*O*F hpglcom.c//
  1806.  
  1807. echo x - linesize.c
  1808. cat > "linesize.c" << '//E*O*F linesize.c//'
  1809. #include "defn.h"
  1810.  
  1811. linesize()
  1812. {
  1813.     int        ipen = 0;
  1814.     float    linewidth;
  1815.  
  1816.    if (SIGNED_NUMERIC)
  1817.     ipen = getval() - 1;
  1818.  
  1819.    if (ipen < 0 || ipen > 8)
  1820.     ipen = 0;
  1821.  
  1822.     linewidth = pen_size[ipen] * SCALE;        /* In mm */
  1823.     printf("%g mm setlinewidth\n", linewidth);
  1824. }
  1825. //E*O*F linesize.c//
  1826.  
  1827. echo x - linetype.c
  1828. cat > "linetype.c" << '//E*O*F linetype.c//'
  1829. /*
  1830.  * Sets the line type and the scaling of the line pattern 
  1831.  *
  1832.  * Don McCormick CSIRO Division of Applied Physics National Measurements
  1833.  * Laboritory Bradfield Road Lindfield 2018 N.S.W. 
  1834.  *
  1835.  * NOTE: default length for a line pattern is approx 6.5 mm on A4 size paper. 
  1836.  */
  1837. #include "defn.h"
  1838.  
  1839. float   linescale;
  1840. int     linestyle;
  1841.  
  1842. linetype(line)
  1843. int     line;
  1844. {
  1845.     float   down1, down2;
  1846.     float   up1, up2;
  1847.     float   diagonal;
  1848.  
  1849.     end_draw();
  1850.  
  1851.     if (line == LINE_TYPE_SCALE)            /* HP-GL only */
  1852.     {
  1853.     if (SIGNED_NUMERIC)
  1854.     {
  1855.         if ((linestyle = rint(getval())) > 6)
  1856.         linestyle = 6;
  1857.         else if (linestyle < -6)
  1858.         linestyle = -6;
  1859.     }
  1860.     else
  1861.     {
  1862.         SETDOT = FALSE;
  1863.         printf("[] 0 setdash\n");
  1864.         return;
  1865.     }
  1866.  
  1867.     diagonal = pow((P2x - P1x),2.0) + pow((P2y - P1y),2.0);
  1868.     diagonal = pow(diagonal,0.5);
  1869.     if (SIGNED_NUMERIC)
  1870.         linescale = getval() * 0.01 * diagonal * XSCALE * 0.2;
  1871.     else
  1872.         linescale = 0.015 * diagonal * XSCALE * 0.2;
  1873.     } else
  1874.     if (line == LINESCALE)    /* DXY commands only */
  1875.     {
  1876.     if (SIGNED_NUMERIC)
  1877.         linescale = getval() / 80 * SCALE;
  1878.     else
  1879.         return;
  1880.     } else
  1881.     if (line == LINETYPE)    /* DXY commands only */
  1882.     {
  1883.     if (SIGNED_NUMERIC)
  1884.     {
  1885.         if ((linestyle = rint(getval())) > 5)
  1886.         linestyle = 5;
  1887.         else if (linestyle < -5)
  1888.         linestyle = -5;
  1889.     }
  1890.     else
  1891.         return;
  1892.     } else
  1893.     {
  1894.     fprintf(stderr, "Error: Unknown line flag in linetype.c\n");
  1895.     exit(1);
  1896.     }
  1897.     /*
  1898.      * select a line style/type and scale/pitch 
  1899.      */
  1900.     switch (linestyle)
  1901.     {
  1902.     case 6:
  1903.     down1 = 2.0;
  1904.     up1 = up2 = 1.5;
  1905.     down2 = 1.5;
  1906.     break;
  1907.  
  1908.     case 5:
  1909.     down1 = 3.0;
  1910.     up1 = up2 = 1.0;
  1911.     down2 = 1.5;
  1912.     break;
  1913.  
  1914.     case 4:
  1915.     down1 = 4.0;
  1916.     up1 = up2 = 0.75;
  1917.     down2 = 1.0;
  1918.     break;
  1919.  
  1920.     case 3:
  1921.     down1 = 5.0;
  1922.     up1 = up2 = 1.0;
  1923.     down2 = 0.5;
  1924.     break;
  1925.  
  1926.     case 2:
  1927.     down1 = 5.5;
  1928.     up1 = 1.0;
  1929.     up2 = down2 = 0.0;
  1930.     break;
  1931.  
  1932.     case 1:
  1933.     down1 = 5.0;
  1934.     up1 = 1.5;
  1935.     up2 = down2 = 0.0;
  1936.     break;
  1937.  
  1938.     case -1:
  1939.     down1 = 1.5;
  1940.     up1 = 3.5;
  1941.     down2 = 1.5;
  1942.     up2 = 0.0;
  1943.     break;
  1944.  
  1945.     case -2:
  1946.     down1 = 2.0;
  1947.     up1 = 2.5;
  1948.     down2 = 2.0;
  1949.     up2 = 0.0;
  1950.     break;
  1951.  
  1952.     case -3:
  1953.     down1 = 2.5;
  1954.     up1 = up2 = 1.75;
  1955.     down2 = 0.5;
  1956.     break;
  1957.  
  1958.     case -4:
  1959.     down1 = 2.5;
  1960.     up1 = up2 = 1.5;
  1961.     down2 = 1.5;
  1962.     break;
  1963.  
  1964.     case -5:
  1965.     down1 = down2 = 2.0;
  1966.     up1 = up2 = 1.25;
  1967.     break;
  1968.  
  1969.     case -6:
  1970.     down1 = down2 = 1.75;
  1971.     up1 = up2 = 1.5;
  1972.     break;
  1973.     }
  1974.     if (linestyle == 0)
  1975.     {
  1976.     SETDOT = TRUE;        /* For HP-GL only */
  1977.     printf("[] 0 setdash\n");    /* For DXY commands */
  1978.     } else
  1979.     {
  1980.     SETDOT = FALSE;        /* For HP-GL only */
  1981.     if (linescale <= 0) linescale = SCALE;
  1982.     down1 *= linescale;
  1983.     up2 *= linescale;
  1984.     up1 *= linescale;
  1985.     down2 *= linescale;
  1986.     printf("[%g mm %g mm %g mm %g mm] 0 setdash\n",
  1987.            down1, up1, down2, up2);
  1988.     }
  1989. }
  1990. //E*O*F linetype.c//
  1991.  
  1992. echo x - manualfeed.c
  1993. cat > "manualfeed.c" << '//E*O*F manualfeed.c//'
  1994. /*
  1995.  *    A procedure to allow the user to use the manual feed on
  1996.  *    the LaserWriter.
  1997.  *    The default wait before timeout is 3 minutes however this
  1998.  *    is easily changed.
  1999.  *
  2000.  *    argument: 1.   Enable manual feed.
  2001.  *          0.   Disable manual feed.
  2002.  *
  2003.  *    Don McCormick
  2004.  */
  2005. manualfeed(arg)
  2006. int     arg;
  2007. {
  2008.     if (arg == 1)
  2009.     {
  2010.     printf("statusdict /manualfeed true put\n");
  2011.     printf("statusdict /manualfeedtimeout 180 put\n");    /* 3 minute wait */
  2012.     } else
  2013.     printf("statusdict /manualfeed false put\n");
  2014.  
  2015.     printf("usertime 5000 add\n");
  2016.     printf("{dup usertime lt {pop exit} if} loop\n");
  2017. }
  2018. //E*O*F manualfeed.c//
  2019.  
  2020. echo x - plotdot.c
  2021. cat > "plotdot.c" << '//E*O*F plotdot.c//'
  2022. /*
  2023.  * Plot a dot or symbol on the paper 
  2024.  *
  2025.  * This doesnot quite emulate what HPGL is suposed to do.
  2026.  *
  2027.  * A symbol should be placed at the end of each vector, however this will
  2028.  * only occur in the penup or non draw mode and not for pendown or the draw
  2029.  * mode. The main problem is due to my limited knowledge of the PostScript
  2030.  * language, it is not quite a simple matter of combining lineplot and
  2031.  * text drawing commands.
  2032.  *
  2033.  * Don McCormick
  2034.  */
  2035. #include "defn.h"
  2036.  
  2037. plotdot(type)
  2038. char   *type;
  2039. {
  2040.     end_draw();
  2041.  
  2042.     while (SIGNED_NUMERIC)
  2043.     {
  2044.     xval = getval();
  2045.     yval = getval();
  2046.     if (type == RMOVE)
  2047.     {
  2048.         absX += xval * XSCALE;
  2049.         absY += yval * YSCALE;
  2050.     } else
  2051.     if (type == MOVE)
  2052.     {
  2053.         absX = xval * XSCALE + XOFFSET;
  2054.         absY = yval * YSCALE + YOFFSET;
  2055.     } else
  2056.     {
  2057.         fprintf(stderr, "Error: expecting move command not %s\n", type);
  2058.         exit(1);
  2059.     }
  2060.  
  2061.     if (SYMBOL)
  2062.         printf("%g %g 5 %g (%c) Text\n", absX, absY, char_angle, symbol);
  2063.         else if (SETDOT)
  2064.     {
  2065.             printf("newpath\n");
  2066.             printf("  %g %g %s %g %g %s\n", absX, absY, MOVE, absX, absY, DRAW);
  2067.         printf("stroke\n");
  2068.     }
  2069.     }
  2070. }
  2071. //E*O*F plotdot.c//
  2072.  
  2073. echo x - plotinit.c
  2074. cat > "plotinit.c" << '//E*O*F plotinit.c//'
  2075. #include "defn.h"
  2076.  
  2077. plotinit()
  2078. {
  2079.     /*
  2080.      * Initialisation of PostScript plot macros 
  2081.      */
  2082.     MOVE = "M";
  2083.     RMOVE = "R";
  2084.     DRAW = "D";
  2085.     RDRAW = "I";
  2086.  
  2087.     LANDSCAPE = TRUE;        /* Display plot in Landscape mode */
  2088.  
  2089.     PLOTABS = TRUE;        /* Absolute plot coordinates */
  2090.  
  2091.     PENDOWN = FALSE;        /* Penup */
  2092.  
  2093.     SETDOT = FALSE;        /* HP-GL only for linetype = 0 */
  2094.  
  2095.     SCALE = 1;             /* Default Scale, ie 1:1 */
  2096.  
  2097.     SYMBOL = 0;            /* HP-GL only */
  2098.     /*
  2099.      *       Default line/pen sizes (in mm)
  2100.      */
  2101.     pen_size[0] = 0.1;
  2102.     pen_size[1] = 0.2;
  2103.     pen_size[2] = 0.3;
  2104.     pen_size[3] = 0.4;
  2105.     pen_size[4] = 0.5;
  2106.     pen_size[5] = 0.7;
  2107.     pen_size[6] = 1.0;
  2108.     pen_size[7] = 1.25;
  2109.     pen_size[8] = 1.5;
  2110.  
  2111.     font = "Courier";        /* Default font (mono spaced) */
  2112.  
  2113.     EOL = '\003';        /* End of line terminator default */
  2114.  
  2115.     /*
  2116.      * Default character specifications for plotter A4 paper
  2117.      */
  2118.     char_angle = 0;        /* Degrees */
  2119.     char_slant = 0;        /* tan(angle) */
  2120.     char_height = 2.7;        /* mm */
  2121.     char_space = 0.8;        /* mm */
  2122.     char_width = 1.9;        /* mm */
  2123.     /*
  2124.      * Page offsets set to zero
  2125.      */
  2126.     xoffset = yoffset = 0;
  2127.     /*
  2128.      * Define degree to radian parameter
  2129.      */
  2130.     deg2rad = asin(1.0) / 90.0;
  2131. }
  2132. //E*O*F plotinit.c//
  2133.  
  2134. echo x - plotps.c
  2135. cat > "plotps.c" << '//E*O*F plotps.c//'
  2136. #include "defn.h"
  2137.  
  2138. #define MAXDRAWPOINTS    1000
  2139.  
  2140. plotps(type)
  2141. char   *type;
  2142. {
  2143.     if (type == MOVE || type == RMOVE)
  2144.     {
  2145.     while (SIGNED_NUMERIC)
  2146.     {
  2147.         if (type == MOVE)
  2148.         {
  2149.         end_draw();
  2150.         absX = lastXmove = getval() * XSCALE + XOFFSET;
  2151.         absY = lastYmove = getval() * YSCALE + YOFFSET;
  2152.         } else
  2153.         if (type == RMOVE)
  2154.         {
  2155.         end_draw();
  2156.         lastXmove = absX += getval() * XSCALE;
  2157.         lastYmove = absY += getval() * YSCALE;
  2158.         }
  2159.     }
  2160.     }
  2161.     else            /* Must be a DRAW or RDRAW */
  2162.     {
  2163.     while (SIGNED_NUMERIC)
  2164.     {
  2165.         if (dcount++ >= MAXDRAWPOINTS)
  2166.         {
  2167.         end_draw();
  2168.         printf("newpath\n");
  2169.         printf("  %g %g %s\n", absX, absY, MOVE);
  2170.         DRAW_FLAG = 1;
  2171.         fprintf(stderr, "Warning exceeded %d draw points\n",
  2172.             MAXDRAWPOINTS);
  2173.         }
  2174.         xval = getval();        /* Get HPGL X value */
  2175.         yval = getval();        /* Get HPGL Y value */
  2176.         if (!DRAW_FLAG)
  2177.         {
  2178.         printf("newpath\n");
  2179.         printf("  %g %g %s\n", absX, absY, MOVE);
  2180.         DRAW_FLAG = 1;
  2181.         }
  2182.         if (type == RDRAW)
  2183.         {
  2184.         float rxval, ryval;
  2185.  
  2186.         rxval = xval * XSCALE;
  2187.         ryval = yval * YSCALE;
  2188.         absX += rxval;
  2189.         absY += ryval;
  2190.         printf("  %g %g %s\n", rxval, ryval, RDRAW);
  2191.         } else
  2192.         if (type == DRAW)
  2193.         {
  2194.         absX = xval * XSCALE + XOFFSET;
  2195.         absY = yval * YSCALE + YOFFSET;
  2196.         printf("  %g %g %s\n", absX, absY, DRAW);
  2197.         } else
  2198.         {
  2199.         fprintf(stderr, "Error: expecting draw command not %s\n", type);
  2200.         exit(1);
  2201.         }
  2202.     }
  2203.     }
  2204. }
  2205. //E*O*F plotps.c//
  2206.  
  2207. echo x - ps_macros.c
  2208. cat > "ps_macros.c" << '//E*O*F ps_macros.c//'
  2209. ps_macros()
  2210. {
  2211.     printf("%%! PS-Adobe-1.0: For Apple LaserWriter\n");
  2212.     printf("%% default font is 10 pt. Helvetica\n");
  2213.     printf("/basefont {/Helvetica findfont 10 scalefont setfont} def\n");
  2214.  
  2215.     printf("/mm {72.27 mul 25.4 div} def\n");    /* Specify millimeters */
  2216.  
  2217.     printf("/M\n");                /* Move macro */
  2218.     printf("{\n");
  2219.     printf("    /Ymove exch def\n");
  2220.     printf("    /Xmove exch def\n");
  2221.     printf("    Xmove mm Ymove mm moveto\n");
  2222.     printf("} def\n");
  2223.  
  2224.     printf("/R\n");                /* Relative move macro */
  2225.     printf("{\n");
  2226.     printf("    /Yrmove exch def\n");
  2227.     printf("    /Xrmove exch def\n");
  2228.     printf("    Xrmove mm Yrmove mm rmoveto\n");
  2229.     printf("} def\n");
  2230.  
  2231.     printf("/D\n");                /* Draw macro */
  2232.     printf("{\n");
  2233.     printf("    /Ydraw exch def\n");
  2234.     printf("    /Xdraw exch def\n");
  2235.     printf("    Xdraw mm Ydraw mm lineto\n");
  2236.     printf("} def\n");
  2237.  
  2238.     printf("/I\n");                /* Relative draw  macro */
  2239.     printf("{\n");
  2240.     printf("    /Yrdraw exch def\n");
  2241.     printf("    /Xrdraw exch def\n");
  2242.     printf("    Xrdraw mm Yrdraw mm rlineto\n");
  2243.     printf("} def\n");
  2244.     /*
  2245.      *        Procedure to change font and size of font
  2246.      *        ---->   font size Font    <----
  2247.      */
  2248.     printf("/Font\n");
  2249.     printf("{\n");
  2250.     printf("    /Height exch def\n");
  2251.     printf("    /FontName exch def\n");
  2252.     printf("    FontName findfont Height mm scalefont setfont\n");
  2253.     printf("} def\n");
  2254.     /*
  2255.      *        Procedure to change font, width, slant and height
  2256.      *        ---->   font width height slant DefFont    <----
  2257.      *
  2258.      *    Note: slant = height * tan( slant_angle )
  2259.      */
  2260.     printf("/DefFont\n");
  2261.     printf("{\n");
  2262.     printf("    /Slant exch def\n");
  2263.     printf("    /Height exch def\n");
  2264.     printf("    /Width exch def\n");
  2265.     printf("    /FontName exch def\n");
  2266.     printf("    FontName findfont [ Width mm 0 Slant mm Height mm 0 0] makefont setfont\n");
  2267.     printf("} def\n");
  2268.     /*
  2269.      *        General Text Layout Procedure
  2270.      *        ---->   x y pos_num angle (text) Text    <----
  2271.      */
  2272.     printf("/Text\n");
  2273.     printf("{\n");
  2274.     printf("    /String exch def\n");
  2275.     printf("    /Angle exch def\n");
  2276.     printf("    /Position exch def\n");
  2277.     printf("    /Ymove exch def\n");
  2278.     printf("    /Xmove exch def\n");
  2279.     printf("    Position 1 lt {/hpf 0 def /lpf 0 def} if\n");
  2280.     printf("    Position 1 eq {/hpf 0 def /lpf 0 def} if\n");
  2281.     printf("    Position 2 eq {/hpf 0 def /lpf 0.5 def} if\n");
  2282.     printf("    Position 3 eq {/hpf 0 def /lpf 1 def} if\n");
  2283.     printf("    Position 4 eq {/hpf 0.5 def /lpf 0 def} if\n");
  2284.     printf("    Position 5 eq {/hpf 0.5 def /lpf 0.5 def} if\n");
  2285.     printf("    Position 6 eq {/hpf 0.5 def /lpf 1 def} if\n");
  2286.     printf("    Position 7 eq {/hpf 1 def /lpf 0 def} if\n");
  2287.     printf("    Position 8 eq {/hpf 1 def /lpf 0.5 def} if\n");
  2288.     printf("    Position 9 eq {/hpf 1 def /lpf 1 def} if\n");
  2289.     printf("    Position 9 gt {/hpf 1 def /lpf 1 def} if\n");
  2290.     printf("    /StrLen String stringwidth pop lpf mul def\n");
  2291.     printf("    /StrHt Height mm hpf mul def\n");
  2292.     printf("    /Xdiff StrHt Angle sin mul StrLen Angle cos mul sub def\n");
  2293.     printf("    /Ydiff StrHt Angle cos mul StrLen Angle sin mul add def\n");
  2294.     printf("    Xmove mm Xdiff add Ymove mm Ydiff sub moveto\n");
  2295.     printf("    gsave\n");
  2296.     printf("        Angle rotate\n");
  2297.     printf("        String show\n");
  2298.     printf("    grestore\n");
  2299.     printf("    /PosterOnly 0 def\n");
  2300.     printf("} def\n");
  2301.     /*
  2302.      *        Ellipse and Circle procedure.
  2303.      *  ---->   xcen ycen xrad yrad start_angle end_angle Ellipse   <----
  2304.      */
  2305.     printf("/EllipseDict 8 dict def\n");
  2306.     printf("EllipseDict /mtrx matrix put\n");
  2307.     printf("/Ellipse \n");
  2308.     printf("{   EllipseDict begin\n");
  2309.     printf("    /endangle exch def\n");
  2310.     printf("    /startangle exch def\n");
  2311.     printf("    /yradius exch def\n");
  2312.     printf("    /xradius exch def\n");
  2313.     printf("    /ycenter exch def\n");
  2314.     printf("    /xcenter exch def\n");
  2315.     printf("    /savematrix mtrx currentmatrix def\n");
  2316.     printf("    xcenter mm ycenter mm translate\n");
  2317.     printf("    xradius mm yradius mm div 1 scale\n");
  2318.     printf("    newpath\n");
  2319.     printf("        0 0 xradius mm startangle endangle arc\n");
  2320.     printf("    stroke\n");
  2321.     printf("    savematrix setmatrix\n");
  2322.     printf("    end\n");
  2323.     printf("} def\n");
  2324.  
  2325.     printf("basefont\n");        /* Set the default font */
  2326.     printf("1 setlinecap\n");        /* Use round caps */
  2327.     printf("1 setlinejoin\n");        /* Use round joins */
  2328.     printf("3 setmiterlimit\n");    /* Bevel small angle miters */
  2329. }
  2330. //E*O*F ps_macros.c//
  2331.  
  2332. echo x - rectangle.c
  2333. cat > "rectangle.c" << '//E*O*F rectangle.c//'
  2334. #include "defn.h"
  2335.  
  2336. rectangle()
  2337. {
  2338.     int        hatch;
  2339.     float    width, height;
  2340.     float    hatch_spacing;
  2341.     float    hatch_angle;
  2342.     
  2343.     if (SIGNED_NUMERIC)
  2344.     hatch = getval();
  2345.     if (SIGNED_NUMERIC)
  2346.     width = getval() * XSCALE;
  2347.     if (SIGNED_NUMERIC)
  2348.     height = getval() * YSCALE;
  2349.     if (SIGNED_NUMERIC)
  2350.     hatch_spacing = getval() * XSCALE;
  2351.     if (SIGNED_NUMERIC)
  2352.     hatch_angle = getval();
  2353.  
  2354.     end_draw();
  2355.     printf("%g %g M\n", xval, yval);
  2356.     printf("%g 0 I\n", width);
  2357.     printf("0 %g I\n", height);
  2358.     printf("-%g 0 I\n", width);
  2359.     printf("closepath stroke\n");
  2360.     if (hatch != 2)
  2361.         fprintf(stderr, "Warning: Cross hatching not implemented yet\n");
  2362. }
  2363. //E*O*F rectangle.c//
  2364.  
  2365. echo x - textps.c
  2366. cat > "textps.c" << '//E*O*F textps.c//'
  2367. #include "defn.h"
  2368.  
  2369. #define MAXBUFSIZE 100
  2370.  
  2371. textps(type)
  2372. int     type;
  2373. {
  2374.     int     chr;
  2375.     char    buffer[MAXBUFSIZE];
  2376.     int        intval;
  2377.     int     i;
  2378.  
  2379.     end_draw();
  2380.  
  2381.     if (type == TEXT)
  2382.     {
  2383.     for (i = 0 ; i < MAXBUFSIZE; i++)    /* Clear buffer */
  2384.         buffer[i] = NULL;
  2385.  
  2386.     i = 0;                    /* Reset buffer counter */
  2387.  
  2388. /*
  2389.  * For a mono spaced font (Emulates the plotter)
  2390.  */
  2391.     while (((chr = getc(stream)) != EOF)
  2392.             && chr != CR && chr != LF && chr != EOL)
  2393.     {
  2394.         buffer[i++] = chr;
  2395.         if (chr == '(' || chr == ')')
  2396.             printf("%g %g 1 %g (\\%c) Text\n", absX, absY, char_angle, chr);
  2397.         else
  2398.             printf("%g %g 1 %g (%c) Text\n", absX, absY, char_angle, chr);
  2399.          absX += (char_width) * cos(char_angle * deg2rad);
  2400.          absY += (char_width) * sin(char_angle * deg2rad);
  2401.     }
  2402.     }
  2403.     else            /* Must be a MARK */
  2404.     {
  2405.     int     symb_num;
  2406.     char    *symbol;
  2407.  
  2408.     if (SIGNED_NUMERIC)
  2409.         symb_num = getval();
  2410.     else
  2411.     {
  2412.         fprintf(stderr,
  2413.             "Error: expecting a symbol number not %c (%d)",
  2414.             symb_num, symb_num);
  2415.         exit(1);
  2416.     }
  2417.     intval = (int)(getval() + 0.5);
  2418.     switch (intval)
  2419.     {
  2420.     case 0:
  2421.         strcpy(symbol, "*");
  2422.         break;
  2423.  
  2424.     case 1:
  2425.         strcpy(symbol, "+");
  2426.         break;
  2427.  
  2428.     case 2:
  2429.         strcpy(symbol, "#");
  2430.         break;
  2431.  
  2432.     case 3:
  2433.         strcpy(symbol, "@");
  2434.         break;
  2435.  
  2436.     case 4:
  2437.         strcpy(symbol, "%");
  2438.         break;
  2439.  
  2440.     case 5:
  2441.         strcpy(symbol, "|");
  2442.         break;
  2443.  
  2444.     case 6:
  2445.         strcpy(symbol, "=");
  2446.         break;
  2447.  
  2448.     case 7:
  2449.         strcpy(symbol, "&");
  2450.         break;
  2451.  
  2452.     case 9:
  2453.         strcpy(symbol, "O");
  2454.         break;
  2455.  
  2456.     case 10:
  2457.         strcpy(symbol, "0");
  2458.         break;
  2459.  
  2460.     case 11:
  2461.         strcpy(symbol, "Y");
  2462.         break;
  2463.  
  2464.     case 12:
  2465.         strcpy(symbol, "X");
  2466.         break;
  2467.  
  2468.     case 13:
  2469.         strcpy(symbol, "Z");
  2470.         break;
  2471.  
  2472.     case 14:
  2473.         strcpy(symbol, "S");
  2474.         break;
  2475.  
  2476.     case 15:
  2477.         strcpy(symbol, "Q");
  2478.         break;
  2479.  
  2480.     default:
  2481.         fprintf(stderr, "Warning symbol number is %d\n", symb_num);
  2482.         strcpy(symbol, "*");
  2483.         break;
  2484.     }
  2485.     printf("%g %g 5 %g (%s) Text\n", absX, absY, char_angle, symbol);
  2486.     }
  2487. }
  2488. //E*O*F textps.c//
  2489.  
  2490. echo x - viewport.c
  2491. cat > "viewport.c" << '//E*O*F viewport.c//'
  2492. /*
  2493.  * This procedure sets up the variables for the translation of plotter
  2494.  * coordinates to PostScript coordinates.
  2495.  *
  2496.  * Don McCormick
  2497.  */
  2498. #include "defn.h"
  2499.  
  2500. static float psxmax, psymax ;        /* Sizes scaled to the viewport */
  2501. static float DefXScale, DefYScale ;    /* Default scales */
  2502.  
  2503. viewport(status)
  2504. int status ;
  2505. {
  2506.     float margin ;            /* Non printing area around paper */
  2507.     float pagewidth, pageheight ;    /* Maximum paper sizes */
  2508.  
  2509.     pagewidth = PAGEWIDTH ;
  2510.     pageheight = PAGEHEIGHT ;
  2511.     margin = PAGEMARGIN ;
  2512.  
  2513.     if (status == 1)            /* Set up initial conditions */
  2514.     {
  2515.     if (LANDSCAPE)        /* Create a positive Y axis */
  2516.     {
  2517.         printf("90 rotate\n") ;
  2518.         printf("0 -%g mm translate\n", pagewidth) ;
  2519.         psymax = pagewidth - margin * 2 ;
  2520.         psxmax = psymax * (maxXrange) / (maxYrange) ;
  2521.         XOFFSET = xoffset + (pageheight - psxmax) / 2.0 ;
  2522.         YOFFSET = yoffset + (margin) ;
  2523.     }
  2524.         else
  2525.         {
  2526.         psxmax = pagewidth - margin * 2 ;
  2527.         psymax = psxmax * (maxYrange) / (maxXrange) ;
  2528.         XOFFSET = yoffset + (margin) ;
  2529.         YOFFSET = yoffset + (pageheight - psymax) / 2.0 ;
  2530.         }
  2531.     printf("/%s %g Font\n", font, char_height) ;
  2532.     DefXScale = psxmax / (maxXrange) * SCALE ;
  2533.     DefYScale = psymax / (maxYrange) * SCALE ;
  2534.     }
  2535.  
  2536.     if (SCALING)
  2537.     {
  2538.         XSCALE = DefXScale * (P2x - P1x) / (U2x - U1x) ;
  2539.         YSCALE = DefYScale * (P2y - P1y) / (U2y - U1y) ;
  2540.     }
  2541.     else
  2542.     {
  2543.     XSCALE = DefXScale ;
  2544.     YSCALE = DefYScale ;
  2545.     }
  2546.     if (DEBUG)
  2547.     {
  2548.     fprintf(stderr,"Xscale= %g, Yscale = %g\n", XSCALE, YSCALE) ;
  2549.     fprintf(stderr,"Xoffset= %g, Yoffset = %g\n", XOFFSET, YOFFSET) ;
  2550.     }
  2551. }
  2552. //E*O*F viewport.c//
  2553.  
  2554. echo x - window.c
  2555. cat > "window.c" << '//E*O*F window.c//'
  2556. /*
  2557.  * The input window provides a means of restricting the plotting outside
  2558.  * the specific rectangular area defined.
  2559.  * Used with the "IW" command (HPGL).
  2560.  *
  2561.  * NOTE There is no checking if the HPGL code is correct.
  2562.  */
  2563.  
  2564. #include "defn.h"
  2565.  
  2566. window()
  2567. {
  2568.     float XloLeft, YloLeft;
  2569.     float XupRight, YupRight;
  2570.  
  2571.     if (SIGNED_NUMERIC)
  2572.     XloLeft = getval() * XSCALE + XOFFSET;
  2573.     else
  2574.     {
  2575.     printf("newpath\n");
  2576.     printf("    0 0 moveto\n");
  2577.     printf("    300 mm 0 lineto\n");
  2578.     printf("    300 mm 210 mm lineto\n");
  2579.     printf("    0 210 mm lineto\n");
  2580.     printf("closepath clip\n");
  2581.     return;
  2582.     }
  2583.  
  2584.     if (SIGNED_NUMERIC)
  2585.     YloLeft = getval() * YSCALE + YOFFSET;
  2586.     if (SIGNED_NUMERIC)
  2587.     XupRight = getval() * XSCALE + XOFFSET;
  2588.     if (SIGNED_NUMERIC)
  2589.     YupRight = getval() * YSCALE + YOFFSET;
  2590.  
  2591.     printf("newpath\n");
  2592.     printf("    %g %g %s\n", XloLeft, YloLeft, MOVE);
  2593.     printf("    %g %g %s\n", XupRight, YloLeft, DRAW);
  2594.     printf("    %g %g %s\n", XupRight, YupRight, DRAW);
  2595.     printf("    %g %g %s\n", XloLeft, YupRight, DRAW);
  2596.     printf("closepath clip\n");
  2597. }
  2598. //E*O*F window.c//
  2599.  
  2600. echo x - test1.dxy
  2601. cat > "test1.dxy" << '//E*O*F test1.dxy//'
  2602. J1
  2603. M 1000, 1000
  2604. N 2
  2605. I 100, 0, -200,0, 100, 0, 0,100,0, -200
  2606. P Hi There
  2607. C 1000, 1000, 500, 0, 250
  2608. M 2000,1000
  2609. I 100, 0, -200,0, 100, 0, 0,100,0, -200
  2610. L 2
  2611. J5
  2612. C 2000, 1000, 500, 250, 0
  2613. J3
  2614. M 0 0
  2615. I 3800,0,0,2700,-3800,0,0,-2700
  2616. M 500,2000
  2617. ^SL1;S50PDXY-880
  2618. ^SL;S3
  2619.  
  2620. //E*O*F test1.dxy//
  2621.  
  2622. echo x - test1.hpgl
  2623. cat > "test1.hpgl" << '//E*O*F test1.hpgl//'
  2624. IN;LT;
  2625. PU1000,1000;PD2000,1000,2000,2000,1000,2000,1000,1000;
  2626. PR-100,0,0,-100,100,0,0,100;
  2627. PU;PA0,0;PD10800,0,10800,7680,0,7680,0,0;PU;
  2628. LT6,2;PA;PU4000,1400;PD;PR4000,0;
  2629. LT5,2;PA;PU4000,1300;PD;PR4000,0;
  2630. LT4,2;PA;PU4000,1200;PD;PR4000,0;
  2631. LT3,2;PA;PU4000,1100;PD;PR4000,0;
  2632. LT2,2;PA;PU4000,1000;PD;PR4000,0;
  2633. LT1,2;PA;PU4000,900;PD;PR4000,0;
  2634. LT0;PA;PU4000,800;PD;PR4000,0;
  2635. LT-1,2;PA;PU4000,700;PD;PR4000,0;
  2636. LT-2,2;PA;PU4000,600;PD;PR4000,0;
  2637. LT-3,2;PA;PU4000,500;PD;PR4000,0;
  2638. LT-4,2;PA;PU4000,400;PD;PR4000,0;
  2639. LT-5,2;PA;PU4000,300;PD;PR4000,0;
  2640. LT-6,2;PA;PU4000,200;PD;PR4000,0;
  2641. PU;PA8000,3000;
  2642. SI.15,.3;
  2643. DI;LB  --   0deg --
  2644. DI1,1;LB  --  45deg --
  2645. DI0,1;LB  --  90deg --
  2646. DI-1,1;LB  -- 135deg --
  2647. DI-1,0;LB  -- 180deg --
  2648. DI-1,-1;LB  -- 225deg --
  2649. DI0,-1;LB  -- 270deg --
  2650. DI1,-1;LB  -- 315deg --
  2651. PA500,4000;
  2652. SI;
  2653. DI;SL1;LB SLANT of 45deg
  2654. PA500,3600;
  2655. SL-1;LB SLANT of -45deg
  2656. PA500,6000;
  2657. SL;SR;LB Size is relative
  2658. PA1000,5500;
  2659. SI;LB DEFAULT sizes
  2660. PA500,5000;
  2661. SI.4,.6;LBLARGE size (w=4mm, h=6mm)
  2662. LT;        PA 9000,1000;CI500,20;CI400;CI300;CI200,1;CI100;CI50;
  2663. IN;SM+;PA9000,1000,10000,1000;SM%;PR0,500,0,-1000;
  2664. SM;
  2665. //E*O*F test1.hpgl//
  2666.  
  2667. exit 0
  2668.