annotate Framework/Scene2D/Internals/OpenGLInfoPanelRenderer.cpp @ 1325:be17fed8c7c5 broker

Added flag in InfoPanelSceneLayer to apply the scene rotation to the displayed image.
author Benjamin Golinvaux <bgo@osimis.io>
date Tue, 24 Mar 2020 20:34:28 +0100
parents 2d8ab34c8c91
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
594
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
1 /**
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
2 * Stone of Orthanc
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
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
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
6 *
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
7 * This program is free software: you can redistribute it and/or
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
8 * modify it under the terms of the GNU Affero General Public License
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
9 * as published by the Free Software Foundation, either version 3 of
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
10 * the License, or (at your option) any later version.
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
11 *
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
12 * This program is distributed in the hope that it will be useful, but
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
15 * Affero General Public License for more details.
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
16 *
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
17 * You should have received a copy of the GNU Affero General Public License
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
19 **/
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
20
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
21
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
22 #include "OpenGLInfoPanelRenderer.h"
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
23
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
24 namespace OrthancStone
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
25 {
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
26 namespace Internals
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
27 {
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
28 void OpenGLInfoPanelRenderer::LoadTexture(const InfoPanelSceneLayer& layer)
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
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
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
38 }
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
39
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
40 OpenGLInfoPanelRenderer::OpenGLInfoPanelRenderer(OpenGL::IOpenGLContext& context,
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
41 OpenGLColorTextureProgram& program,
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
42 const InfoPanelSceneLayer& layer) :
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
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
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
47 {
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
48 LoadTexture(layer);
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
49 }
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
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
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
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
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
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
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
58 InfoPanelSceneLayer::ComputeAnchorLocation(
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
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
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
61
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
62 // The position of this type of layer is layer: Ignore the
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
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
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
114 }
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
115 }
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
116 }
9807ed3d3e03 OpenGLCompositor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
117 }