Mercurial > hg > orthanc-stone
annotate Samples/Sdl/TrackerSampleApp.h @ 1031:7b89e88bb66e toa2019100701
Merge
author | Benjamin Golinvaux <bgo@osimis.io> |
---|---|
date | Mon, 07 Oct 2019 14:09:29 +0200 |
parents | eaaa9b574e05 |
children | 2d8ab34c8c91 |
rev | line source |
---|---|
644 | 1 /** |
2 * Stone of Orthanc | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
5 * Copyright (C) 2017-2019 Osimis S.A., Belgium | |
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 | |
698
8b6adfb62a2f
Code is broken -- stashing ongoing work in a branch
Benjamin Golinvaux <bgo@osimis.io>
parents:
660
diff
changeset
|
21 |
737 | 22 #include "../../Framework/Messages/IObserver.h" |
23 #include "../../Framework/Scene2D/OpenGLCompositor.h" | |
24 #include "../../Framework/Scene2DViewport/IFlexiblePointerTracker.h" | |
774
66ac7a2d1e3a
A few renames and cleanups + moved GUI constants to controller + start work on
Benjamin Golinvaux <bgo@osimis.io>
parents:
761
diff
changeset
|
25 #include "../../Framework/Scene2DViewport/MeasureTool.h" |
818
e42b491f1fb2
Removed typedefs to shared_ptr by making them explicit. Removed using namespace
Benjamin Golinvaux <bgo@osimis.io>
parents:
774
diff
changeset
|
26 #include "../../Framework/Scene2DViewport/PredeclaredTypes.h" |
737 | 27 #include "../../Framework/Scene2DViewport/ViewportController.h" |
893
0c5201499af8
Fixes to TrackerSampleApp following IViewport refactoring (FusionMprSdl not working yet)
Benjamin Golinvaux <bgo@osimis.io>
parents:
891
diff
changeset
|
28 #include "../../Framework/Viewport/SdlViewport.h" |
644 | 29 |
30 #include <SDL.h> | |
31 | |
32 #include <boost/make_shared.hpp> | |
33 #include <boost/shared_ptr.hpp> | |
660
cb3b76d16234
Added info display map to the app + global logging function + fixed bisecting
Benjamin Golinvaux <bgo@osimis.io>
parents:
656
diff
changeset
|
34 #include <boost/enable_shared_from_this.hpp> |
644 | 35 |
36 namespace OrthancStone | |
37 { | |
38 enum GuiTool | |
39 { | |
40 GuiTool_Rotate = 0, | |
41 GuiTool_Pan, | |
42 GuiTool_Zoom, | |
43 GuiTool_LineMeasure, | |
44 GuiTool_CircleMeasure, | |
45 GuiTool_AngleMeasure, | |
46 GuiTool_EllipseMeasure, | |
47 GuiTool_LAST | |
48 }; | |
49 | |
50 const char* MeasureToolToString(size_t i); | |
51 | |
656
002d9562c8f5
Added support to DISABLE legacy scaling in SDL Windows (only in WIN32... this
Benjamin Golinvaux <bgo@osimis.io>
parents:
654
diff
changeset
|
52 static const unsigned int FONT_SIZE_0 = 32; |
002d9562c8f5
Added support to DISABLE legacy scaling in SDL Windows (only in WIN32... this
Benjamin Golinvaux <bgo@osimis.io>
parents:
654
diff
changeset
|
53 static const unsigned int FONT_SIZE_1 = 24; |
644 | 54 |
55 class Scene2D; | |
858
e3c56d4f863f
GuiAdapter : mouse event routing in SDL + split the undo stack from the
Benjamin Golinvaux <bgo@osimis.io>
parents:
818
diff
changeset
|
56 class UndoStack; |
644 | 57 |
654
462a5074f914
Turned the scene into an observable to be able to dynamically react to
Benjamin Golinvaux <bgo@osimis.io>
parents:
644
diff
changeset
|
58 class TrackerSampleApp : public IObserver |
660
cb3b76d16234
Added info display map to the app + global logging function + fixed bisecting
Benjamin Golinvaux <bgo@osimis.io>
parents:
656
diff
changeset
|
59 , public boost::enable_shared_from_this<TrackerSampleApp> |
644 | 60 { |
61 public: | |
62 // 12 because. | |
660
cb3b76d16234
Added info display map to the app + global logging function + fixed bisecting
Benjamin Golinvaux <bgo@osimis.io>
parents:
656
diff
changeset
|
63 TrackerSampleApp(MessageBroker& broker); |
644 | 64 void PrepareScene(); |
656
002d9562c8f5
Added support to DISABLE legacy scaling in SDL Windows (only in WIN32... this
Benjamin Golinvaux <bgo@osimis.io>
parents:
654
diff
changeset
|
65 void Run(); |
660
cb3b76d16234
Added info display map to the app + global logging function + fixed bisecting
Benjamin Golinvaux <bgo@osimis.io>
parents:
656
diff
changeset
|
66 void SetInfoDisplayMessage(std::string key, std::string value); |
644 | 67 void DisableTracker(); |
68 | |
656
002d9562c8f5
Added support to DISABLE legacy scaling in SDL Windows (only in WIN32... this
Benjamin Golinvaux <bgo@osimis.io>
parents:
654
diff
changeset
|
69 void HandleApplicationEvent(const SDL_Event& event); |
002d9562c8f5
Added support to DISABLE legacy scaling in SDL Windows (only in WIN32... this
Benjamin Golinvaux <bgo@osimis.io>
parents:
654
diff
changeset
|
70 |
002d9562c8f5
Added support to DISABLE legacy scaling in SDL Windows (only in WIN32... this
Benjamin Golinvaux <bgo@osimis.io>
parents:
654
diff
changeset
|
71 /** |
002d9562c8f5
Added support to DISABLE legacy scaling in SDL Windows (only in WIN32... this
Benjamin Golinvaux <bgo@osimis.io>
parents:
654
diff
changeset
|
72 This method is called when the scene transform changes. It allows to |
002d9562c8f5
Added support to DISABLE legacy scaling in SDL Windows (only in WIN32... this
Benjamin Golinvaux <bgo@osimis.io>
parents:
654
diff
changeset
|
73 recompute the visual elements whose content depend upon the scene transform |
002d9562c8f5
Added support to DISABLE legacy scaling in SDL Windows (only in WIN32... this
Benjamin Golinvaux <bgo@osimis.io>
parents:
654
diff
changeset
|
74 */ |
700
059e1fd05fd6
Introduced the ViewportController that sits between the application and the
Benjamin Golinvaux <bgo@osimis.io>
parents:
698
diff
changeset
|
75 void OnSceneTransformChanged( |
059e1fd05fd6
Introduced the ViewportController that sits between the application and the
Benjamin Golinvaux <bgo@osimis.io>
parents:
698
diff
changeset
|
76 const ViewportController::SceneTransformChanged& message); |
644 | 77 |
78 private: | |
79 void SelectNextTool(); | |
761
07adcffba38c
truncation warning fixes + CRLF -> LF + random measuring tool creation (keyb
Benjamin Golinvaux <bgo@osimis.io>
parents:
737
diff
changeset
|
80 void CreateRandomMeasureTool(); |
644 | 81 |
893
0c5201499af8
Fixes to TrackerSampleApp following IViewport refactoring (FusionMprSdl not working yet)
Benjamin Golinvaux <bgo@osimis.io>
parents:
891
diff
changeset
|
82 |
0c5201499af8
Fixes to TrackerSampleApp following IViewport refactoring (FusionMprSdl not working yet)
Benjamin Golinvaux <bgo@osimis.io>
parents:
891
diff
changeset
|
83 /** |
0c5201499af8
Fixes to TrackerSampleApp following IViewport refactoring (FusionMprSdl not working yet)
Benjamin Golinvaux <bgo@osimis.io>
parents:
891
diff
changeset
|
84 In the case of this app, the viewport is an SDL viewport and it has |
0c5201499af8
Fixes to TrackerSampleApp following IViewport refactoring (FusionMprSdl not working yet)
Benjamin Golinvaux <bgo@osimis.io>
parents:
891
diff
changeset
|
85 a OpenGLCompositor& GetCompositor() method |
0c5201499af8
Fixes to TrackerSampleApp following IViewport refactoring (FusionMprSdl not working yet)
Benjamin Golinvaux <bgo@osimis.io>
parents:
891
diff
changeset
|
86 */ |
938
eaaa9b574e05
Fixed the Stone samples wrt the recent API changes (SdlOpenGLViewport, ICompositor...)
Benjamin Golinvaux <bgo@osimis.io>
parents:
916
diff
changeset
|
87 ICompositor& GetCompositor(); |
893
0c5201499af8
Fixes to TrackerSampleApp following IViewport refactoring (FusionMprSdl not working yet)
Benjamin Golinvaux <bgo@osimis.io>
parents:
891
diff
changeset
|
88 |
0c5201499af8
Fixes to TrackerSampleApp following IViewport refactoring (FusionMprSdl not working yet)
Benjamin Golinvaux <bgo@osimis.io>
parents:
891
diff
changeset
|
89 /** |
0c5201499af8
Fixes to TrackerSampleApp following IViewport refactoring (FusionMprSdl not working yet)
Benjamin Golinvaux <bgo@osimis.io>
parents:
891
diff
changeset
|
90 See the other overload |
0c5201499af8
Fixes to TrackerSampleApp following IViewport refactoring (FusionMprSdl not working yet)
Benjamin Golinvaux <bgo@osimis.io>
parents:
891
diff
changeset
|
91 */ |
938
eaaa9b574e05
Fixed the Stone samples wrt the recent API changes (SdlOpenGLViewport, ICompositor...)
Benjamin Golinvaux <bgo@osimis.io>
parents:
916
diff
changeset
|
92 const ICompositor& GetCompositor() const; |
893
0c5201499af8
Fixes to TrackerSampleApp following IViewport refactoring (FusionMprSdl not working yet)
Benjamin Golinvaux <bgo@osimis.io>
parents:
891
diff
changeset
|
93 |
761
07adcffba38c
truncation warning fixes + CRLF -> LF + random measuring tool creation (keyb
Benjamin Golinvaux <bgo@osimis.io>
parents:
737
diff
changeset
|
94 /** |
07adcffba38c
truncation warning fixes + CRLF -> LF + random measuring tool creation (keyb
Benjamin Golinvaux <bgo@osimis.io>
parents:
737
diff
changeset
|
95 This returns a random point in the canvas part of the scene, but in |
07adcffba38c
truncation warning fixes + CRLF -> LF + random measuring tool creation (keyb
Benjamin Golinvaux <bgo@osimis.io>
parents:
737
diff
changeset
|
96 scene coordinates |
07adcffba38c
truncation warning fixes + CRLF -> LF + random measuring tool creation (keyb
Benjamin Golinvaux <bgo@osimis.io>
parents:
737
diff
changeset
|
97 */ |
07adcffba38c
truncation warning fixes + CRLF -> LF + random measuring tool creation (keyb
Benjamin Golinvaux <bgo@osimis.io>
parents:
737
diff
changeset
|
98 ScenePoint2D GetRandomPointInScene() const; |
644 | 99 |
818
e42b491f1fb2
Removed typedefs to shared_ptr by making them explicit. Removed using namespace
Benjamin Golinvaux <bgo@osimis.io>
parents:
774
diff
changeset
|
100 boost::shared_ptr<IFlexiblePointerTracker> TrackerHitTest(const PointerEvent& e); |
644 | 101 |
818
e42b491f1fb2
Removed typedefs to shared_ptr by making them explicit. Removed using namespace
Benjamin Golinvaux <bgo@osimis.io>
parents:
774
diff
changeset
|
102 boost::shared_ptr<IFlexiblePointerTracker> CreateSuitableTracker( |
644 | 103 const SDL_Event& event, |
656
002d9562c8f5
Added support to DISABLE legacy scaling in SDL Windows (only in WIN32... this
Benjamin Golinvaux <bgo@osimis.io>
parents:
654
diff
changeset
|
104 const PointerEvent& e); |
644 | 105 |
106 void TakeScreenshot( | |
107 const std::string& target, | |
108 unsigned int canvasWidth, | |
109 unsigned int canvasHeight); | |
110 | |
111 /** | |
112 This adds the command at the top of the undo stack | |
113 */ | |
818
e42b491f1fb2
Removed typedefs to shared_ptr by making them explicit. Removed using namespace
Benjamin Golinvaux <bgo@osimis.io>
parents:
774
diff
changeset
|
114 void Commit(boost::shared_ptr<TrackerCommand> cmd); |
644 | 115 void Undo(); |
116 void Redo(); | |
117 | |
118 private: | |
656
002d9562c8f5
Added support to DISABLE legacy scaling in SDL Windows (only in WIN32... this
Benjamin Golinvaux <bgo@osimis.io>
parents:
654
diff
changeset
|
119 void DisplayFloatingCtrlInfoText(const PointerEvent& e); |
002d9562c8f5
Added support to DISABLE legacy scaling in SDL Windows (only in WIN32... this
Benjamin Golinvaux <bgo@osimis.io>
parents:
654
diff
changeset
|
120 void DisplayInfoText(); |
644 | 121 void HideInfoText(); |
122 | |
123 private: | |
124 /** | |
125 WARNING: the measuring tools do store a reference to the scene, and it | |
126 paramount that the scene gets destroyed AFTER the measurement tools. | |
127 */ | |
818
e42b491f1fb2
Removed typedefs to shared_ptr by making them explicit. Removed using namespace
Benjamin Golinvaux <bgo@osimis.io>
parents:
774
diff
changeset
|
128 boost::shared_ptr<ViewportController> controller_; |
644 | 129 |
660
cb3b76d16234
Added info display map to the app + global logging function + fixed bisecting
Benjamin Golinvaux <bgo@osimis.io>
parents:
656
diff
changeset
|
130 std::map<std::string, std::string> infoTextMap_; |
818
e42b491f1fb2
Removed typedefs to shared_ptr by making them explicit. Removed using namespace
Benjamin Golinvaux <bgo@osimis.io>
parents:
774
diff
changeset
|
131 boost::shared_ptr<IFlexiblePointerTracker> activeTracker_; |
644 | 132 |
133 //static const int LAYER_POSITION = 150; | |
656
002d9562c8f5
Added support to DISABLE legacy scaling in SDL Windows (only in WIN32... this
Benjamin Golinvaux <bgo@osimis.io>
parents:
654
diff
changeset
|
134 |
644 | 135 int TEXTURE_2x2_1_ZINDEX; |
136 int TEXTURE_1x1_ZINDEX; | |
137 int TEXTURE_2x2_2_ZINDEX; | |
138 int LINESET_1_ZINDEX; | |
139 int LINESET_2_ZINDEX; | |
656
002d9562c8f5
Added support to DISABLE legacy scaling in SDL Windows (only in WIN32... this
Benjamin Golinvaux <bgo@osimis.io>
parents:
654
diff
changeset
|
140 int FLOATING_INFOTEXT_LAYER_ZINDEX; |
002d9562c8f5
Added support to DISABLE legacy scaling in SDL Windows (only in WIN32... this
Benjamin Golinvaux <bgo@osimis.io>
parents:
654
diff
changeset
|
141 int FIXED_INFOTEXT_LAYER_ZINDEX; |
002d9562c8f5
Added support to DISABLE legacy scaling in SDL Windows (only in WIN32... this
Benjamin Golinvaux <bgo@osimis.io>
parents:
654
diff
changeset
|
142 |
644 | 143 GuiTool currentTool_; |
858
e3c56d4f863f
GuiAdapter : mouse event routing in SDL + split the undo stack from the
Benjamin Golinvaux <bgo@osimis.io>
parents:
818
diff
changeset
|
144 boost::shared_ptr<UndoStack> undoStack_; |
916
a911f5bb48da
MultiPlatform Basic Scene sample (so far: SDL + Qt)
Alain Mazy <alain@mazy.be>
parents:
893
diff
changeset
|
145 SdlOpenGLViewport viewport_; |
644 | 146 }; |
147 | |
148 } |