我正在使用 OpenGL/GLUT 开发游戏,我需要打开一个新窗口来显示游戏获胜时的分数。
为了做到这一点,我将glutCreateWindow()
在调用后调用并注册回调mainEventLoop()
。
这有问题吗?我应该怎么做?
我正在使用 OpenGL/GLUT 开发游戏,我需要打开一个新窗口来显示游戏获胜时的分数。
为了做到这一点,我将glutCreateWindow()
在调用后调用并注册回调mainEventLoop()
。
这有问题吗?我应该怎么做?
这有问题吗?
是的。
为什么不简单地将结果绘制在与游戏相同的窗口中?
你为什么首先使用 GLUT?这不是一个很好的游戏框架。最好使用 GLFW 或 SDL。
我应该怎么做?
通过向您的引擎添加一个小型 GUI 系统,您可以使用统计数据(如 HUD)和分数屏幕覆盖屏幕。
您将需要两个显示回调函数,display( )
并display2( )
为每个窗口加上window = glutCreateWindow("Window 1");
和window2 = glutCreateWindow("Window 2");
。
代码示例:
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <GL/glut.h>
int window2 = 0, window = 0, width = 400, height = 400;
void display(void)
{
glClearColor(0.0, 1.0, 1.0, 1.0);
glClear(GL_COLOR_BUFFER_BIT);
glLoadIdentity();
printf("display1\n");
glFlush();
}
void display2(void)
{
glClearColor(1.0, 0.0, 0.0, 1.0);
glClear(GL_COLOR_BUFFER_BIT);
glLoadIdentity();
printf("display2\n");
glFlush();
}
void reshape (int w, int h)
{
glViewport(0,0,(GLsizei)w,(GLsizei)h);
glutPostRedisplay();
}
int main(int argc, char **argv)
{
// Initialization stuff
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_RGB);
glutInitWindowSize(width, height);
// Create window main
window = glutCreateWindow("Window 1");
glutDisplayFunc(display);
glutReshapeFunc(reshape);
glutInitWindowPosition(100,100);
// Create second window
window2 = glutCreateWindow("Window 2");
glutDisplayFunc(display2);
glutReshapeFunc(reshape);
// Enter Glut Main Loop and wait for events
glutMainLoop();
return 0;
}