使 GLUT 应用程序在键盘按下时旋转

make GLUT application to rotate on keyboard press

伙计们,我尝试制作一个可以在按下按键时旋转对象的 GLUT 应用程序,但它似乎不起作用。

#include <stdio.h>
#include <gl/glut.h>

GLfloat rotation = 90.0;
float posX = 0, posY = 0, posZ = 0;

void reshape(int width, int heigth){
    /* window ro reshape when made it bigger or smaller*/

    glMatrixMode(GL_PROJECTION);
    glLoadIdentity();

    //clip the windows so its shortest side is 2.0
    if (width < heigth) {
        glOrtho(-2.0, 2.0, -2.0 * (GLfloat)heigth / (GLfloat)width, 2.0 * (GLfloat)heigth / (GLfloat)width, 2.0, 2.0);
    }
    else{
        glOrtho(-2.0, 2.0, -2.0 * (GLfloat)width / (GLfloat)heigth, 2.0 * (GLfloat)width / (GLfloat)heigth,2.0 , 2.0);
    }
    // set viewport to use the entire new window
    glViewport(0, 0, width, heigth);
}

void rect(){
    glBegin(GL_POLYGON);
    glVertex2f(-0.2, -0.2);
    glColor3f(1.0, 1.0, 0.0);
    glVertex2f(-0.2, 0.2);
    glColor3f(1.0, 0.0, 1.0);
    glVertex2f(0.2, 0.2);
    glColor3f(0.0, 1.0, 1.0);
    glVertex2f(1.2, -0.2);
    glColor3f(1.0, 1.0, 1.0);
    glEnd();



}

void display(){
    //Clear Window
    glClear(GL_COLOR_BUFFER_BIT);
    glMatrixMode(GL_MODELVIEW);
    glLoadIdentity();
    glPushMatrix();
    glTranslatef(posX,posY,posZ);
    rect();
    glPopMatrix();
    glFlush();
}


void init(){
    // set clear color to black
    glClearColor(0.0, 0.0, 0.0, 0.0);

    // set fill color to white
    glColor3f(1.0, 1.0, 1.0);

    //set up standard orthogonal view with clipping
    //box as cube of side 2 centered at origin
    //This is the default view and these statements could be removed
    glMatrixMode(GL_PROJECTION);
    glLoadIdentity();
    gluOrtho2D(-1.0, 1.0, -1.0, 1.0);

}
float move_unit = 10;
int deg = 0;
void keyboardown(int key, int x, int y)
{
    switch (key){
        case GLUT_KEY_RIGHT:
            glRotatef((deg+=move_unit), posX, posY, posZ);;
            glutPostRedisplay();
            break;

        case GLUT_KEY_LEFT:
            glRotatef(deg-=move_unit, posX, posY, posZ);;
        break;

        case GLUT_KEY_UP:
            glRotatef(deg-=move_unit, posX, posY, posZ);;
            break;

        case GLUT_KEY_DOWN:
            glRotatef(deg+=move_unit, posX, posY, posZ);;
        break;

        default:
         break;
    }
    glutPostRedisplay();
}


int main(int argc, char** argv){

    //initialize mode and open a windows in upper left corner of screen
    //Windows tittle is name of program

    glutInit(&argc, argv);
    glutInitDisplayMode(GLUT_SINGLE | GLUT_RGB);
    glutInitWindowSize(500,500);
    glutInitWindowPosition(0, 0);
    glutCreateWindow("Move Test");
    glutDisplayFunc(display);
    init();
    glutSpecialFunc(keyboardown);
    glutMainLoop();

}

我是不是哪里做错了?

之前,我尝试使用 GLUT_KEY_ 移动二维对象并且它有效,但是当我将命令更改为 glrotatef 时,它不起作用。

有什么建议吗?

这里的问题是,您在使用矩阵之前覆盖了它。在 keyboardown 中设置了矩阵,但在 display 开始时调用了 glLoadIdentity(); 函数,该函数重置矩阵并移除旋转。

要解决这个问题,例如,您可以将旋转角度存储在变量中。在keyboardown你increase/decrease的角度。在 display 函数中渲染时,您将矩阵重置为已经完成的,然后通过使用先前存储的角度调用 glRotatef 来添加旋转。