2016-12-08 19:07:56 +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
|
|
|
|
2016-12-08 19:07:56 +00:00
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use of this software in source and binary forms,
|
|
|
|
with or without modification, are permitted provided that the following
|
|
|
|
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.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
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
|
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
*/
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2020-10-25 09:34:43 +00:00
|
|
|
// Actually just a dummy, used by the compiler to build the pre-compiled header.
|
2015-05-19 03:48:29 +00:00
|
|
|
|
|
|
|
#include "ScenePrivate.h"
|
2020-03-22 11:13:09 +00:00
|
|
|
#include <assimp/scene.h>
|
|
|
|
#include <assimp/version.h>
|
2024-06-12 19:01:03 +00:00
|
|
|
#include <assimp/revision.h>
|
2015-05-19 03:48:29 +00:00
|
|
|
|
|
|
|
// --------------------------------------------------------------------------------
|
2018-05-13 14:35:03 +00:00
|
|
|
// Legal information string - don't remove this.
|
2023-02-01 10:28:11 +00:00
|
|
|
static constexpr char LEGAL_INFORMATION[] =
|
2020-03-22 11:13:09 +00:00
|
|
|
"Open Asset Import Library (Assimp).\n"
|
|
|
|
"A free C/C++ library to import various 3D file formats into applications\n\n"
|
2024-04-07 21:14:12 +00:00
|
|
|
"(c) 2006-2024, Assimp team\n"
|
2020-03-22 11:13:09 +00:00
|
|
|
"License under the terms and conditions of the 3-clause BSD license\n"
|
2020-10-25 09:34:43 +00:00
|
|
|
"https://www.assimp.org\n";
|
2015-05-19 03:48:29 +00:00
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Get legal string
|
2020-03-22 11:13:09 +00:00
|
|
|
ASSIMP_API const char *aiGetLegalString() {
|
2015-05-19 03:57:13 +00:00
|
|
|
return LEGAL_INFORMATION;
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2019-11-22 17:27:34 +00:00
|
|
|
// Get Assimp patch version
|
|
|
|
ASSIMP_API unsigned int aiGetVersionPatch() {
|
2020-03-22 11:13:09 +00:00
|
|
|
return VER_PATCH;
|
2019-11-22 17:27:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2015-05-19 03:48:29 +00:00
|
|
|
// Get Assimp minor version
|
2020-03-22 11:13:09 +00:00
|
|
|
ASSIMP_API unsigned int aiGetVersionMinor() {
|
2019-10-11 15:28:14 +00:00
|
|
|
return VER_MINOR;
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Get Assimp major version
|
2020-03-22 11:13:09 +00:00
|
|
|
ASSIMP_API unsigned int aiGetVersionMajor() {
|
2019-10-11 15:28:14 +00:00
|
|
|
return VER_MAJOR;
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Get flags used for compilation
|
2020-03-22 11:13:09 +00:00
|
|
|
ASSIMP_API unsigned int aiGetCompileFlags() {
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
unsigned int flags = 0;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
|
|
|
#ifdef ASSIMP_BUILD_BOOST_WORKAROUND
|
2015-05-19 03:57:13 +00:00
|
|
|
flags |= ASSIMP_CFLAGS_NOBOOST;
|
2015-05-19 03:48:29 +00:00
|
|
|
#endif
|
|
|
|
#ifdef ASSIMP_BUILD_SINGLETHREADED
|
2015-05-19 03:57:13 +00:00
|
|
|
flags |= ASSIMP_CFLAGS_SINGLETHREADED;
|
2015-05-19 03:48:29 +00:00
|
|
|
#endif
|
|
|
|
#ifdef ASSIMP_BUILD_DEBUG
|
2015-05-19 03:57:13 +00:00
|
|
|
flags |= ASSIMP_CFLAGS_DEBUG;
|
2015-05-19 03:48:29 +00:00
|
|
|
#endif
|
|
|
|
#ifdef ASSIMP_BUILD_DLL_EXPORT
|
2015-05-19 03:57:13 +00:00
|
|
|
flags |= ASSIMP_CFLAGS_SHARED;
|
2015-05-19 03:48:29 +00:00
|
|
|
#endif
|
|
|
|
#ifdef _STLPORT_VERSION
|
2015-05-19 03:57:13 +00:00
|
|
|
flags |= ASSIMP_CFLAGS_STLPORT;
|
2015-05-19 03:48:29 +00:00
|
|
|
#endif
|
2020-08-07 12:23:07 +00:00
|
|
|
#ifdef ASSIMP_DOUBLE_PRECISION
|
|
|
|
flags |= ASSIMP_CFLAGS_DOUBLE_SUPPORT;
|
|
|
|
#endif
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
return flags;
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2017-07-28 20:27:36 +00:00
|
|
|
ASSIMP_API unsigned int aiGetVersionRevision() {
|
2015-05-19 03:48:29 +00:00
|
|
|
return GitVersion;
|
|
|
|
}
|
|
|
|
|
2020-08-07 12:23:07 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2018-01-06 20:52:58 +00:00
|
|
|
ASSIMP_API const char *aiGetBranchName() {
|
|
|
|
return GitBranch;
|
|
|
|
}
|
|
|
|
|