00001 /*======================================================================= 00002 * Copyright 1991-1996, Silicon Graphics, Inc. 00003 * ALL RIGHTS RESERVED 00004 * 00005 * UNPUBLISHED -- Rights reserved under the copyright laws of the United 00006 * States. Use of a copyright notice is precautionary only and does not 00007 * imply publication or disclosure. 00008 * 00009 * U.S. GOVERNMENT RESTRICTED RIGHTS LEGEND: 00010 * Use, duplication or disclosure by the Government is subject to restrictions 00011 * as set forth in FAR 52.227.19(c)(2) or subparagraph (c)(1)(ii) of the Rights 00012 * in Technical Data and Computer Software clause at DFARS 252.227-7013 and/or 00013 * in similar or successor clauses in the FAR, or the DOD or NASA FAR 00014 * Supplement. Contractor/manufacturer is Silicon Graphics, Inc., 00015 * 2011 N. Shoreline Blvd. Mountain View, CA 94039-7311. 00016 * 00017 * THE CONTENT OF THIS WORK CONTAINS CONFIDENTIAL AND PROPRIETARY 00018 * INFORMATION OF SILICON GRAPHICS, INC. ANY DUPLICATION, MODIFICATION, 00019 * DISTRIBUTION, OR DISCLOSURE IN ANY FORM, IN WHOLE, OR IN PART, IS STRICTLY 00020 * PROHIBITED WITHOUT THE PRIOR EXPRESS WRITTEN PERMISSION OF SILICON 00021 * GRAPHICS, INC. 00022 **=======================================================================*/ 00023 /*======================================================================= 00024 ** Author : SGI (MMM YYYY) 00025 **=======================================================================*/ 00026 /*======================================================================= 00027 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), *** 00028 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. *** 00029 *** *** 00030 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS *** 00031 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR *** 00032 *** WRITTEN AUTHORIZATION OF FEI S.A.S. *** 00033 *** *** 00034 *** RESTRICTED RIGHTS LEGEND *** 00035 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS *** 00036 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN *** 00037 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT *** 00038 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN *** 00039 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. *** 00040 *** *** 00041 *** COPYRIGHT (C) 1996-2020 BY FEI S.A.S, *** 00042 *** BORDEAUX, FRANCE *** 00043 *** ALL RIGHTS RESERVED *** 00044 **=======================================================================*/ 00045 /*======================================================================= 00046 ** Modified by : Pascal DOUX (May 1998) 00047 **=======================================================================*/ 00048 00049 00050 #ifndef _SO_TOVRML2_ACTION_ 00051 #define _SO_TOVRML2_ACTION_ 00052 00053 00054 //------------------------------------------------------------------------------ 00055 // Includes 00056 00057 #include <Inventor/actions/SoAction.h> 00058 #include <Inventor/actions/SoSubAction.h> 00059 #include <Inventor/actions/SoCallbackAction.h> 00060 #include <Inventor/actions/SoToVRMLAction.h> 00061 #include <Inventor/nodes/SoMaterial.h> 00062 #include <Inventor/fields/SoMFFloat.h> 00063 00064 #include <Inventor/SoType.h> 00065 00066 00067 #if defined(OIV_IGNORE_VRML_DEPRECATED) 00068 #include <SoDeprecationRules.h> 00069 #pragma push_macro("SoDEPRECATED_CLASS") 00070 #pragma push_macro("SoDEPRECATED_TYPEDEF") 00071 #undef SoDEPRECATED_CLASS 00072 #undef SoDEPRECATED_TYPEDEF 00073 #define SoDEPRECATED_CLASS(x,y) 00074 #define SoDEPRECATED_TYPEDEF(x,y) 00075 #endif 00076 class SoDEPRECATED SoToVRML2Action : public SoToVRMLAction 00120 { 00121 SO_ACTION_HEADER(SoToVRML2Action); 00122 00123 public: 00124 00128 SoToVRML2Action () ; 00129 00133 ~SoToVRML2Action(); 00134 00136 virtual void apply(SoNode *node); 00138 virtual void apply(SoPath *path) { SoToVRMLAction::apply(path); }; // no warning 00140 virtual void apply(const SoPathList &path_list, SbBool obeys_rules = FALSE) { SoToVRMLAction::apply(path_list, obeys_rules); }; // no warning 00141 00147 SoVRMLGroup *getVRML2SceneGraph() const { return m_newVRML2Root; } 00148 00153 void reuseAppearanceNodes(SbBool appearance) { m_appearance = appearance;} 00158 SbBool doReuseAppearanceNodes() const { return m_appearance; } 00159 00164 void reusePropertyNodes(SbBool property) { m_property = property;} 00169 SbBool doReusePropertyNodes() const { return m_property; } 00170 00174 void reuseGeometryNodes(SbBool geometry) { m_geometry = geometry;} 00178 SbBool doReuseGeometryNodes() const { return m_geometry; } 00179 00180 void expandTexture2Node(SbBool e) { m_expandTextureNodes = e;} 00181 SbBool areTextureNodeExpanded() const { return m_expandTextureNodes;} 00182 00183 private: 00184 static void initClass(); 00185 static void exitClass(); 00186 00187 //private: 00188 private: 00189 00190 // new scene graph 00191 SoVRMLGroup *m_newVRML2Root; 00192 00193 // Reuse flags: if TRUE do not reuse existing appearance nodes, geometry property nodes, 00194 // or geometry nodes. 00195 // default FALSE 00196 SbBool m_appearance, m_property, m_geometry , m_expandTextureNodes; 00197 00198 }; 00199 00200 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 #if defined(OIV_IGNORE_VRML_DEPRECATED) 00212 #pragma pop_macro("SoDEPRECATED_TYPEDEF") 00213 #pragma pop_macro("SoDEPRECATED_CLASS") 00214 #endif 00215 00216 #endif // _SO_TOVRML2_ACTION_ 00217