home *** CD-ROM | disk | FTP | other *** search
- #include <dos.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <graph.h>
- #include <string.h>
- #include "asyncxx.h"
-
- typedef enum {AA,AR,CA,CI,CP,CS,DF,DI,DP,DR,DT,EA,
- ER,EW,FT,IM,INx,IP,IW,LB,LT,OA,OC,OD,
- OE,OFx,OH,OI,OO,OP,OS,OW,PA,PD,PR,PS,
- PT,PU,RA,RO,RR,SA,SC,SI,SL,SM,SP,SR,
- SS,TL,UC,VS,WG,XT,YT} HPGLType;
-
- typedef char string255[256];
-
- char HPGLTag[60][3] = {"AA","AR","CA","CI","CP","CS","DF","DI",
- "DP","DR","DT","EA","ER","EW","FT","IM","IN","IP","IW","LB",
- "LT","OA","OC","OD","OE","OF","OH","OI","OO","OP","OS","OW",
- "PA","PD","PR","PS","PT","PU","RA","RO","RR","SA","SC","SI",
- "SL","SM","SP","SR","SS","TL","UC","VS","WG","XT","YT"};
-
- int HPGLFillMap[11][2] = {{5,2},{1,0},{3,0},{3,45},{3,45},{3,135},
- {3,135},{4,45},{4,45},{4,45},{4,45}};
- char COM[2] = {44,0};
- char SEM[2] = {59,0};
- char COL[2] = {58,0};
- char CR[2] = {13,0};
- char LF[2] = {10,0};
- char SPC[2] = {32,0};
- char BS[2] = {8,0};
- char ETX[2] = {3,0};
-
- int Err=0;
- char debugF;
- int maxC=6;
- int tdir=0;
- int thJust=0;
- int tvJust=0;
- int CurColor=128;
- int PUx1;
- int PUx2;
- int PUy1;
- int PUy2;
- int ppattype;
- int ppatcolor;
- char outString[256];
-
- /* get pen number 1 -> maxC */
- int Pgetcolor()
- {
- return( CurColor );
- }
-
- void SwapReal(float *r,float *s)
- {
- float temp;
-
- temp = (*r);
- (*r) = (*s);
- (*s) = temp;
- }
-
- /* sets the maximum pen color */
- void SetMaxColor(int c)
- {
- maxC = c;
- }
-
-
- /* Turns on the plotter debugger. HPGL tags
- are printed to the crt. It is recommended
- to turn CRTGraphOff while running the
- debugger. */
-
- void DebugOn()
- {
- debugF = 1;
- }
-
-
- /* Turns off the plotter debugger. */
-
- void DebugOff()
- {
- debugF = 0;
- }
-
-
- /* Writes data to plotter if plotter is on.
- Writes HPGL tags to crt if debug is on. */
-
- void WritePlotter(char s[256])
- {
- int Err;
-
- writeln_com(s,&Err);
- if ( debugF ) {
- fprintf(stdout,"%s\n", s);
- }
- }
-
-
- void PenUp()
- {
- strcpy(outString, HPGLTag[PU]);
- strcat(outString,SEM);
- WritePlotter(outString);
- }
-
-
- void PenDown()
- {
- strcpy(outString, HPGLTag[PD]);
- strcat(outString, SEM);
- WritePlotter(outString);
- }
-
-
- char *I2S(int i)
- {
- char result[256];
-
- sprintf(result, "%d", i);
- return(result);
- }
-
- char *R2S(float r,int n,int m)
- {
- char result[256];
-
- sprintf(result, "%*.*f",n,m,r);
- return(result);
- }
-
- void GetPlotterViewport(int *x1,int *y1,int *x2,int *y2)
- {
- *x1 = PUx1;
- *x2 = PUx2;
- *y1 = PUy1;
- *y2 = PUy2;
- }
-
- void SetPlotterViewport(int x1,int y1,int x2,int y2)
- {
- PUx1 = x1;
- PUx2 = x2;
- PUy1 = y1;
- PUy2 = y2;
- strcpy( outString, HPGLTag[IP]);
- strcat( outString,SPC);
- strcat( outString, I2S(x1));
- strcat( outString, COM);
- strcat( outString, I2S(y1));
- strcat( outString, COM);
- strcat( outString, I2S(x2));
- strcat( outString, COM);
- strcat( outString, I2S(y2));
- strcat( outString, SEM);
- WritePlotter(outString);
- }
-
-
- void SelectPen(int p)
- {
- if ( p > maxC ) {
- p = maxC;
- }
- if (p != CurColor ){
- PenUp();
- CurColor = p;
- strcpy(outString, HPGLTag[SP]);
- strcat(outString, SPC );
- strcat(outString, I2S(p));
- strcat(outString, SEM);
- WritePlotter(outString);
- PenUp();
- }
- }
-
-
-
- void ScalePlotterViewport(int x1,int y1,int x2,int y2)
- {
- strcpy(outString, HPGLTag[SC]);
- strcat(outString, SPC);
- strcat(outString, I2S(x1));
- strcat(outString, COM);
- strcat(outString, I2S(x2));
- strcat(outString, COM);
- strcat(outString, I2S(y1));
- strcat(outString, COM);
- strcat(outString, I2S(y2));
- strcat(outString, SEM);
- WritePlotter(outString);
- }
-
-
- void Pmoveto(float x1,float y1)
- {
- PenUp();
- strcpy(outString, HPGLTag[PA]);
- strcat(outString, SPC);
- strcat(outString, R2S(x1,2,1));
- strcat(outString, COM);
- strcat(outString, R2S(y1,2,1));
- strcat(outString, SEM);
- WritePlotter(outString);
- }
-
-
- void Plineto(float x1,float y1)
- {
- PenDown();
- strcpy(outString, HPGLTag[PA]);
- strcat(outString, SPC);
- strcat(outString, R2S(x1,2,1));
- strcat(outString, COM);
- strcat(outString, R2S(y1,2,1));
- strcat(outString, SEM);
- WritePlotter(outString);
- }
-
-
- void Pmoverel(float x1,float y1)
- {
- PenUp();
- strcpy(outString, HPGLTag[PR]);
- strcat(outString, SPC);
- strcat(outString, R2S(x1,2,1));
- strcat(outString, COM);
- strcat(outString, R2S(y1,2,1));
- strcat(outString, SEM);
- WritePlotter(outString);
- }
-
-
- void Plinerel(float x1,float y1)
- {
- PenDown();
- strcpy(outString, HPGLTag[PR]);
- strcat(outString, SPC);
- strcat(outString, R2S(x1,2,1));
- strcat(outString, COM);
- strcat(outString, R2S(y1,2,1));
- strcat(outString, SEM);
- WritePlotter(outString);
- }
-
-
- void Psettextjustify(int H,int V)
- {
- thJust = H;
- tvJust = V;
- }
-
-
- void Psetlinestyle(int ls, int pat)
- {
- if (ls == 0) {
- strcpy( outString,HPGLTag[LT]);
- strcat( outString,SEM);
- }
- else{
- strcpy(outString, HPGLTag[LT]);
- strcat(outString, SPC);
- strcat(outString, I2S(ls));
- strcat(outString, COM);
- strcat(outString, I2S(2));
- strcat(outString, SEM);
- }
- WritePlotter(outString);
- }
-
-
- void Psettextstyle(int font,int dir,int size)
- {
- float wr= 0.150;
- float hr= 0.200;
- int run, rise;
- float temp,fsize;
-
- tdir = dir;
- if (dir==0) { run = 1; rise = 0; }
- if (dir == 1) { run = 0; rise = 1; }
- strcpy( outString, HPGLTag[DI]);
- strcat( outString, SPC);
- strcat( outString, I2S(run));
- strcat( outString, COM);
- strcat( outString, I2S(rise));
- strcat( outString, SEM);
- WritePlotter(outString);
- strcpy( outString, HPGLTag[SI]);
- strcat( outString, SPC);
- fsize =((float) size );
- temp = fsize*wr;
- strcat( outString, R2S(temp,2,1));
- strcat( outString, COM);
- temp = fsize * hr;
- strcat( outString, R2S(temp,2,1));
- strcat( outString, SEM);
- WritePlotter(outString);
- strcpy(outString,HPGLTag[CS]);
- strcat(outString, SPC);
- strcat(outString, I2S(font));
- strcat(outString, SEM);
- WritePlotter(outString);
- }
-
-
- void JustifyPenPosition(char s[256])
- { float x,y;
- int l;
-
- l = strlen(s);
- switch (thJust) {
- case 0: if (tdir==0) x= 0.0; else y= -1.0; break;
- case 1: if (tdir==0) x= -l/2.0; else y=-0.25; break;
- case 2: if (tdir==0) x= -l; else y= 0.0; break;
- }
- switch (tvJust){
- case 0: if (tdir==0) y= 0.0; else x= 0.0; break;
- case 1: if (tdir==0) y= -0.25; else x= -l/2.0; break;
- case 2: if (tdir==0) y= -1.0; else x= -l; break;
- }
- strcpy( outString, HPGLTag[CP]);
- strcat( outString, SPC );
- strcat( outString, R2S(x,2,1));
- strcat( outString, COM);
- strcat( outString, R2S(y,2,1));
- strcat( outString, SEM);
- WritePlotter(outString);
- }
-
-
- void Pouttext(char s[256])
- { char ss[256];
-
- strcpy(ss,s);
- strcat(ss ,ETX);
- JustifyPenPosition(ss);
- strcpy(outString,HPGLTag[LB]);
- strcat(outString,SPC);
- strcat(outString,ss);
- strcat(outString, SEM);
- WritePlotter(outString);
- }
-
-
- void Pbar(float x1,float y1,float x2,float y2)
- {
- if (ppattype != 0){
- Pmoveto(x1,y1);
- strcpy( outString, HPGLTag[RA]);
- strcat( outString,SPC);
- strcat( outString,R2S(x2,2,1));
- strcat( outString,COM);
- strcat( outString,R2S(y2,2,1));
- strcat( outString,SEM);
- WritePlotter(outString);
- }
- }
-
-
- void Prectangle(float x1,float y1,float x2,float y2)
- {
- Pmoveto(x1,y1);
- strcpy( outString, HPGLTag[EA]);
- strcat( outString, SPC);
- strcat( outString, R2S(x2,2,1) );
- strcat( outString, COM);
- strcat( outString,R2S(y2,2,1));
- strcat( outString,SEM);
- WritePlotter(outString);
- }
-
- void PEdgeWedge(float x,float y,float radius, int start,int sweep)
- {
- int c;
- char outString[256];
-
- Pmoveto(x,y);
- strcpy(outString, HPGLTag[EW]);
- strcat(outString,SPC);
- strcat(outString, R2S(radius,2,1));
- strcat(outString,COM);
- strcat(outString,I2S(start));
- strcat(outString,COM);
- strcat(outString,I2S(sweep));
- strcat(outString,COM);
- strcat(outString,I2S(5));
- strcat(outString,SEM);
- WritePlotter(outString);
- }
-
-
-
- void PShadeWedge(float x,float y,float radius,int start,int sweep)
- {
- int c;
- char outString[256];
-
- PEdgeWedge(x,y,radius,start,sweep);
- if (ppattype > 0)
- {
- Pmoveto(x,y);
- c = CurColor;
- SelectPen(ppatcolor);
- strcpy(outString, HPGLTag[WG]);
- strcat(outString,SPC);
- strcat(outString,R2S(radius,2,1));
- strcat(outString,COM);
- strcat(outString,I2S(start));
- strcat(outString,COM);
- strcat(outString,I2S(sweep));
- strcat(outString,COM);
- strcat(outString,I2S(5));
- strcat(outString,SEM);
- WritePlotter(outString);
- SelectPen(c);
- }
- }
-
-
- void Psetfillstyle(int pati,int c)
- {
- int pat,angle;
-
- if (pati>=0){
- ppatcolor = c;
- ppattype = pati;
- pat = HPGLFillMap[pati][0];
- angle = HPGLFillMap[pati][1];
- strcpy( outString ,HPGLTag[FT]);
- strcat( outString,SPC);
- strcat( outString,I2S(pat));
- strcat( outString,COM);
- strcat( outString,I2S(4));
- strcat( outString,COM);
- strcat( outString,I2S(angle));
- strcat( outString,SEM);
- WritePlotter(outString);
- }
- }
-
-
- void SetClippingWindow(int x1,int y1,int x2,int y2)
- {
- strcpy( outString,HPGLTag[IW]);
- strcat( outString,SPC);
- strcat( outString,I2S(x1));
- strcat( outString,COM);
- strcat( outString,I2S(y1));
- strcat( outString,COM);
- strcat( outString,I2S(x2));
- strcat( outString,COM);
- strcat( outString,I2S(y2));
- strcat( outString,SEM);
- WritePlotter(outString);
- }
-
-
- void SelectPenVelocity(int v)
- {
- strcpy( outString, HPGLTag[VS]);
- strcat( outString, SPC);
- strcat( outString, I2S(v));
- strcat( outString, SEM);
- WritePlotter(outString);
- }
-
-