我正在尝试用 C++ 制作康威的生命游戏,并且正在使用 OpenGL(但我对 OpenGL 很陌生),因为它支持负坐标,因此支持无限的世界。
我有一个名为 GameOfLife 的类,它处理整个世界,并将活细胞作为向量中的 [x, y] 坐标。因此,我将在整个活动单元格坐标中使用 for 循环,并为每个坐标渲染一个像素。
但是,无论我做什么,屏幕上都不会出现任何我尝试过的东西。下面是带有空glBegin
和glEnd
函数的代码。我应该在它们之间放置什么才能渲染。
我试过:
将每个坐标除以 400 得到float
1 个像素。
在第三边和第四边的 x 和 y 上加 1/400。
#include "gol.h"
#include <GL/glew.h>
#include <GLFW/glfw3.h>
int main()
{
std::vector<std::vector<int>> dupl;
std::ifstream infile { "test.rle" };
std::string file_contents { std::istreambuf_iterator<char>(infile), std::istreambuf_iterator<char>() };
parse_rle(file_contents, 0, dupl);
GameOfLife gol;
gol.place_cells(dupl);
//gol.update();
GLFWwindow* window;
if (!glfwInit())
return 1;
int width = 400;
window = glfwCreateWindow(width, width, "Window", NULL, NULL);
if (!window) {
glfwTerminate();
return 1;
}
glfwMakeContextCurrent(window);
if(glewInit()!=GLEW_OK)
std::cout<<"Error"<<std::endl;
glEnable(GL_DEPTH_TEST);
while(!glfwWindowShouldClose(window)) {
glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT);
for(std::vector<int> i : gol.alive)
{
glBegin(GL_QUADS);
glEnd();
}
glfwSwapBuffers(window);
glfwPollEvents();
}
glfwTerminate();
}