Exporter.cpp 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590
  1. /*
  2. ---------------------------------------------------------------------------
  3. Open Asset Import Library (assimp)
  4. ---------------------------------------------------------------------------
  5. Copyright (c) 2006-2017, assimp team
  6. All rights reserved.
  7. Redistribution and use of this software in source and binary forms,
  8. with or without modification, are permitted provided that the following
  9. conditions are met:
  10. * Redistributions of source code must retain the above
  11. copyright notice, this list of conditions and the
  12. following disclaimer.
  13. * Redistributions in binary form must reproduce the above
  14. copyright notice, this list of conditions and the
  15. following disclaimer in the documentation and/or other
  16. materials provided with the distribution.
  17. * Neither the name of the assimp team, nor the names of its
  18. contributors may be used to endorse or promote products
  19. derived from this software without specific prior
  20. written permission of the assimp team.
  21. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  22. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  23. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  24. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  25. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  26. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  27. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  28. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  29. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  30. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  31. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  32. ---------------------------------------------------------------------------
  33. */
  34. /** @file Exporter.cpp
  35. Assimp export interface. While it's public interface bears many similarities
  36. to the import interface (in fact, it is largely symmetric), the internal
  37. implementations differs a lot. Exporters are considered stateless and are
  38. simple callbacks which we maintain in a global list along with their
  39. description strings.
  40. Here we implement only the C++ interface (Assimp::Exporter).
  41. */
  42. #ifndef ASSIMP_BUILD_NO_EXPORT
  43. #include "BlobIOSystem.h"
  44. #include "SceneCombiner.h"
  45. #include "BaseProcess.h"
  46. #include "Importer.h" // need this for GetPostProcessingStepInstanceList()
  47. #include "JoinVerticesProcess.h"
  48. #include "MakeVerboseFormat.h"
  49. #include "ConvertToLHProcess.h"
  50. #include "Exceptional.h"
  51. #include "ScenePrivate.h"
  52. #include <memory>
  53. #include <assimp/DefaultIOSystem.h>
  54. #include <assimp/Exporter.hpp>
  55. #include <assimp/mesh.h>
  56. #include <assimp/postprocess.h>
  57. #include <assimp/scene.h>
  58. namespace Assimp {
  59. // PostStepRegistry.cpp
  60. void GetPostProcessingStepInstanceList(std::vector< BaseProcess* >& out);
  61. // ------------------------------------------------------------------------------------------------
  62. // Exporter worker function prototypes. Should not be necessary to #ifndef them, it's just a prototype
  63. // do not use const, because some exporter need to convert the scene temporary
  64. void ExportSceneCollada(const char*,IOSystem*, const aiScene*, const ExportProperties*);
  65. void ExportSceneXFile(const char*,IOSystem*, const aiScene*, const ExportProperties*);
  66. void ExportSceneStep(const char*,IOSystem*, const aiScene*, const ExportProperties*);
  67. void ExportSceneObj(const char*,IOSystem*, const aiScene*, const ExportProperties*);
  68. void ExportSceneSTL(const char*,IOSystem*, const aiScene*, const ExportProperties*);
  69. void ExportSceneSTLBinary(const char*,IOSystem*, const aiScene*, const ExportProperties*);
  70. void ExportScenePly(const char*,IOSystem*, const aiScene*, const ExportProperties*);
  71. void ExportScenePlyBinary(const char*, IOSystem*, const aiScene*, const ExportProperties*);
  72. void ExportScene3DS(const char*, IOSystem*, const aiScene*, const ExportProperties*);
  73. void ExportSceneGLTF(const char*, IOSystem*, const aiScene*, const ExportProperties*);
  74. void ExportSceneGLB(const char*, IOSystem*, const aiScene*, const ExportProperties*);
  75. void ExportSceneAssbin(const char*, IOSystem*, const aiScene*, const ExportProperties*);
  76. void ExportSceneAssxml(const char*, IOSystem*, const aiScene*, const ExportProperties*);
  77. void ExportSceneX3D(const char*, IOSystem*, const aiScene*, const ExportProperties*);
  78. // ------------------------------------------------------------------------------------------------
  79. // global array of all export formats which Assimp supports in its current build
  80. Exporter::ExportFormatEntry gExporters[] =
  81. {
  82. #ifndef ASSIMP_BUILD_NO_COLLADA_EXPORTER
  83. Exporter::ExportFormatEntry( "collada", "COLLADA - Digital Asset Exchange Schema", "dae", &ExportSceneCollada),
  84. #endif
  85. #ifndef ASSIMP_BUILD_NO_X_EXPORTER
  86. Exporter::ExportFormatEntry( "x", "X Files", "x", &ExportSceneXFile,
  87. aiProcess_MakeLeftHanded | aiProcess_FlipWindingOrder | aiProcess_FlipUVs),
  88. #endif
  89. #ifndef ASSIMP_BUILD_NO_STEP_EXPORTER
  90. Exporter::ExportFormatEntry( "stp", "Step Files", "stp", &ExportSceneStep, 0),
  91. #endif
  92. #ifndef ASSIMP_BUILD_NO_OBJ_EXPORTER
  93. Exporter::ExportFormatEntry( "obj", "Wavefront OBJ format", "obj", &ExportSceneObj,
  94. aiProcess_GenSmoothNormals /*| aiProcess_PreTransformVertices */),
  95. #endif
  96. #ifndef ASSIMP_BUILD_NO_STL_EXPORTER
  97. Exporter::ExportFormatEntry( "stl", "Stereolithography", "stl" , &ExportSceneSTL,
  98. aiProcess_Triangulate | aiProcess_GenNormals | aiProcess_PreTransformVertices
  99. ),
  100. Exporter::ExportFormatEntry( "stlb", "Stereolithography (binary)", "stl" , &ExportSceneSTLBinary,
  101. aiProcess_Triangulate | aiProcess_GenNormals | aiProcess_PreTransformVertices
  102. ),
  103. #endif
  104. #ifndef ASSIMP_BUILD_NO_PLY_EXPORTER
  105. Exporter::ExportFormatEntry( "ply", "Stanford Polygon Library", "ply" , &ExportScenePly,
  106. aiProcess_PreTransformVertices
  107. ),
  108. Exporter::ExportFormatEntry( "plyb", "Stanford Polygon Library (binary)", "ply", &ExportScenePlyBinary,
  109. aiProcess_PreTransformVertices
  110. ),
  111. #endif
  112. #ifndef ASSIMP_BUILD_NO_3DS_EXPORTER
  113. Exporter::ExportFormatEntry( "3ds", "Autodesk 3DS (legacy)", "3ds" , &ExportScene3DS,
  114. aiProcess_Triangulate | aiProcess_SortByPType | aiProcess_JoinIdenticalVertices),
  115. #endif
  116. #ifndef ASSIMP_BUILD_NO_GLTF_EXPORTER
  117. Exporter::ExportFormatEntry( "gltf", "GL Transmission Format", "gltf", &ExportSceneGLTF,
  118. aiProcess_JoinIdenticalVertices | aiProcess_Triangulate | aiProcess_SortByPType),
  119. Exporter::ExportFormatEntry( "glb", "GL Transmission Format (binary)", "glb", &ExportSceneGLB,
  120. aiProcess_JoinIdenticalVertices | aiProcess_Triangulate | aiProcess_SortByPType),
  121. #endif
  122. #ifndef ASSIMP_BUILD_NO_ASSBIN_EXPORTER
  123. Exporter::ExportFormatEntry( "assbin", "Assimp Binary", "assbin" , &ExportSceneAssbin, 0),
  124. #endif
  125. #ifndef ASSIMP_BUILD_NO_ASSXML_EXPORTER
  126. Exporter::ExportFormatEntry( "assxml", "Assxml Document", "assxml" , &ExportSceneAssxml, 0),
  127. #endif
  128. #ifndef ASSIMP_BUILD_NO_X3D_EXPORTER
  129. Exporter::ExportFormatEntry( "x3d", "Extensible 3D", "x3d" , &ExportSceneX3D, 0),
  130. #endif
  131. };
  132. #define ASSIMP_NUM_EXPORTERS (sizeof(gExporters)/sizeof(gExporters[0]))
  133. class ExporterPimpl {
  134. public:
  135. ExporterPimpl()
  136. : blob()
  137. , mIOSystem(new Assimp::DefaultIOSystem())
  138. , mIsDefaultIOHandler(true)
  139. {
  140. GetPostProcessingStepInstanceList(mPostProcessingSteps);
  141. // grab all built-in exporters
  142. mExporters.resize(ASSIMP_NUM_EXPORTERS);
  143. std::copy(gExporters,gExporters+ASSIMP_NUM_EXPORTERS,mExporters.begin());
  144. }
  145. ~ExporterPimpl()
  146. {
  147. delete blob;
  148. // Delete all post-processing plug-ins
  149. for( unsigned int a = 0; a < mPostProcessingSteps.size(); a++) {
  150. delete mPostProcessingSteps[a];
  151. }
  152. }
  153. public:
  154. aiExportDataBlob* blob;
  155. std::shared_ptr< Assimp::IOSystem > mIOSystem;
  156. bool mIsDefaultIOHandler;
  157. /** Post processing steps we can apply at the imported data. */
  158. std::vector< BaseProcess* > mPostProcessingSteps;
  159. /** Last fatal export error */
  160. std::string mError;
  161. /** Exporters, this includes those registered using #Assimp::Exporter::RegisterExporter */
  162. std::vector<Exporter::ExportFormatEntry> mExporters;
  163. };
  164. } // end of namespace Assimp
  165. using namespace Assimp;
  166. // ------------------------------------------------------------------------------------------------
  167. Exporter :: Exporter()
  168. : pimpl(new ExporterPimpl()) {
  169. // empty
  170. }
  171. // ------------------------------------------------------------------------------------------------
  172. Exporter::~Exporter() {
  173. FreeBlob();
  174. delete pimpl;
  175. }
  176. // ------------------------------------------------------------------------------------------------
  177. void Exporter::SetIOHandler( IOSystem* pIOHandler) {
  178. pimpl->mIsDefaultIOHandler = !pIOHandler;
  179. pimpl->mIOSystem.reset(pIOHandler);
  180. }
  181. // ------------------------------------------------------------------------------------------------
  182. IOSystem* Exporter::GetIOHandler() const {
  183. return pimpl->mIOSystem.get();
  184. }
  185. // ------------------------------------------------------------------------------------------------
  186. bool Exporter::IsDefaultIOHandler() const {
  187. return pimpl->mIsDefaultIOHandler;
  188. }
  189. // ------------------------------------------------------------------------------------------------
  190. const aiExportDataBlob* Exporter::ExportToBlob( const aiScene* pScene, const char* pFormatId,
  191. unsigned int, const ExportProperties* pProperties ) {
  192. if (pimpl->blob) {
  193. delete pimpl->blob;
  194. pimpl->blob = NULL;
  195. }
  196. std::shared_ptr<IOSystem> old = pimpl->mIOSystem;
  197. BlobIOSystem* blobio = new BlobIOSystem();
  198. pimpl->mIOSystem = std::shared_ptr<IOSystem>( blobio );
  199. if (AI_SUCCESS != Export(pScene,pFormatId,blobio->GetMagicFileName())) {
  200. pimpl->mIOSystem = old;
  201. return NULL;
  202. }
  203. pimpl->blob = blobio->GetBlobChain();
  204. pimpl->mIOSystem = old;
  205. return pimpl->blob;
  206. }
  207. // ------------------------------------------------------------------------------------------------
  208. bool IsVerboseFormat(const aiMesh* mesh) {
  209. // avoid slow vector<bool> specialization
  210. std::vector<unsigned int> seen(mesh->mNumVertices,0);
  211. for(unsigned int i = 0; i < mesh->mNumFaces; ++i) {
  212. const aiFace& f = mesh->mFaces[i];
  213. for(unsigned int j = 0; j < f.mNumIndices; ++j) {
  214. if(++seen[f.mIndices[j]] == 2) {
  215. // found a duplicate index
  216. return false;
  217. }
  218. }
  219. }
  220. return true;
  221. }
  222. // ------------------------------------------------------------------------------------------------
  223. bool IsVerboseFormat(const aiScene* pScene) {
  224. for(unsigned int i = 0; i < pScene->mNumMeshes; ++i) {
  225. if(!IsVerboseFormat(pScene->mMeshes[i])) {
  226. return false;
  227. }
  228. }
  229. return true;
  230. }
  231. // ------------------------------------------------------------------------------------------------
  232. aiReturn Exporter::Export( const aiScene* pScene, const char* pFormatId, const char* pPath, unsigned int pPreprocessing, const ExportProperties* pProperties) {
  233. ASSIMP_BEGIN_EXCEPTION_REGION();
  234. // when they create scenes from scratch, users will likely create them not in verbose
  235. // format. They will likely not be aware that there is a flag in the scene to indicate
  236. // this, however. To avoid surprises and bug reports, we check for duplicates in
  237. // meshes upfront.
  238. const bool is_verbose_format = !(pScene->mFlags & AI_SCENE_FLAGS_NON_VERBOSE_FORMAT) || IsVerboseFormat(pScene);
  239. pimpl->mError = "";
  240. for (size_t i = 0; i < pimpl->mExporters.size(); ++i) {
  241. const Exporter::ExportFormatEntry& exp = pimpl->mExporters[i];
  242. if (!strcmp(exp.mDescription.id,pFormatId)) {
  243. try {
  244. // Always create a full copy of the scene. We might optimize this one day,
  245. // but for now it is the most pragmatic way.
  246. aiScene* scenecopy_tmp = NULL;
  247. SceneCombiner::CopyScene(&scenecopy_tmp,pScene);
  248. std::unique_ptr<aiScene> scenecopy(scenecopy_tmp);
  249. const ScenePrivateData* const priv = ScenePriv(pScene);
  250. // steps that are not idempotent, i.e. we might need to run them again, usually to get back to the
  251. // original state before the step was applied first. When checking which steps we don't need
  252. // to run, those are excluded.
  253. const unsigned int nonIdempotentSteps = aiProcess_FlipWindingOrder | aiProcess_FlipUVs | aiProcess_MakeLeftHanded;
  254. // Erase all pp steps that were already applied to this scene
  255. const unsigned int pp = (exp.mEnforcePP | pPreprocessing) & ~(priv && !priv->mIsCopy
  256. ? (priv->mPPStepsApplied & ~nonIdempotentSteps)
  257. : 0u);
  258. // If no extra post-processing was specified, and we obtained this scene from an
  259. // Assimp importer, apply the reverse steps automatically.
  260. // TODO: either drop this, or document it. Otherwise it is just a bad surprise.
  261. //if (!pPreprocessing && priv) {
  262. // pp |= (nonIdempotentSteps & priv->mPPStepsApplied);
  263. //}
  264. // If the input scene is not in verbose format, but there is at least post-processing step that relies on it,
  265. // we need to run the MakeVerboseFormat step first.
  266. bool must_join_again = false;
  267. if (!is_verbose_format) {
  268. bool verbosify = false;
  269. for( unsigned int a = 0; a < pimpl->mPostProcessingSteps.size(); a++) {
  270. BaseProcess* const p = pimpl->mPostProcessingSteps[a];
  271. if (p->IsActive(pp) && p->RequireVerboseFormat()) {
  272. verbosify = true;
  273. break;
  274. }
  275. }
  276. if (verbosify || (exp.mEnforcePP & aiProcess_JoinIdenticalVertices)) {
  277. DefaultLogger::get()->debug("export: Scene data not in verbose format, applying MakeVerboseFormat step first");
  278. MakeVerboseFormatProcess proc;
  279. proc.Execute(scenecopy.get());
  280. if(!(exp.mEnforcePP & aiProcess_JoinIdenticalVertices)) {
  281. must_join_again = true;
  282. }
  283. }
  284. }
  285. if (pp) {
  286. // the three 'conversion' steps need to be executed first because all other steps rely on the standard data layout
  287. {
  288. FlipWindingOrderProcess step;
  289. if (step.IsActive(pp)) {
  290. step.Execute(scenecopy.get());
  291. }
  292. }
  293. {
  294. FlipUVsProcess step;
  295. if (step.IsActive(pp)) {
  296. step.Execute(scenecopy.get());
  297. }
  298. }
  299. {
  300. MakeLeftHandedProcess step;
  301. if (step.IsActive(pp)) {
  302. step.Execute(scenecopy.get());
  303. }
  304. }
  305. // dispatch other processes
  306. for( unsigned int a = 0; a < pimpl->mPostProcessingSteps.size(); a++) {
  307. BaseProcess* const p = pimpl->mPostProcessingSteps[a];
  308. if (p->IsActive(pp)
  309. && !dynamic_cast<FlipUVsProcess*>(p)
  310. && !dynamic_cast<FlipWindingOrderProcess*>(p)
  311. && !dynamic_cast<MakeLeftHandedProcess*>(p)) {
  312. p->Execute(scenecopy.get());
  313. }
  314. }
  315. ScenePrivateData* const privOut = ScenePriv(scenecopy.get());
  316. ai_assert(privOut);
  317. privOut->mPPStepsApplied |= pp;
  318. }
  319. if(must_join_again) {
  320. JoinVerticesProcess proc;
  321. proc.Execute(scenecopy.get());
  322. }
  323. ExportProperties emptyProperties; // Never pass NULL ExportProperties so Exporters don't have to worry.
  324. exp.mExportFunction(pPath,pimpl->mIOSystem.get(),scenecopy.get(), pProperties ? pProperties : &emptyProperties);
  325. } catch (DeadlyExportError& err) {
  326. pimpl->mError = err.what();
  327. return AI_FAILURE;
  328. }
  329. return AI_SUCCESS;
  330. }
  331. }
  332. pimpl->mError = std::string("Found no exporter to handle this file format: ") + pFormatId;
  333. ASSIMP_END_EXCEPTION_REGION(aiReturn);
  334. return AI_FAILURE;
  335. }
  336. // ------------------------------------------------------------------------------------------------
  337. const char* Exporter::GetErrorString() const {
  338. return pimpl->mError.c_str();
  339. }
  340. // ------------------------------------------------------------------------------------------------
  341. void Exporter::FreeBlob() {
  342. delete pimpl->blob;
  343. pimpl->blob = NULL;
  344. pimpl->mError = "";
  345. }
  346. // ------------------------------------------------------------------------------------------------
  347. const aiExportDataBlob* Exporter::GetBlob() const {
  348. return pimpl->blob;
  349. }
  350. // ------------------------------------------------------------------------------------------------
  351. const aiExportDataBlob* Exporter::GetOrphanedBlob() const {
  352. const aiExportDataBlob* tmp = pimpl->blob;
  353. pimpl->blob = NULL;
  354. return tmp;
  355. }
  356. // ------------------------------------------------------------------------------------------------
  357. size_t Exporter::GetExportFormatCount() const {
  358. return pimpl->mExporters.size();
  359. }
  360. // ------------------------------------------------------------------------------------------------
  361. const aiExportFormatDesc* Exporter::GetExportFormatDescription( size_t index ) const {
  362. if (index >= GetExportFormatCount()) {
  363. return NULL;
  364. }
  365. // Return from static storage if the requested index is built-in.
  366. if (index < sizeof(gExporters) / sizeof(gExporters[0])) {
  367. return &gExporters[index].mDescription;
  368. }
  369. return &pimpl->mExporters[index].mDescription;
  370. }
  371. // ------------------------------------------------------------------------------------------------
  372. aiReturn Exporter::RegisterExporter(const ExportFormatEntry& desc) {
  373. for(const ExportFormatEntry& e : pimpl->mExporters) {
  374. if (!strcmp(e.mDescription.id,desc.mDescription.id)) {
  375. return aiReturn_FAILURE;
  376. }
  377. }
  378. pimpl->mExporters.push_back(desc);
  379. return aiReturn_SUCCESS;
  380. }
  381. // ------------------------------------------------------------------------------------------------
  382. void Exporter::UnregisterExporter(const char* id) {
  383. for(std::vector<ExportFormatEntry>::iterator it = pimpl->mExporters.begin(); it != pimpl->mExporters.end(); ++it) {
  384. if (!strcmp((*it).mDescription.id,id)) {
  385. pimpl->mExporters.erase(it);
  386. break;
  387. }
  388. }
  389. }
  390. // ------------------------------------------------------------------------------------------------
  391. ExportProperties::ExportProperties() {
  392. // empty
  393. }
  394. // ------------------------------------------------------------------------------------------------
  395. ExportProperties::ExportProperties(const ExportProperties &other)
  396. : mIntProperties(other.mIntProperties)
  397. , mFloatProperties(other.mFloatProperties)
  398. , mStringProperties(other.mStringProperties)
  399. , mMatrixProperties(other.mMatrixProperties) {
  400. // empty
  401. }
  402. // ------------------------------------------------------------------------------------------------
  403. // Set a configuration property
  404. bool ExportProperties::SetPropertyInteger(const char* szName, int iValue) {
  405. return SetGenericProperty<int>(mIntProperties, szName,iValue);
  406. }
  407. // ------------------------------------------------------------------------------------------------
  408. // Set a configuration property
  409. bool ExportProperties::SetPropertyFloat(const char* szName, ai_real iValue) {
  410. return SetGenericProperty<ai_real>(mFloatProperties, szName,iValue);
  411. }
  412. // ------------------------------------------------------------------------------------------------
  413. // Set a configuration property
  414. bool ExportProperties :: SetPropertyString(const char* szName, const std::string& value)
  415. {
  416. return SetGenericProperty<std::string>(mStringProperties, szName,value);
  417. }
  418. // ------------------------------------------------------------------------------------------------
  419. // Set a configuration property
  420. bool ExportProperties :: SetPropertyMatrix(const char* szName, const aiMatrix4x4& value)
  421. {
  422. return SetGenericProperty<aiMatrix4x4>(mMatrixProperties, szName,value);
  423. }
  424. // ------------------------------------------------------------------------------------------------
  425. // Get a configuration property
  426. int ExportProperties :: GetPropertyInteger(const char* szName,
  427. int iErrorReturn /*= 0xffffffff*/) const
  428. {
  429. return GetGenericProperty<int>(mIntProperties,szName,iErrorReturn);
  430. }
  431. // ------------------------------------------------------------------------------------------------
  432. // Get a configuration property
  433. ai_real ExportProperties :: GetPropertyFloat(const char* szName,
  434. ai_real iErrorReturn /*= 10e10*/) const
  435. {
  436. return GetGenericProperty<ai_real>(mFloatProperties,szName,iErrorReturn);
  437. }
  438. // ------------------------------------------------------------------------------------------------
  439. // Get a configuration property
  440. const std::string ExportProperties :: GetPropertyString(const char* szName,
  441. const std::string& iErrorReturn /*= ""*/) const
  442. {
  443. return GetGenericProperty<std::string>(mStringProperties,szName,iErrorReturn);
  444. }
  445. // ------------------------------------------------------------------------------------------------
  446. // Has a configuration property
  447. const aiMatrix4x4 ExportProperties :: GetPropertyMatrix(const char* szName,
  448. const aiMatrix4x4& iErrorReturn /*= aiMatrix4x4()*/) const
  449. {
  450. return GetGenericProperty<aiMatrix4x4>(mMatrixProperties,szName,iErrorReturn);
  451. }
  452. // ------------------------------------------------------------------------------------------------
  453. // Has a configuration property
  454. bool ExportProperties :: HasPropertyInteger(const char* szName) const
  455. {
  456. return HasGenericProperty<int>(mIntProperties, szName);
  457. }
  458. // ------------------------------------------------------------------------------------------------
  459. // Has a configuration property
  460. bool ExportProperties :: HasPropertyBool(const char* szName) const
  461. {
  462. return HasGenericProperty<int>(mIntProperties, szName);
  463. }
  464. // ------------------------------------------------------------------------------------------------
  465. // Has a configuration property
  466. bool ExportProperties :: HasPropertyFloat(const char* szName) const
  467. {
  468. return HasGenericProperty<ai_real>(mFloatProperties, szName);
  469. }
  470. // ------------------------------------------------------------------------------------------------
  471. // Has a configuration property
  472. bool ExportProperties :: HasPropertyString(const char* szName) const
  473. {
  474. return HasGenericProperty<std::string>(mStringProperties, szName);
  475. }
  476. // ------------------------------------------------------------------------------------------------
  477. // Has a configuration property
  478. bool ExportProperties :: HasPropertyMatrix(const char* szName) const
  479. {
  480. return HasGenericProperty<aiMatrix4x4>(mMatrixProperties, szName);
  481. }
  482. #endif // !ASSIMP_BUILD_NO_EXPORT