author | unc0rr |
Mon, 03 Dec 2012 12:02:32 +0400 | |
changeset 8197 | 6d9371d6d045 |
parent 8150 | 6b30a4cd7c7c |
child 8204 | 9a6030d96273 |
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; |
5441
39962b855540
Add grayscale option for 3d, helps with colour clashing
nemo
parents:
5239
diff
changeset
|
40 |
if (tmp > 9) and (tmp < 16) then |
39962b855540
Add grayscale option for 3d, helps with colour clashing
nemo
parents:
5239
diff
changeset
|
41 |
begin |
6982 | 42 |
GrayScale:= true; |
5441
39962b855540
Add grayscale option for 3d, helps with colour clashing
nemo
parents:
5239
diff
changeset
|
43 |
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
|
44 |
end |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6426
diff
changeset
|
45 |
else if tmp <= 9 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6426
diff
changeset
|
46 |
cStereoMode:= TStereoMode(max(0, min(ord(high(TStereoMode)), tmp))) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6426
diff
changeset
|
47 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6426
diff
changeset
|
48 |
cStereoMode:= TStereoMode(max(0, min(ord(high(TStereoMode)), tmp-6))); |
4004
b1c2c2f6fc5e
update branch with latest head, most likely breaking water color in stereo mode
koda
parents:
3858
diff
changeset
|
49 |
cLocaleFName:= ParamStr(17); |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
50 |
end; |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
51 |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
52 |
{$IFDEF USE_VIDEO_RECORDING} |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
53 |
procedure internalStartVideoRecordingWithParameters(); |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
54 |
begin |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
55 |
internalStartGameWithParameters(); |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
56 |
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
|
57 |
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
|
58 |
cVideoFramerateDen:= StrToInt(ParamStr(19)); |
7306
3cff5c769509
Here they come - thumbnails.
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
59 |
RecPrefix:= ParamStr(20); |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
60 |
cAVFormat:= ParamStr(21); |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
61 |
cVideoCodec:= ParamStr(22); |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
62 |
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
|
63 |
cAudioCodec:= ParamStr(24); |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
64 |
end; |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
65 |
{$ENDIF} |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
66 |
|
8150 | 67 |
procedure DisplayUsage; |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
68 |
begin |
8150 | 69 |
WriteLn(stdout, 'Usage:'); |
70 |
WriteLn(stdout, ''); |
|
71 |
WriteLn(stdout, ' hwengine <path to user hedgewars folder> <path to global data folder> <path to replay file> [options]'); |
|
72 |
WriteLn(stdout, ''); |
|
73 |
WriteLn(stdout, 'where [options] are any of the following:'); |
|
74 |
WriteLn(stdout, ' --locale [path to language file]'); |
|
75 |
WriteLn(stdout, ' --width [screen width in pixels]'); |
|
76 |
WriteLn(stdout, ' --height [screen height in pixels]'); |
|
77 |
WriteLn(stdout, ' --depth [color depth]'); |
|
78 |
WriteLn(stdout, ' --volume [sound level]'); |
|
79 |
WriteLn(stdout, ' --time [number of seconds]'); |
|
80 |
WriteLn(stdout, ' --nomusic'); |
|
81 |
WriteLn(stdout, ' --nosound'); |
|
82 |
WriteLn(stdout, ' --fullscreen'); |
|
83 |
WriteLn(stdout, ' --showfps'); |
|
84 |
WriteLn(stdout, ' --altdmg'); |
|
85 |
WriteLn(stdout, ' --lowquality'); |
|
86 |
WriteLn(stdout, ' --stats-only'); |
|
87 |
WriteLn(stdout, ' --help'); |
|
88 |
WriteLn(stdout, ''); |
|
89 |
WriteLn(stdout, 'Deprecated options:'); |
|
90 |
WriteLn(stdout, ' --set-video [screen width] [screen height] [color dept]'); |
|
91 |
WriteLn(stdout, ' --set-audio [volume] [enable music] [enable sounds]'); |
|
92 |
WriteLn(stdout, ' --set-other [language file] [full screen] [show FPS]'); |
|
93 |
WriteLn(stdout, ' --set-multimedia [screen width] [screen height] [color dept] [volume] [enable music] [enable sounds] [language file] [full screen]'); |
|
94 |
WriteLn(stdout, ' --set-everything [screen width] [screen height] [color dept] [volume] [enable music] [enable sounds] [language file] [full screen] [show FPS] [alternate damage] [timer value] [reduced quality]'); |
|
95 |
WriteLn(stdout, ''); |
|
96 |
WriteLn(stdout, 'For a more detailed help and examples go to:'); |
|
97 |
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
|
98 |
end; |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
99 |
|
8150 | 100 |
function getLongIntParameter(str:String; var paramIndex:LongInt; var wrongParameter:Boolean): LongInt; |
101 |
var tmpInt, c: LongInt; |
|
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
102 |
begin |
8150 | 103 |
paramIndex:= paramIndex + 1; |
104 |
val(str, tmpInt, c); |
|
105 |
wrongParameter:= c <> 0; |
|
106 |
if wrongParameter then |
|
107 |
WriteLn(stderr, 'ERROR: '+ParamStr(paramIndex-1)+' expects a number, you passed "'+str+'"'); |
|
108 |
getLongIntParameter:= tmpInt; |
|
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
109 |
end; |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
110 |
|
8150 | 111 |
function getStringParameter(str:String; var paramIndex:LongInt): String; |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
112 |
begin |
8150 | 113 |
paramIndex:= paramIndex + 1; |
114 |
getStringParameter:= str; |
|
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
115 |
end; |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
116 |
|
8150 | 117 |
procedure parseClassicParameter(cmdArray: Array of String; size:LongInt; var paramIndex:LongInt); Forward; |
118 |
||
119 |
function parseParameter(cmd:String; arg:String; var paramIndex:LongInt): Boolean; |
|
120 |
const videoArray: Array [1..3] of String = ('--width','--height','--depth'); |
|
121 |
const audioArray: Array [1..3] of String = ('--volume','--nomusic','--nosound'); |
|
122 |
const otherArray: Array [1..3] of String = ('--locale','--fullscreen','--showfps'); |
|
123 |
const mediaArray: Array [1..8] of String = ('--width','--height','--depth','--volume','--nomusic','--nosound','--locale','--fullscreen'); |
|
124 |
const allArray: Array [1..12] of String = ('--width','--height','--depth','--volume','--nomusic','--nosound','--locale','--fullscreen','--showfps','--altdmg','--time','--lowquality'); |
|
8197 | 125 |
const reallyAll: array[0..19] of shortstring = ( |
126 |
'--locale', '--width', '--height', '--depth', '--time' |
|
127 |
, '--volume', '--nomusic', '--nosound', '--fullscreen', '--showfps' |
|
128 |
, '--altdmg', '--lowquality', '--set-video', '--set-audio', '--set-other' |
|
129 |
, '--set-multimedia', '--set-everything', '--stats-only', '--gci', '--help'); |
|
130 |
var cmdIndex: byte; |
|
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
131 |
begin |
8150 | 132 |
parseParameter:= false; |
8197 | 133 |
cmdIndex:= 0; |
134 |
while (cmdIndex <= High(reallyAll)) and (cmd <> reallyAll[cmdIndex]) do inc(cmdIndex); |
|
135 |
case cmdIndex of |
|
136 |
{--locale} 0 : cLocaleFName := getStringParameter (arg, paramIndex); |
|
137 |
{--width} 1 : cScreenWidth := getLongIntParameter(arg, paramIndex, parseParameter); |
|
138 |
{--height} 2 : cScreenHeight := getLongIntParameter(arg, paramIndex, parseParameter); |
|
139 |
{--depth} 3 : cBits := getLongIntParameter(arg, paramIndex, parseParameter); |
|
140 |
{--time} 4 : cTimerInterval := getLongIntParameter(arg, paramIndex, parseParameter); |
|
141 |
{--volume} 5 : SetVolume ( getLongIntParameter(arg, paramIndex, parseParameter) ); |
|
142 |
{--nomusic} 6 : SetMusic ( false ); |
|
143 |
{--nosound} 7 : SetSound ( false ); |
|
144 |
{--fullscreen} 8 : cFullScreen := true; |
|
145 |
{--showfps} 9 : cShowFPS := true; |
|
146 |
{--altdmg} 10 : cAltDamage := true; |
|
147 |
{--lowquality} 11 : cReducedQuality:= ($FFFFFFFF * getLongIntParameter(arg, paramIndex, parseParameter)) xor rqLowRes; //HACK! |
|
148 |
{--set-video} 12 : parseClassicParameter(videoArray,3,paramIndex); |
|
149 |
{--set-audio} 13 : parseClassicParameter(audioArray,3,paramIndex); |
|
150 |
{--set-other} 14 : parseClassicParameter(otherArray,3,paramIndex); |
|
151 |
{--set-multimedia} 15 : parseClassicParameter(mediaArray,8,paramIndex); |
|
152 |
{--set-everything} 16 : parseClassicParameter(allArray,12,paramIndex); |
|
153 |
{--stats-only} 17 : begin |
|
154 |
cOnlyStats:= true; |
|
155 |
SetSound(false); |
|
156 |
SetMusic(false); |
|
157 |
cReducedQuality:= $FFFFFFFF xor rqLowRes; |
|
158 |
end; |
|
159 |
{--gci} 18 : begin // We had to make up all this saved space some how... \\ |
|
160 |
WriteLn(stdout, ' '); |
|
161 |
WriteLn(stdout, ' /\\\\\\\\\\\\ /\\\\\\\\\ /\\\\\\\\\\\ '); |
|
162 |
WriteLn(stdout, ' /\\\////////// /\\\//////// \/////\\\/// '); |
|
163 |
WriteLn(stdout, ' /\\\ /\\\/ \/\\\ '); |
|
164 |
WriteLn(stdout, ' \/\\\ /\\\\\\\ /\\\ \/\\\ '); |
|
165 |
WriteLn(stdout, ' \/\\\ \/////\\\ \/\\\ \/\\\ '); |
|
166 |
WriteLn(stdout, ' \/\\\ \/\\\ \//\\\ \/\\\ '); |
|
167 |
WriteLn(stdout, ' \/\\\ \/\\\ \///\\\ \/\\\ '); |
|
168 |
WriteLn(stdout, ' \//\\\\\\\\\\\\/ \////\\\\\\\\\ /\\\\\\\\\\\ '); |
|
169 |
WriteLn(stdout, ' \//////////// \///////// \/////////// '); |
|
170 |
WriteLn(stdout, ' '); |
|
171 |
WriteLn(stdout, ' Command Line Parser Implementation by a Google Code-In Student '); |
|
172 |
WriteLn(stdout, ' ASCII Art easter egg idea by @sheepluva '); |
|
173 |
WriteLn(stdout, ' '); |
|
174 |
end; |
|
175 |
{--help} 19 : begin |
|
176 |
DisplayUsage(); |
|
177 |
GameType:= gmtSyntax; |
|
178 |
end; |
|
8150 | 179 |
else |
180 |
begin |
|
181 |
WriteLn(stderr, 'ERROR: '+cmd+' is not a valid argument'); |
|
182 |
parseParameter:= true; |
|
183 |
end |
|
184 |
end; |
|
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
185 |
end; |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
186 |
|
8150 | 187 |
procedure parseClassicParameter(cmdArray: Array of String; size:LongInt; var paramIndex:LongInt); |
188 |
var index, tmpInt: LongInt; |
|
189 |
isBool: Boolean; |
|
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
190 |
begin |
8150 | 191 |
index:= 0; |
192 |
tmpInt:= 1; |
|
193 |
while (index < size) do |
|
194 |
begin |
|
195 |
paramIndex:= paramIndex+1; |
|
8197 | 196 |
// check if the parameter is a boolean one |
197 |
isBool:= (cmdArray[index] = '--nomusic') |
|
198 |
or (cmdArray[index] = '--nosound') |
|
199 |
or (cmdArray[index] = '--fullscreen') |
|
200 |
or (cmdArray[index] = '--showfps') |
|
201 |
or (cmdArray[index] = '--altdmg') |
|
202 |
or (cmdArray[index] = '--lowquality'); |
|
8150 | 203 |
if (not isBool) or ((ParamStr(paramIndex)='1') and (cmdArray[index]<>'--nomusic') and (cmdArray[index]<>'--nosound')) then |
204 |
parseParameter(cmdArray[index], ParamStr(paramIndex), tmpInt); |
|
205 |
//if isBool then |
|
206 |
// paramIndex:= paramIndex+1; |
|
207 |
index:= index+1; |
|
208 |
end; |
|
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
209 |
end; |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
210 |
|
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
211 |
procedure playReplayFileWithParameters(); |
8150 | 212 |
var paramIndex, tmpInt: LongInt; |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
213 |
wrongParameter: boolean; |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
214 |
begin |
5239 | 215 |
UserPathPrefix:= ParamStr(1); |
5238
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5130
diff
changeset
|
216 |
PathPrefix:= ParamStr(2); |
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5130
diff
changeset
|
217 |
recordFileName:= ParamStr(3); |
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5130
diff
changeset
|
218 |
paramIndex:= 4; |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
219 |
wrongParameter:= false; |
8150 | 220 |
while (paramIndex <= ParamCount) do |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
221 |
begin |
8150 | 222 |
if parseParameter( ParamStr(paramIndex), ParamStr(paramIndex+1), paramIndex) then |
223 |
wrongParameter:= true; |
|
224 |
paramIndex:= paramIndex+1; |
|
225 |
end; |
|
226 |
if wrongParameter = true then |
|
227 |
begin |
|
228 |
WriteLn(stderr, 'Please use --help to see possible arguments and their usage'); |
|
229 |
GameType:= gmtSyntax; |
|
230 |
end |
|
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
diff
changeset
|
231 |
end; |