2016-12-24 15:03:37 +00:00
|
|
|
#include "..\Header\GeometryEngine.h"
|
2016-12-30 11:36:05 +00:00
|
|
|
#include "..\Header\MshFile.h"
|
2017-01-04 13:35:27 +00:00
|
|
|
#include "..\Header\OglViewerWidget.h"
|
|
|
|
#include "..\Header\MainWindow.h"
|
2017-01-02 16:03:23 +00:00
|
|
|
#include <cmath>
|
2017-01-07 14:59:16 +00:00
|
|
|
#include <QRegExp>
|
2016-12-24 15:03:37 +00:00
|
|
|
|
2016-12-29 13:06:25 +00:00
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// public constructor/destructor
|
|
|
|
|
2017-01-04 13:35:27 +00:00
|
|
|
GeometryEngine::GeometryEngine(QObject *parent)
|
|
|
|
: QObject(parent)
|
|
|
|
, m_indexBuf(QOpenGLBuffer::IndexBuffer)
|
2016-12-24 15:03:37 +00:00
|
|
|
{
|
2016-12-29 12:37:15 +00:00
|
|
|
initializeOpenGLFunctions();
|
2017-01-20 15:26:58 +00:00
|
|
|
|
|
|
|
m_defaultMaterial = FileInterface::getDefaultMaterial();
|
2016-12-24 15:03:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GeometryEngine::~GeometryEngine()
|
|
|
|
{
|
add exe icon,
signal-slot for openFile,
resetView on openFile,
cleanup when open a new file,
triangulate quad poly now correctly, more not working, bug from previous version,
next:
fix 5,6,.. triangulation,
triClothMan, IC Helmet, still buggy,
2017-01-02 11:21:32 +00:00
|
|
|
clearData();
|
2017-01-23 11:17:26 +00:00
|
|
|
delete m_defaultMaterial->texture0;
|
2017-01-20 15:26:58 +00:00
|
|
|
delete m_defaultMaterial;
|
2016-12-24 15:03:37 +00:00
|
|
|
}
|
|
|
|
|
2016-12-29 13:06:25 +00:00
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// private functions
|
|
|
|
|
2017-01-07 14:59:16 +00:00
|
|
|
void GeometryEngine::clearData()
|
|
|
|
{
|
|
|
|
if (m_arrayBuf.isCreated())
|
|
|
|
m_arrayBuf.destroy();
|
|
|
|
if (m_indexBuf.isCreated())
|
|
|
|
m_indexBuf.destroy();
|
|
|
|
|
2017-01-15 11:26:15 +00:00
|
|
|
if (m_materials != Q_NULLPTR)
|
|
|
|
{
|
|
|
|
for (auto it : *m_materials)
|
2017-01-23 11:17:26 +00:00
|
|
|
delete it.texture0;
|
2017-01-15 11:26:15 +00:00
|
|
|
m_materials->clear();
|
|
|
|
delete m_materials;
|
|
|
|
}
|
2017-01-07 14:59:16 +00:00
|
|
|
m_drawList.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// public slots
|
|
|
|
|
|
|
|
void GeometryEngine::loadFile(QString filePath)
|
2016-12-24 15:03:37 +00:00
|
|
|
{
|
add exe icon,
signal-slot for openFile,
resetView on openFile,
cleanup when open a new file,
triangulate quad poly now correctly, more not working, bug from previous version,
next:
fix 5,6,.. triangulation,
triClothMan, IC Helmet, still buggy,
2017-01-02 11:21:32 +00:00
|
|
|
// cleanup old stuff and recreate buffers
|
|
|
|
clearData();
|
|
|
|
m_arrayBuf.create();
|
|
|
|
m_indexBuf.create();
|
|
|
|
|
|
|
|
//reset view
|
|
|
|
emit requestResetView();
|
2017-01-04 13:35:27 +00:00
|
|
|
emit sendMessage("loading file..", 0);
|
add exe icon,
signal-slot for openFile,
resetView on openFile,
cleanup when open a new file,
triangulate quad poly now correctly, more not working, bug from previous version,
next:
fix 5,6,.. triangulation,
triClothMan, IC Helmet, still buggy,
2017-01-02 11:21:32 +00:00
|
|
|
|
2016-12-30 11:36:05 +00:00
|
|
|
try
|
|
|
|
{
|
2016-12-31 13:40:05 +00:00
|
|
|
QVector<Model*>* models;
|
|
|
|
QVector<VertexData> vertexData;
|
|
|
|
QVector<GLuint> indexData;
|
|
|
|
|
|
|
|
// open file and get the information
|
2017-01-04 13:35:27 +00:00
|
|
|
MshFile file(filePath, this);
|
|
|
|
|
2016-12-31 13:40:05 +00:00
|
|
|
models = file.getModels();
|
2017-01-15 11:26:15 +00:00
|
|
|
m_materials = file.getMaterials();
|
2017-01-02 16:03:23 +00:00
|
|
|
m_boundings = file.getBoundingBox();
|
2016-12-31 12:04:03 +00:00
|
|
|
|
|
|
|
// collect data
|
2016-12-31 15:18:35 +00:00
|
|
|
unsigned int indexOffset(0);
|
|
|
|
unsigned int vertexOffset(0);
|
2016-12-31 12:04:03 +00:00
|
|
|
for (auto& modelIterator : *models)
|
|
|
|
{
|
|
|
|
for (auto& segmentIterator : modelIterator->segmList)
|
|
|
|
{
|
|
|
|
// get draw information
|
|
|
|
DrawInformation new_info;
|
2016-12-31 15:18:35 +00:00
|
|
|
new_info.offset = indexOffset;
|
2016-12-31 12:04:03 +00:00
|
|
|
new_info.size = segmentIterator->indices.size();
|
|
|
|
new_info.textureIndex = segmentIterator->textureIndex;
|
|
|
|
new_info.modelMatrix = modelIterator->m4x4Translation;
|
2017-01-02 15:43:38 +00:00
|
|
|
new_info.modelMatrix.rotate(modelIterator->quadRotation);
|
2016-12-31 12:04:03 +00:00
|
|
|
|
2017-01-03 13:18:46 +00:00
|
|
|
// add offset to indices, no need to do it for the first one (maybe it's very big)
|
2017-01-07 14:59:16 +00:00
|
|
|
if (vertexOffset != 0)
|
2017-01-03 13:18:46 +00:00
|
|
|
for (auto& it : segmentIterator->indices)
|
|
|
|
it += vertexOffset;
|
2016-12-31 12:04:03 +00:00
|
|
|
|
|
|
|
// save data
|
|
|
|
vertexData += segmentIterator->vertices;
|
|
|
|
indexData += segmentIterator->indices;
|
2017-01-15 14:51:12 +00:00
|
|
|
|
|
|
|
if (segmentIterator->textureIndex < m_materials->size() && m_materials->at(segmentIterator->textureIndex).transparent)
|
|
|
|
m_drawList.push_back(new_info);
|
|
|
|
else
|
|
|
|
m_drawList.push_front(new_info);
|
2016-12-31 12:04:03 +00:00
|
|
|
|
|
|
|
// update offset
|
2016-12-31 15:18:35 +00:00
|
|
|
indexOffset += new_info.size;
|
|
|
|
vertexOffset += segmentIterator->vertices.size();
|
2016-12-31 12:04:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Transfer vertex data to VBO 0
|
|
|
|
m_arrayBuf.bind();
|
|
|
|
m_arrayBuf.allocate(vertexData.data(), vertexData.size() * sizeof(VertexData));
|
|
|
|
|
|
|
|
// Transfer index data to VBO 1
|
|
|
|
m_indexBuf.bind();
|
|
|
|
m_indexBuf.allocate(indexData.data(), indexData.size() * sizeof(GLuint));
|
|
|
|
|
2017-01-04 13:35:27 +00:00
|
|
|
emit requestUpdate();
|
|
|
|
emit sendMessage("done..", 0);
|
2017-01-15 11:26:15 +00:00
|
|
|
emit sendFileInfo(filePath.right(filePath.size() - filePath.lastIndexOf(QRegExp("/|\\\\")) - 1), m_materials, vertexData.size(), indexData.size() / 3);
|
2016-12-30 11:36:05 +00:00
|
|
|
}
|
|
|
|
catch (std::invalid_argument e)
|
|
|
|
{
|
2017-01-05 15:18:01 +00:00
|
|
|
clearData();
|
2017-01-04 13:35:27 +00:00
|
|
|
emit sendMessage(QString(e.what()), 2);
|
2016-12-30 11:36:05 +00:00
|
|
|
}
|
2016-12-24 15:03:37 +00:00
|
|
|
}
|
|
|
|
|
2017-01-16 13:24:30 +00:00
|
|
|
void GeometryEngine::drawGeometry(QOpenGLShaderProgram *program, bool wireframe)
|
2016-12-29 12:37:15 +00:00
|
|
|
{
|
add exe icon,
signal-slot for openFile,
resetView on openFile,
cleanup when open a new file,
triangulate quad poly now correctly, more not working, bug from previous version,
next:
fix 5,6,.. triangulation,
triClothMan, IC Helmet, still buggy,
2017-01-02 11:21:32 +00:00
|
|
|
if (!m_arrayBuf.isCreated() || !m_indexBuf.isCreated())
|
|
|
|
return;
|
|
|
|
|
2016-12-31 11:31:38 +00:00
|
|
|
// Setup
|
2016-12-29 12:37:15 +00:00
|
|
|
// Tell OpenGL which VBOs to use
|
2016-12-29 13:06:25 +00:00
|
|
|
m_arrayBuf.bind();
|
|
|
|
m_indexBuf.bind();
|
2016-12-29 12:37:15 +00:00
|
|
|
|
2017-01-02 16:03:23 +00:00
|
|
|
// Allways normalize by this
|
|
|
|
QMatrix4x4 normMatrix;
|
|
|
|
float maxExtent = std::max(std::max(m_boundings.extents[0], m_boundings.extents[1]), m_boundings.extents[2]);
|
|
|
|
normMatrix.scale(1 / maxExtent);
|
|
|
|
normMatrix.translate(-m_boundings.center[0], -m_boundings.center[1], -m_boundings.center[2]);
|
|
|
|
program->setUniformValue("norm_matrix", normMatrix);
|
|
|
|
|
2016-12-31 11:31:38 +00:00
|
|
|
// Allways use texture unit 0
|
2016-12-29 12:37:15 +00:00
|
|
|
program->setUniformValue("texture", 0);
|
2016-12-24 15:03:37 +00:00
|
|
|
|
2016-12-29 12:37:15 +00:00
|
|
|
// Offset for position
|
|
|
|
quintptr offset = 0;
|
2016-12-24 15:03:37 +00:00
|
|
|
|
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-24 15:03:37 +00:00
|
|
|
|
2016-12-29 12:37:15 +00:00
|
|
|
// Offset for texture coordinate
|
|
|
|
offset += sizeof(QVector3D);
|
2016-12-24 15:03:37 +00:00
|
|
|
|
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-24 15:03:37 +00:00
|
|
|
|
2017-01-08 13:41:53 +00:00
|
|
|
//Offset for normal
|
|
|
|
offset += sizeof(QVector2D);
|
|
|
|
|
|
|
|
// Tell OpenGL programmable pipeline how to locate vertex normal data
|
|
|
|
int normLocation = program->attributeLocation("a_normal");
|
|
|
|
program->enableAttributeArray(normLocation);
|
|
|
|
program->setAttributeBuffer(normLocation, GL_FLOAT, offset, 3, sizeof(VertexData));
|
|
|
|
|
2016-12-31 11:31:38 +00:00
|
|
|
// Paint
|
|
|
|
|
|
|
|
for (auto& it : m_drawList)
|
|
|
|
{
|
2017-01-15 14:51:12 +00:00
|
|
|
bool tmp_transparent(false);
|
2017-01-22 13:37:06 +00:00
|
|
|
bool tmp_specular(false);
|
2017-01-19 16:57:50 +00:00
|
|
|
float shininess;
|
|
|
|
QVector3D specularColor;
|
2017-01-15 14:51:12 +00:00
|
|
|
|
2016-12-31 11:31:38 +00:00
|
|
|
// bind the correct texture
|
2017-01-23 11:17:26 +00:00
|
|
|
if (it.textureIndex < m_materials->size() && m_materials->at(it.textureIndex).texture0 != Q_NULLPTR)
|
2017-01-15 14:51:12 +00:00
|
|
|
{
|
2017-01-23 11:17:26 +00:00
|
|
|
m_materials->at(it.textureIndex).texture0->bind();
|
2017-01-15 14:51:12 +00:00
|
|
|
tmp_transparent = m_materials->at(it.textureIndex).transparent;
|
2017-01-22 13:37:06 +00:00
|
|
|
tmp_specular = m_materials->at(it.textureIndex).flags[7];
|
2017-01-19 16:57:50 +00:00
|
|
|
shininess = m_materials->at(it.textureIndex).shininess;
|
2017-01-20 15:26:58 +00:00
|
|
|
specularColor = m_materials->at(it.textureIndex).specularColor.toVector3D();
|
2017-01-15 14:51:12 +00:00
|
|
|
}
|
2016-12-31 12:04:03 +00:00
|
|
|
else
|
2017-01-15 14:51:12 +00:00
|
|
|
{
|
2017-01-23 11:17:26 +00:00
|
|
|
m_defaultMaterial->texture0->bind();
|
2017-01-20 15:26:58 +00:00
|
|
|
tmp_transparent = m_defaultMaterial->transparent;
|
2017-01-15 14:51:12 +00:00
|
|
|
}
|
2016-12-31 11:31:38 +00:00
|
|
|
// Set model matrix
|
|
|
|
program->setUniformValue("m_matrix", it.modelMatrix);
|
|
|
|
|
2017-01-17 19:18:04 +00:00
|
|
|
// Set normal matrix
|
|
|
|
program->setUniformValue("n_matrix", (normMatrix * it.modelMatrix).normalMatrix());
|
|
|
|
|
2017-01-22 13:37:06 +00:00
|
|
|
// set some more values
|
2017-01-15 14:51:12 +00:00
|
|
|
program->setUniformValue("b_transparent", tmp_transparent);
|
2017-01-22 13:37:06 +00:00
|
|
|
program->setUniformValue("b_specular", tmp_specular);
|
2017-01-15 14:51:12 +00:00
|
|
|
|
2017-01-19 16:57:50 +00:00
|
|
|
// set some material attributes
|
|
|
|
program->setUniformValue("materialShininess", shininess);
|
|
|
|
program->setUniformValue("materialSpecularColor", specularColor);
|
|
|
|
|
2016-12-31 11:31:38 +00:00
|
|
|
// Draw cube geometry using indices from VBO 1
|
2017-01-16 15:41:52 +00:00
|
|
|
if(wireframe)
|
|
|
|
glPolygonMode(GL_FRONT_AND_BACK, GL_LINE);
|
|
|
|
|
|
|
|
glDrawElements(GL_TRIANGLES, it.size, GL_UNSIGNED_INT, (void*)(it.offset * sizeof(GLuint)));
|
|
|
|
|
|
|
|
glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);
|
2016-12-31 11:31:38 +00:00
|
|
|
}
|
2016-12-24 15:03:37 +00:00
|
|
|
}
|
2017-01-04 13:35:27 +00:00
|
|
|
|