2015-05-19 03:48:29 +00:00
|
|
|
/*
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
Open Asset Import Library (assimp)
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
2024-02-23 21:30:05 +00:00
|
|
|
Copyright (c) 2006-2024, assimp team
|
2018-01-28 18:42:05 +00:00
|
|
|
|
2015-05-19 03:48:29 +00:00
|
|
|
All rights reserved.
|
|
|
|
|
2015-05-19 03:52:10 +00:00
|
|
|
Redistribution and use of this software in source and binary forms,
|
|
|
|
with or without modification, are permitted provided that the following
|
2015-05-19 03:48:29 +00:00
|
|
|
conditions are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above
|
|
|
|
copyright notice, this list of conditions and the
|
|
|
|
following disclaimer.
|
|
|
|
|
|
|
|
* Redistributions in binary form must reproduce the above
|
|
|
|
copyright notice, this list of conditions and the
|
|
|
|
following disclaimer in the documentation and/or other
|
|
|
|
materials provided with the distribution.
|
|
|
|
|
|
|
|
* Neither the name of the assimp team, nor the names of its
|
|
|
|
contributors may be used to endorse or promote products
|
|
|
|
derived from this software without specific prior
|
|
|
|
written permission of the assimp team.
|
|
|
|
|
2015-05-19 03:52:10 +00:00
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
2015-05-19 03:48:29 +00:00
|
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
2015-05-19 03:52:10 +00:00
|
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
2015-05-19 03:48:29 +00:00
|
|
|
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
2015-05-19 03:52:10 +00:00
|
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
2015-05-19 03:48:29 +00:00
|
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
2015-05-19 03:52:10 +00:00
|
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
2015-05-19 03:48:29 +00:00
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @file AssimpCExport.cpp
|
|
|
|
Assimp C export interface. See Exporter.cpp for some notes.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ASSIMP_BUILD_NO_EXPORT
|
2017-06-21 13:24:06 +00:00
|
|
|
|
2015-05-19 03:48:29 +00:00
|
|
|
#include "CInterfaceIOWrapper.h"
|
2019-06-10 21:26:00 +00:00
|
|
|
#include "Common/ScenePrivate.h"
|
2020-06-23 19:05:42 +00:00
|
|
|
#include <assimp/SceneCombiner.h>
|
2016-06-06 20:04:29 +00:00
|
|
|
#include <assimp/Exporter.hpp>
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2023-03-10 08:00:37 +00:00
|
|
|
using namespace Assimp;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2020-06-23 19:05:42 +00:00
|
|
|
ASSIMP_API size_t aiGetExportFormatCount(void) {
|
2015-05-19 03:57:13 +00:00
|
|
|
return Exporter().GetExportFormatCount();
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2020-06-23 19:05:42 +00:00
|
|
|
ASSIMP_API const aiExportFormatDesc *aiGetExportFormatDescription(size_t index) {
|
2015-11-23 20:28:35 +00:00
|
|
|
// Note: this is valid as the index always pertains to a built-in exporter,
|
2015-05-19 03:57:13 +00:00
|
|
|
// for which the returned structure is guaranteed to be of static storage duration.
|
2015-11-24 04:50:25 +00:00
|
|
|
Exporter exporter;
|
2020-06-23 19:05:42 +00:00
|
|
|
const aiExportFormatDesc *orig(exporter.GetExportFormatDescription(index));
|
|
|
|
if (nullptr == orig) {
|
|
|
|
return nullptr;
|
2015-11-23 20:28:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
aiExportFormatDesc *desc = new aiExportFormatDesc;
|
2020-06-23 19:05:42 +00:00
|
|
|
desc->description = new char[strlen(orig->description) + 1]();
|
|
|
|
::memcpy((char *)desc->description, orig->description, strlen(orig->description));
|
|
|
|
desc->fileExtension = new char[strlen(orig->fileExtension) + 1]();
|
|
|
|
::memcpy((char *)desc->fileExtension, orig->fileExtension, strlen(orig->fileExtension));
|
|
|
|
desc->id = new char[strlen(orig->id) + 1]();
|
|
|
|
::memcpy((char *)desc->id, orig->id, strlen(orig->id));
|
2015-11-23 20:28:35 +00:00
|
|
|
|
|
|
|
return desc;
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
2015-11-23 20:28:35 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2020-06-23 19:05:42 +00:00
|
|
|
ASSIMP_API void aiReleaseExportFormatDescription(const aiExportFormatDesc *desc) {
|
|
|
|
if (nullptr == desc) {
|
2015-11-23 20:28:35 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
delete[] desc->description;
|
|
|
|
delete[] desc->fileExtension;
|
|
|
|
delete[] desc->id;
|
2015-11-23 20:28:35 +00:00
|
|
|
delete desc;
|
|
|
|
}
|
2015-05-19 03:48:29 +00:00
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2020-06-23 19:05:42 +00:00
|
|
|
ASSIMP_API void aiCopyScene(const aiScene *pIn, aiScene **pOut) {
|
2015-05-19 03:57:13 +00:00
|
|
|
if (!pOut || !pIn) {
|
|
|
|
return;
|
|
|
|
}
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
SceneCombiner::CopyScene(pOut, pIn, true);
|
2015-05-19 03:57:13 +00:00
|
|
|
ScenePriv(*pOut)->mIsCopy = true;
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2020-06-23 19:05:42 +00:00
|
|
|
ASSIMP_API void aiFreeScene(const C_STRUCT aiScene *pIn) {
|
2015-05-19 03:57:13 +00:00
|
|
|
// note: aiReleaseImport() is also able to delete scene copies, but in addition
|
|
|
|
// it also handles scenes with import metadata.
|
|
|
|
delete pIn;
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2020-06-23 19:05:42 +00:00
|
|
|
ASSIMP_API aiReturn aiExportScene(const aiScene *pScene, const char *pFormatId, const char *pFileName, unsigned int pPreprocessing) {
|
|
|
|
return ::aiExportSceneEx(pScene, pFormatId, pFileName, nullptr, pPreprocessing);
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2020-06-23 19:05:42 +00:00
|
|
|
ASSIMP_API aiReturn aiExportSceneEx(const aiScene *pScene, const char *pFormatId, const char *pFileName, aiFileIO *pIO, unsigned int pPreprocessing) {
|
2015-05-19 03:57:13 +00:00
|
|
|
Exporter exp;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
if (pIO) {
|
|
|
|
exp.SetIOHandler(new CIOSystemWrapper(pIO));
|
|
|
|
}
|
2020-06-23 19:05:42 +00:00
|
|
|
return exp.Export(pScene, pFormatId, pFileName, pPreprocessing);
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2020-06-23 19:05:42 +00:00
|
|
|
ASSIMP_API const C_STRUCT aiExportDataBlob *aiExportSceneToBlob(const aiScene *pScene, const char *pFormatId, unsigned int pPreprocessing) {
|
2015-05-19 03:57:13 +00:00
|
|
|
Exporter exp;
|
2020-06-23 19:05:42 +00:00
|
|
|
if (!exp.ExportToBlob(pScene, pFormatId, pPreprocessing)) {
|
|
|
|
return nullptr;
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
2020-06-23 19:05:42 +00:00
|
|
|
const aiExportDataBlob *blob = exp.GetOrphanedBlob();
|
2015-05-19 03:57:13 +00:00
|
|
|
ai_assert(blob);
|
|
|
|
|
|
|
|
return blob;
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2020-06-23 19:05:42 +00:00
|
|
|
ASSIMP_API C_STRUCT void aiReleaseExportBlob(const aiExportDataBlob *pData) {
|
2015-05-19 03:57:13 +00:00
|
|
|
delete pData;
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // !ASSIMP_BUILD_NO_EXPORT
|