SWBF2-Classic-Msh-Viewer/QtMeshViewer/Source/GeometryEngine.cpp

116 lines
3.1 KiB
C++
Raw Normal View History

#include "..\Header\GeometryEngine.h"
#include "..\Header\MshFile.h"
2016-12-29 13:06:25 +00:00
/////////////////////////////////////////////////////////////////////////
// public constructor/destructor
GeometryEngine::GeometryEngine()
2016-12-29 13:06:25 +00:00
: m_indexBuf(QOpenGLBuffer::IndexBuffer)
{
2016-12-29 12:37:15 +00:00
initializeOpenGLFunctions();
2016-12-29 12:37:15 +00:00
// Generate 2 VBOs
2016-12-29 13:06:25 +00:00
m_arrayBuf.create();
m_indexBuf.create();
2016-12-29 12:37:15 +00:00
// Initializes cube geometry and transfers it to VBOs
initCubeGeometry();
}
GeometryEngine::~GeometryEngine()
{
2016-12-29 13:06:25 +00:00
m_arrayBuf.destroy();
m_indexBuf.destroy();
for (auto it : m_textures)
delete it;
m_textures.clear();
m_textures.squeeze();
}
2016-12-29 13:06:25 +00:00
/////////////////////////////////////////////////////////////////////////
// private functions
void GeometryEngine::initCubeGeometry()
{
2016-12-29 13:06:25 +00:00
try
{
MshFile file("..\\Release\\Msh\\cubeTex.msh");
m_models = file.getModels();
//TODO use models local, apply MVP directly to the vertex, save size and tex index info
//TODO: handle the textures
}
catch (std::invalid_argument e)
{
//TODO: make a cool message box
auto msg = e.what();
}
2016-12-30 12:28:07 +00:00
// Transfer vertex data to VBO 0
m_arrayBuf.bind();
2016-12-30 14:06:26 +00:00
m_arrayBuf.allocate(m_models->first()->segmList.front()->vertices.data(), m_models->first()->segmList.front()->vertices.size() * sizeof(VertexData));
2016-12-30 12:28:07 +00:00
// Transfer index data to VBO 1
m_indexBuf.bind();
m_indexBuf.allocate(m_models->first()->segmList.front()->indices.data(), m_models->first()->segmList.front()->indices.size() * sizeof(GLuint));
2016-12-29 12:37:15 +00:00
2016-12-29 13:06:25 +00:00
// load the texture
2016-12-29 12:37:15 +00:00
initTexture();
}
2016-12-29 12:37:15 +00:00
void GeometryEngine::initTexture()
{
2016-12-29 12:37:15 +00:00
// Load cube.png image
2016-12-29 13:06:25 +00:00
QOpenGLTexture* new_texture = new QOpenGLTexture(QImage(":images/cube.png").mirrored());
2016-12-29 12:37:15 +00:00
// Set nearest filtering mode for texture minification
2016-12-29 13:06:25 +00:00
new_texture->setMinificationFilter(QOpenGLTexture::Nearest);
2016-12-29 12:37:15 +00:00
// Set bilinear filtering mode for texture magnification
2016-12-29 13:06:25 +00:00
new_texture->setMagnificationFilter(QOpenGLTexture::Linear);
2016-12-29 12:37:15 +00:00
// Wrap texture coordinates by repeating
// f.ex. texture coordinate (1.1, 1.2) is same as (0.1, 0.2)
2016-12-29 13:06:25 +00:00
new_texture->setWrapMode(QOpenGLTexture::Repeat);
m_textures.push_back(new_texture);
2016-12-29 12:37:15 +00:00
}
2016-12-29 13:06:25 +00:00
/////////////////////////////////////////////////////////////////////////
// public functions
2016-12-29 12:37:15 +00:00
void GeometryEngine::drawGeometry(QOpenGLShaderProgram *program)
{
// Tell OpenGL which VBOs to use
2016-12-29 13:06:25 +00:00
m_arrayBuf.bind();
m_indexBuf.bind();
m_textures.first()->bind();
2016-12-29 12:37:15 +00:00
// Use texture unit 0 which contains cube.png
program->setUniformValue("texture", 0);
2016-12-29 12:37:15 +00:00
// Offset for position
quintptr offset = 0;
2016-12-29 12:37:15 +00:00
// Tell OpenGL programmable pipeline how to locate vertex position data
int vertexLocation = program->attributeLocation("a_position");
program->enableAttributeArray(vertexLocation);
program->setAttributeBuffer(vertexLocation, GL_FLOAT, offset, 3, sizeof(VertexData));
2016-12-29 12:37:15 +00:00
// Offset for texture coordinate
offset += sizeof(QVector3D);
2016-12-29 12:37:15 +00:00
// Tell OpenGL programmable pipeline how to locate vertex texture coordinate data
int texcoordLocation = program->attributeLocation("a_texcoord");
program->enableAttributeArray(texcoordLocation);
program->setAttributeBuffer(texcoordLocation, GL_FLOAT, offset, 2, sizeof(VertexData));
2016-12-29 12:37:15 +00:00
// Draw cube geometry using indices from VBO 1
glDrawElements(GL_TRIANGLES, 36, GL_UNSIGNED_INT, 0);
}