Changeset View
Changeset View
Standalone View
Standalone View
source/blender/collada/DocumentImporter.h
| Show First 20 Lines • Show All 91 Lines • ▼ Show 20 Lines | public: | ||||
| /** This is the method called. The writer hast to prepare to receive data.*/ | /** This is the method called. The writer hast to prepare to receive data.*/ | ||||
| void start(); | void start(); | ||||
| /** This method is called after the last write* method. No other methods will be called after this.*/ | /** This method is called after the last write* method. No other methods will be called after this.*/ | ||||
| void finish(); | void finish(); | ||||
| bool writeGlobalAsset(const COLLADAFW::FileInfo*); | bool writeGlobalAsset(const COLLADAFW::FileInfo*); | ||||
| std::string get_import_version(const COLLADAFW::FileInfo *asset); | |||||
| bool writeScene(const COLLADAFW::Scene*); | bool writeScene(const COLLADAFW::Scene*); | ||||
| bool writeVisualScene(const COLLADAFW::VisualScene*); | bool writeVisualScene(const COLLADAFW::VisualScene*); | ||||
| bool writeLibraryNodes(const COLLADAFW::LibraryNodes*); | bool writeLibraryNodes(const COLLADAFW::LibraryNodes*); | ||||
| bool writeAnimation(const COLLADAFW::Animation*); | bool writeAnimation(const COLLADAFW::Animation*); | ||||
| ▲ Show 20 Lines • Show All 56 Lines • ▼ Show 20 Lines | private: | ||||
| std::multimap<COLLADAFW::UniqueId, Object*> object_map; | std::multimap<COLLADAFW::UniqueId, Object*> object_map; | ||||
| std::map<COLLADAFW::UniqueId, COLLADAFW::Node*> node_map; | std::map<COLLADAFW::UniqueId, COLLADAFW::Node*> node_map; | ||||
| std::vector<const COLLADAFW::VisualScene*> vscenes; | std::vector<const COLLADAFW::VisualScene*> vscenes; | ||||
| std::vector<Object*> libnode_ob; | std::vector<Object*> libnode_ob; | ||||
| std::map<COLLADAFW::UniqueId, COLLADAFW::Node*> root_map; // find root joint by child joint uid, for bone tree evaluation during resampling | std::map<COLLADAFW::UniqueId, COLLADAFW::Node*> root_map; // find root joint by child joint uid, for bone tree evaluation during resampling | ||||
| std::map<COLLADAFW::UniqueId, const COLLADAFW::Object*> FW_object_map; | std::map<COLLADAFW::UniqueId, const COLLADAFW::Object*> FW_object_map; | ||||
| std::string import_from_version; | |||||
| }; | }; | ||||
| #endif | #endif | ||||