mod_geo-tp/src/mesh_viewer.cpp

133 lines
3.1 KiB
C++
Raw Normal View History

2021-09-20 20:36:29 +02:00
#include "mesh_viewer.h"
#include <tgmath.h>
#include <QOpenGLShader>
#include <QOpenGLDebugLogger>
#include <QtGlobal>
2021-09-20 20:36:29 +02:00
MeshViewer::MeshViewer(QWidget *parent) : QOpenGLWidget(parent) {
setMouseTracking(true);
setFocus();
}
QSize MeshViewer::sizeHint() const {
return QSize(640, 480);
}
2021-09-20 20:36:29 +02:00
void MeshViewer::initializeGL() {
QOpenGLFunctions *glf = context()->functions();
#ifdef QT_DEBUG
2021-10-03 00:11:29 +02:00
const QSurfaceFormat &format = context()->format();
qDebug("MeshViewer: OpenGL %s%d.%d %s",
format.renderableType() == QSurfaceFormat::OpenGLES ? "ES " : "",
format.majorVersion(), format.minorVersion(),
format.profile() == QSurfaceFormat::CoreProfile ? "core profile"
: (format.profile() == QSurfaceFormat::CompatibilityProfile ? "compatibility profile"
: ""));
QOpenGLDebugLogger *logger = new QOpenGLDebugLogger(this);
if (!logger->initialize()) {
qDebug("OpenGL debug output unavailable");
2021-09-20 20:36:29 +02:00
}
connect(logger, &QOpenGLDebugLogger::messageLogged,
[](const QOpenGLDebugMessage &message) {
2021-10-03 00:11:29 +02:00
qDebug() << "OpenGL:" << message.message();
});
logger->startLogging();
#endif
2021-10-03 00:11:29 +02:00
if (!program.addShaderFromSourceFile(QOpenGLShader::Vertex,
":/shader.vert")) {
qFatal("%s", program.log().toUtf8().constData());
2021-09-20 20:36:29 +02:00
}
2021-10-03 00:11:29 +02:00
if (!program.addShaderFromSourceFile(QOpenGLShader::Fragment,
":/shader.frag")) {
qFatal("%s", program.log().toUtf8().constData());
}
if (!program.link()) {
2021-10-03 00:11:29 +02:00
qFatal("%s", program.log().toUtf8().constData());
}
program.bind();
2021-09-20 20:36:29 +02:00
program.setUniformValue("alpha", (GLfloat) 1);
program.setUniformValue("wf_col", WIREFRAME_COLOR);
2021-09-20 20:36:29 +02:00
glf->glClearColor(1, 1, 1, 0);
2021-09-20 20:36:29 +02:00
glf->glEnable(GL_DEPTH_TEST);
glf->glEnable(GL_MULTISAMPLE);
2021-09-20 20:36:29 +02:00
2021-10-03 00:11:29 +02:00
qDebug("MeshViewer: initialization complete");
2021-09-20 20:36:29 +02:00
emit initialized();
}
void MeshViewer::resizeGL(int w, int h) {
QMatrix4x4 projection;
projection.perspective(FOV, (float) w/h, .01, 100);
program.setUniformValue("proj", projection);
2021-09-20 20:36:29 +02:00
}
void MeshViewer::paintGL() {
2021-10-22 14:28:54 +02:00
// glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
2021-09-20 20:36:29 +02:00
QMatrix4x4 trans;
trans.translate(0, 0, -cam_dist);
QMatrix4x4 view = trans * rot;
2021-10-03 00:11:29 +02:00
program.bind();
program.setUniformValue("view", view);
for (MeshView &m : meshes) {
m.paint(program);
2021-09-20 20:36:29 +02:00
}
}
2021-10-03 11:43:55 +02:00
void MeshViewer::addMesh(const MeshProcessor &mesh_processor) {
Q_ASSERT(isValid());
2021-09-20 20:36:29 +02:00
makeCurrent();
2021-10-03 11:43:55 +02:00
meshes.emplace_back(mesh_processor, program);
2021-09-20 20:36:29 +02:00
doneCurrent();
update();
}
2021-10-03 11:43:55 +02:00
void MeshViewer::removeMesh(const MeshProcessor &mesh_processor) {
2021-10-02 20:47:02 +02:00
makeCurrent();
meshes.remove_if([&](const MeshView &mv) {
2021-10-03 11:43:55 +02:00
return &mv.mesh_processor == &mesh_processor;
2021-10-02 20:47:02 +02:00
});
doneCurrent();
update();
2021-09-20 20:36:29 +02:00
}
void MeshViewer::mousePressEvent(QMouseEvent *e) {
if (e->button() == Qt::LeftButton) {
mouse_pos = e->pos();
}
}
void MeshViewer::mouseReleaseEvent(QMouseEvent *e) {
(void) e;
rot_start = rot;
}
void MeshViewer::mouseMoveEvent(QMouseEvent *e) {
if (e->buttons() & Qt::LeftButton) {
QPoint delta = e->pos() - mouse_pos;
rot = rot_start;
rot.rotate(delta.x() / 5., 0, 1, 0);
rot.rotate(delta.y() / 5., QVector3D(1, 0, 0) * rot);
update();
}
}
void MeshViewer::wheelEvent(QWheelEvent *e) {
cam_dist -= e->angleDelta().y() / 1000. * cam_dist;
update();
}