forked from Kitware/VTK
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvtkIVWriter.cxx
230 lines (200 loc) · 5.68 KB
/
vtkIVWriter.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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/*=========================================================================
Program: Visualization Toolkit
Module: vtkIVWriter.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "vtkIVWriter.h"
#include "vtkAbstractMapper.h"
#include "vtkCellArray.h"
#include "vtkLookupTable.h"
#include "vtkObjectFactory.h"
#include "vtkPolyData.h"
vtkStandardNewMacro(vtkIVWriter);
//----------------------------------------------------------------------------
void vtkIVWriter::WriteData()
{
FILE *fp;
// make sure the user specified a FileName
if ( this->FileName == NULL)
{
vtkErrorMacro(<< "Please specify FileName to use");
return;
}
// try opening the files
fp = fopen(this->FileName,"w");
if (!fp)
{
vtkErrorMacro(<< "unable to open OpenInventor file: " << this->FileName);
return;
}
//
// Write header
//
vtkDebugMacro("Writing OpenInventor file");
fprintf(fp,"#Inventor V2.0 ascii\n");
fprintf(fp,"# OpenInventor file written by the visualization toolkit\n\n");
this->WritePolyData(this->GetInput(), fp);
if (fclose(fp))
{
vtkErrorMacro(<< this->FileName
<< " did not close successfully. Check disk space.");
}
}
//----------------------------------------------------------------------------
void vtkIVWriter::WritePolyData(vtkPolyData *pd, FILE *fp)
{
vtkPoints *points;
vtkIdType i;
vtkCellArray *cells;
vtkIdType npts = 0;
vtkIdType *indx = 0;
vtkUnsignedCharArray *colors=NULL;
int offset=0;
points = pd->GetPoints();
// create colors for vertices
vtkDataArray *scalars = vtkAbstractMapper::
GetScalars(pd, VTK_SCALAR_MODE_USE_POINT_DATA, 0, 0, NULL, offset);
if ( scalars )
{
vtkLookupTable *lut;
if ( (lut=scalars->GetLookupTable()) == NULL )
{
lut = vtkLookupTable::New();
lut->Build();
}
colors = lut->MapScalars(scalars,VTK_COLOR_MODE_DEFAULT,0);
if ( ! scalars->GetLookupTable() )
{
lut->Delete();
}
}
fprintf(fp,"Separator {\n");
// Point data (coordinates)
fprintf(fp,"\tCoordinate3 {\n");
fprintf(fp,"\t\tpoint [\n");
fprintf(fp,"\t\t\t");
for (i=0; i<points->GetNumberOfPoints(); i++)
{
double xyz[3];
points->GetPoint(i, xyz);
fprintf(fp, "%g %g %g, ", xyz[0], xyz[1], xyz[2]);
if (!((i+1)%2))
{
fprintf(fp, "\n\t\t\t");
}
}
fprintf(fp, "\n\t\t]");
fprintf(fp, "\t}\n");
// Per vertex coloring
fprintf(fp,"\tMaterialBinding {\n");
fprintf(fp,"\t\tvalue PER_VERTEX_INDEXED\n");
fprintf(fp,"\t}\n");
// Colors, if any
if (colors)
{
fprintf(fp,"\tMaterial {\n");
fprintf(fp,"\t\tdiffuseColor [\n");
fprintf(fp, "\t\t\t");
for (i=0; i<colors->GetNumberOfTuples(); i++)
{
unsigned char *rgba;
rgba = colors->GetPointer(4*i);
fprintf(fp, "%g %g %g, ", rgba[0]/255.0f,
rgba[1]/255.0f, rgba[2]/255.0f);
if (!((i+1)%2))
{
fprintf(fp, "\n\t\t\t");
}
}
fprintf(fp, "\n\t\t]\n");
fprintf(fp,"\t}\n");
colors->Delete();
}
// write out polys if any
if (pd->GetNumberOfPolys() > 0)
{
fprintf(fp,"\tIndexedFaceSet {\n");
fprintf(fp,"\t\tcoordIndex [\n");
cells = pd->GetPolys();
for (cells->InitTraversal(); cells->GetNextCell(npts,indx); )
{
fprintf(fp, "\t\t\t");
for (i = 0; i < npts; i++)
{
// treating vtkIdType as int
fprintf(fp,"%i, ", (int)indx[i]);
}
fprintf(fp,"-1,\n");
}
fprintf(fp,"\t\t]\n");
fprintf(fp,"\t}\n");
}
// write out lines if any
if (pd->GetNumberOfLines() > 0)
{
fprintf(fp,"\tIndexedLineSet {\n");
fprintf(fp,"\t\tcoordIndex [\n");
cells = pd->GetLines();
for (cells->InitTraversal(); cells->GetNextCell(npts,indx); )
{
fprintf(fp,"\t\t\t");
for (i = 0; i < npts; i++)
{
// treating vtkIdType as int
fprintf(fp,"%i, ", (int)indx[i]);
}
fprintf(fp,"-1,\n");
}
fprintf(fp,"\t\t]\n");
fprintf(fp,"\t}\n");
}
// write out verts if any
if (pd->GetNumberOfVerts() > 0)
{
fprintf(fp,"\tIndexdedPointSet {\n");
fprintf(fp,"\t\tcoordIndex [");
cells = pd->GetVerts();
for (cells->InitTraversal(); cells->GetNextCell(npts,indx); )
{
fprintf(fp,"\t\t\t");
for (i = 0; i < npts; i++)
{
// treating vtkIdType as int
fprintf(fp,"%i, ", (int)indx[i]);
}
fprintf(fp,"-1,\n");
}
fprintf(fp,"\t\t]\n");
fprintf(fp,"\t}\n");
}
// write out tstrips if any
if (pd->GetNumberOfStrips() > 0)
{
fprintf(fp,"\tIndexedTriangleStripSet {\n");
fprintf(fp,"\t\tcoordIndex [\n");
cells = pd->GetStrips();
for (cells->InitTraversal(); cells->GetNextCell(npts,indx); )
{
fprintf(fp,"\t\t\t");
for (i = 0; i < npts; i++)
{
// treating vtkIdType as int
fprintf(fp,"%i, ", (int)indx[i]);
}
fprintf(fp,"-1,\n");
}
fprintf(fp,"\t\t]\n");
fprintf(fp,"\t}\n");
}
fprintf(fp,"}\n"); // close the Shape
}
//----------------------------------------------------------------------------
void vtkIVWriter::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
}