815
|
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
|
|
21
|
|
22 #pragma once
|
|
23
|
|
24 #include "../Scene2D/Scene2D.h"
|
|
25 #include "IVolumeSlicer.h"
|
|
26
|
|
27 #include <boost/shared_ptr.hpp>
|
|
28
|
|
29 namespace OrthancStone
|
|
30 {
|
|
31 /**
|
|
32 This class applies one "volume slicer" to a "3D volume", in order
|
|
33 to create one "2D scene layer" that will be set onto the "2D
|
|
34 scene". The style of the layer can be fine-tuned using a "layer
|
|
35 style configurator". The class only changes the layer if the
|
|
36 cutting plane has been modified since the last call to "Update()".
|
|
37 **/
|
|
38 class VolumeSceneLayerSource : public boost::noncopyable
|
|
39 {
|
|
40 private:
|
|
41 Scene2D& scene_;
|
|
42 int layerDepth_;
|
|
43 boost::shared_ptr<IVolumeSlicer> slicer_;
|
|
44 std::auto_ptr<ILayerStyleConfigurator> configurator_;
|
|
45 std::auto_ptr<CoordinateSystem3D> lastPlane_;
|
|
46 uint64_t lastRevision_;
|
|
47 uint64_t lastConfiguratorRevision_;
|
|
48
|
|
49 void ClearLayer();
|
|
50
|
|
51 public:
|
|
52 VolumeSceneLayerSource(Scene2D& scene,
|
|
53 int layerDepth,
|
|
54 const boost::shared_ptr<IVolumeSlicer>& slicer);
|
|
55
|
|
56 const IVolumeSlicer& GetSlicer() const
|
|
57 {
|
|
58 return *slicer_;
|
|
59 }
|
|
60
|
|
61 void RemoveConfigurator();
|
|
62
|
|
63 void SetConfigurator(ILayerStyleConfigurator* configurator);
|
|
64
|
|
65 bool HasConfigurator() const
|
|
66 {
|
|
67 return configurator_.get() != NULL;
|
|
68 }
|
|
69
|
|
70 ILayerStyleConfigurator& GetConfigurator() const;
|
|
71
|
|
72 void Update(const CoordinateSystem3D& plane);
|
|
73 };
|
|
74 }
|