Exporter.cpp 24 KB

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