我使用graphics.h作为一个小程序,用于教育目的。它有一个围绕地球轨道运行的月球。问题是,经过几次迭代后,整个屏幕变为空白(白色)。我尝试了很多替代方案但无法找到问题。请查看以下代码,看看您是否能找到问题?
#include <stdio.h>
#include <conio.h>
#include <graphics.h>
#include <math.h>
int main()
{
int gd,gm;
detectgraph(&gd,&gm);
initgraph(&gd,&gm,"c:\\tc\\bgi");
int Earth_x,Earth_y;
Earth_x=10+390/2;
Earth_y=60+340/2;
int Moon_x,Moon_y;
Moon_x=Earth_x+100; //Moon initial coordinates
Moon_y=Earth_y;
float t = 0;
int new_page, old_page; // declare integer variables representing two graphics pages
while(1)
{
old_page = getvisualpage( ); // set old_page to the number of the visual page
new_page = abs(old_page-0); // set new_page to the visual page number-1
setactivepage(new_page); // set the active page to the value of the new page
cleardevice( ); // erase the active page
//rectangle(x1,y1,x2,y2);
rectangle(10,60,400,400);
//code for drawing and filing Earth.
setcolor(GREEN);
setfillstyle(1,GREEN);
circle(Earth_x,Earth_y,30);
floodfill(Earth_x,Earth_y,GREEN);
setcolor(WHITE);
outtextxy(Earth_x, Earth_y, "Earth");
//code for drawing and filling Moon.
setfillstyle(1,WHITE);
circle(Moon_x,Moon_y,10);
floodfill(Moon_x,Moon_y,WHITE);
//****We can add delay to slow down the moon***
//delay(1);
setvisualpage(new_page); // move the activepage to the visual page
//Code for modification of Moon coordinates
Moon_x=Earth_x+100*cos(t*3.1415/180.0);
Moon_y=Earth_y+100*sin(t*3.1415/180.0);
t=t+1;
}
getch();
closegraph();
}
感谢您的帮助!
答案 0 :(得分:0)
我不熟悉您正在使用的库,所以我找不到错误,但有些事情看起来不太好。
int Moon_x,Moon_y; //它们应该是浮点数(因为你指定了三角函数的结果)
new_page = abs(old_page-0); // - &gt;应该是-1 ???
作为一般调试提示,我建议尝试从场景中删除东西(例如移除月亮,然后移除地球等),看看是否得到相同的结果。这样您就可以检测出导致问题的原因。
答案 1 :(得分:0)
代码似乎没有任何错误。我认为你没有以正确的方式编译代码。如果您正在使用Code :: Blocks,则需要首先在编译器库中包含graphics.h头文件。这tutorial应该会有所帮助!