home *** CD-ROM | disk | FTP | other *** search
-
- #include <math.h>
- #include <stdio.h>
- #include <string.h>
- #include <graph.h>
- #include <dos.h>
- #include <bios.h>
- #include <stdlib.h>
- #include "asyncxx.h"
- #include "hpplot.h"
-
- typedef struct{ int x,y;} xyrec;
- typedef struct{ int x,y,edge;} xyerec;
-
- struct WorldRect{
- float left, bottom, right, top;
- };
-
-
- struct point2D{
- int x,y;
- };
-
- struct viewporttype{
- int left, bottom,right, top;
- };
- struct viewporttype vp;
- int mx;
- int my;
- int vx;
- int vy;
- int vh;
- int vl;
- float tx;
- float ty;
- float wx;
- float wy;
- float wh;
- float wl;
- int vxAbs;
- int vyAbs;
- int curfont;
- int curdir;
- int cursize;
- char CRTGraphOnF=1;
- char PlotterOnF=0;
- char ClipOnF = 1;
- int HORIZDIR = 0;
- int VERTDIR = 1;
- int textsize = 1;
- int textDir = 0;
- char far *CharTable= (char far *) 0xF8007a6e; /* start of video rom */
- char ESC = '\x1b';
- int HVBitMask[8] = {1,2,4,8,16,32,64,128};
- int FSCompare();
-
-
- unsigned int BitMask[8] = {0x80,0x40,0x20,0x10,8,4,2,1};
- char ToshResArray[4][2] = {";","\x1d",";",";"};
- char EMXResArray[4][2] = {"K", "L", "Y", "Z"};
- char ELQResArray[5][2] = {"\x20", "\x21", "\x26", "\x27", "\x28"};
- char HPLResStringsY[4][4] = {"75","100","150","300"};
- char HPJetResStringsY[2][5] = {"640","1280"};
- xyerec FillStack[2000];
- int fspntr;
-
- enum justify{
- LEFT_TEXT = 0,
- CENTER_TEXT = 1,
- RIGHT_TEXT = 2,
- BOTTOM_TEXT = 0,
- TOP_TEXT = 2
- };
-
- char fillmask[10][8] = {{ 0,0,0,0,0,0,0,0}, /* empty */
- {255,255,255,255,255,255,255,255}, /* solid */
- {0,255,0,255,0,255,0,255}, /* horiz */
- {17,34,68,136, 17,34,68,136}, /* //// */
- {15,30,60,120,240,225,195,135}, /* dbl // */
- {135,195,225,240,120,60,30,15}, /* dbl \\ */
- {136,68,34,17,136,68,34,17}, /* \\\\ */
- {129,66,36,24,24,36,66, 129}, /* hatch */
- {195,102,60,24,60,102,195,129}, /* hvy hat */
- {136,136,136,136,136,136,136,136}}; /* vertic */
-
- short linemask[5] = {0xFFFF, 0x5555, 0x6666, 0xBDBD,0xFF00};
-
-
-
- int Round( float x )
- {
- int _round;
-
- _round = floor( x+0.49999);
- return( _round );
- }
-
-
- float Float( int i )
- {
- float ans;
- ans = ((float) i);
- return( ans );
- }
-
- int AdjustCRTColor( int c )
- {
- int color;
- struct videoconfig v;
- if (CRTGraphOnF){
- _getvideoconfig(&v);
- if (v.numcolors==0)
- if (c>=1) color=1; else color=0;
- else
- if (c > v.numcolors-1 )
- color = v.numcolors-1;
- else
- color = c;
-
- }
- return( color );
- }
-
- void GetMaxCoords( int *x, int *y )
- {
- struct videoconfig vc;
-
- if (CRTGraphOnF) {
- _getvideoconfig( &vc);
- *x = vc.numxpixels-1;
- *y = vc.numypixels-1;
- }
- else {
- *x = 639;
- *y = 485;
- }
-
- }
-
- short Short(float x){
- short _Short;
- _Short = ((int) x);
- return( _Short );
- }
-
- void _moverel( int x1, int y1 )
- {
- struct xycoord position;
-
- position = _getcurrentposition();
- _moveto( position.xcoord+x1, position.ycoord+y1 );
- }
-
- void _linerel( int x1, int y1 )
- {
- struct xycoord position;
-
- position = _getcurrentposition();
- _lineto( position.xcoord+x1, position.ycoord+y1 );
-
- }
-
- void linetoXX( float x, float y )
- {
- if (CRTGraphOnF) {
- _lineto( Round(x), vh-Round(y));
- }
- if (PlotterOnF){
- Plineto( vxAbs+x, vyAbs+y );
- }
- }
-
-
- void linerelXX( float x, float y )
- {
- if (CRTGraphOnF) {
- _linerel( Round(x), -Round(y));
- }
- if (PlotterOnF){
- Plinerel( x, y );
- }
- }
-
-
- void movetoXX( float x, float y )
- {
- if (CRTGraphOnF) {
- _moveto( Round(x), vh-Round(y));
- }
- if (PlotterOnF){
- Pmoveto( vxAbs+x, vyAbs+y );
- }
- }
-
- void moverelXX( float x, float y )
- {
- if (CRTGraphOnF) {
- _moverel( Round(x), -Round(y));
- }
- if (PlotterOnF){
- Pmoverel( x, y );
- }
- }
-
- float ClampReal( float r, float l, float h ){
- float ClampResult;
- if (r<l) ClampResult=l;
- else
- if (r>h) ClampResult=h;
- else ClampResult = r;
- return( ClampResult );
-
- }
-
- float ConvertX1( float xx1)
- { float temp;
- float _ConvertX1;
-
- temp = (xx1-wx)*tx+vx;
- _ConvertX1 = ClampReal(temp,-1000.0,1000.0);
- return(_ConvertX1);
- }
-
-
- float ConvertY1(float yy1 )
- { float temp;
- float _ConvertY1;
-
- temp = (yy1-wy)*ty+vy;
- _ConvertY1 = ClampReal(temp,-1000.0,1000.0);
- return(_ConvertY1 );
- }
-
-
- float ConvertX2(float xx1 )
- {
- float _ConvertX2;
- float temp;
-
- temp = xx1* tx;
- _ConvertX2 = ClampReal( temp, -1000.0,1000.0);
- return( _ConvertX2 );
- }
-
-
- float ConvertY2( float yy1)
- {
- float temp;
- float _ConvertY2;
-
- temp = yy1*ty;
- _ConvertY2 = ClampReal(temp,-1000.0,1000.0);
- return(_ConvertY2 );
- }
-
- void MoveWorldAbs( float xx1, float yy1)
-
- {
- movetoXX(ConvertX1(xx1), ConvertY1(yy1));
- }
-
-
- void MoveWorldRel( float xx1,float yy1 )
- {
- moverelXX(ConvertX2(xx1), ConvertY2(yy1));
- }
-
- void LineWorldAbs( float xx1,float yy1)
- {
- linetoXX( ConvertX1(xx1), ConvertY1(yy1));
- }
-
- void LineWorldRel( float xx1,float yy1 )
- {
- linerelXX(ConvertX2(xx1), ConvertY2(yy1));
- }
-
-
- void GetViewportOrigin( int *left, int *top )
- {
- *left = vp.left;
- *top = vp.top;
-
- }
-
-
- void settextjustify(int dirx, int diry)
- {
- HORIZDIR = dirx;
- VERTDIR = diry;
-
- }
-
-
- void SelectColor( int c )
- {
- int color ;
-
- if (CRTGraphOnF) {
- color = AdjustCRTColor(c);
- _setcolor( color );
- }
- if (PlotterOnF){
- SelectPen(c);
- }
- }
-
-
- char CheckBit(unsigned int i, unsigned int bit)
- {
- char checkBitResult;
-
- if ((i & BitMask[bit]) == BitMask[bit])
- checkBitResult = 1;
- else
- checkBitResult = 0;
- return(checkBitResult);
- }
-
- void outgraphstring(char *s)
- { int LengthS,sc,i,j,k,l,x,y;
- int size9,size8,size4,jsize, isize;
- unsigned int c;
- struct xycoord position;
-
- LengthS = strlen(s);
- c = _getcolor();
- position = _getcurrentposition();
- x = position.xcoord;
- y = position.ycoord;
- size8 = textsize*8;
- size9 = textsize*9;
- size4 = textsize*4;
- switch (HORIZDIR) {
- case 0:
- break;
- case 1: if (textDir==0)
- x = x - size9*(LengthS /2);
- else
- x = x-size4;
- break;
- case 2: if (textDir==0)
- x = x - size9*LengthS;
- else
- x = x-size8;
- break;
- }
- switch (VERTDIR) {
- case 0: break;
- case 1: if (textDir==0)
- y = y + size4;
- else
- y =y+size9*(LengthS / 2);
- break;
- case 2: if (textDir==0)
- y = y + size8;
- else
- y =y+size9*LengthS;
- break;
- }
- for ( sc = 0; sc <= LengthS-1; sc++){
- for (i = 0; i <= 7; i++){
- isize = i*textsize;
- for (j = 0; j <= 7; j++){
- jsize = j*textsize;
- if (CheckBit(CharTable[s[sc]*8+i],j))
- for (k = 0; k<= textsize - 1; k++)
- for (l =0; l<= textsize - 1; l++)
- if (textDir == 0){
- _setpixel(x+(jsize)+k,y-(size8-1)+(isize)+l);
- }
- else {
- _setpixel(x+(size8-1)+(isize)+l,y-(jsize)+k);
- }
- }
- }
- if (textDir == 0)
- x = x + size9;
- else
- y = y - size9;
-
- }
- }
-
- void settextjustifyXX( unsigned int h, unsigned int v )
- {
- if (CRTGraphOnF) {
- settextjustify( h,v );
- }
- if (PlotterOnF){
- Psettextjustify(h,v);
- }
-
- }
-
- void settextstyle( int font, int dir, int size )
- {
- textDir = dir;
- textsize = size;
- }
- void gettextstyleXX(int *font, int *dir, int *size )
- {
- *font = curfont;
- *dir = curdir;
- *size = cursize;
- }
-
- void settextstyleXX(unsigned int font, unsigned int dir, unsigned int size )
- {
- curfont = font;
- curdir = dir;
- cursize = size;
-
- if (CRTGraphOnF) {
- settextstyle( font, dir, size );
- }
- if (PlotterOnF){
- Psettextstyle( font, dir, size );
- }
-
- }
-
- void ClipOn()
- {
- ClipOnF = 1;
-
- }
-
- void ClipOff()
- {
- ClipOnF = 0;
-
- }
-
- void PlotterOn()
- {
- PlotterOnF = 1;
-
- }
-
- void PlotterOff()
- {
- PlotterOnF = 0;
-
- }
-
-
- void CRTGraphOn()
- {
- CRTGraphOnF = 1;
- }
-
- void CRTGraphOff()
- {
- CRTGraphOnF = 0;
- }
-
- void setlinestyleXX( int ls, int pat,
- int thick )
- {
- if (CRTGraphOnF)
- _setlinestyle( linemask[ls] );
- if (PlotterOnF)
- Psetlinestyle( ls,pat );
-
- }
-
- void setfillstyleXX( int pat,
- int c )
- {
-
- SelectColor(c);
- if (CRTGraphOnF)
- _setfillmask( fillmask[pat]);
- if (PlotterOnF)
- Psetfillstyle( pat,c );
-
- }
-
- int getcolorXX()
- { int color;
-
- if (PlotterOnF)
- color = Pgetcolor();
- if (CRTGraphOnF)
- color = _getcolor();
- return( color );
- }
-
- void barXX(float x1,float y1, float x2, float y2 )
- {
-
- int xx1,yy1,xx2,yy2;
-
-
- if (CRTGraphOnF) {
- xx1 = Round(x1);
- yy1 = vh-Round(y1);
- xx2 = Round(x2);
- yy2 = vh-Round(y2);
-
- if (xx2>= 0) {
- _rectangle( _GBORDER, xx1,yy1,xx2,yy2);
- if (yy1 != yy2)
- _rectangle( _GFILLINTERIOR, xx1,yy1,xx2,yy2);
- }
-
- }
- if (PlotterOnF){
- Pbar( vxAbs+x1,vyAbs+y1,vxAbs+x2,vyAbs+y2);
- Prectangle( vxAbs+x1,vyAbs+y1,vxAbs+x2,vyAbs+y2);
- }
- }
-
- void rectangleXX(float x1,float y1, float x2, float y2 )
- {
- if (CRTGraphOnF) {
- _rectangle( _GBORDER, Round(x1),Round(y1),Round(x2),Round(y2));
- }
- if (PlotterOnF){
- Prectangle( vxAbs+x1,vyAbs+y1,vxAbs+x2,vyAbs+y2);
- }
-
- }
-
- void pieXX(float x,float y,float stangle,float endangle,
- float radius,float AspectRatio)
- {
- int x1,x2,y1,y2,x3,y3,x4,y4;
- float twopi360;
-
- if (PlotterOnF) {AspectRatio = 1.0;}
- twopi360 = 6.2831854/360.0;
-
- x3 = Round(x + (radius*cos(twopi360*stangle)));
- y3 = Round(y + (AspectRatio*radius*sin(stangle*twopi360)));
- x4 = Round(x + (radius*cos(twopi360*endangle)));
- y4 = Round(y + (AspectRatio*radius*sin(endangle*twopi360)));
- x1 = Round(x- (radius));
- x2 = Round(x+ (radius));
- y1 = Round(y+AspectRatio*radius);
- y2 = Round(y-AspectRatio*radius);
- if (CRTGraphOnF){
- _pie(_GFILLINTERIOR, x1,vh-y1,x2,vh-y2,x3,vh-y3,x4,vh-y4);
- }
- if (PlotterOnF)
- PShadeWedge(vxAbs + x, vyAbs +y, radius, Round(stangle),
- Round(endangle-stangle));
-
- }
-
- void outtextXX( char *s )
- {
- if (CRTGraphOnF) {
- outgraphstring(s);
- }
- if (PlotterOnF){
- Pouttext(s);
- }
-
- }
-
- void outtextPie( int x, int y, char *s)
- {
- movetoXX(x,y);
- outtextXX(s);
- }
- void SetWorldRect( struct WorldRect *r,
- float a,float b,float c,float d )
-
- {
- (*r).left = a;
- (*r).bottom = b;
- (*r).right = c;
- (*r).top = d;
-
- }
- void SetGraphViewport(int xx1,int yy1,int xx2,int yy2)
-
- { int maxX, maxY,pux1,puy1, puy2,pux2;
- float x1,x2,y1,y2;
-
- if (CRTGraphOnF){
- _setviewport( xx1,yy1,xx2,yy2);
- if (ClipOnF)
- _setcliprgn( xx1,yy1,xx2,yy2);
- }
- if (PlotterOnF) {
- GetMaxCoords( &maxX,&maxY );
- GetPlotterViewport( &pux1, &puy1, &pux2, &puy2 );
- if (ClipOnF){
- x1 = ( pux1 + (pux2-pux1)* (Float(xx1)/Float(maxX)));
- y1 = ( puy2 - (puy2-puy1)* (Float(yy1)/Float(maxY)));
- x2 = ( pux1 + (pux2-pux1)* (Float(xx2)/Float(maxX)));
- y2 = ( puy2 - (puy2-puy1)* (Float(yy2)/Float(maxY)));
- SetClippingWindow( Round(x1),Round(y1),Round(x2),Round(y2));
- }
- }
- vp.right = xx2;
- vp.top = yy1;
- vp.left = xx1;
- vp.bottom = yy2;
-
- vx = 0;
- vy = 0;
- vh = yy2 - yy1;
- vl = xx2 - xx1;
- vxAbs = xx1;
- vyAbs = maxY-yy2;
- }
-
-
- void OneTimeInit(int mode)
- {
- int gdriver;
- int gmode;
- int x;
- int y;
-
- vx = 0;
- vy = 0;
- vl = 720;
- vh = 348;
-
-
- if (CRTGraphOnF){
- switch (mode){
- case 1: _setvideomode(_MRES4COLOR);
- break;
- case 2: _setvideomode(_MRESNOCOLOR);
- break;
- case 3: _setvideomode(_HRESBW);
- break;
- case 4: _setvideomode(_MRES16COLOR);
- break;
- case 5: _setvideomode(_HRES16COLOR);
- break;
- case 6: _setvideomode(_ERESCOLOR);
- break;
- case 7: _setvideomode(_VRES2COLOR);
- break;
- case 8: _setvideomode(_VRES16COLOR);
- break;
- case 9: _setvideomode(_MRES256COLOR);
- break;
- case 10: _setvideomode(_DEFAULTMODE);
- break;
- case 11: _setvideomode(_ERESNOCOLOR);
- break;
- case 12: _setvideomode(8);
- break;
- default: _setvideomode(6);
- break;
- }
- GetMaxCoords(&x, &y);
- SetGraphViewport(0,0,x,y);
- }
- if (PlotterOnF){
- SetPlotterViewport(1000,500,10000, 7500);
- GetMaxCoords( &x, &y );
- SetGraphViewport(0,0,x,y);
- ScalePlotterViewport( 0,0,x,y );
- PenUp();
- }
- settextjustifyXX( LEFT_TEXT, CENTER_TEXT );
- settextstyleXX( 0, HORIZDIR, 1 );
-
- }
-
-
- void SetWorldCoordinates(float l, float b,float r, float t)
- {
- wx = l;
- wy = b;
- wh = t - b;
- wl = r - l;
- tx = vl/wl;
- ty = vh/wh;
- }
-
-
- void PolyLineWorldAbs( float *x, float *y, int numdat )
- {
- int i;
- MoveWorldAbs( x[0], y[0] );
- for (i=1; i< numdat; i++ )
- LineWorldAbs( x[i], y[i] );
- }
-
- void polyminmax( int *PolyVector,int numdat,
- int *xmin, int *ymin,int *xmax, int *ymax ){
-
- int i;
-
- *xmin = PolyVector[0];
- *xmax = PolyVector[0];
- *ymin = PolyVector[1];
- *ymax = PolyVector[1];
-
- for ( i = 1; i <= numdat - 1; ++i ) {
- if ( (PolyVector[i*2]) < (*xmin) ) {
- (*xmin) = (PolyVector[i*2]);
- }
- if ( (PolyVector[i*2]) > (*xmax) ) {
- (*xmax) = (PolyVector[i*2]);
- }
- if ( (PolyVector[i*2+1]) < (*ymin) ) {
- (*ymin) = (PolyVector[i*2+1]);
- }
- if ( (PolyVector[i*2+1]) > (*ymax) ) {
- (*ymax) = (PolyVector[i*2+1]);
- }
-
-
- }
-
- }
-
-
- void FSQuickSort(int l, int r)
- {
- qsort((void *) FillStack,(size_t) fspntr,sizeof(FillStack[0]),FSCompare );
- }
-
-
- int FSCompare(xyerec *e1, xyerec *e2)
- {
- xyerec temp1, temp2;
- temp1 = *e1; temp2 = *e2;
- if ((temp1.y > temp2.y) ||
- ((temp1.y == temp2.y) && (temp1.x > temp2.x))) return(1);
- if ((temp1.y == temp2.y) && (temp1.x == temp2.x)) return(0);
- else return(-1);
- }
-
-
- void MemPlot(int xx,int yy,int ee)
- {
- FillStack[fspntr].x = xx;
- FillStack[fspntr].y = yy;
- FillStack[fspntr].edge = ee;
- fspntr += 1;
-
- }
-
-
- int Sign(int i)
- { int result;
- if (i > 0)
- result = 1;
- else
- if (i < 0)
- result = -1;
- else
- result = 0;
- return(result);
- }
-
- void MemDraw(int x1, int y1,int x2, int y2,int edge ,int ep)
- {
- int dx,dy,dxabs, dyabs, i, px, py, sdx, sdy, x,y;
-
- /* Bresenham's algorithm for line drawing */
- /* Based upon the line-drawing algorithm
- in Graphics Programming in C by Roger T. Stevens */
-
- dx = (x2 - x1);
- dy = (y2 - y1);
- dxabs= abs(dx);
- dyabs = abs(dy);
- sdx = Sign(dx);
- sdy = Sign(dy);
- MemPlot(x1,y1,edge);
- x = 0; y = 0;
- px = x1; py = y1;
- if (dxabs >= dyabs)
- {
- for (i = 1; i <= dxabs-1; ++i)
- {
- y +=dyabs;
- if (y >= dxabs)
- {
- y -= dxabs;
- py += sdy;
- }
- px += sdx;
- MemPlot(px,py,edge);
- }
- }
- else
- {
- for (i = 1; i <= dyabs-1; i++)
- {
- x += dxabs;
- if (x >= dyabs)
- {
- x -= dyabs;
- px += sdx;
- };
- py += sdy;
- MemPlot(px,py,edge);
- }
- }
- /* plot endpoint only if ep flag set true */
- if (ep==1) MemPlot(x2,y2,edge);
- }
-
-
- void TLine(int x1, int y1,int x2, int y2)
- { _moveto(x1,y1);
- _lineto(x2,y2);
- }
-
- void QCPolyFill(xyrec *xy, int n, int fillcolor, int outlinecolor)
- {
- int minY,maxY,i,j;
- int plotit,ep;
- int EdgeTable[20];
-
- /* Zero out edge table */
- memset(EdgeTable,0,sizeof(EdgeTable));
- fspntr = 0;
-
- /* Check and make sure we are dealing with a closed polygon */
- if ((xy[0].x != xy[n-1].x) || (xy[0].y != xy[n-1].y))
- {
- xy[n] = xy[0];
- n += 1;
- }
- /* Create pixel list of polygon outline */
- /* Plot endpoint if line meets at in interior vertex */
- for (i = 1; i <= n-1; i++)
- {
- if (i == (n-1))
- ep = (Sign(xy[i-1].y - xy[i].y) != Sign(xy[0].y - xy[(1)].y));
- else
- ep = (Sign(xy[i-1].y - xy[i].y) != Sign(xy[i].y - xy[(i+1)].y));
- if (xy[i-1].y != xy[i].y)
- MemDraw(xy[i-1].x,xy[i-1].y,xy[i].x,xy[i].y,i,ep);
- }
-
- /* Sort pixel list of polygon outline */
- FSQuickSort(0,fspntr-1);
- plotit = 1;
-
- /* set to fill color */
- _setcolor(fillcolor);
-
- /* Initialze edge table for first edge */
- EdgeTable[FillStack[0].edge] = 1;
- for (i = 0; i <=fspntr-1; i++)
- {
- /* check and make sure points are on the same scan line */
- if (FillStack[i].y == FillStack[i+1].y)
- {
- /* check and make sure edges are different */
- if (FillStack[i].edge != FillStack[i+1].edge)
- {
- /* check and make sure edge has not be encountered before */
- if (EdgeTable[FillStack[i+1].edge] != 1)
- {
- /* if polygon interior (plotit=1) draw line between edges */
- if (plotit == 1)
- {
- TLine(FillStack[i].x, FillStack[i].y,
- FillStack[i+1].x, FillStack[i].y);
- plotit = 0; /* set plotit false */
- }
- else
- plotit = 1; /*set plot it true */
- }
- /* Enter edge into edge table */
- EdgeTable[FillStack[i+1].edge] = 1;
- }
- }
- else
- {
- /* y values different means scan line transition */
- /* reset plotit to 1, and EdgeTable */
- plotit = 1;
- memset(EdgeTable,0,sizeof(EdgeTable));
- EdgeTable[FillStack[i+1].edge] = 1;
- }
- }
-
- /* set to outline color */
- _setcolor(outlinecolor);
-
- /* draw outline of polygon */
- for (i = 1; i <= n-1; i++)
- {
- TLine(xy[i-1].x,xy[i-1].y,xy[i].x,xy[i].y);
- }
- }
-
-
-
- void PolyFillWorldAbs( float *x, float *y, int fillstyle,
- int fillcolor, int numdat )
- {
-
- xyrec *PolyVector;
- int i,outline;
-
- PolyVector = (xyrec *) calloc(numdat,sizeof(xyrec));
-
- MoveWorldAbs( x[0], y[0] );
- for (i=0; i< numdat; i++ ){
- PolyVector[i].x = Round(ConvertX1(x[i]));
- PolyVector[i].y = Round(ConvertY1(y[i]));
- }
- outline = getcolorXX();
- QCPolyFill(PolyVector, numdat, fillcolor, outline);
- free (PolyVector);
- }
-
-
-
- void PolyLineWorldRel( float *x, float *y, int numdat )
- {
- int i;
- MoveWorldRel( x[0], y[0] );
- for (i=1; i< numdat; i++ )
- LineWorldRel( x[i], y[i] );
- }
-
-
- void BarWorld( float x1,float y1,float h,float w,
- int gc, int gh)
- { struct WorldRect r;
- int color;
-
- setfillstyleXX( gh,gc );
- r.left = ConvertX1(x1);
- r.bottom = ConvertY1(y1);
- r.right = ConvertX1(x1+w);
- r.top = ConvertY1(y1+h);
- barXX(r.left, r.top, r.right, r.bottom );
- }
-
- void EraseWorldRect( struct WorldRect *wr )
- { struct viewporttype r;
-
- if (CRTGraphOnF){
- _clearscreen( _GVIEWPORT );
- }
- }
-
- void ClearViewportXX()
- {
- if (CRTGraphOnF)
- _clearscreen( _GVIEWPORT );
-
- }
-
- void closegraphics()
- {
- _setvideomode( _DEFAULTMODE);
- }
-
-
-
- /* Screen Dumping Routines */
- int prnerr(int i)
- { int prnreturn;
- int error;
-
- /*
- if ( ((i & 0x20) == 0x20) || ((i & 0x08) ==0x08) || ((i & 0x01 ) ==0x01) )
- */
- if ((41 & i ) != 0 )
- prnreturn = 1;
- else prnreturn = 0;
- return(prnreturn);
- }
-
- void POC(int p, char c , int *err)
- {
- if (p > 1) p = 0;
- *err = _bios_printer(_PRINTER_WRITE,p,c);
-
-
- }
-
-
-
- int GetPrnPixel(int x,int y, int orient)
- {
- int result,getmaxx,getmaxy,xval, yy;
- GetMaxCoords(&getmaxx,&getmaxy);
- if (orient == 1){
- xval = getmaxx - y;
- if (xval >= 0 )
- result = _getpixel(xval,x);
- else
- result = 0;
- }
- else
- result = _getpixel(x,y);
- return(result);
- }
-
- int GetPrnMaxX(int orient)
- {
- int result, getmaxx,getmaxy;
-
- GetMaxCoords(&getmaxx, &getmaxy);
- if (orient == 1)
- result = getmaxy;
- else
- result = getmaxx;
- return(result);
- }
-
- int GetPrnMaxY(int orient)
- {
- int result, getmaxx,getmaxy;
-
- GetMaxCoords(&getmaxx, &getmaxy);
- if (orient == 1)
- result = getmaxx;
- else
- result = getmaxy;
- return(result);
- }
-
-
- void OutputPrinterChar(int PrnPort, char ch,int *error)
- { int i,l;
- switch (PrnPort) {
- case 0: POC(PrnPort,ch,error);break;
- case 1: POC(PrnPort,ch,error);break;
- case 2: send_com(ch,error);break;
- default: POC(PrnPort,ch,error); break;
- }
- }
-
- void OutputPrinterString(int PrnPort, char *s,int *error)
- { int i,l;
- char ss[255];
- strcpy( ss,s);
- l = strlen(ss);
- for (i=0; i< l; i++) {
- OutputPrinterChar(PrnPort,ss[i],error);
- }
- }
-
- char GetHorizByte(int x,int y, float xm, float ym, int rv, int orient)
- {
- int i,j, result;
- char p;
- char GetHorizByteResult;
- int ycalc;
- float xinc, xminc;
- result = 0;
- ycalc = floor(y/ym);
- xinc = 1/xm;
- xminc = x * xinc;
- for ( i = 0; i <= 7; i++) {
- p = GetPrnPixel( floor(xminc), ycalc, orient) >0;
- if (rv==1) p = (char) !(p);
- if (p) result = (result | (HVBitMask[7-i]));
- xminc += xinc;
- }
- GetHorizByteResult =( (char) result);
- return( GetHorizByteResult);
- }
-
- char GetVertByte(int x,int y,int numPix,float xm,float ym,int rv, int orient)
- {
- int n,total,i,j,e,b,l;
- char result;
- char p;
- char GetVertByteResult;
- int xcalc;
- float yminc,yinc;
-
- e = y + numPix - 1;
- b = 0;
- l = 0;
- n = numPix-1;
- xcalc = floor(x/xm);
- yinc = 1/ym;
- yminc = y*yinc;
- for (i = y; i <= e; i++){
- p = (GetPrnPixel( xcalc, floor(yminc), orient) >0);
- if (rv==1) p= (char) !(p);
- if (p) b = (b | (HVBitMask[n-l]));
- l += 1;
- yminc += yinc;
- }
- GetVertByteResult = ( (char) b);
- return(GetVertByteResult);
- }
-
-
- void ToshibaPScreenDump(int PrnPort,int res,float xm,float ym,
- int rv,int orient, int ff, int *error)
- {
-
- int maxX, maxY, x,ycount,y,l;
- char ch,tch;
- char numCol[80];
-
- *error = 0;
- if (res>1) res = 0;
- OutputPrinterChar( PrnPort, ESC ,error);
- OutputPrinterChar( PrnPort, 'L' ,error);
- OutputPrinterChar( PrnPort, '0' ,error);
- OutputPrinterChar( PrnPort, '7' ,error);
-
- y = 0;
- maxX = floor((GetPrnMaxX(orient) + 1) *xm);
- maxY = floor((GetPrnMaxY(orient) + 1) *ym);
-
- itoa(maxX,numCol,10);
-
- if (!(prnerr(*error))) {
- while (y < maxY){
- OutputPrinterChar( PrnPort, ESC, error);
- OutputPrinterString( PrnPort, ToshResArray[res], error);
- if (strlen( numCol)<4 )
- OutputPrinterChar( PrnPort, '0', error);
- OutputPrinterString( PrnPort, numCol, error);
- if (!(prnerr(*error))) {
- for ( x = 0; x <= maxX-1; x++) {
- for (l = 0; l <= 3; l++) {
- ch = GetVertByte(x,y+l*6,6,xm,ym,rv,orient);
- OutputPrinterChar(PrnPort,ch,error);
- }
- }
- if (!(prnerr(*error))) {
- OutputPrinterChar(PrnPort, '\x0d',error);
- OutputPrinterChar(PrnPort, '\x0a',error);
- y += 24;
- }
- }
-
- }
- if (!(prnerr(*error))){
- tch = '\x1a';
- OutputPrinterChar( PrnPort, ESC ,error);
- OutputPrinterChar( PrnPort, tch ,error);
- OutputPrinterChar( PrnPort, 'I' ,error);
- if (ff== 0) OutputPrinterChar(PrnPort,12,error);
- }
- }
- }
-
- void EpsonMXScreenDump(int PrnPort,int res,float xm,float ym,
- int rv,int orient, int ff, int *error)
- {
-
- int ilow,ihigh,maxX, maxY, x,ycount;
- int y;
- char ch;
- char low,high;
- char outString[80];
-
- *error = 0;
- if (res>3) res = 0;
-
- y = 0;
- maxX = floor((GetPrnMaxX(orient) + 1) *xm);
- maxY = floor((GetPrnMaxY(orient) + 1) *ym);
-
- ilow = maxX % 256;
- low = ((char)ilow);
- ihigh = (maxX / 256 );
- high = ((char)ihigh);
-
-
-
- OutputPrinterChar( PrnPort, ESC, error );
- OutputPrinterChar( PrnPort, 'A', error );
- OutputPrinterChar( PrnPort, '\x08', error );
- OutputPrinterChar( PrnPort, ESC, error );
- OutputPrinterChar( PrnPort, '\x32', error );
-
- if (!(prnerr(*error))) {
- while (y < maxY){
- OutputPrinterChar(PrnPort,ESC,error);
- OutputPrinterString(PrnPort, EMXResArray[res],error);
- OutputPrinterChar(PrnPort,low,error);
- OutputPrinterChar(PrnPort,high,error);
-
- if (!(prnerr(*error))) {
- for (x = 0; x <= maxX-1; x++) {
- ch = GetVertByte(x,y,8,xm,ym,rv, orient);
- OutputPrinterChar(PrnPort,ch,error);
- }
- if (!(prnerr(*error))){
- OutputPrinterChar(PrnPort, '\x0d',error);
- OutputPrinterChar(PrnPort, '\x0a',error);
- y += 8;
- }
- }
- }
- if (!(prnerr(*error))){
- OutputPrinterChar(PrnPort, '\x0d',error);
- OutputPrinterChar(PrnPort, '\x0a',error);
- OutputPrinterChar(PrnPort, ESC,error );
- OutputPrinterChar(PrnPort, 'A',error);
- OutputPrinterChar(PrnPort, '\x0c',error);
- OutputPrinterChar(PrnPort, ESC,error );
- OutputPrinterChar(PrnPort, '\x32',error );
- if (ff== 0) OutputPrinterChar(PrnPort,12,error);
- }
- }
- }
-
-
- void EpsonFXScreenDump(int PrnPort,int res,float xm,float ym,
- int rv,int orient, int ff, int *error)
- {
-
- int ilow,ihigh,maxX, maxY, x,ycount;
- int y;
- char ch;
- char low,high;
- char outString[80];
-
- *error = 0;
- if (res>3) res = 0;
-
- y = 0;
- maxX = floor((GetPrnMaxX(orient) + 1) *xm);
- maxY = floor((GetPrnMaxY(orient) + 1) *ym);
-
- ilow = maxX % 256;
- low = ((char)ilow);
- ihigh = (maxX / 256 );
- high = ((char)ihigh);
-
-
-
- OutputPrinterChar( PrnPort, ESC, error );
- OutputPrinterChar( PrnPort, 'A', error );
- OutputPrinterChar( PrnPort, '\x08', error );
-
- if (!(prnerr(*error))) {
- while (y < maxY){
- OutputPrinterChar(PrnPort,ESC,error);
- OutputPrinterString(PrnPort, EMXResArray[res],error);
- OutputPrinterChar(PrnPort,low,error);
- OutputPrinterChar(PrnPort,high,error);
-
- if (!(prnerr(*error))) {
- for (x = 0; x <= maxX-1; x++) {
- ch = GetVertByte(x,y,8,xm,ym,rv, orient);
- OutputPrinterChar(PrnPort,ch,error);
- }
- if (!(prnerr(*error))){
- OutputPrinterChar(PrnPort, '\x0d',error);
- OutputPrinterChar(PrnPort, '\x0a',error);
- y += 8;
- }
- }
- }
- if (!(prnerr(*error))){
- OutputPrinterChar(PrnPort, '\x0d',error);
- OutputPrinterChar(PrnPort, '\x0a',error);
- OutputPrinterChar(PrnPort, ESC,error );
- OutputPrinterChar(PrnPort, 'A',error);
- OutputPrinterChar(PrnPort, '\x0c',error);
- if (ff== 0) OutputPrinterChar(PrnPort,12,error);
- }
- }
- }
-
- void EpsonLQScreenDump(int PrnPort,int res,float xm,float ym,
- int rv,int orient, int ff,int *error)
- {
-
- int maxX, maxY, x,ycount,y,l;
- char ch;
- char high,low;
- int ilow;
- int ihigh;
- char numCol[10];
- char endGraph[10];
- char lineSpace[10];
- char graphInit[10];
-
- *error = 0;
- if (res>8) res = 0;
- if (res<4) EpsonMXScreenDump(PrnPort, res, xm, ym, rv,orient,ff, error);
- else {
- res -= 4;
- y = 0;
- maxX = floor((GetPrnMaxX(orient) + 1) *xm);
- maxY = floor((GetPrnMaxY(orient) + 1) *ym);
- ilow = maxX % 256;
- low = ((char)ilow);
- ihigh = (maxX / 256 );
- high = ((char)ihigh);
-
- OutputPrinterChar(PrnPort,ESC,error);
- OutputPrinterChar(PrnPort,'A',error);
- OutputPrinterChar(PrnPort,'\x08',error);
- if (!(prnerr(*error))){
- while (y < maxY){
- OutputPrinterChar(PrnPort,ESC,error);
- OutputPrinterChar(PrnPort,'*',error);
- OutputPrinterString(PrnPort,ELQResArray[res],error);
- OutputPrinterChar(PrnPort,low,error);
- OutputPrinterChar(PrnPort,high,error);
- if (!(prnerr(*error))){
- for (x = 0; x <= maxX-1; x++){
- for (l = 0; l <= 2; l++) {
- ch = GetVertByte(x,y+l*8,8,xm,ym,rv,orient);
- OutputPrinterChar(PrnPort,ch,error);
- }
- }
- }
- if (!(prnerr(*error))){
- OutputPrinterChar(PrnPort, '\x0d',error);
- OutputPrinterChar(PrnPort, '\x0a',error);
- y += 24;
- }
-
- } /* end while */
- } /* end if */
- if(!(prnerr(*error))){
- OutputPrinterChar(PrnPort,ESC,error);
- OutputPrinterChar(PrnPort,'@',error);
- } /* end if */
- if ((ff== 0)&& (!(prnerr(*error))))
- OutputPrinterChar(PrnPort,12,error);
- } /* end else */
- } /* end epsonlq */
-
-
-
- void HPLaserPlusScreenDump(int PrnPort,int res,float xm,float ym,
- int rv,int orient, int ff,int *error)
- {
-
- int maxX, maxY, x,ycount,y,l;
- char outString[80];
- char lch[5],ch;
-
- *error = 0;
- if (res>3) res = 0;
- OutputPrinterChar(PrnPort,ESC,error);
- OutputPrinterChar(PrnPort,'*',error);
- OutputPrinterChar(PrnPort,'t',error);
- OutputPrinterString(PrnPort,HPLResStringsY[res],error);
- OutputPrinterChar(PrnPort,'R',error);
-
- OutputPrinterChar(PrnPort,ESC,error);
- OutputPrinterChar(PrnPort,'*',error);
- OutputPrinterChar(PrnPort,'r',error);
- OutputPrinterChar(PrnPort,'0',error);
- OutputPrinterChar(PrnPort,'A',error);
-
- maxX = floor((GetPrnMaxX(orient) + 1) *xm);
- maxY = floor((GetPrnMaxY(orient) + 1) *ym);
- l = maxX / 8;
- itoa( l,lch,10);
-
- for (y = 0; y < maxY; y++){
- OutputPrinterChar(PrnPort,ESC,error);
- OutputPrinterChar(PrnPort,'*',error);
- OutputPrinterChar(PrnPort,'b',error);
- OutputPrinterString(PrnPort,lch,error);
- OutputPrinterChar(PrnPort,'W',error);
-
- for ( x = 0; x <= ((maxX-1) / 8); x++) {
- ch = GetHorizByte(x*8,y,xm,ym,rv, orient);
- OutputPrinterChar(PrnPort,ch, error);
- }
- }
- OutputPrinterChar(PrnPort,ESC,error);
- OutputPrinterChar(PrnPort,'*',error);
- OutputPrinterChar(PrnPort,'r',error);
- OutputPrinterChar(PrnPort,'B',error);
- if (ff== 0) OutputPrinterChar(PrnPort,12,error);
- }
-
-
- void HPThinkJetScreenDump(int PrnPort,int res,float xm,float ym,
- int rv,int orient, int ff,int *error)
- {
-
- int maxX, maxY, x,ycount,y,l;
- char outString[80];
- char lch[5],ch;
-
- *error = 0;
- if (res>1) res = 0;
- OutputPrinterChar(PrnPort,ESC,error);
- OutputPrinterChar(PrnPort,'*',error);
- OutputPrinterChar(PrnPort,'r',error);
- OutputPrinterString(PrnPort,HPJetResStringsY[res],error);
- OutputPrinterChar(PrnPort,'S',error);
-
- OutputPrinterChar(PrnPort,ESC,error);
- OutputPrinterChar(PrnPort,'*',error);
- OutputPrinterChar(PrnPort,'r',error);
- OutputPrinterChar(PrnPort,'A',error);
-
- maxX = floor((GetPrnMaxX(orient) + 1) *xm);
- maxY = floor((GetPrnMaxY(orient) + 1) *ym);
- l = maxX / 8;
- itoa( l,lch,10);
-
- for (y = 0; y < maxY; y++){
- OutputPrinterChar(PrnPort,ESC,error);
- OutputPrinterChar(PrnPort,'*',error);
- OutputPrinterChar(PrnPort,'b',error);
- OutputPrinterString(PrnPort,lch,error);
- OutputPrinterChar(PrnPort,'W',error);
-
- for ( x = 0; x <= ((maxX-1) / 8); x++) {
- ch = GetHorizByte(x*8,y,xm,ym,rv,orient);
- OutputPrinterChar(PrnPort,ch, error);
- }
- }
- OutputPrinterChar(PrnPort,ESC,error);
- OutputPrinterChar(PrnPort,'*',error);
- OutputPrinterChar(PrnPort,'r',error);
- OutputPrinterChar(PrnPort,'B',error);
- if (ff== 0) OutputPrinterChar(PrnPort,12,error);
- }
-
-
- void ScreenDump(int printer,int PrnPort,int res,float xm,float ym,
- int rv,int orient, int ff,int *error)
- {
- int maxX, maxY;
- if (CRTGraphOnF){
- GetMaxCoords( &maxX, &maxY );
- _setviewport(0,0,maxX, maxY);
- switch ( printer) {
- case 0: EpsonMXScreenDump(PrnPort, res, xm, ym, rv, orient, ff, error);break;
- case 1: EpsonLQScreenDump(PrnPort, res, xm, ym, rv, orient, ff, error);break;
- case 2: ToshibaPScreenDump(PrnPort, res, xm, ym, rv, orient, ff, error);break;
- case 3: HPLaserPlusScreenDump(PrnPort, res, xm, ym, rv, orient, ff, error);break;
- case 4: HPThinkJetScreenDump(PrnPort, res, xm, ym, rv, orient,ff, error);break;
- case 5: EpsonFXScreenDump(PrnPort, res, xm, ym, rv, orient,ff, error);break;
-
- default: EpsonMXScreenDump(PrnPort, res, xm, ym, rv, orient, ff, error);break;
- }
- _setviewport(vp.left,vp.top,vp.right,vp.bottom);
- }
- if (!(prnerr(*error) == 0)) *error = 0;
- }
-
- /* 2/20/90 Improved performance of printer drivers by removing
- redundant multiplies and divides in the GetVertByte
- and GetHorizByte function.
- */