0

我试图通过按键盘上的一个键在执行期间暂停我的 GLUT 程序。它似乎无法识别我的条目。以下是我的代码的相关部分:

static bool paused = false;
void handleKeypress(unsigned char key, //The key that was pressed                                                                                                           
                                        int x, int y) {    //The current mouse coordinates                                                                                  
        switch (key) {
                case 27: //Escape key                                                                                                                                       
                  exit(0); //Exit the program                                                                                                                               
                case 'p':
                  paused = !paused;
                  break;
        }
}

int main(int argc, char** argv) {
        //Initialize GLUT                                                                                                                                                   
        glutInit(&argc, argv);
        glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH);
        glutInitWindowSize(600, 400); //Set the window size                                                                                                                 

        //Create the window                                                                                                                                                 
        glutCreateWindow("Fractals in Motion");
        initRendering(); //Initialize rendering                                                                                                                             

        //Set handler functions for drawing, keypresses, and window resizes                                                                                                 
        if(!paused)
          {
            glutDisplayFunc(drawScene);       //drawScene draws everything does the real work
            glutTimerFunc(10, update, 0); //Add a timer                                                                                                                     
          }
        //glutKeyboardFunc(handleKeypress);                                                                                                                                 
        glutReshapeFunc(handleResize);

        glutMainLoop(); //Start the main loop.  glutMainLoop doesn't return.                                                                                                
        return 0; //This line is never reached                                                                                                                              
}

实际上,我从这个非常愿意编写的教程中得到了这段代码的骨架:

http://www.videotutorialsrock.com/opengl_tutorial/basic_shapes/home.php

但是,当我按下“p”键时,我似乎无法让程序暂停。如果您有更好的方法,请告诉我!

4

3 回答 3

3

它不起作用,因为由于glutKeyboardFunc(handleKeypress)某种原因被注释掉了。取消注释,它应该工作。

于 2013-08-05T01:36:50.263 回答
2

您的程序分两个阶段运行:

  • 初始化
  • 主循环

之前的一切glutMainLoop都是初始化,告诉 GLUT 你想要使用的所有不同的设置和回调。在主循环中,GLUT 会调用你所有的回调,然后你就可以画图了。

问题是您paused在主循环期间进行设置并在初始化期间对其进行检查。由于初始化总是发生在主循环之前,因此设置paused实际上不会做任何事情。

解决方案是不依赖于paused初始化期间的检查,而是修改您的回调以立即返回 if pausedis true

于 2013-08-05T01:28:01.760 回答
0
# include<GL/glut.h>
void keys(unsigned char key, int x, int y)    
{    
    if (key == 'a')     paused = 1;    
    if (key == 'A')     paused = 0;    
    glutPostRedisplay();    
}

在您的程序中添加此功能以获得键盘功能,以及您在程序中使用 glutPostRedisplay() 的任何位置添加 if(paused == 0) 在其上方

于 2015-05-23T06:27:29.500 回答