Mercurial > hg > orthanc-stone
annotate OrthancStone/Sources/Scene2D/Internals/OpenGLInfoPanelRenderer.cpp @ 1556:8898f8f755c8
typo
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 18 Aug 2020 11:58:47 +0200 |
parents | 244ad1e4e76a |
children | 92fca2b3ba3d |
rev | line source |
---|---|
594 | 1 /** |
2 * Stone of Orthanc | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
1270
2d8ab34c8c91
upgrade to year 2020
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
947
diff
changeset
|
5 * Copyright (C) 2017-2020 Osimis S.A., Belgium |
594 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
8 * modify it under the terms of the GNU Affero General Public License | |
9 * as published by the Free Software Foundation, either version 3 of | |
10 * the License, or (at your option) any later version. | |
11 * | |
12 * This program is distributed in the hope that it will be useful, but | |
13 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Affero General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Affero General Public License | |
18 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
19 **/ | |
20 | |
21 | |
22 #include "OpenGLInfoPanelRenderer.h" | |
23 | |
24 namespace OrthancStone | |
25 { | |
26 namespace Internals | |
27 { | |
28 void OpenGLInfoPanelRenderer::LoadTexture(const InfoPanelSceneLayer& layer) | |
29 { | |
947
1091b2adeb5a
Fixed animation frame stopping when returning false + big work on the OpenGL
Benjamin Golinvaux <bgo@osimis.io>
parents:
888
diff
changeset
|
30 if (!context_.IsContextLost()) |
1091b2adeb5a
Fixed animation frame stopping when returning false + big work on the OpenGL
Benjamin Golinvaux <bgo@osimis.io>
parents:
888
diff
changeset
|
31 { |
1091b2adeb5a
Fixed animation frame stopping when returning false + big work on the OpenGL
Benjamin Golinvaux <bgo@osimis.io>
parents:
888
diff
changeset
|
32 context_.MakeCurrent(); |
1091b2adeb5a
Fixed animation frame stopping when returning false + big work on the OpenGL
Benjamin Golinvaux <bgo@osimis.io>
parents:
888
diff
changeset
|
33 texture_.reset(new OpenGL::OpenGLTexture(context_)); |
1091b2adeb5a
Fixed animation frame stopping when returning false + big work on the OpenGL
Benjamin Golinvaux <bgo@osimis.io>
parents:
888
diff
changeset
|
34 texture_->Load(layer.GetTexture(), layer.IsLinearInterpolation()); |
1325
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
35 applySceneRotation_ = layer.ShouldApplySceneRotation(); |
947
1091b2adeb5a
Fixed animation frame stopping when returning false + big work on the OpenGL
Benjamin Golinvaux <bgo@osimis.io>
parents:
888
diff
changeset
|
36 anchor_ = layer.GetAnchor(); |
1091b2adeb5a
Fixed animation frame stopping when returning false + big work on the OpenGL
Benjamin Golinvaux <bgo@osimis.io>
parents:
888
diff
changeset
|
37 } |
594 | 38 } |
39 | |
40 OpenGLInfoPanelRenderer::OpenGLInfoPanelRenderer(OpenGL::IOpenGLContext& context, | |
41 OpenGLColorTextureProgram& program, | |
42 const InfoPanelSceneLayer& layer) : | |
43 context_(context), | |
947
1091b2adeb5a
Fixed animation frame stopping when returning false + big work on the OpenGL
Benjamin Golinvaux <bgo@osimis.io>
parents:
888
diff
changeset
|
44 program_(program), |
1325
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
45 anchor_(BitmapAnchor_TopLeft), |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
46 applySceneRotation_(false) |
594 | 47 { |
48 LoadTexture(layer); | |
49 } | |
50 | |
888
6e888cf6a48b
renderers now have access to canvas width/height
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
594
diff
changeset
|
51 void OpenGLInfoPanelRenderer::Render(const AffineTransform2D& transform, |
6e888cf6a48b
renderers now have access to canvas width/height
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
594
diff
changeset
|
52 unsigned int canvasWidth, |
6e888cf6a48b
renderers now have access to canvas width/height
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
594
diff
changeset
|
53 unsigned int canvasHeight) |
594 | 54 { |
947
1091b2adeb5a
Fixed animation frame stopping when returning false + big work on the OpenGL
Benjamin Golinvaux <bgo@osimis.io>
parents:
888
diff
changeset
|
55 if (!context_.IsContextLost() && texture_.get() != NULL) |
594 | 56 { |
947
1091b2adeb5a
Fixed animation frame stopping when returning false + big work on the OpenGL
Benjamin Golinvaux <bgo@osimis.io>
parents:
888
diff
changeset
|
57 int dx = 0, dy = 0; |
594 | 58 InfoPanelSceneLayer::ComputeAnchorLocation( |
59 dx, dy, anchor_, texture_->GetWidth(), texture_->GetHeight(), | |
888
6e888cf6a48b
renderers now have access to canvas width/height
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
594
diff
changeset
|
60 canvasWidth, canvasHeight); |
594 | 61 |
62 // The position of this type of layer is layer: Ignore the | |
63 // "transform" coming from the scene | |
1325
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
64 AffineTransform2D actualTransform = |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
65 AffineTransform2D::CreateOffset(dx, dy); |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
66 |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
67 if (applySceneRotation_) |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
68 { |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
69 // the transformation is as follows: |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
70 // - originally, the image is aligned so that its top left corner |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
71 // is at 0,0 |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
72 // - first, we translate the image by -w/2,-h/2 |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
73 // - then we rotate it, so that the next rotation will make the |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
74 // image rotate around its center. |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
75 // - then, we translate the image by +w/2,+h/2 to put it |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
76 // back in place |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
77 // - the fourth and last transform is the one that brings the |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
78 // image to its desired anchored location. |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
79 |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
80 int32_t halfWidth = |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
81 static_cast<int32_t>(0.5 * texture_->GetWidth()); |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
82 |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
83 int32_t halfHeight= |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
84 static_cast<int32_t>(0.5 * texture_->GetHeight()); |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
85 |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
86 AffineTransform2D translation1 = |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
87 AffineTransform2D::CreateOffset(-halfWidth, -halfHeight); |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
88 |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
89 const Matrix& sceneTransformM = transform.GetHomogeneousMatrix(); |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
90 Matrix r; |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
91 Matrix q; |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
92 LinearAlgebra::RQDecomposition3x3(r, q, sceneTransformM); |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
93 |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
94 // counterintuitively, q is the rotation and r is the upper |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
95 // triangular |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
96 AffineTransform2D rotation(q); |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
97 |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
98 AffineTransform2D translation2 = |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
99 AffineTransform2D::CreateOffset(halfWidth, halfHeight); |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
100 |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
101 // please note that the last argument is the 1st applied |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
102 // transformation (rationale: if arguments are a, b and c, then |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
103 // the resulting matrix is a*b*c: |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
104 // x2 = (a*b*c)*x1 = (a*(b*(c*x1))) (you can see that the result |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
105 // of c*x1 is transformed by b, and the result of b*c*x1 is trans- |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
106 // formed by a) |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
107 actualTransform = AffineTransform2D::Combine(actualTransform, |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
108 translation2, |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
109 rotation, |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
110 translation1); |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
111 } |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
112 |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
113 program_.Apply(*texture_, actualTransform, true); |
594 | 114 } |
115 } | |
116 } | |
117 } |