I'm writing a program to read a file to get the size, mass, position etc about the sun and planets. I can get the planets drawn as circles in an Xwindow but I can't get the sleep function to work. I just want to make the planets show up for five seconds then disappear to show just black, but when I try to call sleep and run the program I never see the planets in the window. It just starts out as a black screen. Am I just using sleep wrong or is there something I need to add? Or am I missing the point entirely?
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#include <plot.h>
struct body {
char color[10];
char size[4];
char mass[10];
char xpos[10];
char ypos[10];
};
int main()
{
/* just drawing the first five for now */
struct body sun;
struct body mercury;
struct body venus;
struct body earth;
struct body mars;
/* not gonna show code for reading file and assigning values to the struct
* for the space
*/
plPlotter *plotter;
plPlotterParams *plotterParams;
plotterParams = pl_newplparams();
pl_setplparam(plotterParams, "BITMAPSIZE", "750x750");
pl_setplparam(plotterParams, "USE_DOUBLE_BUFFERING", "no");
pl_setplparam(plotterParams, "BG_COLOR", "black");
if ((plotter = pl_newpl_r("X", stdin, stdout, stderr, plotterParams)) == NULL) {
fprint(stderr, "Couldn't create Plotter\n");
exit(1);
} else if(pl_openpl_r(plotter) < 0) {
fprintf(stderr, "Couldn't open Xwindows Plotter\n");
exit(1);
}
pl_fspace_r(plotter, -2500, -2500, 2500, 2500);
pl_pentype_r(plotter, 1);
pl_filltype_r(plotter, 1);
pl_pencolorname_r(plotter, "black");
/* draw the sun */
pl_fillcolorname_r(plotter, sun.color);
pl_fcircle_r(plotter, atof(sun.xpos), atof(sun.ypos), atof(sun.size));
/* I do this same thing 4 more times but with
* mercury, venus, earth, and mars
*/
sleep(5); /* try to wait 5 seconds then sleep */
/* close and cleanup */
if (pl_close_pl_r(plotter) < 0) {
fprintf(stderr, "Couldnt delete plotter\n");
}
else if (pl_deletepl_r(plotter) < 0) {
fprintf(stderr, "Couldnt delete plotter\n");
}
return 0;
}