VTK  9.0.1
vtkVRMLImporter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkVRMLImporter.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
54 #ifndef vtkVRMLImporter_h
55 #define vtkVRMLImporter_h
56 
57 #include "vtkIOImportModule.h" // For export macro
58 #include "vtkImporter.h"
59 
60 class vtkActor;
61 class vtkAlgorithm;
62 class vtkProperty;
63 class vtkLight;
64 class vtkTransform;
65 class vtkLookupTable;
66 class vtkFloatArray;
67 class vtkPolyDataMapper;
68 class vtkPoints;
69 class vtkIdTypeArray;
70 class vtkVRMLImporterInternal;
71 class vtkVRMLYaccData;
72 class vtkCellArray;
73 
74 class VTKIOIMPORT_EXPORT vtkVRMLImporter : public vtkImporter
75 {
76 public:
77  static vtkVRMLImporter* New();
78 
79  vtkTypeMacro(vtkVRMLImporter, vtkImporter);
80  void PrintSelf(ostream& os, vtkIndent indent) override;
81 
83 
86  vtkSetStringMacro(FileName);
87  vtkGetStringMacro(FileName);
89 
91 
95  vtkSetMacro(ShapeResolution, int);
96  vtkGetMacro(ShapeResolution, int);
98 
107  vtkObject* GetVRMLDEFObject(const char* name);
108 
113 
114 protected:
115  vtkVRMLImporter();
116  ~vtkVRMLImporter() override;
117 
118  int OpenImportFile();
119  int ImportBegin() override;
120  void ImportEnd() override;
121  void ImportActors(vtkRenderer*) override {}
122  void ImportCameras(vtkRenderer*) override {}
123  void ImportLights(vtkRenderer*) override {}
124  void ImportProperties(vtkRenderer*) override {}
125 
127 
130  virtual void enterNode(const char*);
131  virtual void exitNode();
132  virtual void enterField(const char*);
133  virtual void exitField();
134  virtual void useNode(const char*);
136 
140  FILE* GetFileFD() { return this->FileFD; }
141 
142  char* FileName;
143  FILE* FileFD;
145 
146  friend class vtkVRMLYaccData;
147 
148 private:
149  vtkPoints* PointsNew();
150  vtkFloatArray* FloatArrayNew();
151  vtkIdTypeArray* IdTypeArrayNew();
152 
153  void DeleteObject(vtkObject*);
154 
155  vtkVRMLImporterInternal* Internal;
156  vtkVRMLYaccData* Parser;
157  vtkActor* CurrentActor;
158  vtkProperty* CurrentProperty;
159  vtkLight* CurrentLight;
160  vtkTransform* CurrentTransform;
161  vtkAlgorithm* CurrentSource;
162  vtkPoints* CurrentPoints;
163  vtkFloatArray* CurrentNormals;
164  vtkCellArray* CurrentNormalCells;
165  vtkFloatArray* CurrentTCoords;
166  vtkCellArray* CurrentTCoordCells;
167  vtkLookupTable* CurrentLut;
168  vtkFloatArray* CurrentScalars;
169  vtkPolyDataMapper* CurrentMapper;
170 
171 private:
172  vtkVRMLImporter(const vtkVRMLImporter&) = delete;
173  void operator=(const vtkVRMLImporter&) = delete;
174 };
175 
176 #endif
represents an object (geometry & properties) in a rendered scene
Definition: vtkActor.h:45
void ImportActors(vtkRenderer *) override
abstract base class for most VTK objects
Definition: vtkObject.h:62
represent surface properties of a geometric object
Definition: vtkProperty.h:61
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
FILE * GetFileFD()
Return the file pointer to the open file.
dynamic, self-adjusting array of float
Definition: vtkFloatArray.h:35
map scalar values into colors via a lookup table
void ImportLights(vtkRenderer *) override
abstract specification for renderers
Definition: vtkRenderer.h:67
describes linear transformations via a 4x4 matrix
Definition: vtkTransform.h:54
dynamic, self-adjusting array of vtkIdType
importer abstract class
Definition: vtkImporter.h:59
virtual void ImportEnd()
Definition: vtkImporter.h:140
virtual int ImportBegin()
Definition: vtkImporter.h:139
void ImportProperties(vtkRenderer *) override
Superclass for all sources, filters, and sinks in VTK.
Definition: vtkAlgorithm.h:62
a simple class to control print indentation
Definition: vtkIndent.h:33
a virtual light for 3D rendering
Definition: vtkLight.h:56
virtual std::string GetOutputsDescription()
Recover a printable string that let importer implementation Describe their outputs.
Definition: vtkImporter.h:98
void ImportCameras(vtkRenderer *) override
map vtkPolyData to graphics primitives
object to represent cell connectivity
Definition: vtkCellArray.h:179
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...
imports VRML 2.0 files.
represent and manipulate 3D points
Definition: vtkPoints.h:33