author | RowanD |
Mon, 17 Dec 2012 00:18:18 +0100 | |
changeset 8307 | 8d7c52b24e28 |
parent 8302 | a7934cd12469 |
child 8308 | cdf83bdf7b27 |
permissions | -rw-r--r-- |
4976 | 1 |
(* |
2 |
* Hedgewars, a free turn based strategy game |
|
6700 | 3 |
* Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com> |
4976 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*) |
|
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
18 |
|
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
19 |
|
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
20 |
procedure internalStartGameWithParameters(); |
4004
b1c2c2f6fc5e
update branch with latest head, most likely breaking water color in stereo mode
koda
parents:
3858
diff
changeset
|
21 |
var tmp: LongInt; |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
22 |
begin |
5239 | 23 |
UserPathPrefix:= ParamStr(1); |
7151 | 24 |
cScreenWidth:= StrToInt(ParamStr(2)); |
25 |
cScreenHeight:= StrToInt(ParamStr(3)); |
|
26 |
cBits:= StrToInt(ParamStr(4)); |
|
27 |
ipcPort:= StrToInt(ParamStr(5)); |
|
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
28 |
cFullScreen:= ParamStr(6) = '1'; |
7021
0c75512a8920
adjust the scope of a few uSound variables and functions
koda
parents:
6982
diff
changeset
|
29 |
SetSound(ParamStr(7) = '1'); |
0c75512a8920
adjust the scope of a few uSound variables and functions
koda
parents:
6982
diff
changeset
|
30 |
SetMusic(ParamStr(8) = '1'); |
7151 | 31 |
SetVolume(StrToInt(ParamStr(9))); |
32 |
cTimerInterval:= StrToInt(ParamStr(10)); |
|
3709 | 33 |
PathPrefix:= ParamStr(11); |
34 |
cShowFPS:= ParamStr(12) = '1'; |
|
35 |
cAltDamage:= ParamStr(13) = '1'; |
|
36 |
UserNick:= DecodeBase64(ParamStr(14)); |
|
7151 | 37 |
cReducedQuality:= StrToInt(ParamStr(15)); |
38 |
tmp:= StrToInt(ParamStr(16)); |
|
6982 | 39 |
GrayScale:= false; |
8221 | 40 |
{$IFDEF USE_S3D_RENDERING} |
41 |
if (tmp > 9) and (tmp < 16) then |
|
5441
39962b855540
Add grayscale option for 3d, helps with colour clashing
nemo
parents:
5239
diff
changeset
|
42 |
begin |
8221 | 43 |
// set the gray anaglyph rendering |
6982 | 44 |
GrayScale:= true; |
5441
39962b855540
Add grayscale option for 3d, helps with colour clashing
nemo
parents:
5239
diff
changeset
|
45 |
cStereoMode:= TStereoMode(max(0, min(ord(high(TStereoMode)), tmp-9))) |
39962b855540
Add grayscale option for 3d, helps with colour clashing
nemo
parents:
5239
diff
changeset
|
46 |
end |
8221 | 47 |
else if tmp <= 9 then |
48 |
// set the fullcolor anaglyph |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6426
diff
changeset
|
49 |
cStereoMode:= TStereoMode(max(0, min(ord(high(TStereoMode)), tmp))) |
8221 | 50 |
else |
51 |
// any other mode |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6426
diff
changeset
|
52 |
cStereoMode:= TStereoMode(max(0, min(ord(high(TStereoMode)), tmp-6))); |
8221 | 53 |
{$ELSE} |
54 |
cStereoMode:= smNone; |
|
55 |
{$ENDIF} |
|
4004
b1c2c2f6fc5e
update branch with latest head, most likely breaking water color in stereo mode
koda
parents:
3858
diff
changeset
|
56 |
cLocaleFName:= ParamStr(17); |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
57 |
end; |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
58 |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
59 |
{$IFDEF USE_VIDEO_RECORDING} |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
60 |
procedure internalStartVideoRecordingWithParameters(); |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
61 |
begin |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
62 |
internalStartGameWithParameters(); |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
63 |
GameType:= gmtRecord; |
7376
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7306
diff
changeset
|
64 |
cVideoFramerateNum:= StrToInt(ParamStr(18)); |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7306
diff
changeset
|
65 |
cVideoFramerateDen:= StrToInt(ParamStr(19)); |
7306
3cff5c769509
Here they come - thumbnails.
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
66 |
RecPrefix:= ParamStr(20); |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
67 |
cAVFormat:= ParamStr(21); |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
68 |
cVideoCodec:= ParamStr(22); |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
69 |
cVideoQuality:= StrToInt(ParamStr(23)); |
7376
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7306
diff
changeset
|
70 |
cAudioCodec:= ParamStr(24); |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
71 |
end; |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
72 |
{$ENDIF} |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
73 |
|
8150 | 74 |
procedure DisplayUsage; |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
75 |
begin |
8150 | 76 |
WriteLn(stdout, 'Usage:'); |
77 |
WriteLn(stdout, ''); |
|
8307 | 78 |
WriteLn(stdout, ' hwengine <path to replay file> [options]'); |
8150 | 79 |
WriteLn(stdout, ''); |
80 |
WriteLn(stdout, 'where [options] are any of the following:'); |
|
8307 | 81 |
WriteLn(stdout, ' --prefix [path to folder]'); |
82 |
WriteLn(stdout, ' --user-prefix [path to folder]'); |
|
8302
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
83 |
WriteLn(stdout, ' --locale [name of language file]'); |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
84 |
WriteLn(stdout, ' --width [screen width in pixels]'); |
8150 | 85 |
WriteLn(stdout, ' --height [screen height in pixels]'); |
86 |
WriteLn(stdout, ' --volume [sound level]'); |
|
8302
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
87 |
WriteLn(stdout, ' --frame-interval [milliseconds]'); |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
88 |
WriteLn(stdout, ' --raw-quality [flags]'); |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
89 |
WriteLn(stdout, ' --low-quality'); |
8150 | 90 |
WriteLn(stdout, ' --nomusic'); |
91 |
WriteLn(stdout, ' --nosound'); |
|
92 |
WriteLn(stdout, ' --fullscreen'); |
|
93 |
WriteLn(stdout, ' --showfps'); |
|
94 |
WriteLn(stdout, ' --altdmg'); |
|
95 |
WriteLn(stdout, ' --stats-only'); |
|
96 |
WriteLn(stdout, ' --help'); |
|
97 |
WriteLn(stdout, ''); |
|
8302
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
98 |
WriteLn(stdout, 'For more detailed help and examples go to:'); |
8150 | 99 |
WriteLn(stdout, 'http://code.google.com/p/hedgewars/wiki/CommandLineOptions'); |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
100 |
end; |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
101 |
|
8150 | 102 |
function getLongIntParameter(str:String; var paramIndex:LongInt; var wrongParameter:Boolean): LongInt; |
103 |
var tmpInt, c: LongInt; |
|
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
104 |
begin |
8150 | 105 |
paramIndex:= paramIndex + 1; |
106 |
val(str, tmpInt, c); |
|
107 |
wrongParameter:= c <> 0; |
|
108 |
if wrongParameter then |
|
109 |
WriteLn(stderr, 'ERROR: '+ParamStr(paramIndex-1)+' expects a number, you passed "'+str+'"'); |
|
110 |
getLongIntParameter:= tmpInt; |
|
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
111 |
end; |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
112 |
|
8302
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
113 |
function getStringParameter(str:String; var paramIndex:LongInt; var wrongParameter:Boolean): String; |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
114 |
begin |
8150 | 115 |
paramIndex:= paramIndex + 1; |
8302
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
116 |
wrongParameter:= (str='') or (Copy(str,1,2) = '--'); |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
117 |
if wrongParameter then |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
118 |
WriteLn(stderr, 'ERROR: '+ParamStr(paramIndex-1)+' expects a string, you passed "'+str+'"'); |
8150 | 119 |
getStringParameter:= str; |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
120 |
end; |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
121 |
|
8302
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
122 |
|
8150 | 123 |
procedure parseClassicParameter(cmdArray: Array of String; size:LongInt; var paramIndex:LongInt); Forward; |
124 |
||
125 |
function parseParameter(cmd:String; arg:String; var paramIndex:LongInt): Boolean; |
|
126 |
const videoArray: Array [1..3] of String = ('--width','--height','--depth'); |
|
127 |
const audioArray: Array [1..3] of String = ('--volume','--nomusic','--nosound'); |
|
128 |
const otherArray: Array [1..3] of String = ('--locale','--fullscreen','--showfps'); |
|
129 |
const mediaArray: Array [1..8] of String = ('--width','--height','--depth','--volume','--nomusic','--nosound','--locale','--fullscreen'); |
|
130 |
const allArray: Array [1..12] of String = ('--width','--height','--depth','--volume','--nomusic','--nosound','--locale','--fullscreen','--showfps','--altdmg','--time','--lowquality'); |
|
8307 | 131 |
const reallyAll: array[0..22] of shortstring = ( |
132 |
'--prefix', '--user-prefix', '--locale', '--width', '--height', '--frame-interval', '--volume','--nomusic', '--nosound', |
|
8302
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
133 |
'--fullscreen', '--showfps', '--altdmg', '--low-quality', '--raw-quality', |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
134 |
{deprecated} '--depth', '--set-video', '--set-audio', '--set-other', '--set-multimedia', '--set-everything', |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
135 |
'--stats-only', '--gci', '--help'); |
8197 | 136 |
var cmdIndex: byte; |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
137 |
begin |
8150 | 138 |
parseParameter:= false; |
8197 | 139 |
cmdIndex:= 0; |
8302
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
140 |
|
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
141 |
//NOTE: Any update to the list of parameters must be reflected in the case statement below, the reallyAll array above, |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
142 |
// the the DisplayUsage() procedure, the HWForm::getDemoArguments() function, and the online wiki |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
143 |
|
8197 | 144 |
while (cmdIndex <= High(reallyAll)) and (cmd <> reallyAll[cmdIndex]) do inc(cmdIndex); |
145 |
case cmdIndex of |
|
8307 | 146 |
{--prefix} 0 : PathPrefix := getStringParameter (arg, paramIndex, parseParameter); |
147 |
{--user-prefix} 1 : UserPathPrefix := getStringParameter (arg, paramIndex, parseParameter); |
|
148 |
{--locale} 2 : cLocaleFName := getStringParameter (arg, paramIndex, parseParameter); |
|
149 |
{--width} 3 : cScreenWidth := getLongIntParameter(arg, paramIndex, parseParameter); |
|
150 |
{--height} 4 : cScreenHeight := getLongIntParameter(arg, paramIndex, parseParameter); |
|
151 |
{--frame-interval} 5 : cTimerInterval := getLongIntParameter(arg, paramIndex, parseParameter); |
|
152 |
{--volume} 6 : SetVolume ( getLongIntParameter(arg, paramIndex, parseParameter) ); |
|
153 |
{--nomusic} 7 : SetMusic ( false ); |
|
154 |
{--nosound} 8 : SetSound ( false ); |
|
155 |
{--fullscreen} 9 : cFullScreen := true; |
|
156 |
{--showfps} 10 : cShowFPS := true; |
|
157 |
{--altdmg} 11 : cAltDamage := true; |
|
158 |
{--low-quality} 12 : cReducedQuality:= $FFFFFFFF xor rqLowRes; |
|
159 |
{--raw-quality} 13 : cReducedQuality:= getLongIntParameter(arg, paramIndex, parseParameter); |
|
8302
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
160 |
{deprecated options} |
8307 | 161 |
{--depth} 14 : cBits := getLongIntParameter(arg, paramIndex, parseParameter); |
162 |
{--set-video} 15 : parseClassicParameter(videoArray,3,paramIndex); |
|
163 |
{--set-audio} 16 : parseClassicParameter(audioArray,3,paramIndex); |
|
164 |
{--set-other} 17 : parseClassicParameter(otherArray,3,paramIndex); |
|
165 |
{--set-multimedia} 18 : parseClassicParameter(mediaArray,8,paramIndex); |
|
166 |
{--set-everything} 19 : parseClassicParameter(allArray,12,paramIndex); |
|
8302
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
167 |
{anything else} |
8307 | 168 |
{--stats-only} 20 : begin |
8302
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
169 |
cOnlyStats:= true; |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
170 |
cReducedQuality:= $FFFFFFFF xor rqLowRes; |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
171 |
SetSound(false); |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
172 |
end; |
8307 | 173 |
{--gci} 21 : begin // We had to make up all this saved space some how... \\ |
8302
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
174 |
WriteLn(stdout, ' '); |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
175 |
WriteLn(stdout, ' /\\\\\\\\\\\\ /\\\\\\\\\ /\\\\\\\\\\\ '); |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
176 |
WriteLn(stdout, ' /\\\////////// /\\\//////// \/////\\\/// '); |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
177 |
WriteLn(stdout, ' /\\\ /\\\/ \/\\\ '); |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
178 |
WriteLn(stdout, ' \/\\\ /\\\\\\\ /\\\ \/\\\ '); |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
179 |
WriteLn(stdout, ' \/\\\ \/////\\\ \/\\\ \/\\\ '); |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
180 |
WriteLn(stdout, ' \/\\\ \/\\\ \//\\\ \/\\\ '); |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
181 |
WriteLn(stdout, ' \/\\\ \/\\\ \///\\\ \/\\\ '); |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
182 |
WriteLn(stdout, ' \/\\\\\\\\\\\\\/ \////\\\\\\\\\ /\\\\\\\\\\\ '); |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
183 |
WriteLn(stdout, ' \///////////// \///////// \/////////// '); |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
184 |
WriteLn(stdout, ' '); |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
185 |
WriteLn(stdout, ' Command Line Parser Implementation by a Google Code-In Student '); |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
186 |
WriteLn(stdout, ' ASCII Art easter egg idea by @sheepluva '); |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
187 |
WriteLn(stdout, ' '); |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
188 |
end; |
8307 | 189 |
{--help} 22 : begin |
8302
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
190 |
DisplayUsage(); |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
191 |
GameType:= gmtSyntax; |
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
192 |
end; |
8150 | 193 |
else |
194 |
begin |
|
8307 | 195 |
//Asusme the first "non parameter" is the replay file, anything else is invalid |
196 |
if recordFileName = '' then |
|
197 |
recordFileName := cmd |
|
198 |
else |
|
199 |
begin |
|
200 |
WriteLn(stderr, 'ERROR: '+cmd+' is not a valid argument'); |
|
201 |
parseParameter:= true; |
|
202 |
end; |
|
203 |
end; |
|
8150 | 204 |
end; |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
205 |
end; |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
206 |
|
8150 | 207 |
procedure parseClassicParameter(cmdArray: Array of String; size:LongInt; var paramIndex:LongInt); |
208 |
var index, tmpInt: LongInt; |
|
209 |
isBool: Boolean; |
|
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
210 |
begin |
8150 | 211 |
index:= 0; |
212 |
tmpInt:= 1; |
|
213 |
while (index < size) do |
|
214 |
begin |
|
215 |
paramIndex:= paramIndex+1; |
|
8197 | 216 |
// check if the parameter is a boolean one |
217 |
isBool:= (cmdArray[index] = '--nomusic') |
|
218 |
or (cmdArray[index] = '--nosound') |
|
219 |
or (cmdArray[index] = '--fullscreen') |
|
220 |
or (cmdArray[index] = '--showfps') |
|
221 |
or (cmdArray[index] = '--altdmg') |
|
8302
a7934cd12469
improve engine cmd line parsing and its documentation
RowanD
parents:
8221
diff
changeset
|
222 |
or (cmdArray[index] = '--low-quality'); |
8150 | 223 |
if (not isBool) or ((ParamStr(paramIndex)='1') and (cmdArray[index]<>'--nomusic') and (cmdArray[index]<>'--nosound')) then |
224 |
parseParameter(cmdArray[index], ParamStr(paramIndex), tmpInt); |
|
225 |
index:= index+1; |
|
226 |
end; |
|
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
227 |
end; |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
228 |
|
8167
96635d815141
Make user folder default to global folder in hwengine
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
8150
diff
changeset
|
229 |
procedure playReplayFileWithParameters(paramIndex: LongInt); |
8207
5f08609613fe
Made user data path default to '.'.
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
8204
diff
changeset
|
230 |
var tmpInt: LongInt; |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
231 |
wrongParameter: boolean; |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
232 |
begin |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
233 |
wrongParameter:= false; |
8150 | 234 |
while (paramIndex <= ParamCount) do |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
235 |
begin |
8150 | 236 |
if parseParameter( ParamStr(paramIndex), ParamStr(paramIndex+1), paramIndex) then |
237 |
wrongParameter:= true; |
|
238 |
paramIndex:= paramIndex+1; |
|
239 |
end; |
|
240 |
if wrongParameter = true then |
|
241 |
begin |
|
242 |
WriteLn(stderr, 'Please use --help to see possible arguments and their usage'); |
|
243 |
GameType:= gmtSyntax; |
|
244 |
end |
|
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
245 |
end; |