khanat-opennel-code/code/nel/tools/3d/mesh_utils/mesh_utils.cpp

261 lines
7.4 KiB
C++
Raw Normal View History

2015-09-19 15:14:35 +00:00
// NeL - MMORPG Framework <http://dev.ryzom.com/projects/nel/>
// Copyright (C) 2015 Winch Gate Property Limited
// Author: Jan Boon <jan.boon@kaetemi.be>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
2015-09-19 16:08:25 +00:00
#include <nel/misc/types_nl.h>
#include "mesh_utils.h"
2015-09-19 17:35:57 +00:00
#include <nel/misc/debug.h>
2015-09-20 12:08:38 +00:00
#include <nel/misc/tool_logger.h>
#include <nel/misc/sstring.h>
2015-09-19 17:35:57 +00:00
#include "database_config.h"
2015-09-20 14:44:56 +00:00
#include "scene_meta.h"
2015-09-19 17:35:57 +00:00
#include <assimp/postprocess.h>
#include <assimp/scene.h>
#include <assimp/Importer.hpp>
CMeshUtilsSettings::CMeshUtilsSettings()
{
/*ShapeDirectory = "shape";
2015-09-19 17:35:57 +00:00
IGDirectory = "ig";
SkelDirectory = "skel";*/
2015-09-19 17:35:57 +00:00
}
struct CNodeContext
{
CNodeContext() :
AssimpNode(NULL),
IsBone(false)
{
}
const aiNode *AssimpNode;
bool IsBone;
};
2015-09-20 14:44:56 +00:00
typedef std::map<NLMISC::CSString, CNodeContext> TNodeContextMap;
2015-09-19 17:35:57 +00:00
struct CMeshUtilsContext
2015-09-19 15:14:35 +00:00
{
2015-09-19 17:35:57 +00:00
CMeshUtilsContext(const CMeshUtilsSettings &settings) : Settings(settings), AssimpScene(NULL)
{
}
const CMeshUtilsSettings &Settings;
2015-09-20 12:08:38 +00:00
NLMISC::CToolLogger ToolLogger;
2015-09-19 17:35:57 +00:00
const aiScene *AssimpScene;
2015-09-20 14:44:56 +00:00
CSceneMeta SceneMeta;
2015-09-19 17:35:57 +00:00
2015-09-20 14:44:56 +00:00
TNodeContextMap Nodes;
// std::map<const aiMesh *, NLMISC::CSString> MeshNames; // Maps meshes to a node name ********************* todo ***************
2015-09-19 17:35:57 +00:00
};
2015-09-20 14:44:56 +00:00
void importNode(CMeshUtilsContext &context, const aiNode *node)
2015-09-19 17:35:57 +00:00
{
if (node->mNumMeshes)
{
// TODO
}
for (unsigned int i = 0; i < node->mNumChildren; ++i)
2015-09-20 14:44:56 +00:00
importNode(context, node->mChildren[i]);
2015-09-19 17:35:57 +00:00
}
void validateAssimpNodeNames(CMeshUtilsContext &context, const aiNode *node)
{
if (!node->mParent || node == context.AssimpScene->mRootNode)
{
// do nothing
}
else if (node->mName.length == 0)
{
2015-09-20 12:08:38 +00:00
tlwarning(context.ToolLogger, context.Settings.SourceFilePath.c_str(),
"Node has no name");
2015-09-19 17:35:57 +00:00
}
else
{
CNodeContext &nodeContext = context.Nodes[node->mName.C_Str()];
if (nodeContext.AssimpNode && nodeContext.AssimpNode != node)
{
2015-09-20 12:08:38 +00:00
tlerror(context.ToolLogger, context.Settings.SourceFilePath.c_str(),
"Node name '%s' appears multiple times", node->mName.C_Str());
2015-09-19 17:35:57 +00:00
}
else
{
nodeContext.AssimpNode = node;
}
}
for (unsigned int i = 0; i < node->mNumChildren; ++i)
validateAssimpNodeNames(context, node->mChildren[i]);
}
void flagAssimpBones(CMeshUtilsContext &context)
{
// Find out which nodes are bones by checking the mesh meta info
const aiScene *scene = context.AssimpScene;
for (unsigned int i = 0; i < scene->mNumMeshes; ++i)
{
// nldebug("FOUND MESH '%s'\n", scene->mMeshes[i]->mName.C_Str());
const aiMesh *mesh = scene->mMeshes[i];
for (unsigned int j = 0; j < mesh->mNumBones; ++j)
{
CNodeContext &nodeContext = context.Nodes[mesh->mBones[j]->mName.C_Str()];
2015-09-19 17:35:57 +00:00
if (!nodeContext.AssimpNode)
{
2015-09-20 12:08:38 +00:00
tlerror(context.ToolLogger, context.Settings.SourceFilePath.c_str(),
"Bone '%s' has no associated node", mesh->mBones[j]->mName.C_Str());
2015-09-19 17:35:57 +00:00
}
else
{
// Flag as bone
nodeContext.IsBone = true;
// Flag all parents as bones
2015-09-20 12:08:38 +00:00
/*const aiNode *parent = nodeContext.AssimpNode;
2015-09-19 17:35:57 +00:00
while (parent = parent->mParent) if (parent->mName.length)
{
context.Nodes[parent->mName.C_Str()].IsBone = true;
2015-09-20 12:08:38 +00:00
}*/
2015-09-19 17:35:57 +00:00
}
}
}
}
2015-09-20 14:44:56 +00:00
void flagRecursiveBones(CMeshUtilsContext &context, CNodeContext &nodeContext)
{
nodeContext.IsBone = true;
const aiNode *node = nodeContext.AssimpNode;
nlassert(node);
for (unsigned int i = 0; i < node->mNumChildren; ++i)
flagRecursiveBones(context, context.Nodes[node->mName.C_Str()]);
}
void flagMetaBones(CMeshUtilsContext &context)
{
for (TNodeContextMap::iterator it(context.Nodes.begin()), end(context.Nodes.end()); it != end; ++it)
{
CNodeContext &ctx = it->second;
CNodeMeta &meta = context.SceneMeta.Nodes[it->first];
if (meta.ExportBone == TBoneForce)
ctx.IsBone = true;
else if (meta.ExportBone == TBoneRoot)
flagRecursiveBones(context, ctx);
}
}
void flagLocalParentBones(CMeshUtilsContext &context, CNodeContext &nodeContext)
{
const aiNode *node = nodeContext.AssimpNode;
}
void flagAllParentBones(CMeshUtilsContext &context, CNodeContext &nodeContext)
{
const aiNode *parent = nodeContext.AssimpNode;
while (parent = parent->mParent) if (parent->mName.length)
context.Nodes[parent->mName.C_Str()].IsBone = true;
}
void flagExpandedBones(CMeshUtilsContext &context)
{
switch (context.SceneMeta.SkeletonMode)
{
case TSkelLocal:
for (TNodeContextMap::iterator it(context.Nodes.begin()), end(context.Nodes.end()); it != end; ++it)
{
CNodeContext &nodeContext = it->second;
if (nodeContext.IsBone)
{
}
}
break;
case TSkelRoot:
for (TNodeContextMap::iterator it(context.Nodes.begin()), end(context.Nodes.end()); it != end; ++it)
{
CNodeContext &nodeContext = it->second;
if (nodeContext.IsBone)
{
}
}
break;
case TSkelFull:
for (TNodeContextMap::iterator it(context.Nodes.begin()), end(context.Nodes.end()); it != end; ++it)
{
CNodeContext &nodeContext = it->second;
if (nodeContext.IsBone)
{
}
}
break;
}
}
2015-09-19 17:35:57 +00:00
// TODO: Separate load scene and save scene functions
int exportScene(const CMeshUtilsSettings &settings)
{
2015-09-20 12:08:38 +00:00
CMeshUtilsContext context(settings);
NLMISC::CFile::createDirectoryTree(settings.DestinationDirectoryPath);
2015-09-20 12:08:38 +00:00
if (!settings.ToolDependLog.empty())
context.ToolLogger.initDepend(settings.ToolDependLog);
if (!settings.ToolErrorLog.empty())
context.ToolLogger.initError(settings.ToolErrorLog);
2015-09-20 12:08:38 +00:00
context.ToolLogger.writeDepend(NLMISC::BUILD, "*", context.Settings.SourceFilePath.c_str()); // Base input file
// Apply database configuration
CDatabaseConfig::init(settings.SourceFilePath);
CDatabaseConfig::initTextureSearchDirectories();
2015-09-20 12:08:38 +00:00
2015-09-19 17:35:57 +00:00
Assimp::Importer importer;
const aiScene *scene = importer.ReadFile(settings.SourceFilePath, aiProcess_Triangulate | aiProcess_ValidateDataStructure); // aiProcess_SplitLargeMeshes | aiProcess_LimitBoneWeights
2015-09-20 12:08:38 +00:00
if (!scene)
{
const char *errs = importer.GetErrorString();
if (errs) tlerror(context.ToolLogger, context.Settings.SourceFilePath.c_str(), "Assimp failed to load the scene: '%s'", errs);
2015-09-20 12:08:38 +00:00
else tlerror(context.ToolLogger, context.Settings.SourceFilePath.c_str(), "Unable to load scene");
return EXIT_FAILURE;
}
// aiProcess_Triangulate
2015-09-19 17:35:57 +00:00
// aiProcess_ValidateDataStructure: TODO: Catch Assimp error output stream
// aiProcess_RemoveRedundantMaterials: Not used because we may override materials with NeL Material from meta
// aiProcess_ImproveCacheLocality: TODO: Verify this does not modify vertex indices
//scene->mRootNode->mMetaData
context.AssimpScene = scene;
2015-09-20 14:44:56 +00:00
if (context.SceneMeta.load(context.Settings.SourceFilePath))
context.ToolLogger.writeDepend(NLMISC::BUILD, "*", context.SceneMeta.metaFilePath().c_str()); // Meta input file
2015-09-19 17:35:57 +00:00
validateAssimpNodeNames(context, context.AssimpScene->mRootNode);
2015-09-19 17:35:57 +00:00
flagAssimpBones(context);
2015-09-20 14:44:56 +00:00
flagMetaBones(context);
flagExpandedBones(context);
2015-09-19 17:35:57 +00:00
2015-09-20 14:44:56 +00:00
importNode(context, scene->mRootNode);
2015-09-19 17:35:57 +00:00
2015-09-19 16:08:25 +00:00
return EXIT_SUCCESS;
2015-09-19 15:14:35 +00:00
}
/* end of file */