Exporter.cpp 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594
  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 <assimp/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 ExportSceneGLTF2(const char*, IOSystem*, const aiScene*, const ExportProperties*);
  76. void ExportSceneAssbin(const char*, IOSystem*, const aiScene*, const ExportProperties*);
  77. void ExportSceneAssxml(const char*, IOSystem*, const aiScene*, const ExportProperties*);
  78. void ExportSceneX3D(const char*, IOSystem*, const aiScene*, const ExportProperties*);
  79. // ------------------------------------------------------------------------------------------------
  80. // global array of all export formats which Assimp supports in its current build
  81. Exporter::ExportFormatEntry gExporters[] =
  82. {
  83. #ifndef ASSIMP_BUILD_NO_COLLADA_EXPORTER
  84. Exporter::ExportFormatEntry( "collada", "COLLADA - Digital Asset Exchange Schema", "dae", &ExportSceneCollada),
  85. #endif
  86. #ifndef ASSIMP_BUILD_NO_X_EXPORTER
  87. Exporter::ExportFormatEntry( "x", "X Files", "x", &ExportSceneXFile,
  88. aiProcess_MakeLeftHanded | aiProcess_FlipWindingOrder | aiProcess_FlipUVs),
  89. #endif
  90. #ifndef ASSIMP_BUILD_NO_STEP_EXPORTER
  91. Exporter::ExportFormatEntry( "stp", "Step Files", "stp", &ExportSceneStep, 0),
  92. #endif
  93. #ifndef ASSIMP_BUILD_NO_OBJ_EXPORTER
  94. Exporter::ExportFormatEntry( "obj", "Wavefront OBJ format", "obj", &ExportSceneObj,
  95. aiProcess_GenSmoothNormals /*| aiProcess_PreTransformVertices */),
  96. #endif
  97. #ifndef ASSIMP_BUILD_NO_STL_EXPORTER
  98. Exporter::ExportFormatEntry( "stl", "Stereolithography", "stl" , &ExportSceneSTL,
  99. aiProcess_Triangulate | aiProcess_GenNormals | aiProcess_PreTransformVertices
  100. ),
  101. Exporter::ExportFormatEntry( "stlb", "Stereolithography (binary)", "stl" , &ExportSceneSTLBinary,
  102. aiProcess_Triangulate | aiProcess_GenNormals | aiProcess_PreTransformVertices
  103. ),
  104. #endif
  105. #ifndef ASSIMP_BUILD_NO_PLY_EXPORTER
  106. Exporter::ExportFormatEntry( "ply", "Stanford Polygon Library", "ply" , &ExportScenePly,
  107. aiProcess_PreTransformVertices
  108. ),
  109. Exporter::ExportFormatEntry( "plyb", "Stanford Polygon Library (binary)", "ply", &ExportScenePlyBinary,
  110. aiProcess_PreTransformVertices
  111. ),
  112. #endif
  113. #ifndef ASSIMP_BUILD_NO_3DS_EXPORTER
  114. Exporter::ExportFormatEntry( "3ds", "Autodesk 3DS (legacy)", "3ds" , &ExportScene3DS,
  115. aiProcess_Triangulate | aiProcess_SortByPType | aiProcess_JoinIdenticalVertices),
  116. #endif
  117. #ifndef ASSIMP_BUILD_NO_GLTF_EXPORTER
  118. Exporter::ExportFormatEntry( "gltf", "GL Transmission Format", "gltf", &ExportSceneGLTF,
  119. aiProcess_JoinIdenticalVertices | aiProcess_Triangulate | aiProcess_SortByPType),
  120. Exporter::ExportFormatEntry( "glb", "GL Transmission Format (binary)", "glb", &ExportSceneGLB,
  121. aiProcess_JoinIdenticalVertices | aiProcess_Triangulate | aiProcess_SortByPType),
  122. Exporter::ExportFormatEntry( "gltf2", "GL Transmission Format v. 2", "gltf", &ExportSceneGLTF2,
  123. aiProcess_JoinIdenticalVertices | aiProcess_Triangulate | aiProcess_SortByPType),
  124. #endif
  125. #ifndef ASSIMP_BUILD_NO_ASSBIN_EXPORTER
  126. Exporter::ExportFormatEntry( "assbin", "Assimp Binary", "assbin" , &ExportSceneAssbin, 0),
  127. #endif
  128. #ifndef ASSIMP_BUILD_NO_ASSXML_EXPORTER
  129. Exporter::ExportFormatEntry( "assxml", "Assxml Document", "assxml" , &ExportSceneAssxml, 0),
  130. #endif
  131. #ifndef ASSIMP_BUILD_NO_X3D_EXPORTER
  132. Exporter::ExportFormatEntry( "x3d", "Extensible 3D", "x3d" , &ExportSceneX3D, 0),
  133. #endif
  134. };
  135. #define ASSIMP_NUM_EXPORTERS (sizeof(gExporters)/sizeof(gExporters[0]))
  136. class ExporterPimpl {
  137. public:
  138. ExporterPimpl()
  139. : blob()
  140. , mIOSystem(new Assimp::DefaultIOSystem())
  141. , mIsDefaultIOHandler(true)
  142. {
  143. GetPostProcessingStepInstanceList(mPostProcessingSteps);
  144. // grab all built-in exporters
  145. if ( 0 != ( ASSIMP_NUM_EXPORTERS ) ) {
  146. mExporters.resize( ASSIMP_NUM_EXPORTERS );
  147. std::copy( gExporters, gExporters + ASSIMP_NUM_EXPORTERS, mExporters.begin() );
  148. }
  149. }
  150. ~ExporterPimpl()
  151. {
  152. delete blob;
  153. // Delete all post-processing plug-ins
  154. for( unsigned int a = 0; a < mPostProcessingSteps.size(); a++) {
  155. delete mPostProcessingSteps[a];
  156. }
  157. }
  158. public:
  159. aiExportDataBlob* blob;
  160. std::shared_ptr< Assimp::IOSystem > mIOSystem;
  161. bool mIsDefaultIOHandler;
  162. /** Post processing steps we can apply at the imported data. */
  163. std::vector< BaseProcess* > mPostProcessingSteps;
  164. /** Last fatal export error */
  165. std::string mError;
  166. /** Exporters, this includes those registered using #Assimp::Exporter::RegisterExporter */
  167. std::vector<Exporter::ExportFormatEntry> mExporters;
  168. };
  169. } // end of namespace Assimp
  170. using namespace Assimp;
  171. // ------------------------------------------------------------------------------------------------
  172. Exporter :: Exporter()
  173. : pimpl(new ExporterPimpl()) {
  174. // empty
  175. }
  176. // ------------------------------------------------------------------------------------------------
  177. Exporter::~Exporter() {
  178. FreeBlob();
  179. delete pimpl;
  180. }
  181. // ------------------------------------------------------------------------------------------------
  182. void Exporter::SetIOHandler( IOSystem* pIOHandler) {
  183. pimpl->mIsDefaultIOHandler = !pIOHandler;
  184. pimpl->mIOSystem.reset(pIOHandler);
  185. }
  186. // ------------------------------------------------------------------------------------------------
  187. IOSystem* Exporter::GetIOHandler() const {
  188. return pimpl->mIOSystem.get();
  189. }
  190. // ------------------------------------------------------------------------------------------------
  191. bool Exporter::IsDefaultIOHandler() const {
  192. return pimpl->mIsDefaultIOHandler;
  193. }
  194. // ------------------------------------------------------------------------------------------------
  195. const aiExportDataBlob* Exporter::ExportToBlob( const aiScene* pScene, const char* pFormatId,
  196. unsigned int, const ExportProperties* pProperties ) {
  197. if (pimpl->blob) {
  198. delete pimpl->blob;
  199. pimpl->blob = NULL;
  200. }
  201. std::shared_ptr<IOSystem> old = pimpl->mIOSystem;
  202. BlobIOSystem* blobio = new BlobIOSystem();
  203. pimpl->mIOSystem = std::shared_ptr<IOSystem>( blobio );
  204. if (AI_SUCCESS != Export(pScene,pFormatId,blobio->GetMagicFileName())) {
  205. pimpl->mIOSystem = old;
  206. return NULL;
  207. }
  208. pimpl->blob = blobio->GetBlobChain();
  209. pimpl->mIOSystem = old;
  210. return pimpl->blob;
  211. }
  212. // ------------------------------------------------------------------------------------------------
  213. bool IsVerboseFormat(const aiMesh* mesh) {
  214. // avoid slow vector<bool> specialization
  215. std::vector<unsigned int> seen(mesh->mNumVertices,0);
  216. for(unsigned int i = 0; i < mesh->mNumFaces; ++i) {
  217. const aiFace& f = mesh->mFaces[i];
  218. for(unsigned int j = 0; j < f.mNumIndices; ++j) {
  219. if(++seen[f.mIndices[j]] == 2) {
  220. // found a duplicate index
  221. return false;
  222. }
  223. }
  224. }
  225. return true;
  226. }
  227. // ------------------------------------------------------------------------------------------------
  228. bool IsVerboseFormat(const aiScene* pScene) {
  229. for(unsigned int i = 0; i < pScene->mNumMeshes; ++i) {
  230. if(!IsVerboseFormat(pScene->mMeshes[i])) {
  231. return false;
  232. }
  233. }
  234. return true;
  235. }
  236. // ------------------------------------------------------------------------------------------------
  237. aiReturn Exporter::Export( const aiScene* pScene, const char* pFormatId, const char* pPath, unsigned int pPreprocessing, const ExportProperties* pProperties) {
  238. ASSIMP_BEGIN_EXCEPTION_REGION();
  239. // when they create scenes from scratch, users will likely create them not in verbose
  240. // format. They will likely not be aware that there is a flag in the scene to indicate
  241. // this, however. To avoid surprises and bug reports, we check for duplicates in
  242. // meshes upfront.
  243. const bool is_verbose_format = !(pScene->mFlags & AI_SCENE_FLAGS_NON_VERBOSE_FORMAT) || IsVerboseFormat(pScene);
  244. pimpl->mError = "";
  245. for (size_t i = 0; i < pimpl->mExporters.size(); ++i) {
  246. const Exporter::ExportFormatEntry& exp = pimpl->mExporters[i];
  247. if (!strcmp(exp.mDescription.id,pFormatId)) {
  248. try {
  249. // Always create a full copy of the scene. We might optimize this one day,
  250. // but for now it is the most pragmatic way.
  251. aiScene* scenecopy_tmp = NULL;
  252. SceneCombiner::CopyScene(&scenecopy_tmp,pScene);
  253. std::unique_ptr<aiScene> scenecopy(scenecopy_tmp);
  254. const ScenePrivateData* const priv = ScenePriv(pScene);
  255. // steps that are not idempotent, i.e. we might need to run them again, usually to get back to the
  256. // original state before the step was applied first. When checking which steps we don't need
  257. // to run, those are excluded.
  258. const unsigned int nonIdempotentSteps = aiProcess_FlipWindingOrder | aiProcess_FlipUVs | aiProcess_MakeLeftHanded;
  259. // Erase all pp steps that were already applied to this scene
  260. const unsigned int pp = (exp.mEnforcePP | pPreprocessing) & ~(priv && !priv->mIsCopy
  261. ? (priv->mPPStepsApplied & ~nonIdempotentSteps)
  262. : 0u);
  263. // If no extra post-processing was specified, and we obtained this scene from an
  264. // Assimp importer, apply the reverse steps automatically.
  265. // TODO: either drop this, or document it. Otherwise it is just a bad surprise.
  266. //if (!pPreprocessing && priv) {
  267. // pp |= (nonIdempotentSteps & priv->mPPStepsApplied);
  268. //}
  269. // If the input scene is not in verbose format, but there is at least post-processing step that relies on it,
  270. // we need to run the MakeVerboseFormat step first.
  271. bool must_join_again = false;
  272. if (!is_verbose_format) {
  273. bool verbosify = false;
  274. for( unsigned int a = 0; a < pimpl->mPostProcessingSteps.size(); a++) {
  275. BaseProcess* const p = pimpl->mPostProcessingSteps[a];
  276. if (p->IsActive(pp) && p->RequireVerboseFormat()) {
  277. verbosify = true;
  278. break;
  279. }
  280. }
  281. if (verbosify || (exp.mEnforcePP & aiProcess_JoinIdenticalVertices)) {
  282. DefaultLogger::get()->debug("export: Scene data not in verbose format, applying MakeVerboseFormat step first");
  283. MakeVerboseFormatProcess proc;
  284. proc.Execute(scenecopy.get());
  285. if(!(exp.mEnforcePP & aiProcess_JoinIdenticalVertices)) {
  286. must_join_again = true;
  287. }
  288. }
  289. }
  290. if (pp) {
  291. // the three 'conversion' steps need to be executed first because all other steps rely on the standard data layout
  292. {
  293. FlipWindingOrderProcess step;
  294. if (step.IsActive(pp)) {
  295. step.Execute(scenecopy.get());
  296. }
  297. }
  298. {
  299. FlipUVsProcess step;
  300. if (step.IsActive(pp)) {
  301. step.Execute(scenecopy.get());
  302. }
  303. }
  304. {
  305. MakeLeftHandedProcess step;
  306. if (step.IsActive(pp)) {
  307. step.Execute(scenecopy.get());
  308. }
  309. }
  310. // dispatch other processes
  311. for( unsigned int a = 0; a < pimpl->mPostProcessingSteps.size(); a++) {
  312. BaseProcess* const p = pimpl->mPostProcessingSteps[a];
  313. if (p->IsActive(pp)
  314. && !dynamic_cast<FlipUVsProcess*>(p)
  315. && !dynamic_cast<FlipWindingOrderProcess*>(p)
  316. && !dynamic_cast<MakeLeftHandedProcess*>(p)) {
  317. p->Execute(scenecopy.get());
  318. }
  319. }
  320. ScenePrivateData* const privOut = ScenePriv(scenecopy.get());
  321. ai_assert(privOut);
  322. privOut->mPPStepsApplied |= pp;
  323. }
  324. if(must_join_again) {
  325. JoinVerticesProcess proc;
  326. proc.Execute(scenecopy.get());
  327. }
  328. ExportProperties emptyProperties; // Never pass NULL ExportProperties so Exporters don't have to worry.
  329. exp.mExportFunction(pPath,pimpl->mIOSystem.get(),scenecopy.get(), pProperties ? pProperties : &emptyProperties);
  330. } catch (DeadlyExportError& err) {
  331. pimpl->mError = err.what();
  332. return AI_FAILURE;
  333. }
  334. return AI_SUCCESS;
  335. }
  336. }
  337. pimpl->mError = std::string("Found no exporter to handle this file format: ") + pFormatId;
  338. ASSIMP_END_EXCEPTION_REGION(aiReturn);
  339. return AI_FAILURE;
  340. }
  341. // ------------------------------------------------------------------------------------------------
  342. const char* Exporter::GetErrorString() const {
  343. return pimpl->mError.c_str();
  344. }
  345. // ------------------------------------------------------------------------------------------------
  346. void Exporter::FreeBlob() {
  347. delete pimpl->blob;
  348. pimpl->blob = NULL;
  349. pimpl->mError = "";
  350. }
  351. // ------------------------------------------------------------------------------------------------
  352. const aiExportDataBlob* Exporter::GetBlob() const {
  353. return pimpl->blob;
  354. }
  355. // ------------------------------------------------------------------------------------------------
  356. const aiExportDataBlob* Exporter::GetOrphanedBlob() const {
  357. const aiExportDataBlob* tmp = pimpl->blob;
  358. pimpl->blob = NULL;
  359. return tmp;
  360. }
  361. // ------------------------------------------------------------------------------------------------
  362. size_t Exporter::GetExportFormatCount() const {
  363. return pimpl->mExporters.size();
  364. }
  365. // ------------------------------------------------------------------------------------------------
  366. const aiExportFormatDesc* Exporter::GetExportFormatDescription( size_t index ) const {
  367. if (index >= GetExportFormatCount()) {
  368. return NULL;
  369. }
  370. // Return from static storage if the requested index is built-in.
  371. if (index < sizeof(gExporters) / sizeof(gExporters[0])) {
  372. return &gExporters[index].mDescription;
  373. }
  374. return &pimpl->mExporters[index].mDescription;
  375. }
  376. // ------------------------------------------------------------------------------------------------
  377. aiReturn Exporter::RegisterExporter(const ExportFormatEntry& desc) {
  378. for(const ExportFormatEntry& e : pimpl->mExporters) {
  379. if (!strcmp(e.mDescription.id,desc.mDescription.id)) {
  380. return aiReturn_FAILURE;
  381. }
  382. }
  383. pimpl->mExporters.push_back(desc);
  384. return aiReturn_SUCCESS;
  385. }
  386. // ------------------------------------------------------------------------------------------------
  387. void Exporter::UnregisterExporter(const char* id) {
  388. for(std::vector<ExportFormatEntry>::iterator it = pimpl->mExporters.begin(); it != pimpl->mExporters.end(); ++it) {
  389. if (!strcmp((*it).mDescription.id,id)) {
  390. pimpl->mExporters.erase(it);
  391. break;
  392. }
  393. }
  394. }
  395. // ------------------------------------------------------------------------------------------------
  396. ExportProperties::ExportProperties() {
  397. // empty
  398. }
  399. // ------------------------------------------------------------------------------------------------
  400. ExportProperties::ExportProperties(const ExportProperties &other)
  401. : mIntProperties(other.mIntProperties)
  402. , mFloatProperties(other.mFloatProperties)
  403. , mStringProperties(other.mStringProperties)
  404. , mMatrixProperties(other.mMatrixProperties) {
  405. // empty
  406. }
  407. // ------------------------------------------------------------------------------------------------
  408. // Set a configuration property
  409. bool ExportProperties::SetPropertyInteger(const char* szName, int iValue) {
  410. return SetGenericProperty<int>(mIntProperties, szName,iValue);
  411. }
  412. // ------------------------------------------------------------------------------------------------
  413. // Set a configuration property
  414. bool ExportProperties::SetPropertyFloat(const char* szName, ai_real iValue) {
  415. return SetGenericProperty<ai_real>(mFloatProperties, szName,iValue);
  416. }
  417. // ------------------------------------------------------------------------------------------------
  418. // Set a configuration property
  419. bool ExportProperties :: SetPropertyString(const char* szName, const std::string& value)
  420. {
  421. return SetGenericProperty<std::string>(mStringProperties, szName,value);
  422. }
  423. // ------------------------------------------------------------------------------------------------
  424. // Set a configuration property
  425. bool ExportProperties :: SetPropertyMatrix(const char* szName, const aiMatrix4x4& value)
  426. {
  427. return SetGenericProperty<aiMatrix4x4>(mMatrixProperties, szName,value);
  428. }
  429. // ------------------------------------------------------------------------------------------------
  430. // Get a configuration property
  431. int ExportProperties :: GetPropertyInteger(const char* szName,
  432. int iErrorReturn /*= 0xffffffff*/) const
  433. {
  434. return GetGenericProperty<int>(mIntProperties,szName,iErrorReturn);
  435. }
  436. // ------------------------------------------------------------------------------------------------
  437. // Get a configuration property
  438. ai_real ExportProperties :: GetPropertyFloat(const char* szName,
  439. ai_real iErrorReturn /*= 10e10*/) const
  440. {
  441. return GetGenericProperty<ai_real>(mFloatProperties,szName,iErrorReturn);
  442. }
  443. // ------------------------------------------------------------------------------------------------
  444. // Get a configuration property
  445. const std::string ExportProperties :: GetPropertyString(const char* szName,
  446. const std::string& iErrorReturn /*= ""*/) const
  447. {
  448. return GetGenericProperty<std::string>(mStringProperties,szName,iErrorReturn);
  449. }
  450. // ------------------------------------------------------------------------------------------------
  451. // Has a configuration property
  452. const aiMatrix4x4 ExportProperties :: GetPropertyMatrix(const char* szName,
  453. const aiMatrix4x4& iErrorReturn /*= aiMatrix4x4()*/) const
  454. {
  455. return GetGenericProperty<aiMatrix4x4>(mMatrixProperties,szName,iErrorReturn);
  456. }
  457. // ------------------------------------------------------------------------------------------------
  458. // Has a configuration property
  459. bool ExportProperties :: HasPropertyInteger(const char* szName) const
  460. {
  461. return HasGenericProperty<int>(mIntProperties, szName);
  462. }
  463. // ------------------------------------------------------------------------------------------------
  464. // Has a configuration property
  465. bool ExportProperties :: HasPropertyBool(const char* szName) const
  466. {
  467. return HasGenericProperty<int>(mIntProperties, szName);
  468. }
  469. // ------------------------------------------------------------------------------------------------
  470. // Has a configuration property
  471. bool ExportProperties :: HasPropertyFloat(const char* szName) const
  472. {
  473. return HasGenericProperty<ai_real>(mFloatProperties, szName);
  474. }
  475. // ------------------------------------------------------------------------------------------------
  476. // Has a configuration property
  477. bool ExportProperties :: HasPropertyString(const char* szName) const
  478. {
  479. return HasGenericProperty<std::string>(mStringProperties, szName);
  480. }
  481. // ------------------------------------------------------------------------------------------------
  482. // Has a configuration property
  483. bool ExportProperties :: HasPropertyMatrix(const char* szName) const
  484. {
  485. return HasGenericProperty<aiMatrix4x4>(mMatrixProperties, szName);
  486. }
  487. #endif // !ASSIMP_BUILD_NO_EXPORT