2017-03-15 19:43:10 +00:00
|
|
|
// Ryzom - MMORPG Framework <http://dev.ryzom.com/projects/ryzom/>
|
|
|
|
// Copyright (C) 2010 Winch Gate Property Limited
|
|
|
|
//
|
|
|
|
// 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/>.
|
|
|
|
|
|
|
|
#include "nel/misc/debug.h"
|
|
|
|
#include "nel/misc/command.h"
|
|
|
|
#include "nel/misc/sstring.h"
|
2018-11-29 21:18:09 +00:00
|
|
|
#include "nel/misc/cmd_args.h"
|
|
|
|
#include "patch_gen_common.h"
|
2017-03-15 19:43:10 +00:00
|
|
|
//#include "game_share/handy_commands.h"
|
|
|
|
|
|
|
|
//-----------------------------------------------
|
|
|
|
// MAIN
|
|
|
|
//-----------------------------------------------
|
|
|
|
int main(int argc,char** argv)
|
|
|
|
{
|
|
|
|
NLMISC::createDebug();
|
|
|
|
|
2018-11-29 21:18:09 +00:00
|
|
|
// Parse Command Line.
|
|
|
|
NLMISC::CCmdArgs args;
|
|
|
|
|
|
|
|
args.setDescription("Generate patch");
|
|
|
|
args.addArg("j", "jobs", "jobs", "Specifies the number of jobs (commands) to run simultaneously");
|
|
|
|
args.addAdditionalArg("CommandLine","command line (For a list of valid commands and their paramaters try help)",false,true);
|
|
|
|
|
2017-03-15 19:43:10 +00:00
|
|
|
// if there are no command line args then display a friendly message and exit
|
2018-11-29 21:18:09 +00:00
|
|
|
if (!args.parse(argc, argv))
|
|
|
|
{
|
|
|
|
args.displayHelp();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Analyze option
|
|
|
|
try
|
2017-03-15 19:43:10 +00:00
|
|
|
{
|
2018-11-29 21:18:09 +00:00
|
|
|
std::string cjobs = args.haveArg("j") ? args.getArg("j").front() : "1";
|
|
|
|
jobs_simultaneously = (uint32) std::stoul(cjobs);
|
|
|
|
} catch (const std::invalid_argument) {
|
|
|
|
args.displayHelp();
|
|
|
|
NLMISC::ErrorLog->displayNL("Bad value for parameter jobs");
|
|
|
|
return 2;
|
2017-03-15 19:43:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// build the command line by concatnating input arguments (separating with spaces)
|
2018-11-29 21:18:09 +00:00
|
|
|
NLMISC::DebugLog->displayNL("param jobs:%u", jobs_simultaneously);
|
|
|
|
std::vector<std::string> listargs = args.getAdditionalArg("CommandLine");
|
2017-03-15 19:43:10 +00:00
|
|
|
NLMISC::CSString commandline;
|
2018-11-29 21:18:09 +00:00
|
|
|
for (std::vector<std::string>::iterator it = listargs.begin() ; it != listargs.end(); ++it)
|
2017-03-15 19:43:10 +00:00
|
|
|
{
|
2018-11-29 21:18:09 +00:00
|
|
|
NLMISC::CSString s = *it;
|
2017-03-15 19:43:10 +00:00
|
|
|
// check whether the argument needs to be quote encapsulated
|
|
|
|
if (s.contains(' ') && s[0]!='\"')
|
|
|
|
s= "\""+ s+ "\"";
|
|
|
|
|
2018-11-29 21:18:09 +00:00
|
|
|
if ( it != listargs.begin() )
|
2017-03-15 19:43:10 +00:00
|
|
|
commandline+=' ';
|
|
|
|
commandline+= s;
|
|
|
|
}
|
|
|
|
|
|
|
|
// have NeL treat the command
|
|
|
|
NLMISC::ICommand::execute(commandline, *NLMISC::InfoLog);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|