123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- /* Copyright (c) 2002-2012 Croteam Ltd.
- This program is free software; you can redistribute it and/or modify
- it under the terms of version 2 of the GNU General Public License as published by
- the Free Software Foundation
- 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 General Public License for more details.
- You should have received a copy of the GNU General Public License along
- with this program; if not, write to the Free Software Foundation, Inc.,
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
- #include "StdH.h"
- #include <Engine/CurrentVersion.h>
- #include "CmdLine.h"
- extern CTString cmd_strWorld = ""; // world to load
- extern INDEX cmd_iGoToMarker = -1; // marker to go to
- extern CTString cmd_strScript = ""; // script to execute
- extern CTString cmd_strServer = ""; // server to connect to
- extern INDEX cmd_iPort = -1; // port to connect to
- extern CTString cmd_strPassword = ""; // network password
- extern CTString cmd_strOutput = ""; // output from parsing command line
- extern BOOL cmd_bServer = FALSE; // set to run as server
- extern BOOL cmd_bQuickJoin = FALSE; // do not ask for players and network settings
- static CTString _strCmd;
- // get first next word or quoted string
- CTString GetNextParam(void)
- {
- // strip leading spaces/tabs
- _strCmd.TrimSpacesLeft();
- // if nothing left
- if (_strCmd=="") {
- // no word to return
- return "";
- }
- // if the first char is quote
- if (_strCmd[0]=='"') {
- // find first next quote
- const char *pchClosingQuote = strchr(_strCmd+1, '"');
- // if not found
- if (pchClosingQuote==NULL) {
- // error in command line
- cmd_strOutput+=CTString(0, TRANS("Command line error!\n"));
- // finish parsing
- _strCmd = "";
- return "";
- }
- INDEX iQuote = pchClosingQuote-_strCmd;
- // get the quoted string
- CTString strWord;
- CTString strRest;
- _strCmd.Split(iQuote, strWord, strRest);
- // remove the quotes
- strWord.DeleteChar(0);
- strRest.DeleteChar(0);
- // get the word
- _strCmd = strRest;
- return strWord;
- // if the first char is not quote
- } else {
- // find first next space
- INDEX iSpace;
- INDEX ctChars = strlen(_strCmd);
- for(iSpace=0; iSpace<ctChars; iSpace++) {
- if (isspace(_strCmd[iSpace])) {
- break;
- }
- }
- // get the word string
- CTString strWord;
- CTString strRest;
- _strCmd.Split(iSpace, strWord, strRest);
- // remove the space
- strRest.DeleteChar(0);
- // get the word
- _strCmd = strRest;
- return strWord;
- }
- }
- // parse command line parameters and set results to static variables
- void ParseCommandLine(CTString strCmd)
- {
- cmd_strOutput = "";
- cmd_strOutput+=CTString(0, TRANS("Command line: '%s'\n"), strCmd);
- // if no command line
- if (strlen(strCmd) == 0) {
- // do nothing
- return;
- }
- _strCmd = strCmd;
- FOREVER {
- CTString strWord = GetNextParam();
- if (strWord=="") {
- cmd_strOutput+="\n";
- return;
- } else if (strWord=="+level") {
- cmd_strWorld = GetNextParam();
- } else if (strWord=="+server") {
- cmd_bServer = TRUE;
- } else if (strWord=="+quickjoin") {
- cmd_bQuickJoin = TRUE;
- } else if (strWord=="+game") {
- CTString strMod = GetNextParam();
- if (strMod!="SeriousSam") { // (we ignore default mod - always use base dir in that case)
- _fnmMod = "Mods\\"+strMod+"\\";
- }
- } else if (strWord=="+cdpath") {
- _fnmCDPath = GetNextParam();
- } else if (strWord=="+password") {
- cmd_strPassword = GetNextParam();
- } else if (strWord=="+connect") {
- cmd_strServer = GetNextParam();
- const char *pcColon = strchr(cmd_strServer, ':');
- if (pcColon!=NULL) {
- CTString strServer;
- CTString strPort;
- cmd_strServer.Split(pcColon-cmd_strServer, strServer, strPort);
- cmd_strServer = strServer;
- strPort.ScanF(":%d", &cmd_iPort);
- }
- } else if (strWord=="+script") {
- cmd_strScript = GetNextParam();
- } else if (strWord=="+goto") {
- GetNextParam().ScanF("%d", &cmd_iGoToMarker);
- } else if (strWord=="+logfile") {
- _strLogFile = GetNextParam();
- } else {
- cmd_strOutput+=CTString(0, TRANS(" Unknown option: '%s'\n"), strWord);
- }
- }
- }
|