/* GRAPHICS DEMO FOR Borland C++ Copyright (c) 1987, 1993 Borland International. All rights reserved. From the command line, use: bcc bgidemo graphics.lib */ #ifdef __TINY__ #error BGIDEMO will not run in the tiny model. #endif #include #include #include //#include #include #include #include #include #define random(range) (rand() % (range)) #define ESC 0x1b /* Define the escape key */ #define TRUE 1 /* Define some handy constants */ #define FALSE 0 /* Define some handy constants */ #define PI 3.14159 /* Define a value for PI */ #define ON 1 /* Define some handy constants */ #define OFF 0 /* Define some handy constants */ #define NFONTS 11 char *Fonts[NFONTS] = { "DefaultFont", "TriplexFont", "SmallFont", "SansSerifFont", "GothicFont", "ScriptFont", "SimplexFont", "TriplexScriptFont", "ComplexFont", "EuropeanFont", "BoldFont" }; char *LineStyles[] = { "SolidLn", "DottedLn", "CenterLn", "DashedLn", "UserBitLn" }; char *FillStyles[] = { "EmptyFill", "SolidFill", "LineFill", "LtSlashFill", "SlashFill", "BkSlashFill", "LtBkSlashFill", "HatchFill", "XHatchFill", "InterleaveFill", "WideDotFill", "CloseDotFill" }; char *TextDirect[] = { "HorizDir", "VertDir" }; char *HorizJust[] = { "LeftText", "CenterText", "RightText" }; char *VertJust[] = { "BottomText", "CenterText", "TopText" }; struct PTS { int x, y; }; /* Structure to hold vertex points */ int GraphDriver; /* The Graphics device driver */ int GraphMode; /* The Graphics mode value */ double AspectRatio; /* Aspect ratio of a pixel on the screen*/ int MaxX, MaxY; /* The maximum resolution of the screen */ int MaxColors; /* The maximum # of colors available */ int ErrorCode; /* Reports any graphics errors */ struct palettetype palette; /* Used to read palette info */ /* */ /* Function prototypes */ /* */ void Initialize(void); void ReportStatus(void); void TextDump(void); void Bar3DDemo(void); void RandomBars(void); void TextDemo(void); void ColorDemo(void); void ArcDemo(void); void CircleDemo(void); void PieDemo(void); void BarDemo(void); void LineRelDemo(void); void PutPixelDemo(void); void PutImageDemo(void); void LineToDemo(void); void LineStyleDemo(void); void CRTModeDemo(void); void UserLineStyleDemo(void); void FillStyleDemo(void); void FillPatternDemo(void); void PaletteDemo(void); void PolyDemo(void); void SayGoodbye(void); void Pause(void); void MainWindow(char *header); void StatusLine(char *msg); void DrawBorder(void); void changetextstyle(int font, int direction, int charsize); int gprintf(int *xloc, int *yloc, char *fmt, ... ); /* */ /* Begin main function */ /* */ // The WinMain function. // For g++, compile with -mwindows if you don't want a console window. int main( ) { Initialize(); /* Set system into Graphics mode */ ReportStatus(); /* Report results of the initialization */ ColorDemo(); /* Begin actual demonstration */ if( GraphDriver==EGA || GraphDriver==EGALO || GraphDriver==VGA ) PaletteDemo(); PutPixelDemo(); PutImageDemo(); Bar3DDemo(); BarDemo(); RandomBars(); ArcDemo(); CircleDemo(); PieDemo(); LineRelDemo(); LineToDemo(); LineStyleDemo(); UserLineStyleDemo(); TextDump(); TextDemo(); CRTModeDemo(); FillStyleDemo(); FillPatternDemo(); PolyDemo(); SayGoodbye(); /* Give user the closing screen */ closegraph(); /* Return the system to text mode */ return(0); } /* */ /* INITIALIZE: Initializes the graphics system and reports */ /* any errors which occured. */ /* */ void Initialize(void) { int xasp, yasp; /* Used to read the aspect ratio*/ GraphDriver = DETECT; /* Request auto-detection */ initgraph( &GraphDriver, &GraphMode, "G:\\Win95\\apps\\Borland\\bc5\\bgi" ); ErrorCode = graphresult(); /* Read result of initialization*/ if( ErrorCode != grOk ){ /* Error occured during init */ printf(" Graphics System Error: %s\n", grapherrormsg( ErrorCode ) ); exit( 1 ); } //getpalette( &palette ); /* Read the palette from board */ MaxColors = getmaxcolor() + 1; /* Read maximum number of colors*/ MaxX = getmaxx(); MaxY = getmaxy(); /* Read size of screen */ getaspectratio( &xasp, &yasp ); /* read the hardware aspect */ AspectRatio = (double)xasp / (double)yasp; /* Get correction factor */ } /* */ /* REPORTSTATUS: Report the current configuration of the system */ /* after the auto-detect initialization. */ /* */ void ReportStatus(void) { struct viewporttype viewinfo; /* Params for inquiry procedures*/ struct linesettingstype lineinfo; struct fillsettingstype fillinfo; struct textsettingstype textinfo; struct palettetype palette; char *driver, *mode; /* Strings for driver and mode */ int x, y; getviewsettings( &viewinfo ); getlinesettings( &lineinfo ); getfillsettings( &fillinfo ); gettextsettings( &textinfo ); //getpalette( &palette ); x = 10; y = 4; MainWindow( "Status report after InitGraph" ); settextjustify( LEFT_TEXT, TOP_TEXT ); driver = getdrivername(); mode = getmodename(GraphMode); /* get current setting */ gprintf( &x, &y, "Graphics device : %-20s (%d)", driver, GraphDriver ); gprintf( &x, &y, "Graphics mode : %-20s (%d)", mode, GraphMode ); gprintf( &x, &y, "Screen resolution : ( 0, 0, %d, %d )", getmaxx(), getmaxy() ); gprintf( &x, &y, "Current view port : ( %d, %d, %d, %d )", viewinfo.left, viewinfo.top, viewinfo.right, viewinfo.bottom ); gprintf( &x, &y, "Clipping : %s", viewinfo.clip ? "ON" : "OFF" ); gprintf( &x, &y, "Current position : ( %d, %d )", getx(), gety() ); gprintf( &x, &y, "Colors available : %d", MaxColors ); gprintf( &x, &y, "Current color : %d", getcolor() ); gprintf( &x, &y, "Line style : %s", LineStyles[ lineinfo.linestyle ] ); gprintf( &x, &y, "Line thickness : %d", lineinfo.thickness ); gprintf( &x, &y, "Current fill style : %s", FillStyles[ fillinfo.pattern ] ); gprintf( &x, &y, "Current fill color : %d", fillinfo.color ); //gprintf( &x, &y, "Current font : %s", Fonts[ textinfo.font ] ); //gprintf( &x, &y, "Text direction : %s", TextDirect[ textinfo.direction ] ); //gprintf( &x, &y, "Character size : %d", textinfo.charsize ); //gprintf( &x, &y, "Horizontal justify : %s", HorizJust[ textinfo.horiz ] ); //gprintf( &x, &y, "Vertical justify : %s", VertJust[ textinfo.vert ] ); Pause(); /* Pause for user to read screen*/ } /* */ /* TEXTDUMP: Display the all the characters in each of the */ /* available fonts. */ /* */ void TextDump() { static int CGASizes[] = { 1, 3, 7, 3, 3, 2, 2, 2, 2, 2, 2 }; static int NormSizes[] = { 1, 4, 7, 4, 4, 2, 2, 2, 2, 2, 2 }; char buffer[80]; int font, ch, wwidth, lwidth, size; struct viewporttype vp; for( font=0 ; font wwidth ) moveto( 2, gety() + textheight("H") + 3 ); ++ch; /* Goto the next character */ } } else{ size = (MaxY < 200) ? CGASizes[font] : NormSizes[font]; changetextstyle( font, HORIZ_DIR, size ); ch = '!'; /* Begin at 1st printable */ while( ch < 256 ){ /* For each printable character */ buffer[0] = (char)ch; /* Put character into a string */ outtext( buffer ); /* send string to screen */ if( (lwidth+getx()) > wwidth ) /* Are we still in window? */ moveto( 2, gety()+textheight("H")+3 ); ++ch; /* Goto the next character */ } } Pause(); /* Pause until user acks */ } /* End of FONT loop */ } /* */ /* BAR3DDEMO: Display a 3-D bar chart on the screen. */ /* */ void Bar3DDemo(void) { static int barheight[] = { 1, 3, 5, 4, 3, 2, 1, 5, 4, 2, 3 }; struct viewporttype vp; int xstep, ystep; int i, j, h, color, bheight; char buffer[10]; MainWindow( "Bar 3-D / Rectangle Demonstration" ); h = 3 * textheight( "H" ); getviewsettings( &vp ); settextjustify( CENTER_TEXT, TOP_TEXT ); changetextstyle( TRIPLEX_FONT, HORIZ_DIR, 4 ); outtextxy( MaxX/2, 6, "These are 3-D Bars" ); changetextstyle( DEFAULT_FONT, HORIZ_DIR, 1 ); setviewport( vp.left+50, vp.top+40, vp.right-50, vp.bottom-10, 1 ); getviewsettings( &vp ); line( h, h, h, vp.bottom-vp.top-h ); line( h, (vp.bottom-vp.top)-h, (vp.right-vp.left)-h, (vp.bottom-vp.top)-h ); xstep = ((vp.right-vp.left) - (2*h)) / 10; ystep = ((vp.bottom-vp.top) - (2*h)) / 5; j = (vp.bottom-vp.top) - h; settextjustify( CENTER_TEXT, CENTER_TEXT ); for( i=0 ; i<6 ; ++i ){ line( h/2, j, h, j ); itoa( i, buffer, 10 ); outtextxy( 0, j, buffer ); j -= ystep; } j = h; settextjustify( CENTER_TEXT, TOP_TEXT ); for( i=0 ; i<11 ; ++i ){ color = random( MaxColors ); setfillstyle( i+1, color ); line( j, (vp.bottom-vp.top)-h, j, (vp.bottom-vp.top-3)-(h/2) ); itoa( i, buffer, 10 ); outtextxy( j, (vp.bottom-vp.top)-(h/2), buffer ); if( i != 10 ){ bheight = (vp.bottom-vp.top) - h - 1; bar3d( j, (vp.bottom-vp.top-h)-(barheight[i]*ystep), j+xstep, bheight, 15, 1 ); } j += xstep; } Pause(); /* Pause for user's response */ } /* */ /* RANDOMBARS: Display random bars */ /* */ void RandomBars(void) { int color; MainWindow( "Random Bars" ); StatusLine( "Esc aborts or press a key..." ); /* Put msg at bottom of screen */ while( !kbhit() ){ /* Until user enters a key... */ color = random( MaxColors-1 )+1; setcolor( color ); setfillstyle( random(11)+1, color ); bar3d( random( getmaxx() ), random( getmaxy() ), random( getmaxx() ), random( getmaxy() ), 0, OFF); } Pause(); /* Pause for user's response */ } /* */ /* TEXTDEMO: Show each font in several sizes to the user. */ /* */ void TextDemo(void) { int charsize[] = { 1, 3, 7, 3, 4, 2, 2, 2, 2, 2, 2 }; int font, size; int h, x, y, i; struct viewporttype vp; char buffer[80]; for( font=0 ; font using namespace std; void PutImageDemo(void) { static int r = 20; static int StartX = 100; static int StartY = 50; struct viewporttype vp; int PauseTime, x, y, ulx, uly, lrx, lry, size, i, width, height, step; void *Saucer; MainWindow("GetImage / PutImage Demonstration"); getviewsettings( &vp ); /* Draw Saucer */ setfillstyle( SOLID_FILL, getmaxcolor() ); fillellipse(StartX, StartY, r, (r/3)+2); ellipse(StartX, StartY-4, 190, 357, r, r/3); line(StartX+7, StartY-6, StartX+10, StartY-12); circle(StartX+10, StartY-12, 2); line(StartX-7, StartY-6, StartX-10, StartY-12); circle(StartX-10, StartY-12, 2); /* Read saucer image */ ulx = StartX-(r+1); uly = StartY-14; lrx = StartX+(r+1); lry = StartY+(r/3)+3; width = lrx - ulx + 1; height = lry - uly + 1; size = 0; size = imagesize(ulx, uly, lrx, lry); Saucer = malloc( size ); getimage(ulx, uly, lrx, lry, Saucer); putimage(ulx, uly, Saucer, XOR_PUT); /* Plot some "stars" */ for ( i=0 ; i<1000; ++i ) putpixel(random(MaxX), random(MaxY), random( MaxColors-1 )+1); x = MaxX / 2; y = MaxY / 2; PauseTime = 70; /* until a key is hit */ while ( !kbhit() ) { /* Draw the Saucer */ putimage(x, y, Saucer, XOR_PUT); /* draw image */ delay(PauseTime); putimage(x, y, Saucer, XOR_PUT); /* erase image */ /* Move Saucer */ step = random( 2*r ); if ((step/2) % 2 != 0 ) step = -1 * step; x = x + step; step = random( r ); if ((step/2) % 2 != 0 ) step = -1 * step; y = y + step; if (vp.left + x + width - 1 > vp.right) x = vp.right-vp.left-width + 1; else if (x < 0) x = 0; if (vp.top + y + height - 1 > vp.bottom) y = vp.bottom-vp.top-height + 1; else if (y < 0) y = 0; } free( Saucer ); Pause(); } /* */ /* LINETODEMO: Display a pattern using moveto and lineto commands. */ /* */ #define MAXPTS 15 void LineToDemo(void) { struct viewporttype vp; struct PTS points[MAXPTS]; int i, j, h, w, xcenter, ycenter; int radius, angle, step; double rads; MainWindow( "MoveTo / LineTo Demonstration" ); getviewsettings( &vp ); h = vp.bottom - vp.top; w = vp.right - vp.left; xcenter = w / 2; /* Determine the center of circle */ ycenter = h / 2; radius = int ((h - 30) / (AspectRatio * 2)); step = 360 / MAXPTS; /* Determine # of increments */ angle = 0; /* Begin at zero degrees */ for( i=0 ; i> i); /* Clear the Ith bit in word */ setlinestyle( USERBIT_LINE, style, NORM_WIDTH ); line( x, y, x, h-y ); /* Draw the new line pattern */ x += 5; /* Move the X location of line */ i = ++i % 16; /* Advance to next bit pattern */ if( style == 0xffff ){ /* Are all bits set? */ flag = FALSE; /* begin removing bits */ i = 0; /* Start with whole pattern */ } else{ /* Bits not all set... */ if( style == 0 ) /* Are all bits clear? */ flag = TRUE; /* begin setting bits */ } } settextjustify( LEFT_TEXT, TOP_TEXT ); Pause(); /* Wait for user's response */ } /* */ /* FILLSTYLEDEMO: Display the standard fill patterns available. */ /* */ void FillStyleDemo(void) { int h, w, style; int i, j, x, y; struct viewporttype vp; char buffer[40]; MainWindow( "Pre-defined Fill Styles" ); getviewsettings( &vp ); w = 2 * ((vp.right + 1) / 13); h = 2 * ((vp.bottom - 10) / 10); x = w / 2; y = h / 2; /* Leave 1/2 blk margin */ style = 0; for( j=0 ; j<3 ; ++j ){ /* Three rows of boxes */ for( i=0 ; i<4 ; ++i ){ /* Four column of boxes */ setfillstyle(style, MaxColors-1); /* Set the fill style and WHITE */ bar( x, y, x+w, y+h ); /* Draw the actual box */ rectangle( x, y, x+w, y+h ); /* Outline the box */ itoa( style, buffer, 10 ); /* Convert style 3 to ASCII */ outtextxy( x+(w / 2), y+h+4, buffer ); ++style; /* Go on to next style # */ x += (w / 2) * 3; /* Go to next column */ } /* End of coulmn loop */ x = w / 2; /* Put base back to 1st column */ y += (h / 2) * 3; /* Advance to next row */ } /* End of Row loop */ settextjustify( LEFT_TEXT, TOP_TEXT ); Pause(); /* Wait for user's response */ } /* */ /* FILLPATTERNDEMO: Demonstrate how to use the user definable */ /* fill patterns. */ /* */ void FillPatternDemo(void) { int style; int h, w; int x, y, i, j; char buffer[40]; struct viewporttype vp; static char patterns[][8] = { { 0xAA, 0x55, 0xAA, 0x55, 0xAA, 0x55, 0xAA, 0x55 }, { 0x33, 0x33, 0xCC, 0xCC, 0x33, 0x33, 0xCC, 0xCC }, { 0xF0, 0xF0, 0xF0, 0xF0, 0x0F, 0x0F, 0x0F, 0x0F }, { 0x00, 0x10, 0x28, 0x44, 0x28, 0x10, 0x00, 0x00 }, { 0x00, 0x70, 0x20, 0x27, 0x24, 0x24, 0x07, 0x00 }, { 0x00, 0x00, 0x00, 0x18, 0x18, 0x00, 0x00, 0x00 }, { 0x00, 0x00, 0x3C, 0x3C, 0x3C, 0x3C, 0x00, 0x00 }, { 0x00, 0x7E, 0x7E, 0x7E, 0x7E, 0x7E, 0x7E, 0x00 }, { 0x00, 0x00, 0x22, 0x08, 0x00, 0x22, 0x1C, 0x00 }, { 0xFF, 0x7E, 0x3C, 0x18, 0x18, 0x3C, 0x7E, 0xFF }, { 0x00, 0x10, 0x10, 0x7C, 0x10, 0x10, 0x00, 0x00 }, { 0x00, 0x42, 0x24, 0x18, 0x18, 0x24, 0x42, 0x00 } }; MainWindow( "User Defined Fill Styles" ); getviewsettings( &vp ); w = 2 * ((vp.right + 1) / 13); h = 2 * ((vp.bottom - 10) / 10); x = w / 2; y = h / 2; /* Leave 1/2 blk margin */ style = 0; for( j=0 ; j<3 ; ++j ){ /* Three rows of boxes */ for( i=0 ; i<4 ; ++i ){ /* Four column of boxes */ setfillpattern( &patterns[style][0], MaxColors-1 ); bar( x, y, x+w, y+h ); /* Draw the actual box */ rectangle( x, y, x+w, y+h ); /* Outline the box */ itoa( style, buffer, 10 ); /* Convert style 3 to ASCII */ outtextxy( x+(w / 2), y+h+4, buffer ); ++style; /* Go on to next style # */ x += (w / 2) * 3; /* Go to next column */ } /* End of coulmn loop */ x = w / 2; /* Put base back to 1st column */ y += (h / 2) * 3; /* Advance to next row */ } /* End of Row loop */ settextjustify( LEFT_TEXT, TOP_TEXT ); Pause(); /* Wait for user's response */ } /* */ /* POLYDEMO: Display a random pattern of polygons on the screen */ /* until the user says enough. */ /* */ void PaletteDemo(void) { int i, j, x, y, color; struct viewporttype vp; int height, width; MainWindow( "Palette Demonstration" ); StatusLine( "Press any key to continue, ESC to Abort" ); getviewsettings( &vp ); width = (vp.right - vp.left) / 15; /* get width of the box */ height = (vp.bottom - vp.top) / 10; /* Get the height of the box */ x = y = 0; /* Start in upper corner */ color = 1; /* Begin at 1st color */ for( j=0 ; j<10 ; ++j ){ /* For 10 rows of boxes */ for( i=0 ; i<15 ; ++i ){ /* For 15 columns of boxes */ setfillstyle( SOLID_FILL, color++ ); /* Set the color of box */ bar( x, y, x+width, y+height ); /* Draw the box */ x += width + 1; /* Advance to next col */ color = 1 + (color % (MaxColors - 2)); /* Set new color */ } /* End of COLUMN loop */ x = 0; /* Goto 1st column */ y += height + 1; /* Goto next row */ } /* End of ROW loop */ while( !kbhit() ){ /* Until user enters a key... */ //setpalette( 1+random(MaxColors - 2), random( 65 ) ); } //setallpalette( &palette ); Pause(); /* Wait for user's response */ } /* */ /* POLYDEMO: Display a random pattern of polygons on the screen */ /* until the user says enough. */ /* */ #define MaxPts 6 /* Maximum # of pts in polygon */ void PolyDemo(void) { struct PTS poly[ MaxPts ]; /* Space to hold datapoints */ int color; /* Current drawing color */ int i; MainWindow( "DrawPoly / FillPoly Demonstration" ); StatusLine( "ESC Aborts - Press a Key to stop" ); while( !kbhit() ){ /* Repeat until a key is hit */ color = 1 + random( MaxColors-1 ); /* Get a random color # (no blk)*/ setfillstyle( random(10), color ); /* Set a random line style */ setcolor( color ); /* Set the desired color */ for( i=0 ; i<(MaxPts-1) ; i++ ){ /* Determine a random polygon */ poly[i].x = random( MaxX ); /* Set the x coord of point */ poly[i].y = random( MaxY ); /* Set the y coord of point */ } poly[i].x = poly[0].x; /* last point = first point */ poly[i].y = poly[1].y; fillpoly( MaxPts, (int *)poly ); /* Draw the actual polygon */ } /* End of WHILE not KBHIT */ Pause(); /* Wait for user's response */ } /* */ /* SAYGOODBYE: Give a closing screen to the user before leaving. */ /* */ void SayGoodbye(void) { struct viewporttype viewinfo; /* Structure to read viewport */ int h, w; MainWindow( "== Finale ==" ); getviewsettings( &viewinfo ); /* Read viewport settings */ changetextstyle( TRIPLEX_FONT, HORIZ_DIR, 4 ); settextjustify( CENTER_TEXT, CENTER_TEXT ); h = viewinfo.bottom - viewinfo.top; w = viewinfo.right - viewinfo.left; outtextxy( w/2, h/2, "That's all, folks!" ); StatusLine( "Press any key to EXIT" ); getch(); cleardevice(); /* Clear the graphics screen */ } /* */ /* PAUSE: Pause until the user enters a keystroke. If the */ /* key is an ESC, then exit program, else simply return. */ /* */ void Pause(void) { static char msg[] = "Esc aborts or press a key..."; int c; StatusLine( msg ); /* Put msg at bottom of screen */ c = getch(); /* Read a character from kbd */ if( ESC == c ){ /* Does user wish to leave? */ closegraph(); /* Change to text mode */ exit( 1 ); /* Return to OS */ } if( 0 == c ){ /* Did use hit a non-ASCII key? */ c = getch(); /* Read scan code for keyboard */ } cleardevice(); /* Clear the screen */ } /* */ /* MAINWINDOW: Establish the main window for the demo and set */ /* a viewport for the demo code. */ /* */ void MainWindow( char *header ) { int height; cleardevice(); /* Clear graphics screen */ setcolor( MaxColors - 1 ); /* Set current color to white */ setviewport( 0, 0, MaxX, MaxY, 1 ); /* Open port to full screen */ height = textheight( "H" ); /* Get basic text height */ changetextstyle( DEFAULT_FONT, HORIZ_DIR, 1 ); settextjustify( CENTER_TEXT, TOP_TEXT ); outtextxy( MaxX/2, 2, header ); setviewport( 0, height+4, MaxX, MaxY-(height+4), 1 ); DrawBorder(); setviewport( 1, height+5, MaxX-1, MaxY-(height+5), 1 ); } /* */ /* STATUSLINE: Display a status line at the bottom of the screen. */ /* */ void StatusLine( char *msg ) { int height; setviewport( 0, 0, MaxX, MaxY, 1 ); /* Open port to full screen */ setcolor( MaxColors - 1 ); /* Set current color to white */ changetextstyle( DEFAULT_FONT, HORIZ_DIR, 1 ); settextjustify( CENTER_TEXT, TOP_TEXT ); setlinestyle( SOLID_LINE, 0, NORM_WIDTH ); setfillstyle( EMPTY_FILL, 0 ); height = textheight( "H" ); /* Detemine current height */ bar( 0, MaxY-(height+4), MaxX, MaxY ); rectangle( 0, MaxY-(height+4), MaxX, MaxY ); outtextxy( MaxX/2, MaxY-(height+2), msg ); setviewport( 1, height+5, MaxX-1, MaxY-(height+5), 1 ); } /* */ /* DRAWBORDER: Draw a solid single line around the current */ /* viewport. */ /* */ void DrawBorder(void) { struct viewporttype vp; setcolor( MaxColors - 1 ); /* Set current color to white */ setlinestyle( SOLID_LINE, 0, NORM_WIDTH ); getviewsettings( &vp ); rectangle( 0, 0, vp.right-vp.left, vp.bottom-vp.top ); } /* */ /* CHANGETEXTSTYLE: similar to settextstyle, but checks for */ /* errors that might occur whil loading the font file. */ /* */ void changetextstyle(int font, int direction, int charsize) { int ErrorCode; graphresult(); /* clear error code */ settextstyle(font, direction, charsize); ErrorCode = graphresult(); /* check result */ if( ErrorCode != grOk ){ /* if error occured */ closegraph(); printf(" Graphics System Error: %s\n", grapherrormsg( ErrorCode ) ); exit( 1 ); } } /* */ /* GPRINTF: Used like PRINTF except the output is sent to the */ /* screen in graphics mode at the specified co-ordinate. */ /* */ int gprintf( int *xloc, int *yloc, char *fmt, ... ) { va_list argptr; /* Argument list pointer */ char str[140]; /* Buffer to build sting into */ int cnt; /* Result of SPRINTF for return */ va_start( argptr, fmt ); /* Initialize va_ functions */ cnt = vsprintf( str, fmt, argptr ); /* prints string to buffer */ outtextxy( *xloc, *yloc, str ); /* Send string in graphics mode */ *yloc += textheight( "H" ) + 2; /* Advance to next line */ va_end( argptr ); /* Close va_ functions */ return( cnt ); /* Return the conversion count */ }