mpri-graphics-project/render/GlutRender.cpp

97 lines
2.3 KiB
C++
Raw Normal View History

#include "GlutRender.hpp"
#include <GL/gl.h>
#include <GL/glut.h>
#include <cstring>
GlutRender& GlutRender::get_instance() {
static GlutRender instance;
return instance;
}
GlutRender::GlutRender() { }
void GlutRender::init(int* argc, char** argv,
int wid, int hei, const char* win_name)
{
glutInit(argc, argv);
2018-02-06 19:10:08 +01:00
glutInitDisplayMode(GLUT_DOUBLE);
glutInitWindowSize(wid, hei);
glutCreateWindow(win_name);
glutDisplayFunc(display_handle);
glutReshapeFunc(reshape_handle);
2018-02-06 19:10:08 +01:00
glClearColor(0.0f, 0.0f, 0.0f, 1.0f); // Background color
glClearDepth(1.0f); // Set background depth to farthest
glEnable(GL_DEPTH_TEST);
glDepthFunc(GL_LEQUAL);
glShadeModel(GL_SMOOTH); // Enable smooth shading
glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST);
}
void GlutRender::cleanup() {
}
2018-02-06 21:05:45 +01:00
void GlutRender::add_mesh(Mesh* mesh) {
meshes.insert(mesh);
}
2018-02-06 21:05:45 +01:00
void GlutRender::remove_mesh(Mesh* mesh) {
meshes.erase(mesh);
}
void GlutRender::run() {
2018-02-06 19:10:08 +01:00
glutMainLoop();
}
void GlutRender::reshape(int wid, int hei) {
2018-02-06 19:10:08 +01:00
if (hei == 0)
hei = 1;
GLfloat aspect = (GLfloat)wid / (GLfloat)hei;
glViewport(0, 0, wid, hei);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
// Enable perspective projection with fovy, aspect, zNear and zFar
gluPerspective(45.0f, aspect, 0.1f, 100.0f);
}
void GlutRender::display() {
2018-02-06 19:10:08 +01:00
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glMatrixMode(GL_MODELVIEW);
2018-02-06 21:05:45 +01:00
// Camera position and orientation
glLoadIdentity();
glTranslatef(0., 0., -6.);
for(Mesh* mesh: meshes) {
const Point& mesh_center = mesh->get_center();
2018-02-06 19:10:08 +01:00
const std::vector<Point>& points = mesh->get_vertices();
2018-02-06 19:10:08 +01:00
glBegin(GL_TRIANGLES);
for(const Face& face: mesh->get_faces()) {
2018-02-06 21:05:45 +01:00
Point p0 = face.pt(0, points) + mesh_center,
p1 = face.pt(1, points) + mesh_center,
p2 = face.pt(2, points) + mesh_center;
2018-02-06 19:10:08 +01:00
glColor3f(1.0f, 1.0f, 0.0f);
glVertex3f(p0[0], p0[1], p0[2]);
glVertex3f(p1[0], p1[1], p1[2]);
glVertex3f(p2[0], p2[1], p2[2]);
}
2018-02-06 19:10:08 +01:00
glEnd();
}
2018-02-06 19:10:08 +01:00
glutSwapBuffers();
}
void GlutRender::reshape_handle(int wid, int hei) {
get_instance().reshape(wid, hei);
}
void GlutRender::display_handle() {
get_instance().display();
}