Sun, 02 Feb 2020 00:49:32 +0200
made configurationoptions.txt visible in Qt Creator
24 | 1 | /* |
2 | * LDForge: LDraw parts authoring CAD | |
3 | * Copyright (C) 2013 - 2020 Teemu Piippo | |
4 | * | |
5 | * This program is free software: you can redistribute it and/or modify | |
6 | * it under the terms of the GNU General Public License as published by | |
7 | * the Free Software Foundation, either version 3 of the License, or | |
8 | * (at your option) any later version. | |
9 | * | |
10 | * This program is distributed in the hope that it will be useful, | |
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | * GNU General Public License for more details. | |
14 | * | |
15 | * You should have received a copy of the GNU General Public License | |
16 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
17 | */ | |
18 | ||
26 | 19 | #include <GL/glut.h> |
28 | 20 | #include <glm/ext/matrix_transform.hpp> |
21 | #include <glm/ext/matrix_clip_space.hpp> | |
17 | 22 | #include <QMouseEvent> |
26 | 23 | #include <QMessageBox> |
17 | 24 | #include "partrenderer.h" |
25 | ||
35
98906a94732f
renamed the linetypes namespace to ldraw namespace and added more structures to it
Teemu Piippo <teemu@hecknology.net>
parents:
34
diff
changeset
|
26 | PartRenderer::PartRenderer( |
98906a94732f
renamed the linetypes namespace to ldraw namespace and added more structures to it
Teemu Piippo <teemu@hecknology.net>
parents:
34
diff
changeset
|
27 | Model* model, |
98906a94732f
renamed the linetypes namespace to ldraw namespace and added more structures to it
Teemu Piippo <teemu@hecknology.net>
parents:
34
diff
changeset
|
28 | DocumentManager* documents, |
98906a94732f
renamed the linetypes namespace to ldraw namespace and added more structures to it
Teemu Piippo <teemu@hecknology.net>
parents:
34
diff
changeset
|
29 | const ldraw::ColorTable& colorTable, |
98906a94732f
renamed the linetypes namespace to ldraw namespace and added more structures to it
Teemu Piippo <teemu@hecknology.net>
parents:
34
diff
changeset
|
30 | QWidget* parent) : |
21 | 31 | QOpenGLWidget{parent}, |
32 | model{model}, | |
33 | documents{documents}, | |
26 | 34 | colorTable{colorTable}, |
35 | compiler{new gl::Compiler{this->colorTable, this}} | |
17 | 36 | { |
37 | this->setMouseTracking(true); | |
38 | } | |
39 | ||
26 | 40 | PartRenderer::~PartRenderer() |
41 | { | |
42 | } | |
43 | ||
17 | 44 | void PartRenderer::initializeGL() |
45 | { | |
46 | this->initializeOpenGLFunctions(); | |
22
6da867fa5429
commit work on GL rendering
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
47 | if (glGetError() != GL_NO_ERROR) |
17 | 48 | { |
49 | abort(); | |
50 | } | |
27
c57fb7a5ffa3
commit work done on plugging vao to the gl renderer, renders nonsense for now
Teemu Piippo <teemu@hecknology.net>
parents:
26
diff
changeset
|
51 | this->compiler->initialize(); |
39
caac957e9834
Main color is now configurable
Teemu Piippo <teemu@hecknology.net>
parents:
37
diff
changeset
|
52 | this->compiler->build(this->model, this->documents, this->renderPreferences); |
17 | 53 | this->initialized = true; |
32 | 54 | this->modelQuaternion = glm::angleAxis(glm::radians(30.0f), glm::vec3{-1, 0, 0}); |
55 | this->modelQuaternion *= glm::angleAxis(glm::radians(225.0f), glm::vec3{-0, 1, 0}); | |
31
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
56 | this->updateViewMatrix(); |
22
6da867fa5429
commit work on GL rendering
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
57 | glLineWidth(2.0); |
30 | 58 | this->update(); |
17 | 59 | } |
60 | ||
61 | void PartRenderer::resizeGL(int width, int height) | |
62 | { | |
28 | 63 | glViewport(0, 0, width, height); |
64 | this->projectionMatrix = glm::perspective( | |
31
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
65 | glm::radians(45.0f), |
28 | 66 | static_cast<float>(width) / static_cast<float>(height), |
67 | 0.1f, | |
31
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
68 | 10000.f); |
34
1de2b8d64e9f
added some sort of lighting
Teemu Piippo <teemu@hecknology.net>
parents:
32
diff
changeset
|
69 | this->compiler->setUniformMatrix("projectionMatrix", this->projectionMatrix); |
17 | 70 | } |
71 | ||
26 | 72 | static GLenum getGlTypeForArrayClass(const gl::ArrayClass vboClass) |
21 | 73 | { |
74 | switch (vboClass) | |
75 | { | |
26 | 76 | case gl::ArrayClass::Lines: |
77 | case gl::ArrayClass::ConditionalLines: | |
21 | 78 | return GL_LINES; |
26 | 79 | case gl::ArrayClass::Triangles: |
21 | 80 | return GL_TRIANGLES; |
26 | 81 | case gl::ArrayClass::Quads: |
21 | 82 | return GL_QUADS; |
83 | } | |
84 | throw std::runtime_error{"Bad vbo class passed to getGlTypeForVboClass"}; | |
85 | } | |
86 | ||
17 | 87 | void PartRenderer::paintGL() |
88 | { | |
26 | 89 | /* |
22
6da867fa5429
commit work on GL rendering
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
90 | glEnable (GL_BLEND); |
6da867fa5429
commit work on GL rendering
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
91 | glBlendFunc (GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); |
26 | 92 | */ |
22
6da867fa5429
commit work on GL rendering
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
93 | glEnable (GL_DEPTH_TEST); |
6da867fa5429
commit work on GL rendering
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
94 | glShadeModel (GL_SMOOTH); |
6da867fa5429
commit work on GL rendering
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
95 | glEnable (GL_MULTISAMPLE); |
6da867fa5429
commit work on GL rendering
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
96 | glEnable (GL_LINE_SMOOTH); |
6da867fa5429
commit work on GL rendering
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
97 | glHint (GL_LINE_SMOOTH_HINT, GL_NICEST); |
6da867fa5429
commit work on GL rendering
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
98 | this->renderScene(); |
6da867fa5429
commit work on GL rendering
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
99 | } |
6da867fa5429
commit work on GL rendering
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
100 | |
6da867fa5429
commit work on GL rendering
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
101 | void PartRenderer::renderScene() |
6da867fa5429
commit work on GL rendering
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
102 | { |
40
30cb5e836736
added configurable background color
Teemu Piippo <teemu@hecknology.net>
parents:
39
diff
changeset
|
103 | const QColor& backgroundColor = this->renderPreferences.backgroundColor; |
30cb5e836736
added configurable background color
Teemu Piippo <teemu@hecknology.net>
parents:
39
diff
changeset
|
104 | glClearColor( |
30cb5e836736
added configurable background color
Teemu Piippo <teemu@hecknology.net>
parents:
39
diff
changeset
|
105 | static_cast<float>(backgroundColor.redF()), |
30cb5e836736
added configurable background color
Teemu Piippo <teemu@hecknology.net>
parents:
39
diff
changeset
|
106 | static_cast<float>(backgroundColor.greenF()), |
30cb5e836736
added configurable background color
Teemu Piippo <teemu@hecknology.net>
parents:
39
diff
changeset
|
107 | static_cast<float>(backgroundColor.blueF()), |
30cb5e836736
added configurable background color
Teemu Piippo <teemu@hecknology.net>
parents:
39
diff
changeset
|
108 | 1.0f); |
26 | 109 | glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); |
110 | glEnable(GL_DEPTH_TEST); | |
111 | glEnable(GL_POLYGON_OFFSET_FILL); | |
112 | glPolygonOffset(1.0f, 1.0f); | |
39
caac957e9834
Main color is now configurable
Teemu Piippo <teemu@hecknology.net>
parents:
37
diff
changeset
|
113 | switch (this->renderPreferences.style) |
18 | 114 | { |
115 | case gl::RenderStyle::Normal: | |
37 | 116 | this->setFragmentStyle(gl::FragmentStyle::Normal); |
117 | this->renderAllArrays(); | |
118 | break; | |
18 | 119 | case gl::RenderStyle::BfcRedGreen: |
37 | 120 | glEnable(GL_CULL_FACE); |
121 | glCullFace(GL_BACK); | |
122 | this->setFragmentStyle(gl::FragmentStyle::BfcGreen); | |
123 | renderVao(gl::ArrayClass::Triangles); | |
124 | renderVao(gl::ArrayClass::Quads); | |
125 | glCullFace(GL_FRONT); | |
126 | this->setFragmentStyle(gl::FragmentStyle::BfcRed); | |
127 | renderVao(gl::ArrayClass::Triangles); | |
128 | renderVao(gl::ArrayClass::Quads); | |
129 | glDisable(GL_CULL_FACE); | |
130 | this->setFragmentStyle(gl::FragmentStyle::Normal); | |
131 | renderVao(gl::ArrayClass::Lines); | |
18 | 132 | case gl::RenderStyle::RandomColors: |
37 | 133 | this->setFragmentStyle(gl::FragmentStyle::RandomColors); |
134 | this->renderAllArrays(); | |
18 | 135 | break; |
136 | case gl::RenderStyle::Wireframe: | |
137 | glPolygonMode(GL_FRONT_AND_BACK, GL_LINE); | |
37 | 138 | this->setFragmentStyle(gl::FragmentStyle::Normal); |
139 | this->renderAllArrays(); | |
18 | 140 | break; |
141 | } | |
37 | 142 | glDisable(GL_POLYGON_OFFSET_FILL); |
143 | } | |
144 | ||
145 | void PartRenderer::renderAllArrays() | |
146 | { | |
26 | 147 | // Lines need to be rendered last so that anti-aliasing does not interfere with polygon rendering. |
148 | renderVao(gl::ArrayClass::Triangles); | |
149 | renderVao(gl::ArrayClass::Quads); | |
150 | renderVao(gl::ArrayClass::Lines); | |
151 | } | |
152 | ||
37 | 153 | |
31
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
154 | void PartRenderer::updateViewMatrix() |
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
155 | { |
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
156 | // I'm not quite sure why using the exponent function on the zoom factor causes linear zoom behavior |
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
157 | const double z = 2 * std::exp(this->zoom) * (1 + this->compiler->modelDistance()); |
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
158 | this->viewMatrix = glm::lookAt(glm::vec3{0, 0, z}, {0, 0, 0}, {0, -1, 0}); |
34
1de2b8d64e9f
added some sort of lighting
Teemu Piippo <teemu@hecknology.net>
parents:
32
diff
changeset
|
159 | this->compiler->setUniformMatrix("viewMatrix", this->viewMatrix); |
31
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
160 | } |
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
161 | |
27
c57fb7a5ffa3
commit work done on plugging vao to the gl renderer, renders nonsense for now
Teemu Piippo <teemu@hecknology.net>
parents:
26
diff
changeset
|
162 | void PartRenderer::renderVao(const gl::ArrayClass arrayClass) |
26 | 163 | { |
164 | this->compiler->bindVertexArray(arrayClass); | |
34
1de2b8d64e9f
added some sort of lighting
Teemu Piippo <teemu@hecknology.net>
parents:
32
diff
changeset
|
165 | const std::size_t vertexCount = this->compiler->vertexCount(arrayClass); |
26 | 166 | glDrawArrays(getGlTypeForArrayClass(arrayClass), 0, static_cast<GLsizei>(vertexCount)); |
167 | this->compiler->releaseVertexArray(arrayClass); | |
168 | this->checkForGLErrors(); | |
169 | } | |
170 | ||
171 | void PartRenderer::checkForGLErrors() | |
172 | { | |
173 | GLenum glError; | |
174 | QStringList errors; | |
175 | while ((glError = glGetError()) != GL_NO_ERROR) | |
21 | 176 | { |
177 | const QString glErrorString = QString::fromLatin1(reinterpret_cast<const char*>(::gluErrorString(glError))); | |
26 | 178 | errors.append(glErrorString); |
179 | } | |
180 | if (not errors.isEmpty()) | |
181 | { | |
21 | 182 | QMessageBox::critical( |
183 | this, | |
184 | tr("Rendering error"), | |
26 | 185 | QString{"Failed to render.\n%1"}.arg(errors.join("\n"))); |
21 | 186 | } |
17 | 187 | } |
188 | ||
189 | void PartRenderer::mouseMoveEvent(QMouseEvent* event) | |
190 | { | |
191 | const bool left = event->buttons() & Qt::LeftButton; | |
192 | const QPointF move = pointToPointF(event->pos()) - this->lastMousePosition; | |
193 | if (left and not move.isNull()) | |
194 | { | |
31
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
195 | // q_x is the rotation of the brick along the vertical y-axis, because turning the |
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
196 | // vertical axis causes horizontal (=x) rotation. Likewise q_y is the rotation of the |
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
197 | // brick along the horizontal x-axis, which causes vertical rotation. |
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
198 | const auto scalar = 0.006f; |
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
199 | const float move_x = static_cast<float>(move.x()); |
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
200 | const float move_y = static_cast<float>(move.y()); |
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
201 | const glm::quat q_x = glm::angleAxis(scalar * move_x, glm::vec3{0, -1, 0}); |
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
202 | const glm::quat q_y = glm::angleAxis(scalar * move_y, glm::vec3{-1, 0, 0}); |
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
203 | this->modelQuaternion = q_x * q_y * this->modelQuaternion; |
34
1de2b8d64e9f
added some sort of lighting
Teemu Piippo <teemu@hecknology.net>
parents:
32
diff
changeset
|
204 | this->compiler->setUniformMatrix("modelMatrix", glm::mat4_cast(this->modelQuaternion)); |
17 | 205 | this->update(); |
206 | } | |
207 | this->lastMousePosition = pointToPointF(event->pos()); | |
208 | } | |
18 | 209 | |
31
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
210 | void PartRenderer::wheelEvent(QWheelEvent* event) |
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
211 | { |
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
212 | static constexpr double WHEEL_STEP = 1 / 1000.0; |
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
213 | const double move = (-event->angleDelta().y()) * WHEEL_STEP; |
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
214 | this->zoom = std::clamp(this->zoom + move, MIN_ZOOM, MAX_ZOOM); |
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
215 | this->updateViewMatrix(); |
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
216 | this->update(); |
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
217 | } |
b6df269a2c6b
fix remaining rendering control issues
Teemu Piippo <teemu@hecknology.net>
parents:
30
diff
changeset
|
218 | |
37 | 219 | /** |
220 | * @brief Changes the color of rendered fragments | |
221 | * @param newFragmentStyle new fragment style to use | |
222 | */ | |
223 | void PartRenderer::setFragmentStyle(gl::FragmentStyle newFragmentStyle) | |
224 | { | |
225 | this->compiler->setUniform("fragmentStyle", static_cast<int>(newFragmentStyle)); | |
226 | } | |
227 | ||
228 | /** | |
229 | * @brief Changes the way the scene is rendered | |
230 | * @param newStyle new render style to use | |
231 | */ | |
39
caac957e9834
Main color is now configurable
Teemu Piippo <teemu@hecknology.net>
parents:
37
diff
changeset
|
232 | void PartRenderer::setRenderPreferences(const gl::RenderPreferences& newPreferences) |
18 | 233 | { |
39
caac957e9834
Main color is now configurable
Teemu Piippo <teemu@hecknology.net>
parents:
37
diff
changeset
|
234 | bool mainColorChanged = this->renderPreferences.mainColor != newPreferences.mainColor; |
caac957e9834
Main color is now configurable
Teemu Piippo <teemu@hecknology.net>
parents:
37
diff
changeset
|
235 | this->renderPreferences = newPreferences; |
caac957e9834
Main color is now configurable
Teemu Piippo <teemu@hecknology.net>
parents:
37
diff
changeset
|
236 | if (mainColorChanged) |
caac957e9834
Main color is now configurable
Teemu Piippo <teemu@hecknology.net>
parents:
37
diff
changeset
|
237 | { |
caac957e9834
Main color is now configurable
Teemu Piippo <teemu@hecknology.net>
parents:
37
diff
changeset
|
238 | this->compiler->build(this->model, this->documents, this->renderPreferences); |
caac957e9834
Main color is now configurable
Teemu Piippo <teemu@hecknology.net>
parents:
37
diff
changeset
|
239 | } |
18 | 240 | this->update(); |
241 | } | |
242 |