Fraxinus  16.5.0-fx-rc9
An IGT application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
cxStream2DRep3D.cpp
Go to the documentation of this file.
1 /*=========================================================================
2 This file is part of CustusX, an Image Guided Therapy Application.
3 
4 Copyright (c) 2008-2014, SINTEF Department of Medical Technology
5 All rights reserved.
6 
7 Redistribution and use in source and binary forms, with or without
8 modification, are permitted provided that the following conditions are met:
9 
10 1. Redistributions of source code must retain the above copyright notice,
11  this list of conditions and the following disclaimer.
12 
13 2. Redistributions in binary form must reproduce the above copyright notice,
14  this list of conditions and the following disclaimer in the documentation
15  and/or other materials provided with the distribution.
16 
17 3. Neither the name of the copyright holder nor the names of its contributors
18  may be used to endorse or promote products derived from this software
19  without specific prior written permission.
20 
21 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
25 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
28 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 =========================================================================*/
32 
33 #include "cxStream2DRep3D.h"
34 
35 #include <vtkRenderer.h>
36 
37 #include "cxTrackedStream.h"
38 #include "cxTool.h"
39 #include "cxVideoSourceGraphics.h"
40 #include "cxView.h"
41 #include "cxLogger.h"
42 
43 namespace cx
44 {
45 
47 {
48  return wrap_new(new Stream2DRep3D(spaceProvider), uid);
49 }
50 
51 Stream2DRep3D::Stream2DRep3D(SpaceProviderPtr spaceProvider) :
52  RepImpl(),
53  mSpaceProvider(spaceProvider)
54 {
55  bool useMask = true;
56  mRTStream.reset(new VideoSourceGraphics(mSpaceProvider, useMask));
57 }
58 
59 QString Stream2DRep3D::getType() const
60 {
61  return "Stream2DRep3D";
62 }
63 
65 {
66  if(mTrackedStream)
67  {
68  disconnect(mTrackedStream.get(), &TrackedStream::newTool, this, &Stream2DRep3D::trackedStreamChanged);
69  disconnect(mTrackedStream.get(), &TrackedStream::newVideoSource, this, &Stream2DRep3D::trackedStreamChanged);
70  }
71 
72  mTrackedStream = trackedStream;
73 
74  if(mTrackedStream)
75  {
76  connect(mTrackedStream.get(), &TrackedStream::newTool, this, &Stream2DRep3D::trackedStreamChanged);
77  connect(mTrackedStream.get(), &TrackedStream::newVideoSource, this, &Stream2DRep3D::trackedStreamChanged);
78  }
79  this->trackedStreamChanged();
80 }
81 
83 {
84  view->getRenderer()->AddActor(mRTStream->getActor());
85 }
86 
88 {
89  view->getRenderer()->RemoveActor(mRTStream->getActor());
90 }
91 
92 void Stream2DRep3D::trackedStreamChanged()
93 {
94  ToolPtr tool = mTrackedStream->getProbeTool();
95  mRTStream->setTool(tool);
96  mRTStream->setRealtimeStream(mTrackedStream->getVideoSource());
97 }
98 
100 {
101  if(!mTrackedStream->getProbeTool())
102  return false;
103  if(!mTrackedStream->getVideoSource())
104  return false;
105  return true;
106 }
107 
108 } //cx
boost::shared_ptr< class SpaceProvider > SpaceProviderPtr
boost::shared_ptr< class Stream2DRep3D > Stream2DRep3DPtr
boost::shared_ptr< class TrackedStream > TrackedStreamPtr
static boost::shared_ptr< REP > wrap_new(REP *object, QString uid)
Definition: cxRepImpl.h:83
void newVideoSource(VideoSourcePtr videoSource)
Display a stream as 2D in 3D.
boost::shared_ptr< class View > ViewPtr
Helper class for displaying a VideoSource.
static Stream2DRep3DPtr New(SpaceProviderPtr spaceProvider, const QString &uid="")
virtual void removeRepActorsFromViewRenderer(ViewPtr view)
void newTool(ToolPtr tool)
virtual void addRepActorsToViewRenderer(ViewPtr view)
Default implementation of Rep.
Definition: cxRepImpl.h:63
cxLogicManager_EXPORT SpaceProviderPtr spaceProvider()
virtual QString getType() const
void setTrackedStream(TrackedStreamPtr trackedStream)
boost::shared_ptr< class Tool > ToolPtr