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
|
2015-05-19 03:48:29 +00:00
|
|
|
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.
|
|
|
|
|
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 Importer.h mostly internal stuff for use by #Assimp::Importer */
|
2016-11-11 11:49:05 +00:00
|
|
|
#pragma once
|
2015-05-19 03:48:29 +00:00
|
|
|
#ifndef INCLUDED_AI_IMPORTER_H
|
|
|
|
#define INCLUDED_AI_IMPORTER_H
|
|
|
|
|
2021-01-24 09:04:46 +00:00
|
|
|
#include <exception>
|
2015-05-19 03:48:29 +00:00
|
|
|
#include <map>
|
|
|
|
#include <vector>
|
2017-03-08 08:55:44 +00:00
|
|
|
#include <string>
|
2016-06-06 20:04:29 +00:00
|
|
|
#include <assimp/matrix4x4.h>
|
2015-05-19 03:48:29 +00:00
|
|
|
|
|
|
|
struct aiScene;
|
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
namespace Assimp {
|
|
|
|
class ProgressHandler;
|
|
|
|
class IOSystem;
|
|
|
|
class BaseImporter;
|
|
|
|
class BaseProcess;
|
|
|
|
class SharedPostProcessInfo;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:48:29 +00:00
|
|
|
//! @cond never
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
/** @brief Internal PIMPL implementation for Assimp::Importer
|
|
|
|
*
|
|
|
|
* Using this idiom here allows us to drop the dependency from
|
|
|
|
* std::vector and std::map in the public headers. Furthermore we are dropping
|
|
|
|
* any STL interface problems caused by mismatching STL settings. All
|
|
|
|
* size calculation are now done by us, not the app heap. */
|
2018-04-08 19:27:18 +00:00
|
|
|
class ImporterPimpl {
|
2015-05-19 03:48:29 +00:00
|
|
|
public:
|
2015-05-19 03:57:13 +00:00
|
|
|
// Data type to store the key hash
|
|
|
|
typedef unsigned int KeyType;
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2021-10-06 12:41:45 +00:00
|
|
|
// typedefs for our configuration maps.
|
2024-04-07 19:42:52 +00:00
|
|
|
using IntPropertyMap = std::map<KeyType, int>;
|
|
|
|
using FloatPropertyMap = std::map<KeyType, ai_real>;
|
|
|
|
using StringPropertyMap = std::map<KeyType, std::string>;
|
|
|
|
using MatrixPropertyMap = std::map<KeyType, aiMatrix4x4>;
|
|
|
|
using PointerPropertyMap = std::map<KeyType, void*>;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/** IO handler to use for all file accesses. */
|
|
|
|
IOSystem* mIOHandler;
|
|
|
|
bool mIsDefaultHandler;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/** Progress handler for feedback. */
|
|
|
|
ProgressHandler* mProgressHandler;
|
|
|
|
bool mIsDefaultProgressHandler;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/** Format-specific importer worker objects - one for each format we can read.*/
|
|
|
|
std::vector< BaseImporter* > mImporter;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/** Post processing steps we can apply at the imported data. */
|
|
|
|
std::vector< BaseProcess* > mPostProcessingSteps;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
/** The imported data, if ReadFile() was successful, nullptr otherwise. */
|
2015-05-19 03:57:13 +00:00
|
|
|
aiScene* mScene;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2020-08-20 13:32:15 +00:00
|
|
|
/** The error description, if there was one. In the case of an exception,
|
|
|
|
* mException will carry the full details. */
|
2015-05-19 03:57:13 +00:00
|
|
|
std::string mErrorString;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2020-08-18 17:14:51 +00:00
|
|
|
/** Any exception which occurred */
|
|
|
|
std::exception_ptr mException;
|
2020-07-23 14:07:24 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/** List of integer properties */
|
|
|
|
IntPropertyMap mIntProperties;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/** List of floating-point properties */
|
|
|
|
FloatPropertyMap mFloatProperties;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/** List of string properties */
|
|
|
|
StringPropertyMap mStringProperties;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/** List of Matrix properties */
|
|
|
|
MatrixPropertyMap mMatrixProperties;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2021-10-06 12:41:45 +00:00
|
|
|
/** List of pointer properties */
|
|
|
|
PointerPropertyMap mPointerProperties;
|
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/** Used for testing - extra verbose mode causes the ValidateDataStructure-Step
|
2018-04-08 19:27:18 +00:00
|
|
|
* to be executed before and after every single post-process step */
|
2015-05-19 03:57:13 +00:00
|
|
|
bool bExtraVerbose;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/** Used by post-process steps to share data */
|
|
|
|
SharedPostProcessInfo* mPPShared;
|
2018-04-08 19:27:18 +00:00
|
|
|
|
|
|
|
/// The default class constructor.
|
2018-09-21 14:25:27 +00:00
|
|
|
ImporterPimpl() AI_NO_EXCEPT;
|
2024-04-07 19:42:52 +00:00
|
|
|
|
|
|
|
/// The class destructor.
|
|
|
|
~ImporterPimpl() = default;
|
2015-05-19 03:48:29 +00:00
|
|
|
};
|
2018-04-08 19:27:18 +00:00
|
|
|
|
2024-04-07 19:42:52 +00:00
|
|
|
inline ImporterPimpl::ImporterPimpl() AI_NO_EXCEPT :
|
2020-09-14 06:43:31 +00:00
|
|
|
mIOHandler( nullptr ),
|
|
|
|
mIsDefaultHandler( false ),
|
|
|
|
mProgressHandler( nullptr ),
|
|
|
|
mIsDefaultProgressHandler( false ),
|
|
|
|
mImporter(),
|
|
|
|
mPostProcessingSteps(),
|
|
|
|
mScene( nullptr ),
|
|
|
|
mErrorString(),
|
|
|
|
mException(),
|
|
|
|
mIntProperties(),
|
|
|
|
mFloatProperties(),
|
|
|
|
mStringProperties(),
|
|
|
|
mMatrixProperties(),
|
2021-10-06 12:41:45 +00:00
|
|
|
mPointerProperties(),
|
2020-09-14 06:43:31 +00:00
|
|
|
bExtraVerbose( false ),
|
|
|
|
mPPShared( nullptr ) {
|
2018-04-08 19:27:18 +00:00
|
|
|
// empty
|
|
|
|
}
|
2015-05-19 03:48:29 +00:00
|
|
|
//! @endcond
|
|
|
|
|
|
|
|
struct BatchData;
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
2015-05-19 03:52:10 +00:00
|
|
|
/** FOR IMPORTER PLUGINS ONLY: A helper class to the pleasure of importers
|
2015-05-19 03:48:29 +00:00
|
|
|
* that need to load many external meshes recursively.
|
|
|
|
*
|
|
|
|
* The class uses several threads to load these meshes (or at least it
|
|
|
|
* could, this has not yet been implemented at the moment).
|
|
|
|
*
|
|
|
|
* @note The class may not be used by more than one thread*/
|
2020-09-14 06:43:31 +00:00
|
|
|
class ASSIMP_API BatchLoader {
|
2015-05-19 03:48:29 +00:00
|
|
|
public:
|
2015-05-19 03:57:13 +00:00
|
|
|
//! @cond never
|
|
|
|
// -------------------------------------------------------------------
|
|
|
|
/** Wraps a full list of configuration properties for an importer.
|
|
|
|
* Properties can be set using SetGenericProperty */
|
2020-09-14 06:43:31 +00:00
|
|
|
struct PropertyMap {
|
2015-05-19 03:57:13 +00:00
|
|
|
ImporterPimpl::IntPropertyMap ints;
|
|
|
|
ImporterPimpl::FloatPropertyMap floats;
|
|
|
|
ImporterPimpl::StringPropertyMap strings;
|
|
|
|
ImporterPimpl::MatrixPropertyMap matrices;
|
|
|
|
|
|
|
|
bool operator == (const PropertyMap& prop) const {
|
|
|
|
// fixme: really isocpp? gcc complains
|
|
|
|
return ints == prop.ints && floats == prop.floats && strings == prop.strings && matrices == prop.matrices;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool empty () const {
|
|
|
|
return ints.empty() && floats.empty() && strings.empty() && matrices.empty();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
//! @endcond
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
// -------------------------------------------------------------------
|
|
|
|
/** Construct a batch loader from a given IO system to be used
|
2021-07-29 11:28:51 +00:00
|
|
|
* to access external files
|
2016-11-11 11:49:05 +00:00
|
|
|
*/
|
|
|
|
explicit BatchLoader(IOSystem* pIO, bool validate = false );
|
2015-05-19 03:57:13 +00:00
|
|
|
|
2016-11-11 11:49:05 +00:00
|
|
|
// -------------------------------------------------------------------
|
|
|
|
/** The class destructor.
|
|
|
|
*/
|
|
|
|
~BatchLoader();
|
2015-05-19 03:57:13 +00:00
|
|
|
|
2016-11-11 11:49:05 +00:00
|
|
|
// -------------------------------------------------------------------
|
|
|
|
/** Sets the validation step. True for enable validation during postprocess.
|
|
|
|
* @param enable True for validation.
|
|
|
|
*/
|
|
|
|
void setValidation( bool enabled );
|
2021-07-29 11:28:51 +00:00
|
|
|
|
2016-11-11 11:49:05 +00:00
|
|
|
// -------------------------------------------------------------------
|
|
|
|
/** Returns the current validation step.
|
|
|
|
* @return The current validation step.
|
|
|
|
*/
|
|
|
|
bool getValidation() const;
|
2021-07-29 11:28:51 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
// -------------------------------------------------------------------
|
|
|
|
/** Add a new file to the list of files to be loaded.
|
|
|
|
* @param file File to be loaded
|
|
|
|
* @param steps Post-processing steps to be executed on the file
|
|
|
|
* @param map Optional configuration properties
|
|
|
|
* @return 'Load request channel' - an unique ID that can later
|
|
|
|
* be used to access the imported file data.
|
|
|
|
* @see GetImport */
|
|
|
|
unsigned int AddLoadRequest (
|
|
|
|
const std::string& file,
|
|
|
|
unsigned int steps = 0,
|
2020-06-23 19:05:42 +00:00
|
|
|
const PropertyMap *map = nullptr
|
2015-05-19 03:57:13 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------
|
|
|
|
/** Get an imported scene.
|
|
|
|
* This polls the import from the internal request list.
|
|
|
|
* If an import is requested several times, this function
|
|
|
|
* can be called several times, too.
|
|
|
|
*
|
|
|
|
* @param which LRWC returned by AddLoadRequest().
|
2020-06-23 19:05:42 +00:00
|
|
|
* @return nullptr if there is no scene with this file name
|
2015-05-19 03:57:13 +00:00
|
|
|
* in the queue of the scene hasn't been loaded yet. */
|
|
|
|
aiScene* GetImport(
|
|
|
|
unsigned int which
|
|
|
|
);
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------
|
|
|
|
/** Waits until all scenes have been loaded. This returns
|
|
|
|
* immediately if no scenes are queued.*/
|
|
|
|
void LoadAll();
|
2015-05-19 03:48:29 +00:00
|
|
|
|
|
|
|
private:
|
2015-05-19 03:57:13 +00:00
|
|
|
// No need to have that in the public API ...
|
2016-11-11 11:49:05 +00:00
|
|
|
BatchData *m_data;
|
2015-05-19 03:48:29 +00:00
|
|
|
};
|
|
|
|
|
2016-11-11 11:49:05 +00:00
|
|
|
} // Namespace Assimp
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2016-11-11 11:49:05 +00:00
|
|
|
#endif // INCLUDED_AI_IMPORTER_H
|