khanat-opennel-code/code/nel/tools/3d/mesh_export/main.cpp

71 lines
2 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>
2015-09-19 15:14:35 +00:00
#include "../mesh_utils/mesh_utils.h"
2015-09-19 16:08:25 +00:00
#include <nel/misc/cmd_args.h>
#include <nel/misc/path.h>
2015-09-19 17:35:57 +00:00
#include <nel/3d/register_3d.h>
#include <nel/3d/scene.h>
2015-09-19 16:08:25 +00:00
int printHelp(const NLMISC::CCmdArgs &args)
{
printf("NeL Mesh Export\n");
return EXIT_SUCCESS;
}
2015-09-19 15:14:35 +00:00
int main(int argc, char *argv[])
{
2015-09-19 17:35:57 +00:00
NLMISC::CApplicationContext app;
2015-09-19 16:08:25 +00:00
NLMISC::CCmdArgs args;
args.setArgs(argc, (const char **)argv);
if (args.getArgs().size() == 1
|| args.haveArg('h')
|| args.haveLongArg("help"))
return printHelp(args);
const NLMISC::CSString &filePath = args.getArgs().back();
if (!NLMISC::CFile::fileExists(filePath))
{
printHelp(args);
nlerror("File '%s' does not exist", filePath);
return EXIT_FAILURE;
}
CMeshUtilsSettings settings;
settings.SourceFilePath = filePath;
2015-09-19 17:35:57 +00:00
if (args.haveArg('d'))
settings.DestinationDirectoryPath = args.getArg('d');
if (settings.DestinationDirectoryPath.empty())
settings.DestinationDirectoryPath = args.getLongArg("dst");
if (settings.DestinationDirectoryPath.empty())
settings.DestinationDirectoryPath = filePath + "_export";
settings.DestinationDirectoryPath += "/";
NL3D::CScene::registerBasics();
NL3D::registerSerial3d();
2015-09-19 16:08:25 +00:00
return exportScene(settings);
2015-09-19 15:14:35 +00:00
}
/* end of file */