2015-07-02 11:07:50 +00:00
|
|
|
/*
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
Open Asset Import Library (assimp)
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
2024-02-23 21:30:05 +00:00
|
|
|
Copyright (c) 2006-2024, assimp team
|
2015-07-02 11:07:50 +00:00
|
|
|
|
|
|
|
All rights reserved.
|
|
|
|
|
2021-07-29 11:28:51 +00:00
|
|
|
Redistribution and use of this software in source and binary forms,
|
|
|
|
with or without modification, are permitted provided that the following
|
2015-07-02 11:07:50 +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.
|
|
|
|
|
2021-07-29 11:28:51 +00:00
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
2015-07-02 11:07:50 +00:00
|
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
2021-07-29 11:28:51 +00:00
|
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
2015-07-02 11:07:50 +00:00
|
|
|
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
2021-07-29 11:28:51 +00:00
|
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
2015-07-02 11:07:50 +00:00
|
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
2021-07-29 11:28:51 +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-07-02 11:07:50 +00:00
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @file Main.h
|
|
|
|
* @brief Utility declarations for assimp_cmd
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AICMD_MAIN_INCLUDED
|
|
|
|
#define AICMD_MAIN_INCLUDED
|
|
|
|
|
|
|
|
#ifndef _CRT_SECURE_NO_WARNINGS
|
2022-09-16 19:55:14 +00:00
|
|
|
# define _CRT_SECURE_NO_WARNINGS
|
2015-07-02 11:07:50 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <limits>
|
|
|
|
|
|
|
|
#include <assimp/postprocess.h>
|
|
|
|
#include <assimp/version.h>
|
|
|
|
#include <assimp/scene.h>
|
|
|
|
#include <assimp/Importer.hpp>
|
|
|
|
#include <assimp/DefaultLogger.hpp>
|
2022-09-16 20:13:58 +00:00
|
|
|
#include "../code/Common/Compression.h"
|
2015-07-02 11:07:50 +00:00
|
|
|
|
|
|
|
#ifndef ASSIMP_BUILD_NO_EXPORT
|
|
|
|
# include <assimp/Exporter.hpp>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef SIZE_MAX
|
|
|
|
# define SIZE_MAX (std::numeric_limits<size_t>::max())
|
|
|
|
#endif
|
|
|
|
|
|
|
|
using namespace Assimp;
|
|
|
|
|
|
|
|
// Global assimp importer instance
|
|
|
|
extern Assimp::Importer* globalImporter;
|
|
|
|
|
|
|
|
#ifndef ASSIMP_BUILD_NO_EXPORT
|
|
|
|
// Global assimp exporter instance
|
|
|
|
extern Assimp::Exporter* globalExporter;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------
|
2019-01-31 16:24:08 +00:00
|
|
|
/// Defines common import parameters
|
|
|
|
struct ImportData {
|
2015-07-02 11:07:50 +00:00
|
|
|
ImportData()
|
|
|
|
: ppFlags (0)
|
|
|
|
, showLog (false)
|
|
|
|
, verbose (false)
|
|
|
|
, log (false)
|
2021-03-10 09:06:42 +00:00
|
|
|
, rot (aiVector3D(0.f, 0.f, 0.f))
|
2015-07-02 11:07:50 +00:00
|
|
|
{}
|
|
|
|
|
2019-01-31 16:24:08 +00:00
|
|
|
/// Post-processing flags
|
2015-07-02 11:07:50 +00:00
|
|
|
unsigned int ppFlags;
|
|
|
|
|
|
|
|
// Log to std::err?
|
|
|
|
bool showLog;
|
|
|
|
|
|
|
|
// Log file
|
|
|
|
std::string logFile;
|
|
|
|
|
|
|
|
// Verbose log mode?
|
|
|
|
bool verbose;
|
|
|
|
|
|
|
|
// Need to log?
|
|
|
|
bool log;
|
2021-03-10 09:06:42 +00:00
|
|
|
|
|
|
|
// Export With Rotation
|
|
|
|
aiVector3D rot;
|
2015-07-02 11:07:50 +00:00
|
|
|
};
|
|
|
|
|
2022-09-16 20:13:58 +00:00
|
|
|
// ------------------------------------------------------------------------------
|
|
|
|
/// @brief General error codes used among assimp_cmd's utilities.
|
2020-01-26 18:10:21 +00:00
|
|
|
enum AssimpCmdError {
|
|
|
|
Success = 0,
|
|
|
|
InvalidNumberOfArguments,
|
|
|
|
UnrecognizedCommand,
|
|
|
|
FailedToLoadInputFile,
|
|
|
|
FailedToOpenOutputFile,
|
|
|
|
NoFileFormatSpecified,
|
|
|
|
UnknownFileFormat,
|
|
|
|
NoFileExtensionSpecified,
|
|
|
|
UnknownFileExtension,
|
2020-01-28 14:55:05 +00:00
|
|
|
ExceptionWasRaised,
|
2020-01-26 18:10:21 +00:00
|
|
|
|
|
|
|
// Add new error codes here...
|
|
|
|
|
|
|
|
LastAssimpCmdError, // Must be last.
|
|
|
|
};
|
|
|
|
|
2015-07-02 11:07:50 +00:00
|
|
|
// ------------------------------------------------------------------------------
|
|
|
|
/** Process standard arguments
|
|
|
|
*
|
|
|
|
* @param fill Filled by function
|
|
|
|
* @param params Command line parameters to be processed
|
|
|
|
* @param num NUmber of params
|
2020-01-26 18:10:21 +00:00
|
|
|
* @return An #AssimpCmdError value. */
|
2021-07-29 11:28:51 +00:00
|
|
|
int ProcessStandardArguments(ImportData& fill,
|
2015-07-02 11:07:50 +00:00
|
|
|
const char* const* params,
|
|
|
|
unsigned int num);
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------
|
|
|
|
/** Import a specific model file
|
|
|
|
* @param imp Import configuration to be used
|
|
|
|
* @param path Path to the file to be read */
|
|
|
|
const aiScene* ImportModel(
|
2021-07-29 11:28:51 +00:00
|
|
|
const ImportData& imp,
|
2015-07-02 11:07:50 +00:00
|
|
|
const std::string& path);
|
|
|
|
|
|
|
|
#ifndef ASSIMP_BUILD_NO_EXPORT
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------
|
|
|
|
/** Export a specific model file
|
|
|
|
* @param imp Import configuration to be used
|
|
|
|
* @param path Path to the file to be written
|
|
|
|
* @param format Format id*/
|
2021-07-29 11:28:51 +00:00
|
|
|
bool ExportModel(const aiScene* pOut,
|
|
|
|
const ImportData& imp,
|
2015-07-02 11:07:50 +00:00
|
|
|
const std::string& path,
|
|
|
|
const char* pID);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------
|
|
|
|
/** assimp_dump utility
|
2020-01-30 21:40:34 +00:00
|
|
|
* @param params Command line parameters to 'assimp dump'
|
2015-07-02 11:07:50 +00:00
|
|
|
* @param Number of params
|
2020-01-26 18:10:21 +00:00
|
|
|
* @return An #AssimpCmdError value.*/
|
2015-07-02 11:07:50 +00:00
|
|
|
int Assimp_Dump (
|
2021-07-29 11:28:51 +00:00
|
|
|
const char* const* params,
|
2015-07-02 11:07:50 +00:00
|
|
|
unsigned int num);
|
|
|
|
|
2022-09-16 20:13:58 +00:00
|
|
|
// ------------------------------------------------------------------------------
|
|
|
|
/// @brief Error codes used by the 'Export' utility.
|
2020-01-26 18:10:21 +00:00
|
|
|
enum AssimpCmdExportError {
|
|
|
|
FailedToImportModel = AssimpCmdError::LastAssimpCmdError,
|
|
|
|
FailedToExportModel,
|
|
|
|
|
|
|
|
// Add new error codes here...
|
2021-07-29 11:28:51 +00:00
|
|
|
|
2020-01-26 18:10:21 +00:00
|
|
|
LastAssimpCmdExportError, // Must be last.
|
|
|
|
};
|
|
|
|
|
2015-07-02 11:07:50 +00:00
|
|
|
// ------------------------------------------------------------------------------
|
|
|
|
/** assimp_export utility
|
|
|
|
* @param params Command line parameters to 'assimp export'
|
|
|
|
* @param Number of params
|
2020-01-26 18:10:21 +00:00
|
|
|
* @return Either an #AssimpCmdError or #AssimpCmdExportError value. */
|
2015-07-02 11:07:50 +00:00
|
|
|
int Assimp_Export (
|
2021-07-29 11:28:51 +00:00
|
|
|
const char* const* params,
|
2015-07-02 11:07:50 +00:00
|
|
|
unsigned int num);
|
|
|
|
|
2022-09-16 20:13:58 +00:00
|
|
|
// ------------------------------------------------------------------------------
|
|
|
|
/// @brief Error codes used by the 'Image Extractor' utility.
|
2020-01-26 18:10:21 +00:00
|
|
|
enum AssimpCmdExtractError {
|
|
|
|
TextureIndexIsOutOfRange = AssimpCmdError::LastAssimpCmdError,
|
|
|
|
NoAvailableTextureEncoderFound,
|
|
|
|
FailedToExportCompressedTexture,
|
|
|
|
|
|
|
|
// Add new error codes here...
|
|
|
|
|
|
|
|
LastAssimpCmdExtractError, // Must be last.
|
|
|
|
};
|
|
|
|
|
2015-07-02 11:07:50 +00:00
|
|
|
// ------------------------------------------------------------------------------
|
|
|
|
/** assimp_extract utility
|
|
|
|
* @param params Command line parameters to 'assimp extract'
|
|
|
|
* @param Number of params
|
2020-01-26 18:10:21 +00:00
|
|
|
* @return Either an #AssimpCmdError or #AssimpCmdExtractError value. */
|
2015-07-02 11:07:50 +00:00
|
|
|
int Assimp_Extract (
|
2021-07-29 11:28:51 +00:00
|
|
|
const char* const* params,
|
2015-07-02 11:07:50 +00:00
|
|
|
unsigned int num);
|
|
|
|
|
2022-09-16 20:13:58 +00:00
|
|
|
// ------------------------------------------------------------------------------
|
|
|
|
/// @brief Error codes used by the 'Compare Dump' utility.
|
2020-01-26 18:10:21 +00:00
|
|
|
enum AssimpCmdCompareDumpError {
|
|
|
|
FailedToLoadExpectedInputFile = AssimpCmdError::LastAssimpCmdError,
|
|
|
|
FileComparaisonFailure,
|
|
|
|
UnknownFailure,
|
|
|
|
|
|
|
|
// Add new error codes here...
|
|
|
|
|
|
|
|
LastAssimpCmdCompareDumpError, // Must be last.
|
|
|
|
};
|
|
|
|
|
2015-07-02 11:07:50 +00:00
|
|
|
// ------------------------------------------------------------------------------
|
|
|
|
/** assimp_cmpdump utility
|
|
|
|
* @param params Command line parameters to 'assimp cmpdump'
|
|
|
|
* @param Number of params
|
2020-01-26 18:10:21 +00:00
|
|
|
* @return Either an #AssimpCmdError or #AssimpCmdCompareDumpError. */
|
2015-07-02 11:07:50 +00:00
|
|
|
int Assimp_CompareDump (
|
2021-07-29 11:28:51 +00:00
|
|
|
const char* const* params,
|
2015-07-02 11:07:50 +00:00
|
|
|
unsigned int num);
|
|
|
|
|
2022-09-16 20:13:58 +00:00
|
|
|
/// @brief Error codes used by the 'Info' utility.
|
2020-01-26 18:10:21 +00:00
|
|
|
enum AssimpCmdInfoError {
|
|
|
|
InvalidCombinaisonOfArguments = AssimpCmdError::LastAssimpCmdError,
|
|
|
|
|
|
|
|
// Add new error codes here...
|
|
|
|
|
|
|
|
LastAssimpCmdInfoError, // Must be last.
|
|
|
|
};
|
|
|
|
|
2015-07-02 11:07:50 +00:00
|
|
|
// ------------------------------------------------------------------------------
|
|
|
|
/** @brief assimp info utility
|
|
|
|
* @param params Command line parameters to 'assimp info'
|
|
|
|
* @param Number of params
|
2020-01-26 18:10:21 +00:00
|
|
|
* @return Either an #AssimpCmdError or #AssimpCmdInfoError value. */
|
2015-07-02 11:07:50 +00:00
|
|
|
int Assimp_Info (
|
2021-07-29 11:28:51 +00:00
|
|
|
const char* const* params,
|
2015-07-02 11:07:50 +00:00
|
|
|
unsigned int num);
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------
|
|
|
|
/** @brief assimp testbatchload utility
|
|
|
|
* @param params Command line parameters to 'assimp testbatchload'
|
|
|
|
* @param Number of params
|
2020-01-26 18:10:21 +00:00
|
|
|
* @return An #AssimpCmdError value. */
|
2015-07-02 11:07:50 +00:00
|
|
|
int Assimp_TestBatchLoad (
|
2021-07-29 11:28:51 +00:00
|
|
|
const char* const* params,
|
2015-07-02 11:07:50 +00:00
|
|
|
unsigned int num);
|
|
|
|
|
|
|
|
|
|
|
|
#endif // !! AICMD_MAIN_INCLUDED
|