-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvtkMRMLRobotDisplayNode.cxx
186 lines (150 loc) · 4.67 KB
/
vtkMRMLRobotDisplayNode.cxx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
/*=auto=========================================================================
Portions (c) Copyright 2005 Brigham and Women's Hospital (BWH) All Rights Reserved.
See Doc/copyright/copyright.txt
or http://www.slicer.org/copyright/copyright.txt for details.
Program: 3D Slicer
Module: $RCSfile: vtkMRMLGradientAnisotropicDiffusionFilterNode.cxx,v $
Date: $Date: 2006/03/17 15:10:10 $
Version: $Revision: 1.2 $
=========================================================================auto=*/
#include "vtkObjectFactory.h"
#include "vtkMRMLRobotDisplayNode.h"
#include "vtkMRMLScene.h"
//------------------------------------------------------------------------------
vtkMRMLRobotDisplayNode* vtkMRMLRobotDisplayNode::New()
{
// First try to create the object from the vtkObjectFactory
vtkObject* ret = vtkObjectFactory::CreateInstance("vtkMRMLRobotDisplayNode");
if(ret)
{
return (vtkMRMLRobotDisplayNode*)ret;
}
// If the factory was unable to create the object, then create it here.
return new vtkMRMLRobotDisplayNode;
}
//----------------------------------------------------------------------------
vtkMRMLNode* vtkMRMLRobotDisplayNode::CreateNodeInstance()
{
// First try to create the object from the vtkObjectFactory
vtkObject* ret = vtkObjectFactory::CreateInstance("vtkMRMLRobotDisplayNode");
if(ret)
{
return (vtkMRMLRobotDisplayNode*)ret;
}
// If the factory was unable to create the object, then create it here.
return new vtkMRMLRobotDisplayNode;
}
//----------------------------------------------------------------------------
vtkMRMLRobotDisplayNode::vtkMRMLRobotDisplayNode()
{
}
//----------------------------------------------------------------------------
vtkMRMLRobotDisplayNode::~vtkMRMLRobotDisplayNode()
{
}
//----------------------------------------------------------------------------
void vtkMRMLRobotDisplayNode::WriteXML(ostream& of, int nIndent)
{
// Start by having the superclass write its information
Superclass::WriteXML(of, nIndent);
//switch (this->Type)
// {
// case TYPE_SERVER:
// of << " connectorType=\"" << "SERVER" << "\" ";
// break;
// case TYPE_CLIENT:
// of << " connectorType=\"" << "CLIENT" << "\" ";
// of << " serverHostname=\"" << this->ServerHostname << "\" ";
// break;
// default:
// of << " connectorType=\"" << "NOT_DEFINED" << "\" ";
// break;
// }
//
//of << " serverPort=\"" << this->ServerPort << "\" ";
//of << " restrictDeviceName=\"" << this->RestrictDeviceName << "\" ";
}
//----------------------------------------------------------------------------
void vtkMRMLRobotDisplayNode::ReadXMLAttributes(const char** atts)
{
vtkMRMLNode::ReadXMLAttributes(atts);
/*
const char* attName;
const char* attValue;
const char* serverHostname = "";
int port = 0;
int type = -1;
int restrictDeviceName = 0;j
while (*atts != NULL)
{
attName = *(atts++);
attValue = *(atts++);
if (!strcmp(attName, "connectorType"))
{
if (!strcmp(attValue, "SERVER"))
{
type = TYPE_SERVER;
}
else if (!strcmp(attValue, "CLIENT"))
{
type = TYPE_CLIENT;
}
else
{
type = TYPE_NOT_DEFINED;
}
}
if (!strcmp(attName, "serverHostname"))
{
serverHostname = attValue;
}
if (!strcmp(attName, "serverPort"))
{
std::stringstream ss;
ss << attValue;
ss >> port;
}
if (!strcmp(attName, "restrictDeviceName"))
{
std::stringstream ss;
ss << attValue;
ss >> restrictDeviceName;;
}
}
switch(type)
{
case TYPE_SERVER:
this->SetTypeServer(port);
this->SetRestrictDeviceName(restrictDeviceName);
break;
case TYPE_CLIENT:
this->SetTypeClient(serverHostname, port);
this->SetRestrictDeviceName(restrictDeviceName);
break;
default: // not defined
// do nothing
break;
}
*/
}
//----------------------------------------------------------------------------
// Copy the node's attributes to this object.
// Does NOT copy: ID, FilePrefix, Name, VolumeID
void vtkMRMLRobotDisplayNode::Copy(vtkMRMLNode *anode)
{
Superclass::Copy(anode);
/*
vtkMRMLRobotDisplayNode *node = (vtkMRMLRobotDisplayNode *) anode;
int type = node->GetType();
*/
}
void vtkMRMLRobotDisplayNode::ProcessMRMLEvents( vtkObject *caller, unsigned long event, void *callData )
{
Superclass::ProcessMRMLEvents(caller, event, callData);
return;
}
//----------------------------------------------------------------------------
void vtkMRMLRobotDisplayNode::PrintSelf(ostream& os, vtkIndent indent)
{
vtkMRMLNode::PrintSelf(os,indent);
}