home *** CD-ROM | disk | FTP | other *** search
- # include <math.h>
- # include <stdlib.h>
- # include <stdio.h>
- # include <string.h>
- # include <graph.h>
- # include <stdlib.h>
- # include "asyncxx.h"
- # include "worlddr.h"
- # include "segraph.h"
-
-
-
- int err,wc,i,k,grcolor;
- float xdata[100];
- float GroupData[12][10];
- char XStrings[13][80];
- string80 LegendStrings[12];
- int groupcolor[12];
- int grouphatch[12];
- extern BlackAndWhite;
-
- float frand()
- { float r;
- int i;
- i = rand();
- r = i;
- r = r / 32767.0;
- return(r);
- }
-
-
- void main()
-
- {
-
- /****************************************************
- - IF YOU WANT TO CONFIGURE FOR CGA 4 COLORS
- CHOOSE InitSEGraphics(1);
- - HERCULES SUPPORT IS NOW INCLUDED IN MICROSOFT
- C VERSION 5.1. IF YOU WANT TO USE THE
- HERCULES DRIVER YOU MUST FIRST INSTALL
- MSHERC.COM FROM DOS BY TYPING
- msherc<enter>
- THEN IN YOUR MAIN PROGRAM CALL
- InitSEGraphics(12);
- - REFER TO THE README.DOC FILE - PART 3
- INCLUDED IN YOUR MICROSOFT C 5.1 COMPILER
- FOR DETAILS ON ADDED HERCULES SUPPORT.
- **************************************************/
-
- InitSEGraphics(6);
- for ( i = 0; i<= 12; i++ )
- for ( k = 0; k<= 10; k++ )
- {
- xdata[i] = i+1.0;
- GroupData[k][i] = 100.0 * frand();
- }
-
-
- groupcolor[0] = 1; groupcolor[1] = 2; groupcolor[2] = 3;
- groupcolor[3] = 4; groupcolor[4] = 5; groupcolor[5] = 6;
- groupcolor[6] = 7; groupcolor[7] = 9; groupcolor[8] = 10;
- groupcolor[9] = 11; groupcolor[10] = 12; groupcolor[11] = 13;
-
- grouphatch[0] = 1; grouphatch[1] = 2; grouphatch[2] = 3;
- grouphatch[3] = 0; grouphatch[4] = 1; grouphatch[5] = 2;
- grouphatch[6] = 3; grouphatch[7] = 0; grouphatch[8] = 1;
- grouphatch[9] = 2; grouphatch[10] = 3; grouphatch[11] = 1;
-
- strcpy(LegendStrings[0], "Monday");
- strcpy(LegendStrings[1], "Tuesday" );
- strcpy(LegendStrings[2], "Wednesday");
- strcpy(LegendStrings[3], "Thursday");
- strcpy(LegendStrings[4], "Friday");
- SetPercentWindow( 0.05,0.90,0.95,0.99,3);
-
- for (wc = 1; wc <= 2; wc++ ){
- SetCurrentWindow(wc);
- ClearWindow();
- SetAxesType(0,0);
- ScalePlotArea(0.0,0.0,12.5, 600.0);
- SetXYIntercepts(0.0,0.0);
- strcpy( XStrings[0],"");
- strcpy( XStrings[1],"J");
- strcpy( XStrings[2],"F");
- strcpy( XStrings[3],"M");
- strcpy( XStrings[4],"A");
- strcpy( XStrings[5],"M");
- strcpy( XStrings[6],"J");
- strcpy( XStrings[7],"J");
- strcpy( XStrings[8],"A");
- strcpy( XStrings[9],"S");
- strcpy( XStrings[10],"O");
- strcpy( XStrings[11],"N");
- strcpy( XStrings[12],"D");
-
- SelectColor(1);
- DrawXAxis(1, 0);
- LabelXAxWithStrings(1,XStrings,13,0);
- DrawYAxis(20.0, 0);
- LabelYAxis(5,0);
- GroupPlotData(xdata, &GroupData[0][0], 12, 10,0, 0.75, groupcolor,grouphatch);
- TitleWindow("Ratologist Studies");
- TitleXAxis("Ratologist");
- TitleYAxis("# Rats/wk.");
-
- getch();
-
- ClearWindow();
- SetAxesType(0,0);
- ScalePlotArea(0.0,0.0,12.5, 600.0);
- if (BlackAndWhite == 0)
- SetViewBackground(15);
- SetXYIntercepts(0.0,0.0);
- grouphatch[3] = 4;
- grouphatch[4] = 5;
- SelectColor(1);
- DrawXAxis(1, 0);
- LabelXAxWithStrings(1,XStrings,13,0);
- GroupPlotData(xdata, &GroupData[0][0], 12, 10,1, 0.75, groupcolor,grouphatch);
- DrawYAxis(20.0, 0);
- DrawGridY(5);
- LabelYAxis(5,0);
- TitleXAxis("Ratologist");
- TitleYAxis("# Rats/wk.");
- TitleWindow("Ratologist Studies");
- if (wc == 1){
- SetCurrentWindow(3);
- BorderCurrentWindow(5);
- StringLegends(LegendStrings, groupcolor,grouphatch, 5,1);
- }
- getch();
- ClearWindow();
- SetCurrentWindow(wc);
- ClearWindow();
-
- SetAxesType(0,0);
- ScalePlotArea(0.0,0.0,4.5, 500.0);
- SetXYIntercepts(0.0,0.0);
- SetCurrentWindow(wc);
- if (BlackAndWhite == 0)
- SetViewBackground(15);
- SelectColor(1);
- ScalePlotArea(0.0,0.0,12.5, 100.0);
- SetXYIntercepts(0.0,0.0);
- DrawXAxis(1, 0);
- LabelXAxWithStrings(1,XStrings,13,0);
- DrawYAxis(10.0, 0);
- LabelYAxis(2,0);
- TitleXAxis("Ratologist");
- TitleYAxis("# Rats/wk.");
- TitleWindow("Ratologist Studies");
- GroupPlotData(xdata, &GroupData[0][0], 12, 10,2, 0.75, groupcolor, grouphatch);
- if (wc == 1){
- SetCurrentWindow(3);
- BorderCurrentWindow(5);
- StringLegends(LegendStrings, groupcolor,grouphatch, 5,1);
- }
- getch();
- ClearWindow();
- SetCurrentWindow(wc);
- ClearWindow();
- }
-
- CloseSEGraphics();
-
- }
-