Chaste  Build::
MicrovesselVtkScene.hpp
1 /*
2 
3 Copyright (c) 2005-2016, University of Oxford.
4  All rights reserved.
5 
6  University of Oxford means the Chancellor, Masters and Scholars of the
7  University of Oxford, having an administrative office at Wellington
8  Square, Oxford OX1 2JD, UK.
9 
10  This file is part of Chaste.
11 
12  Redistribution and use in source and binary forms, with or without
13  modification, are permitted provided that the following conditions are met:
14  * Redistributions of source code must retain the above copyright notice,
15  this list of conditions and the following disclaimer.
16  * Redistributions in binary form must reproduce the above copyright notice,
17  this list of conditions and the following disclaimer in the documentation
18  and/or other materials provided with the distribution.
19  * Neither the name of the University of Oxford nor the names of its
20  contributors may be used to endorse or promote products derived from this
21  software without specific prior written permission.
22 
23  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
24  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
27  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
29  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30  HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
32  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 
34  */
35 
36 #ifndef MICROVESSELVTKSCENE_HPP_
37 #define MICROVESSELVTKSCENE_HPP_
38 
39 #include <vector>
40 #include "SmartPointers.hpp"
41 #include <vtkVersion.h>
42 #if VTK_MAJOR_VERSION > 5
43  #include <vtkAutoInit.h>
44  VTK_MODULE_INIT(vtkRenderingOpenGL);
45  VTK_MODULE_INIT(vtkRenderingFreeType);
46  #include <vtkOggTheoraWriter.h>
47 #endif
48 #define _BACKWARD_BACKWARD_WARNING_H 1 //Cut out the vtk deprecated warning
49 #include <vtkSmartPointer.h>
50 #include <vtkRenderer.h>
51 #include <vtkLookupTable.h>
52 #include <vtkRenderWindow.h>
53 #include <vtkRenderWindowInteractor.h>
54 #include <vtkWindowToImageFilter.h>
55 #include "Part.hpp"
56 #include "PartActorGenerator.hpp"
57 #include "RegularGrid.hpp"
58 #include "RegularGridActorGenerator.hpp"
59 #include "VesselNetwork.hpp"
60 #include "VesselNetworkActorGenerator.hpp"
61 #include "AbstractCellPopulation.hpp"
62 #include "CellPopulationActorGenerator.hpp"
63 #include "DiscreteContinuumMesh.hpp"
64 #include "DiscreteContinuumMeshActorGenerator.hpp"
65 #include "UnitCollection.hpp"
66 #include "MeshBasedCellPopulation.hpp"
67 
71 template<unsigned DIM>
73 {
77  vtkSmartPointer<vtkRenderer> mpRenderer;
78 
82  vtkSmartPointer<vtkRenderWindow> mpRenderWindow;
83 
87  vtkSmartPointer<vtkRenderWindowInteractor> mpRenderWindowInteractor;
88 
92  std::string mOutputFilePath;
93 
97  vtkSmartPointer<vtkLookupTable> mpColorLookUpTable;
98 
99  #if VTK_MAJOR_VERSION > 5
100 
103  vtkSmartPointer<vtkOggTheoraWriter> mAnimationWriter;
104  #endif
105 
109  vtkSmartPointer<vtkWindowToImageFilter> mWindowToImageFilter;
110 
115 
120 
125 
130 
135 
140 
141  bool mIncludeAxes;
142 
146  boost::shared_ptr<CellPopulationActorGenerator<DIM> > mpCellPopulationGenerator;
147 
151  boost::shared_ptr<PartActorGenerator<DIM> > mpPartGenerator;
152 
156  boost::shared_ptr<VesselNetworkActorGenerator<DIM> > mpNetworkGenerator;
157 
161  boost::shared_ptr<DiscreteContinuumMeshActorGenerator<DIM> > mpDiscreteContinuumMeshGenerator;
162 
166  boost::shared_ptr<RegularGridActorGenerator<DIM> > mpGridGenerator;
167 
172  units::quantity<unit::length> mLengthScale;
173 
174 public:
175 
180 
185 
189  void End();
190 
191  boost::shared_ptr<PartActorGenerator<DIM> > GetPartActorGenerator();
192 
193  boost::shared_ptr<DiscreteContinuumMeshActorGenerator<DIM> > GetDiscreteContinuumMeshActorGenerator();
194 
195  boost::shared_ptr<RegularGridActorGenerator<DIM> > GetRegularGridActorGenerator();
196 
197  boost::shared_ptr<VesselNetworkActorGenerator<DIM> > GetVesselNetworkActorGenerator();
198 
199  boost::shared_ptr<CellPopulationActorGenerator<DIM> > GetCellPopulationActorGenerator();
200 
205  void ResetRenderer(unsigned timeStep=0);
206 
210  void Start();
211 
216  void SetCellPopulation(boost::shared_ptr<AbstractCellPopulation<DIM> > pCellPopulation);
217 
222  void SetOutputFilePath(const std::string& rPath);
223 
224  void SetIsInteractive(bool isInteractive);
225 
226  void SetSaveAsAnimation(bool saveAsAnimation);
227 
228  void SetSaveAsImages(bool saveAsImages);
229 
230  void StartInteractiveEventHandler();
231 
232  void SetPart(boost::shared_ptr<Part<DIM> > pPart);
233 
234  void SetVesselNetwork(boost::shared_ptr<VesselNetwork<DIM> > pNetwork);
235 
236  void SetRegularGrid(boost::shared_ptr<RegularGrid<DIM> > pGrid);
237 
238  void SetMesh(boost::shared_ptr<DiscreteContinuumMesh<DIM> > pMesh);
239 
240 };
241 
242 #endif /* MICROVESSELVTKSCENE_HPP_*/
vtkSmartPointer< vtkWindowToImageFilter > mWindowToImageFilter
vtkSmartPointer< vtkLookupTable > mpColorLookUpTable
vtkSmartPointer< vtkRenderWindowInteractor > mpRenderWindowInteractor
void SetOutputFilePath(const std::string &rPath)
boost::shared_ptr< VesselNetworkActorGenerator< DIM > > mpNetworkGenerator
vtkSmartPointer< vtkRenderer > mpRenderer
boost::shared_ptr< DiscreteContinuumMeshActorGenerator< DIM > > mpDiscreteContinuumMeshGenerator
units::quantity< unit::length > mLengthScale
void SetCellPopulation(boost::shared_ptr< AbstractCellPopulation< DIM > > pCellPopulation)
vtkSmartPointer< vtkRenderWindow > mpRenderWindow
boost::shared_ptr< CellPopulationActorGenerator< DIM > > mpCellPopulationGenerator
boost::shared_ptr< PartActorGenerator< DIM > > mpPartGenerator
void ResetRenderer(unsigned timeStep=0)
Definition: Part.hpp:60
boost::shared_ptr< RegularGridActorGenerator< DIM > > mpGridGenerator