2015-07-02 11:07:50 +00:00
|
|
|
/*
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
Open Asset Import Library (assimp)
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
2020-01-20 13:53:12 +00:00
|
|
|
Copyright (c) 2006-2020, assimp team
|
2018-01-28 18:42:05 +00:00
|
|
|
|
2017-05-09 17:57:36 +00:00
|
|
|
|
2015-07-02 11:07:50 +00:00
|
|
|
|
|
|
|
All rights reserved.
|
|
|
|
|
2016-07-15 05:38:29 +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.
|
|
|
|
|
2016-07-15 05:38:29 +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
|
2016-07-15 05:38:29 +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,
|
2016-07-15 05:38:29 +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,
|
2016-07-15 05:38:29 +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 Info.cpp
|
|
|
|
* @brief Implementation of the 'assimp info' utility */
|
|
|
|
|
|
|
|
#include "Main.h"
|
|
|
|
|
2018-03-29 10:38:56 +00:00
|
|
|
#include <cstdio>
|
|
|
|
#include <iostream>
|
|
|
|
#include <string>
|
|
|
|
|
2016-07-15 05:38:29 +00:00
|
|
|
const char* AICMD_MSG_INFO_HELP_E =
|
2019-03-14 16:37:28 +00:00
|
|
|
"assimp info <file> [-r] [-v]\n"
|
|
|
|
"\tPrint basic structure of a 3D model\n"
|
|
|
|
"\t-r,--raw: No postprocessing, do a raw import\n"
|
|
|
|
"\t-v,--verbose: Print verbose info such as node transform data\n"
|
|
|
|
"\t-s, --silent: Print only minimal info\n";
|
|
|
|
|
|
|
|
const char *TREE_BRANCH_ASCII = "|-";
|
|
|
|
const char *TREE_BRANCH_UTF8 = "\xe2\x94\x9c\xe2\x95\xb4";
|
|
|
|
const char *TREE_STOP_ASCII = "'-";
|
|
|
|
const char *TREE_STOP_UTF8 = "\xe2\x94\x94\xe2\x95\xb4";
|
|
|
|
const char *TREE_CONTINUE_ASCII = "| ";
|
|
|
|
const char *TREE_CONTINUE_UTF8 = "\xe2\x94\x82 ";
|
|
|
|
|
|
|
|
// note: by default this is using utf-8 text.
|
2018-03-29 10:38:56 +00:00
|
|
|
// this is well supported on pretty much any linux terminal.
|
|
|
|
// if this causes problems on some platform,
|
|
|
|
// put an #ifdef to use the ascii version for that platform.
|
2019-03-14 16:37:28 +00:00
|
|
|
const char *TREE_BRANCH = TREE_BRANCH_UTF8;
|
|
|
|
const char *TREE_STOP = TREE_STOP_UTF8;
|
|
|
|
const char *TREE_CONTINUE = TREE_CONTINUE_UTF8;
|
2015-07-02 11:07:50 +00:00
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------------
|
|
|
|
unsigned int CountNodes(const aiNode* root)
|
|
|
|
{
|
|
|
|
unsigned int i = 0;
|
|
|
|
for (unsigned int a = 0; a < root->mNumChildren; ++a ) {
|
|
|
|
i += CountNodes(root->mChildren[a]);
|
|
|
|
}
|
|
|
|
return 1+i;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------------
|
|
|
|
unsigned int GetMaxDepth(const aiNode* root)
|
|
|
|
{
|
|
|
|
unsigned int cnt = 0;
|
|
|
|
for (unsigned int i = 0; i < root->mNumChildren; ++i ) {
|
|
|
|
cnt = std::max(cnt,GetMaxDepth(root->mChildren[i]));
|
|
|
|
}
|
|
|
|
return cnt+1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------------
|
|
|
|
unsigned int CountVertices(const aiScene* scene)
|
|
|
|
{
|
|
|
|
unsigned int cnt = 0;
|
|
|
|
for(unsigned int i = 0; i < scene->mNumMeshes; ++i) {
|
|
|
|
cnt += scene->mMeshes[i]->mNumVertices;
|
|
|
|
}
|
|
|
|
return cnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------------
|
|
|
|
unsigned int CountFaces(const aiScene* scene)
|
|
|
|
{
|
|
|
|
unsigned int cnt = 0;
|
|
|
|
for(unsigned int i = 0; i < scene->mNumMeshes; ++i) {
|
|
|
|
cnt += scene->mMeshes[i]->mNumFaces;
|
|
|
|
}
|
|
|
|
return cnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------------
|
|
|
|
unsigned int CountBones(const aiScene* scene)
|
|
|
|
{
|
|
|
|
unsigned int cnt = 0;
|
|
|
|
for(unsigned int i = 0; i < scene->mNumMeshes; ++i) {
|
|
|
|
cnt += scene->mMeshes[i]->mNumBones;
|
|
|
|
}
|
|
|
|
return cnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------------
|
|
|
|
unsigned int CountAnimChannels(const aiScene* scene)
|
|
|
|
{
|
|
|
|
unsigned int cnt = 0;
|
|
|
|
for(unsigned int i = 0; i < scene->mNumAnimations; ++i) {
|
|
|
|
cnt += scene->mAnimations[i]->mNumChannels;
|
|
|
|
}
|
|
|
|
return cnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------------
|
|
|
|
unsigned int GetAvgFacePerMesh(const aiScene* scene) {
|
|
|
|
return (scene->mNumMeshes != 0) ? static_cast<unsigned int>(CountFaces(scene)/scene->mNumMeshes) : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------------
|
|
|
|
unsigned int GetAvgVertsPerMesh(const aiScene* scene) {
|
|
|
|
return (scene->mNumMeshes != 0) ? static_cast<unsigned int>(CountVertices(scene)/scene->mNumMeshes) : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------------
|
|
|
|
void FindSpecialPoints(const aiScene* scene,const aiNode* root,aiVector3D special_points[3],const aiMatrix4x4& mat=aiMatrix4x4())
|
|
|
|
{
|
|
|
|
// XXX that could be greatly simplified by using code from code/ProcessHelper.h
|
|
|
|
// XXX I just don't want to include it here.
|
|
|
|
const aiMatrix4x4 trafo = root->mTransformation*mat;
|
|
|
|
for(unsigned int i = 0; i < root->mNumMeshes; ++i) {
|
|
|
|
const aiMesh* mesh = scene->mMeshes[root->mMeshes[i]];
|
|
|
|
|
|
|
|
for(unsigned int a = 0; a < mesh->mNumVertices; ++a) {
|
|
|
|
aiVector3D v = trafo*mesh->mVertices[a];
|
|
|
|
|
|
|
|
special_points[0].x = std::min(special_points[0].x,v.x);
|
|
|
|
special_points[0].y = std::min(special_points[0].y,v.y);
|
|
|
|
special_points[0].z = std::min(special_points[0].z,v.z);
|
|
|
|
|
|
|
|
special_points[1].x = std::max(special_points[1].x,v.x);
|
|
|
|
special_points[1].y = std::max(special_points[1].y,v.y);
|
|
|
|
special_points[1].z = std::max(special_points[1].z,v.z);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for(unsigned int i = 0; i < root->mNumChildren; ++i) {
|
|
|
|
FindSpecialPoints(scene,root->mChildren[i],special_points,trafo);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------------
|
|
|
|
void FindSpecialPoints(const aiScene* scene,aiVector3D special_points[3])
|
|
|
|
{
|
2016-07-15 05:38:29 +00:00
|
|
|
special_points[0] = aiVector3D(1e10,1e10,1e10);
|
|
|
|
special_points[1] = aiVector3D(-1e10,-1e10,-1e10);
|
2015-07-02 11:07:50 +00:00
|
|
|
|
|
|
|
FindSpecialPoints(scene,scene->mRootNode,special_points);
|
2016-07-15 05:38:29 +00:00
|
|
|
special_points[2] = (special_points[0]+special_points[1])*(ai_real)0.5;
|
2015-07-02 11:07:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------------
|
|
|
|
std::string FindPTypes(const aiScene* scene)
|
|
|
|
{
|
|
|
|
bool haveit[4] = {0};
|
|
|
|
for(unsigned int i = 0; i < scene->mNumMeshes; ++i) {
|
|
|
|
const unsigned int pt = scene->mMeshes[i]->mPrimitiveTypes;
|
|
|
|
if (pt & aiPrimitiveType_POINT) {
|
|
|
|
haveit[0]=true;
|
|
|
|
}
|
|
|
|
if (pt & aiPrimitiveType_LINE) {
|
|
|
|
haveit[1]=true;
|
|
|
|
}
|
|
|
|
if (pt & aiPrimitiveType_TRIANGLE) {
|
|
|
|
haveit[2]=true;
|
|
|
|
}
|
|
|
|
if (pt & aiPrimitiveType_POLYGON) {
|
|
|
|
haveit[3]=true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (haveit[0]?std::string("points"):"")+(haveit[1]?"lines":"")+
|
|
|
|
(haveit[2]?"triangles":"")+(haveit[3]?"n-polygons":"");
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------------
|
2018-03-29 10:38:56 +00:00
|
|
|
// Prettily print the node graph to stdout
|
|
|
|
void PrintHierarchy(
|
|
|
|
const aiNode* node,
|
|
|
|
const std::string &indent,
|
|
|
|
bool verbose,
|
|
|
|
bool last = false,
|
|
|
|
bool first = true
|
|
|
|
){
|
|
|
|
// tree visualization
|
|
|
|
std::string branchchar;
|
|
|
|
if (first) { branchchar = ""; }
|
|
|
|
else if (last) { branchchar = TREE_STOP; } // "'-"
|
|
|
|
else { branchchar = TREE_BRANCH; } // "|-"
|
|
|
|
|
|
|
|
// print the indent and the branch character and the name
|
|
|
|
std::cout << indent << branchchar << node->mName.C_Str();
|
|
|
|
|
|
|
|
// if there are meshes attached, indicate this
|
|
|
|
if (node->mNumMeshes) {
|
|
|
|
std::cout << " (mesh ";
|
|
|
|
bool sep = false;
|
|
|
|
for (size_t i=0; i < node->mNumMeshes; ++i) {
|
|
|
|
unsigned int mesh_index = node->mMeshes[i];
|
|
|
|
if (sep) { std::cout << ", "; }
|
|
|
|
std::cout << mesh_index;
|
|
|
|
sep = true;
|
|
|
|
}
|
|
|
|
std::cout << ")";
|
2015-07-02 11:07:50 +00:00
|
|
|
}
|
|
|
|
|
2018-03-29 10:38:56 +00:00
|
|
|
// finish the line
|
|
|
|
std::cout << std::endl;
|
2018-02-21 11:57:45 +00:00
|
|
|
|
2018-03-29 10:38:56 +00:00
|
|
|
// in verbose mode, print the transform data as well
|
2018-02-21 11:57:45 +00:00
|
|
|
if (verbose) {
|
2018-03-29 10:38:56 +00:00
|
|
|
// indent to use
|
|
|
|
std::string indentadd;
|
|
|
|
if (last) { indentadd += " "; }
|
|
|
|
else { indentadd += TREE_CONTINUE; } // "| "..
|
|
|
|
if (node->mNumChildren == 0) { indentadd += " "; }
|
|
|
|
else { indentadd += TREE_CONTINUE; } // .."| "
|
2018-02-21 11:57:45 +00:00
|
|
|
aiVector3D s, r, t;
|
2018-03-29 10:38:56 +00:00
|
|
|
node->mTransformation.Decompose(s, r, t);
|
2018-02-21 11:57:45 +00:00
|
|
|
if (s.x != 1.0 || s.y != 1.0 || s.z != 1.0) {
|
2018-03-29 10:38:56 +00:00
|
|
|
std::cout << indent << indentadd;
|
|
|
|
printf(" S:[%f %f %f]\n", s.x, s.y, s.z);
|
2018-02-21 11:57:45 +00:00
|
|
|
}
|
|
|
|
if (r.x || r.y || r.z) {
|
2018-03-29 10:38:56 +00:00
|
|
|
std::cout << indent << indentadd;
|
|
|
|
printf(" R:[%f %f %f]\n", r.x, r.y, r.z);
|
2018-02-21 11:57:45 +00:00
|
|
|
}
|
|
|
|
if (t.x || t.y || t.z) {
|
2018-03-29 10:38:56 +00:00
|
|
|
std::cout << indent << indentadd;
|
|
|
|
printf(" T:[%f %f %f]\n", t.x, t.y, t.z);
|
2018-02-21 11:57:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-29 10:38:56 +00:00
|
|
|
// and recurse
|
|
|
|
std::string nextIndent;
|
|
|
|
if (first) { nextIndent = indent; }
|
|
|
|
else if (last) { nextIndent = indent + " "; }
|
|
|
|
else { nextIndent = indent + TREE_CONTINUE; } // "| "
|
|
|
|
for (size_t i = 0; i < node->mNumChildren; ++i) {
|
|
|
|
bool lastone = (i == node->mNumChildren - 1);
|
|
|
|
PrintHierarchy(
|
|
|
|
node->mChildren[i],
|
|
|
|
nextIndent,
|
|
|
|
verbose,
|
|
|
|
lastone,
|
|
|
|
false
|
|
|
|
);
|
2015-07-02 11:07:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------------
|
|
|
|
// Implementation of the assimp info utility to print basic file info
|
2019-03-14 16:37:28 +00:00
|
|
|
int Assimp_Info (const char* const* params, unsigned int num) {
|
2015-07-02 11:07:50 +00:00
|
|
|
// --help
|
|
|
|
if (!strcmp( params[0],"-h")||!strcmp( params[0],"--help")||!strcmp( params[0],"-?") ) {
|
|
|
|
printf("%s",AICMD_MSG_INFO_HELP_E);
|
2020-01-26 18:10:21 +00:00
|
|
|
return AssimpCmdError::Success;
|
2015-07-02 11:07:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// asssimp info <file> [-r]
|
|
|
|
if (num < 1) {
|
|
|
|
printf("assimp info: Invalid number of arguments. "
|
|
|
|
"See \'assimp info --help\'\n");
|
2020-01-26 18:10:21 +00:00
|
|
|
return AssimpCmdError::InvalidNumberOfArguments;
|
2015-07-02 11:07:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const std::string in = std::string(params[0]);
|
|
|
|
|
2018-02-21 11:57:45 +00:00
|
|
|
// get -r and -v arguments
|
|
|
|
bool raw = false;
|
|
|
|
bool verbose = false;
|
2018-12-08 21:58:24 +00:00
|
|
|
bool silent = false;
|
2018-02-21 11:57:45 +00:00
|
|
|
for(unsigned int i = 1; i < num; ++i) {
|
|
|
|
if (!strcmp(params[i],"--raw")||!strcmp(params[i],"-r")) {
|
|
|
|
raw = true;
|
|
|
|
}
|
|
|
|
if (!strcmp(params[i],"--verbose")||!strcmp(params[i],"-v")) {
|
|
|
|
verbose = true;
|
|
|
|
}
|
2018-12-08 21:58:24 +00:00
|
|
|
if (!strcmp(params[i], "--silent") || !strcmp(params[i], "-s")) {
|
|
|
|
silent = true;
|
|
|
|
}
|
2018-02-21 11:57:45 +00:00
|
|
|
}
|
|
|
|
|
2018-12-22 08:12:10 +00:00
|
|
|
// Verbose and silent at the same time are not allowed
|
|
|
|
if ( verbose && silent ) {
|
|
|
|
printf("assimp info: Invalid arguments, verbose and silent at the same time are forbitten. ");
|
2020-01-26 18:10:21 +00:00
|
|
|
return AssimpCmdInfoError::InvalidCombinaisonOfArguments;
|
2018-12-22 08:12:10 +00:00
|
|
|
}
|
|
|
|
|
2019-02-17 10:44:02 +00:00
|
|
|
// Parse post-processing flags unless -r was specified
|
2015-07-02 11:07:50 +00:00
|
|
|
ImportData import;
|
2018-02-21 11:57:45 +00:00
|
|
|
if (!raw) {
|
2019-02-17 10:44:02 +00:00
|
|
|
// get import flags
|
|
|
|
ProcessStandardArguments(import, params + 1, num - 1);
|
|
|
|
|
|
|
|
//No custom post process flags defined, we set all the post process flags active
|
|
|
|
if(import.ppFlags == 0)
|
|
|
|
import.ppFlags |= aiProcessPreset_TargetRealtime_MaxQuality;
|
2018-02-21 11:57:45 +00:00
|
|
|
}
|
2015-07-02 11:07:50 +00:00
|
|
|
|
|
|
|
// import the main model
|
|
|
|
const aiScene* scene = ImportModel(import,in);
|
|
|
|
if (!scene) {
|
|
|
|
printf("assimp info: Unable to load input file %s\n",
|
|
|
|
in.c_str());
|
2020-01-26 18:10:21 +00:00
|
|
|
return AssimpCmdError::FailedToLoadInputFile;
|
2015-07-02 11:07:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
aiMemoryInfo mem;
|
|
|
|
globalImporter->GetMemoryRequirements(mem);
|
|
|
|
|
|
|
|
|
2016-07-15 05:38:29 +00:00
|
|
|
static const char* format_string =
|
2015-07-02 11:07:50 +00:00
|
|
|
"Memory consumption: %i B\n"
|
|
|
|
"Nodes: %i\n"
|
|
|
|
"Maximum depth %i\n"
|
|
|
|
"Meshes: %i\n"
|
|
|
|
"Animations: %i\n"
|
|
|
|
"Textures (embed.): %i\n"
|
|
|
|
"Materials: %i\n"
|
|
|
|
"Cameras: %i\n"
|
|
|
|
"Lights: %i\n"
|
|
|
|
"Vertices: %i\n"
|
|
|
|
"Faces: %i\n"
|
|
|
|
"Bones: %i\n"
|
|
|
|
"Animation Channels: %i\n"
|
|
|
|
"Primitive Types: %s\n"
|
|
|
|
"Average faces/mesh %i\n"
|
|
|
|
"Average verts/mesh %i\n"
|
|
|
|
"Minimum point (%f %f %f)\n"
|
|
|
|
"Maximum point (%f %f %f)\n"
|
|
|
|
"Center point (%f %f %f)\n"
|
|
|
|
|
|
|
|
;
|
|
|
|
|
|
|
|
aiVector3D special_points[3];
|
|
|
|
FindSpecialPoints(scene,special_points);
|
|
|
|
printf(format_string,
|
|
|
|
mem.total,
|
|
|
|
CountNodes(scene->mRootNode),
|
|
|
|
GetMaxDepth(scene->mRootNode),
|
|
|
|
scene->mNumMeshes,
|
|
|
|
scene->mNumAnimations,
|
|
|
|
scene->mNumTextures,
|
|
|
|
scene->mNumMaterials,
|
|
|
|
scene->mNumCameras,
|
|
|
|
scene->mNumLights,
|
|
|
|
CountVertices(scene),
|
|
|
|
CountFaces(scene),
|
|
|
|
CountBones(scene),
|
|
|
|
CountAnimChannels(scene),
|
|
|
|
FindPTypes(scene).c_str(),
|
|
|
|
GetAvgFacePerMesh(scene),
|
|
|
|
GetAvgVertsPerMesh(scene),
|
|
|
|
special_points[0][0],special_points[0][1],special_points[0][2],
|
|
|
|
special_points[1][0],special_points[1][1],special_points[1][2],
|
|
|
|
special_points[2][0],special_points[2][1],special_points[2][2]
|
|
|
|
)
|
|
|
|
;
|
2018-02-25 08:34:14 +00:00
|
|
|
|
2018-12-08 21:58:24 +00:00
|
|
|
if (silent)
|
|
|
|
{
|
|
|
|
printf("\n");
|
2020-01-26 18:10:21 +00:00
|
|
|
return AssimpCmdError::Success;
|
2018-12-08 21:58:24 +00:00
|
|
|
}
|
|
|
|
|
2018-02-25 08:34:14 +00:00
|
|
|
// meshes
|
|
|
|
if (scene->mNumMeshes) {
|
|
|
|
printf("\nMeshes: (name) [vertices / bones / faces | primitive_types]\n");
|
|
|
|
}
|
|
|
|
for (unsigned int i = 0; i < scene->mNumMeshes; ++i) {
|
|
|
|
const aiMesh* mesh = scene->mMeshes[i];
|
|
|
|
printf(" %d (%s)", i, mesh->mName.C_Str());
|
|
|
|
printf(
|
|
|
|
": [%d / %d / %d |",
|
|
|
|
mesh->mNumVertices,
|
|
|
|
mesh->mNumBones,
|
|
|
|
mesh->mNumFaces
|
|
|
|
);
|
|
|
|
const unsigned int ptypes = mesh->mPrimitiveTypes;
|
|
|
|
if (ptypes & aiPrimitiveType_POINT) { printf(" point"); }
|
|
|
|
if (ptypes & aiPrimitiveType_LINE) { printf(" line"); }
|
|
|
|
if (ptypes & aiPrimitiveType_TRIANGLE) { printf(" triangle"); }
|
|
|
|
if (ptypes & aiPrimitiveType_POLYGON) { printf(" polygon"); }
|
|
|
|
printf("]\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
// materials
|
2015-07-02 11:07:50 +00:00
|
|
|
unsigned int total=0;
|
|
|
|
for(unsigned int i = 0;i < scene->mNumMaterials; ++i) {
|
|
|
|
aiString name;
|
|
|
|
if (AI_SUCCESS==aiGetMaterialString(scene->mMaterials[i],AI_MATKEY_NAME,&name)) {
|
|
|
|
printf("%s\n \'%s\'",(total++?"":"\nNamed Materials:" ),name.data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(total) {
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
2018-02-25 08:34:14 +00:00
|
|
|
// textures
|
2015-07-02 11:07:50 +00:00
|
|
|
total=0;
|
|
|
|
for(unsigned int i = 0;i < scene->mNumMaterials; ++i) {
|
|
|
|
aiString name;
|
|
|
|
static const aiTextureType types[] = {
|
|
|
|
aiTextureType_NONE,
|
|
|
|
aiTextureType_DIFFUSE,
|
|
|
|
aiTextureType_SPECULAR,
|
|
|
|
aiTextureType_AMBIENT,
|
|
|
|
aiTextureType_EMISSIVE,
|
|
|
|
aiTextureType_HEIGHT,
|
|
|
|
aiTextureType_NORMALS,
|
|
|
|
aiTextureType_SHININESS,
|
|
|
|
aiTextureType_OPACITY,
|
|
|
|
aiTextureType_DISPLACEMENT,
|
|
|
|
aiTextureType_LIGHTMAP,
|
|
|
|
aiTextureType_REFLECTION,
|
2020-02-06 18:19:01 +00:00
|
|
|
aiTextureType_BASE_COLOR,
|
|
|
|
aiTextureType_NORMAL_CAMERA,
|
|
|
|
aiTextureType_EMISSION_COLOR,
|
|
|
|
aiTextureType_METALNESS,
|
|
|
|
aiTextureType_DIFFUSE_ROUGHNESS,
|
|
|
|
aiTextureType_AMBIENT_OCCLUSION,
|
2015-07-02 11:07:50 +00:00
|
|
|
aiTextureType_UNKNOWN
|
|
|
|
};
|
|
|
|
for(unsigned int type = 0; type < sizeof(types)/sizeof(types[0]); ++type) {
|
|
|
|
for(unsigned int idx = 0;AI_SUCCESS==aiGetMaterialString(scene->mMaterials[i],
|
|
|
|
AI_MATKEY_TEXTURE(types[type],idx),&name); ++idx) {
|
|
|
|
printf("%s\n \'%s\'",(total++?"":"\nTexture Refs:" ),name.data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(total) {
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
2018-02-25 08:34:14 +00:00
|
|
|
// animations
|
2015-07-02 11:07:50 +00:00
|
|
|
total=0;
|
|
|
|
for(unsigned int i = 0;i < scene->mNumAnimations; ++i) {
|
|
|
|
if (scene->mAnimations[i]->mName.length) {
|
|
|
|
printf("%s\n \'%s\'",(total++?"":"\nNamed Animations:" ),scene->mAnimations[i]->mName.data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(total) {
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
2018-02-25 08:34:14 +00:00
|
|
|
// node hierarchy
|
2015-07-02 11:07:50 +00:00
|
|
|
printf("\nNode hierarchy:\n");
|
2018-03-29 10:38:56 +00:00
|
|
|
PrintHierarchy(scene->mRootNode,"",verbose);
|
2015-07-02 11:07:50 +00:00
|
|
|
|
|
|
|
printf("\n");
|
2020-01-26 18:10:21 +00:00
|
|
|
return AssimpCmdError::Success;
|
2015-07-02 11:07:50 +00:00
|
|
|
}
|