Mercurial > hg > orthanc-stone
annotate OrthancStone/Sources/Scene2D/Internals/OpenGLInfoPanelRenderer.cpp @ 1808:797633f48a9c
display series description if hovering pdf or video
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 20 May 2021 17:28:16 +0200 |
parents | 9ac2a65d4172 |
children | 3889ae96d2e9 |
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 | |
1739
9ac2a65d4172
upgrade to year 2021
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1598
diff
changeset
|
5 * Copyright (C) 2017-2021 Osimis S.A., Belgium |
594 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
1598
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
8 * modify it under the terms of the GNU Lesser General Public License |
594 | 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 | |
1598
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
15 * Lesser General Public License for more details. |
1596
4fb8fdf03314
removed annoying whitespace
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1576
diff
changeset
|
16 * |
1598
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
17 * You should have received a copy of the GNU Lesser General Public |
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
18 * License along with this program. If not, see |
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
19 * <http://www.gnu.org/licenses/>. |
594 | 20 **/ |
21 | |
22 | |
23 #include "OpenGLInfoPanelRenderer.h" | |
24 | |
25 namespace OrthancStone | |
26 { | |
27 namespace Internals | |
28 { | |
29 void OpenGLInfoPanelRenderer::LoadTexture(const InfoPanelSceneLayer& layer) | |
30 { | |
947
1091b2adeb5a
Fixed animation frame stopping when returning false + big work on the OpenGL
Benjamin Golinvaux <bgo@osimis.io>
parents:
888
diff
changeset
|
31 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
|
32 { |
1091b2adeb5a
Fixed animation frame stopping when returning false + big work on the OpenGL
Benjamin Golinvaux <bgo@osimis.io>
parents:
888
diff
changeset
|
33 context_.MakeCurrent(); |
1091b2adeb5a
Fixed animation frame stopping when returning false + big work on the OpenGL
Benjamin Golinvaux <bgo@osimis.io>
parents:
888
diff
changeset
|
34 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
|
35 texture_->Load(layer.GetTexture(), layer.IsLinearInterpolation()); |
1325
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
36 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
|
37 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
|
38 } |
594 | 39 } |
40 | |
41 OpenGLInfoPanelRenderer::OpenGLInfoPanelRenderer(OpenGL::IOpenGLContext& context, | |
42 OpenGLColorTextureProgram& program, | |
43 const InfoPanelSceneLayer& layer) : | |
44 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
|
45 program_(program), |
1325
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
46 anchor_(BitmapAnchor_TopLeft), |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
47 applySceneRotation_(false) |
594 | 48 { |
49 LoadTexture(layer); | |
50 } | |
51 | |
888
6e888cf6a48b
renderers now have access to canvas width/height
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
594
diff
changeset
|
52 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
|
53 unsigned int canvasWidth, |
6e888cf6a48b
renderers now have access to canvas width/height
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
594
diff
changeset
|
54 unsigned int canvasHeight) |
594 | 55 { |
947
1091b2adeb5a
Fixed animation frame stopping when returning false + big work on the OpenGL
Benjamin Golinvaux <bgo@osimis.io>
parents:
888
diff
changeset
|
56 if (!context_.IsContextLost() && texture_.get() != NULL) |
594 | 57 { |
947
1091b2adeb5a
Fixed animation frame stopping when returning false + big work on the OpenGL
Benjamin Golinvaux <bgo@osimis.io>
parents:
888
diff
changeset
|
58 int dx = 0, dy = 0; |
594 | 59 InfoPanelSceneLayer::ComputeAnchorLocation( |
60 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
|
61 canvasWidth, canvasHeight); |
594 | 62 |
63 // The position of this type of layer is layer: Ignore the | |
64 // "transform" coming from the scene | |
1325
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
65 AffineTransform2D actualTransform = |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
66 AffineTransform2D::CreateOffset(dx, dy); |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
67 |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
68 if (applySceneRotation_) |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
69 { |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
70 // the transformation is as follows: |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
71 // - 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
|
72 // is at 0,0 |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
73 // - 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
|
74 // - 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
|
75 // image rotate around its center. |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
76 // - 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
|
77 // back in place |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
78 // - 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
|
79 // image to its desired anchored location. |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
80 |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
81 int32_t halfWidth = |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
82 static_cast<int32_t>(0.5 * texture_->GetWidth()); |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
83 |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
84 int32_t halfHeight= |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
85 static_cast<int32_t>(0.5 * texture_->GetHeight()); |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
86 |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
87 AffineTransform2D translation1 = |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
88 AffineTransform2D::CreateOffset(-halfWidth, -halfHeight); |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
89 |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
90 const Matrix& sceneTransformM = transform.GetHomogeneousMatrix(); |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
91 Matrix r; |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
92 Matrix q; |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
93 LinearAlgebra::RQDecomposition3x3(r, q, sceneTransformM); |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
94 |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
95 // 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
|
96 // triangular |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
97 AffineTransform2D rotation(q); |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
98 |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
99 AffineTransform2D translation2 = |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
100 AffineTransform2D::CreateOffset(halfWidth, halfHeight); |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
101 |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
102 // 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
|
103 // 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
|
104 // the resulting matrix is a*b*c: |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
105 // 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
|
106 // 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
|
107 // formed by a) |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
108 actualTransform = AffineTransform2D::Combine(actualTransform, |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
109 translation2, |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
110 rotation, |
be17fed8c7c5
Added flag in InfoPanelSceneLayer to
Benjamin Golinvaux <bgo@osimis.io>
parents:
1270
diff
changeset
|
111 translation1); |
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 |
1576
92fca2b3ba3d
sanitizing the handling of canvas size
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1512
diff
changeset
|
114 program_.Apply(*texture_, actualTransform, canvasWidth, canvasHeight, true); |
594 | 115 } |
116 } | |
117 } | |
118 } |