This repository was archived by the owner on Dec 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathViewerWindow.h
114 lines (92 loc) · 2.9 KB
/
ViewerWindow.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*
* This file is part of Basic Model Viewer (visualization package)
*
* Copyright (c) 2015, Lakshman Anumolu
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1 as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
* Description
* Control and act on the signals received from window.
*/
#ifndef __VIEWERWINDOW_H__
#define __VIEWERWINDOW_H__
#include <QGLWidget>
#include <QDialog>
#include <QVector>
#include <QVector2D>
#include <QMatrix4x4>
#include <QQuaternion>
#include <QBasicTimer>
#include <QOpenGLFunctions>
#include <QOpenGLShaderProgram>
#include <AuxiliaryMethods/HelperFunctions.h>
#include <ViewerCore/ViewerCamera.h>
#include <ViewerCore/ShadersList.h>
#include <Objects/RenderObj.h>
#include <Objects/DrawingRoom.h>
#include <RenderScene.h>
class RenderScene;
class ViewerWindow : public QGLWidget, public QOpenGLFunctions
{
Q_OBJECT
public:
explicit ViewerWindow(const QGLFormat &format, QWidget *parent = 0);
~ViewerWindow();
int xRotation() const { return xRot; }
int yRotation() const { return yRot; }
int zRotation() const { return zRot; }
public slots:
void setXRotation(int angle);
void setYRotation(int angle);
void setZRotation(int angle);
protected:
void timerEvent(QTimerEvent *e);
void initializeGL();
void resizeGL(int w, int h);
void paintGL();
void closeEvent(QCloseEvent *e);
/* Mouse events */
void mousePressEvent(QMouseEvent *e);
void mouseReleaseEvent(QMouseEvent *e);
void mouseMoveEvent(QMouseEvent *e);
void wheelEvent(QWheelEvent *e);
/* Key events */
void keyPressEvent(QKeyEvent *e);
void initializeShaders();
void initializeTextures(QString img_name, QString img_extension);
private:
QBasicTimer timer;
ShadersList shaders_list;
GLuint texture_t;
QMatrix4x4 projection;
QVector2D mousePressPosition;
QVector3D rotationAxis;
qreal angularSpeed;
QQuaternion rotation;
int xRot;
int yRot;
int zRot;
QPoint lastPos;
/* Camera details */
ViewerCamera camera;
CameraType cam_type;
QVector3D cam_position_initial, camera_position;
QVector3D cam_lookat_initial, camera_lookat;
QVector3D cam_up_initial, camera_up;
qreal aspect_ratio;
float fov_init, fov, fov_min, fov_max;
float near_clip_plane, far_clip_plane;
/* Object for rendering the scene */
RenderScene render_scene;
};
#endif // END OF __VIEWERWINDOW_H__