author | kompowiec |
Thu, 03 May 2018 18:00:49 +0200 | |
changeset 13366 | f2e1c0422396 |
parent 13107 | 7b3bc9a4dfb9 |
child 13465 | 08a3851aaf67 |
permissions | -rw-r--r-- |
4976 | 1 |
(* |
2 |
* Hedgewars, a free turn based strategy game |
|
11046 | 3 |
* Copyright (c) 2004-2015 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 |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
10015
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
4976 | 17 |
*) |
18 |
||
4413 | 19 |
{$INCLUDE "options.inc"} |
4976 | 20 |
|
4413 | 21 |
unit uCommandHandlers; |
22 |
||
23 |
interface |
|
24 |
||
25 |
procedure initModule; |
|
26 |
procedure freeModule; |
|
27 |
||
28 |
implementation |
|
12998
22e032ab1cb7
Toggle hog tag translucency with Precise + Change hog tags key
Wuzzy <Wuzzy2@mail.ru>
parents:
12997
diff
changeset
|
29 |
uses uCommands, uTypes, uVariables, uIO, uDebug, uConsts, uScript, uUtils, SDLh, uWorld, uRandom, uCaptions |
12815
92218a06c9ff
Don't send taunt message for automatically happening taunt animation
unc0rr
parents:
12490
diff
changeset
|
30 |
, uVisualGearsList, uGearsHedgehog |
7629 | 31 |
{$IFDEF USE_VIDEO_RECORDING}, uVideoRec {$ENDIF}; |
4413 | 32 |
|
13107
7b3bc9a4dfb9
uCommandHandlers: Remove unused variable
Wuzzy <Wuzzy2@mail.ru>
parents:
13077
diff
changeset
|
33 |
var cTagsMasks : array[0..15] of byte = (7, 0, 0, 0, 0, 4, 5, 6, 15, 8, 8, 8, 8, 12, 13, 14); |
12998
22e032ab1cb7
Toggle hog tag translucency with Precise + Change hog tags key
Wuzzy <Wuzzy2@mail.ru>
parents:
12997
diff
changeset
|
34 |
cTagsMasksNoHealth: array[0..15] of byte = (3, 0, 1, 2, 0, 0, 0, 0, 11, 8, 9, 10, 8, 8, 8, 8); |
7028 | 35 |
|
4531
4ea193b0e378
Reenable ReadyTimer using a synced message NEEDS TESTING.
nemo
parents:
4528
diff
changeset
|
36 |
procedure chGenCmd(var s: shortstring); |
4ea193b0e378
Reenable ReadyTimer using a synced message NEEDS TESTING.
nemo
parents:
4528
diff
changeset
|
37 |
begin |
4ea193b0e378
Reenable ReadyTimer using a synced message NEEDS TESTING.
nemo
parents:
4528
diff
changeset
|
38 |
case s[1] of |
11919
e0476802c8b5
When doing something, set ready time to 0 instead of 1
Wuzzy <almikes@aol.com>
parents:
11532
diff
changeset
|
39 |
'R': if ReadyTimeLeft > 0 then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
40 |
begin |
11919
e0476802c8b5
When doing something, set ready time to 0 instead of 1
Wuzzy <almikes@aol.com>
parents:
11532
diff
changeset
|
41 |
ReadyTimeLeft:= 0; |
7805 | 42 |
if not isExternalSource then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
43 |
SendIPC('c'+s); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
44 |
end |
4531
4ea193b0e378
Reenable ReadyTimer using a synced message NEEDS TESTING.
nemo
parents:
4528
diff
changeset
|
45 |
end |
4ea193b0e378
Reenable ReadyTimer using a synced message NEEDS TESTING.
nemo
parents:
4528
diff
changeset
|
46 |
end; |
4ea193b0e378
Reenable ReadyTimer using a synced message NEEDS TESTING.
nemo
parents:
4528
diff
changeset
|
47 |
|
4413 | 48 |
procedure chQuit(var s: shortstring); |
49 |
begin |
|
4751 | 50 |
s:= s; // avoid compiler hint |
13077 | 51 |
if (GameState = gsGame) then |
52 |
begin |
|
53 |
isInChatMode:= false; |
|
5523 | 54 |
GameState:= gsConfirm; |
13077 | 55 |
end |
56 |
else begin |
|
10510 | 57 |
if GameState = gsConfirm then |
13077 | 58 |
GameState:= gsGame; |
59 |
end; |
|
10510 | 60 |
|
10392 | 61 |
updateCursorVisibility; |
4413 | 62 |
end; |
63 |
||
4744
ecc2c757d0df
general uKey refactor in preparaiton of two new shortcuts
koda
parents:
4661
diff
changeset
|
64 |
procedure chForceQuit(var s: shortstring); |
ecc2c757d0df
general uKey refactor in preparaiton of two new shortcuts
koda
parents:
4661
diff
changeset
|
65 |
begin |
ecc2c757d0df
general uKey refactor in preparaiton of two new shortcuts
koda
parents:
4661
diff
changeset
|
66 |
s:= s; // avoid compiler hint |
4751 | 67 |
GameState:= gsConfirm; |
68 |
ParseCommand('confirm', true); |
|
4413 | 69 |
end; |
70 |
||
71 |
procedure chConfirm(var s: shortstring); |
|
72 |
begin |
|
4751 | 73 |
s:= s; // avoid compiler hint |
74 |
if GameState = gsConfirm then |
|
7722 | 75 |
begin |
7068 | 76 |
SendIPC(_S'Q'); |
4751 | 77 |
GameState:= gsExit |
7722 | 78 |
end |
4413 | 79 |
end; |
80 |
||
4751 | 81 |
procedure chHalt (var s: shortstring); |
4746
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4744
diff
changeset
|
82 |
begin |
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4744
diff
changeset
|
83 |
s:= s; // avoid compiler hint |
7068 | 84 |
SendIPC(_S'H'); |
4746
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4744
diff
changeset
|
85 |
GameState:= gsExit |
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4744
diff
changeset
|
86 |
end; |
3ae448aebe7e
implemented actions for closing/enging program (needs testing over the net)
koda
parents:
4744
diff
changeset
|
87 |
|
4413 | 88 |
procedure chCheckProto(var s: shortstring); |
8370 | 89 |
var i: LongInt; |
4413 | 90 |
begin |
6001 | 91 |
if isDeveloperMode then |
92 |
begin |
|
8370 | 93 |
i:= StrToInt(s); |
11532 | 94 |
checkFails(i <= cNetProtoVersion, 'Protocol version mismatch: engine is too old (got '+intToStr(i)+', expecting '+intToStr(cNetProtoVersion)+')', true); |
95 |
checkFails(i >= cNetProtoVersion, 'Protocol version mismatch: engine is too new (got '+intToStr(i)+', expecting '+intToStr(cNetProtoVersion)+')', true); |
|
7058 | 96 |
end |
4413 | 97 |
end; |
98 |
||
99 |
procedure chTeamLocal(var s: shortstring); |
|
100 |
begin |
|
101 |
s:= s; // avoid compiler hint |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
102 |
if not isDeveloperMode then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
103 |
exit; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
104 |
if CurrentTeam = nil then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
105 |
OutError(errmsgIncorrectUse + ' "/rdriven"', true); |
4413 | 106 |
CurrentTeam^.ExtDriven:= true |
107 |
end; |
|
108 |
||
109 |
procedure chScript(var s: shortstring); |
|
110 |
begin |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
111 |
if s[1]='"' then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
112 |
Delete(s, 1, 1); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
113 |
if s[byte(s[0])]='"' then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
114 |
Delete(s, byte(s[0]), 1); |
6254
e90fb60cb46d
Force a desync if there is a script name mismatch. This avoids playing until the game desyncs due to script differences.
nemo
parents:
6245
diff
changeset
|
115 |
cScriptName:= s; |
4413 | 116 |
ScriptLoad(s) |
117 |
end; |
|
118 |
||
9902 | 119 |
procedure chScriptParam(var s: shortstring); |
120 |
begin |
|
9985
42cd42e44c9a
GravRacer, GravHigh, GravMutant, Grav... uhm... shoppamap? Easy! Gravity script could be combined with any other script now.
unc0rr
parents:
9902
diff
changeset
|
121 |
ScriptSetString('ScriptParam', s); |
42cd42e44c9a
GravRacer, GravHigh, GravMutant, Grav... uhm... shoppamap? Easy! Gravity script could be combined with any other script now.
unc0rr
parents:
9902
diff
changeset
|
122 |
ScriptCall('onParameters'); |
9902 | 123 |
end; |
124 |
||
4413 | 125 |
procedure chCurU_p(var s: shortstring); |
126 |
begin |
|
127 |
s:= s; // avoid compiler hint |
|
128 |
CursorMovementY:= -1; |
|
129 |
end; |
|
130 |
||
131 |
procedure chCurU_m(var s: shortstring); |
|
132 |
begin |
|
133 |
s:= s; // avoid compiler hint |
|
134 |
CursorMovementY:= 0; |
|
135 |
end; |
|
136 |
||
137 |
procedure chCurD_p(var s: shortstring); |
|
138 |
begin |
|
139 |
s:= s; // avoid compiler hint |
|
140 |
CursorMovementY:= 1; |
|
141 |
end; |
|
142 |
||
143 |
procedure chCurD_m(var s: shortstring); |
|
144 |
begin |
|
145 |
s:= s; // avoid compiler hint |
|
146 |
CursorMovementY:= 0; |
|
147 |
end; |
|
148 |
||
149 |
procedure chCurL_p(var s: shortstring); |
|
150 |
begin |
|
151 |
s:= s; // avoid compiler hint |
|
152 |
CursorMovementX:= -1; |
|
153 |
end; |
|
154 |
||
155 |
procedure chCurL_m(var s: shortstring); |
|
156 |
begin |
|
157 |
s:= s; // avoid compiler hint |
|
158 |
CursorMovementX:= 0; |
|
159 |
end; |
|
160 |
||
161 |
procedure chCurR_p(var s: shortstring); |
|
162 |
begin |
|
163 |
s:= s; // avoid compiler hint |
|
164 |
CursorMovementX:= 1; |
|
165 |
end; |
|
166 |
||
167 |
procedure chCurR_m(var s: shortstring); |
|
168 |
begin |
|
169 |
s:= s; // avoid compiler hint |
|
170 |
CursorMovementX:= 0; |
|
171 |
end; |
|
172 |
||
173 |
procedure chLeft_p(var s: shortstring); |
|
174 |
begin |
|
175 |
s:= s; // avoid compiler hint |
|
10392 | 176 |
if CheckNoTeamOrHH then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
177 |
exit; |
7805 | 178 |
if not isExternalSource then |
7068 | 179 |
SendIPC(_S'L'); |
4413 | 180 |
bShowFinger:= false; |
181 |
with CurrentHedgehog^.Gear^ do |
|
4661
f5d858e4b634
Whole ton of script callbacks on commands. Poor engine.
mikade
parents:
4611
diff
changeset
|
182 |
Message:= Message or (gmLeft and InputMask); |
f5d858e4b634
Whole ton of script callbacks on commands. Poor engine.
mikade
parents:
4611
diff
changeset
|
183 |
ScriptCall('onLeft'); |
4413 | 184 |
end; |
185 |
||
186 |
procedure chLeft_m(var s: shortstring); |
|
187 |
begin |
|
188 |
s:= s; // avoid compiler hint |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
189 |
if CheckNoTeamOrHH then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
190 |
exit; |
7805 | 191 |
if not isExternalSource then |
7068 | 192 |
SendIPC(_S'l'); |
4413 | 193 |
with CurrentHedgehog^.Gear^ do |
6453
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6415
diff
changeset
|
194 |
Message:= Message and (not (gmLeft and InputMask)); |
4661
f5d858e4b634
Whole ton of script callbacks on commands. Poor engine.
mikade
parents:
4611
diff
changeset
|
195 |
ScriptCall('onLeftUp'); |
4413 | 196 |
end; |
197 |
||
198 |
procedure chRight_p(var s: shortstring); |
|
199 |
begin |
|
200 |
s:= s; // avoid compiler hint |
|
10392 | 201 |
if CheckNoTeamOrHH then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
202 |
exit; |
7805 | 203 |
if not isExternalSource then |
7068 | 204 |
SendIPC(_S'R'); |
4413 | 205 |
bShowFinger:= false; |
206 |
with CurrentHedgehog^.Gear^ do |
|
4661
f5d858e4b634
Whole ton of script callbacks on commands. Poor engine.
mikade
parents:
4611
diff
changeset
|
207 |
Message:= Message or (gmRight and InputMask); |
f5d858e4b634
Whole ton of script callbacks on commands. Poor engine.
mikade
parents:
4611
diff
changeset
|
208 |
ScriptCall('onRight'); |
4413 | 209 |
end; |
210 |
||
211 |
procedure chRight_m(var s: shortstring); |
|
212 |
begin |
|
213 |
s:= s; // avoid compiler hint |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
214 |
if CheckNoTeamOrHH then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
215 |
exit; |
7805 | 216 |
if not isExternalSource then |
7068 | 217 |
SendIPC(_S'r'); |
4413 | 218 |
with CurrentHedgehog^.Gear^ do |
6453
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6415
diff
changeset
|
219 |
Message:= Message and (not (gmRight and InputMask)); |
4661
f5d858e4b634
Whole ton of script callbacks on commands. Poor engine.
mikade
parents:
4611
diff
changeset
|
220 |
ScriptCall('onRightUp'); |
4413 | 221 |
end; |
222 |
||
223 |
procedure chUp_p(var s: shortstring); |
|
224 |
begin |
|
225 |
s:= s; // avoid compiler hint |
|
10392 | 226 |
if CheckNoTeamOrHH then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
227 |
exit; |
7805 | 228 |
if not isExternalSource then |
7068 | 229 |
SendIPC(_S'U'); |
4413 | 230 |
bShowFinger:= false; |
231 |
with CurrentHedgehog^.Gear^ do |
|
4661
f5d858e4b634
Whole ton of script callbacks on commands. Poor engine.
mikade
parents:
4611
diff
changeset
|
232 |
Message:= Message or (gmUp and InputMask); |
f5d858e4b634
Whole ton of script callbacks on commands. Poor engine.
mikade
parents:
4611
diff
changeset
|
233 |
ScriptCall('onUp'); |
4413 | 234 |
end; |
235 |
||
236 |
procedure chUp_m(var s: shortstring); |
|
237 |
begin |
|
238 |
s:= s; // avoid compiler hint |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
239 |
if CheckNoTeamOrHH then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
240 |
exit; |
7805 | 241 |
if not isExternalSource then |
7068 | 242 |
SendIPC(_S'u'); |
4413 | 243 |
with CurrentHedgehog^.Gear^ do |
6453
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6415
diff
changeset
|
244 |
Message:= Message and (not (gmUp and InputMask)); |
4661
f5d858e4b634
Whole ton of script callbacks on commands. Poor engine.
mikade
parents:
4611
diff
changeset
|
245 |
ScriptCall('onUpUp'); |
4413 | 246 |
end; |
247 |
||
248 |
procedure chDown_p(var s: shortstring); |
|
249 |
begin |
|
250 |
s:= s; // avoid compiler hint |
|
10392 | 251 |
if CheckNoTeamOrHH then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
252 |
exit; |
7805 | 253 |
if not isExternalSource then |
7068 | 254 |
SendIPC(_S'D'); |
4413 | 255 |
bShowFinger:= false; |
256 |
with CurrentHedgehog^.Gear^ do |
|
4661
f5d858e4b634
Whole ton of script callbacks on commands. Poor engine.
mikade
parents:
4611
diff
changeset
|
257 |
Message:= Message or (gmDown and InputMask); |
f5d858e4b634
Whole ton of script callbacks on commands. Poor engine.
mikade
parents:
4611
diff
changeset
|
258 |
ScriptCall('onDown'); |
4413 | 259 |
end; |
260 |
||
261 |
procedure chDown_m(var s: shortstring); |
|
262 |
begin |
|
263 |
s:= s; // avoid compiler hint |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
264 |
if CheckNoTeamOrHH then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
265 |
exit; |
7805 | 266 |
if not isExternalSource then |
7068 | 267 |
SendIPC(_S'd'); |
4413 | 268 |
with CurrentHedgehog^.Gear^ do |
6453
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6415
diff
changeset
|
269 |
Message:= Message and (not (gmDown and InputMask)); |
4661
f5d858e4b634
Whole ton of script callbacks on commands. Poor engine.
mikade
parents:
4611
diff
changeset
|
270 |
ScriptCall('onDownUp'); |
4413 | 271 |
end; |
272 |
||
273 |
procedure chPrecise_p(var s: shortstring); |
|
274 |
begin |
|
275 |
s:= s; // avoid compiler hint |
|
10392 | 276 |
if CheckNoTeamOrHH then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
277 |
exit; |
7805 | 278 |
if not isExternalSource then |
7068 | 279 |
SendIPC(_S'Z'); |
4413 | 280 |
bShowFinger:= false; |
281 |
with CurrentHedgehog^.Gear^ do |
|
4522
0f590eefd531
Add an input mask for setting of gear messages. Intended for intercepting user messages. This is totally untested. I don't think it should desync but seriously needs a lot of testing. Esp the doPut behaviour.
nemo
parents:
4437
diff
changeset
|
282 |
Message:= Message or (gmPrecise and InputMask); |
4661
f5d858e4b634
Whole ton of script callbacks on commands. Poor engine.
mikade
parents:
4611
diff
changeset
|
283 |
ScriptCall('onPrecise'); |
4413 | 284 |
end; |
285 |
||
286 |
procedure chPrecise_m(var s: shortstring); |
|
287 |
begin |
|
288 |
s:= s; // avoid compiler hint |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
289 |
if CheckNoTeamOrHH then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
290 |
exit; |
7805 | 291 |
if not isExternalSource then |
7068 | 292 |
SendIPC(_S'z'); |
4413 | 293 |
with CurrentHedgehog^.Gear^ do |
6453
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6415
diff
changeset
|
294 |
Message:= Message and (not (gmPrecise and InputMask)); |
4661
f5d858e4b634
Whole ton of script callbacks on commands. Poor engine.
mikade
parents:
4611
diff
changeset
|
295 |
ScriptCall('onPreciseUp'); |
4413 | 296 |
end; |
297 |
||
298 |
procedure chLJump(var s: shortstring); |
|
299 |
begin |
|
300 |
s:= s; // avoid compiler hint |
|
10392 | 301 |
if CheckNoTeamOrHH then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
302 |
exit; |
7805 | 303 |
if not isExternalSource then |
7068 | 304 |
SendIPC(_S'j'); |
4413 | 305 |
bShowFinger:= false; |
306 |
with CurrentHedgehog^.Gear^ do |
|
4661
f5d858e4b634
Whole ton of script callbacks on commands. Poor engine.
mikade
parents:
4611
diff
changeset
|
307 |
Message:= Message or (gmLJump and InputMask); |
f5d858e4b634
Whole ton of script callbacks on commands. Poor engine.
mikade
parents:
4611
diff
changeset
|
308 |
ScriptCall('onLJump'); |
4413 | 309 |
end; |
310 |
||
311 |
procedure chHJump(var s: shortstring); |
|
312 |
begin |
|
313 |
s:= s; // avoid compiler hint |
|
10392 | 314 |
if CheckNoTeamOrHH then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
315 |
exit; |
7805 | 316 |
if not isExternalSource then |
7068 | 317 |
SendIPC(_S'J'); |
4413 | 318 |
bShowFinger:= false; |
319 |
with CurrentHedgehog^.Gear^ do |
|
4661
f5d858e4b634
Whole ton of script callbacks on commands. Poor engine.
mikade
parents:
4611
diff
changeset
|
320 |
Message:= Message or (gmHJump and InputMask); |
f5d858e4b634
Whole ton of script callbacks on commands. Poor engine.
mikade
parents:
4611
diff
changeset
|
321 |
ScriptCall('onHJump'); |
4413 | 322 |
end; |
323 |
||
324 |
procedure chAttack_p(var s: shortstring); |
|
10672 | 325 |
var inbtwnTrgtAttks: Boolean; |
4413 | 326 |
begin |
327 |
s:= s; // avoid compiler hint |
|
10392 | 328 |
if CheckNoTeamOrHH then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
329 |
exit; |
4413 | 330 |
bShowFinger:= false; |
331 |
with CurrentHedgehog^.Gear^ do |
|
332 |
begin |
|
4900 | 333 |
AddFileLog('/+attack: hedgehog''s Gear^.State = '+inttostr(State)); |
4413 | 334 |
if ((State and gstHHDriven) <> 0) then |
335 |
begin |
|
10672 | 336 |
inbtwnTrgtAttks:= ((GameFlags and gfInfAttack) <> 0) and ((Ammoz[CurrentHedgehog^.CurAmmoType].Ammo.Propz and ammoprop_NeedTarget) <> 0); |
337 |
if (not inbtwnTrgtAttks) then |
|
338 |
FollowGear:= CurrentHedgehog^.Gear; |
|
7805 | 339 |
if not isExternalSource then |
7068 | 340 |
SendIPC(_S'A'); |
4661
f5d858e4b634
Whole ton of script callbacks on commands. Poor engine.
mikade
parents:
4611
diff
changeset
|
341 |
Message:= Message or (gmAttack and InputMask); |
10228 | 342 |
ScriptCall('onAttack'); // so if I fire airstrike, it doesn't count as attack? fine, fine |
4413 | 343 |
end |
344 |
end |
|
345 |
end; |
|
346 |
||
347 |
procedure chAttack_m(var s: shortstring); |
|
348 |
begin |
|
349 |
s:= s; // avoid compiler hint |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
350 |
if CheckNoTeamOrHH then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
351 |
exit; |
4413 | 352 |
with CurrentHedgehog^.Gear^ do |
353 |
begin |
|
7805 | 354 |
if not isExternalSource and |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
355 |
((Message and gmAttack) <> 0) then |
7068 | 356 |
SendIPC(_S'a'); |
6453
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6415
diff
changeset
|
357 |
Message:= Message and (not (gmAttack and InputMask)); |
4661
f5d858e4b634
Whole ton of script callbacks on commands. Poor engine.
mikade
parents:
4611
diff
changeset
|
358 |
ScriptCall('onAttackUp'); |
4413 | 359 |
end |
360 |
end; |
|
361 |
||
362 |
procedure chSwitch(var s: shortstring); |
|
363 |
begin |
|
364 |
s:= s; // avoid compiler hint |
|
10392 | 365 |
if CheckNoTeamOrHH then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
366 |
exit; |
7805 | 367 |
if not isExternalSource then |
7068 | 368 |
SendIPC(_S'S'); |
4413 | 369 |
bShowFinger:= false; |
370 |
with CurrentHedgehog^.Gear^ do |
|
4661
f5d858e4b634
Whole ton of script callbacks on commands. Poor engine.
mikade
parents:
4611
diff
changeset
|
371 |
Message:= Message or (gmSwitch and InputMask); |
f5d858e4b634
Whole ton of script callbacks on commands. Poor engine.
mikade
parents:
4611
diff
changeset
|
372 |
ScriptCall('onSwitch'); |
4413 | 373 |
end; |
374 |
||
375 |
procedure chNextTurn(var s: shortstring); |
|
7671 | 376 |
var gi: PGear; |
4413 | 377 |
begin |
378 |
s:= s; // avoid compiler hint |
|
7103 | 379 |
|
11532 | 380 |
if checkFails(AllInactive, '/nextturn called when not all gears are inactive', true) then exit; |
4413 | 381 |
|
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7218
diff
changeset
|
382 |
CheckSum:= CheckSum xor GameTicks; |
7104 | 383 |
gi := GearsList; |
384 |
while gi <> nil do |
|
385 |
begin |
|
9797
1fdc1507e42d
remove state from check, just to see if this was why we just desynced
nemo
parents:
9796
diff
changeset
|
386 |
with gi^ do CheckSum:= CheckSum xor X.round xor X.frac xor dX.round xor dX.frac xor Y.round xor Y.frac xor dY.round xor dY.frac; |
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7218
diff
changeset
|
387 |
AddRandomness(CheckSum); |
7104 | 388 |
gi := gi^.NextGear |
389 |
end; |
|
7103 | 390 |
|
7805 | 391 |
if not isExternalSource then |
7103 | 392 |
begin |
393 |
s[0]:= #5; |
|
394 |
s[1]:= 'N'; |
|
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7218
diff
changeset
|
395 |
SDLNet_Write32(CheckSum, @s[2]); |
7103 | 396 |
SendIPC(s) |
397 |
end |
|
398 |
else |
|
11532 | 399 |
checkFails(CurrentTeam^.hasGone or (CheckSum = lastTurnChecksum), 'Desync detected', true); |
7831 | 400 |
|
7187
aff30d80bd7b
- Allow camera movement while current hedgehog is falling
unc0rr
parents:
7151
diff
changeset
|
401 |
AddFileLog('Next turn: time '+inttostr(GameTicks)); |
4413 | 402 |
end; |
403 |
||
404 |
procedure chTimer(var s: shortstring); |
|
405 |
begin |
|
7790 | 406 |
if CheckNoTeamOrHH then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
407 |
exit; |
4413 | 408 |
|
11532 | 409 |
if checkFails((s[0] = #1) and (s[1] >= '1') and (s[1] <= '5'), 'Malformed /timer', true) then exit; |
7790 | 410 |
|
7805 | 411 |
if not isExternalSource then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
412 |
SendIPC(s); |
4413 | 413 |
bShowFinger:= false; |
414 |
with CurrentHedgehog^.Gear^ do |
|
415 |
begin |
|
4522
0f590eefd531
Add an input mask for setting of gear messages. Intended for intercepting user messages. This is totally untested. I don't think it should desync but seriously needs a lot of testing. Esp the doPut behaviour.
nemo
parents:
4437
diff
changeset
|
416 |
Message:= Message or (gmTimer and InputMask); |
4661
f5d858e4b634
Whole ton of script callbacks on commands. Poor engine.
mikade
parents:
4611
diff
changeset
|
417 |
MsgParam:= byte(s[1]) - ord('0'); |
6818
136aa9c8c593
Add the parameters I missed the first time when I added these hooks.
mikade
parents:
6700
diff
changeset
|
418 |
ScriptCall('onTimer', MsgParam); |
4413 | 419 |
end |
420 |
end; |
|
421 |
||
422 |
procedure chSlot(var s: shortstring); |
|
423 |
var slot: LongWord; |
|
7068 | 424 |
ss: shortstring; |
4413 | 425 |
begin |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
426 |
if (s[0] <> #1) or CheckNoTeamOrHH then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
427 |
exit; |
4413 | 428 |
slot:= byte(s[1]) - 49; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
429 |
if slot > cMaxSlotIndex then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
430 |
exit; |
7805 | 431 |
if not isExternalSource then |
7068 | 432 |
begin |
433 |
ss[0]:= #1; |
|
434 |
ss[1]:= char(byte(s[1]) + 79); |
|
435 |
SendIPC(ss); |
|
436 |
end; |
|
4413 | 437 |
bShowFinger:= false; |
438 |
with CurrentHedgehog^.Gear^ do |
|
439 |
begin |
|
4522
0f590eefd531
Add an input mask for setting of gear messages. Intended for intercepting user messages. This is totally untested. I don't think it should desync but seriously needs a lot of testing. Esp the doPut behaviour.
nemo
parents:
4437
diff
changeset
|
440 |
Message:= Message or (gmSlot and InputMask); |
8924 | 441 |
MsgParam:= slot; |
6818
136aa9c8c593
Add the parameters I missed the first time when I added these hooks.
mikade
parents:
6700
diff
changeset
|
442 |
ScriptCall('onSlot', MsgParam); |
4413 | 443 |
end |
444 |
end; |
|
445 |
||
446 |
procedure chSetWeapon(var s: shortstring); |
|
447 |
begin |
|
7790 | 448 |
if CheckNoTeamOrHH then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
449 |
exit; |
4413 | 450 |
|
11532 | 451 |
if checkFails((s[0] = #1) and (s[1] <= char(High(TAmmoType))), 'Malformed /setweap', true) then exit; |
4413 | 452 |
|
7805 | 453 |
if not isExternalSource then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
454 |
SendIPC('w' + s); |
4413 | 455 |
|
456 |
with CurrentHedgehog^.Gear^ do |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
457 |
begin |
4522
0f590eefd531
Add an input mask for setting of gear messages. Intended for intercepting user messages. This is totally untested. I don't think it should desync but seriously needs a lot of testing. Esp the doPut behaviour.
nemo
parents:
4437
diff
changeset
|
458 |
Message:= Message or (gmWeapon and InputMask); |
4413 | 459 |
MsgParam:= byte(s[1]); |
6818
136aa9c8c593
Add the parameters I missed the first time when I added these hooks.
mikade
parents:
6700
diff
changeset
|
460 |
ScriptCall('onSetWeapon', MsgParam); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
461 |
end; |
4413 | 462 |
end; |
463 |
||
464 |
procedure chTaunt(var s: shortstring); |
|
465 |
begin |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
466 |
if (s[0] <> #1) or CheckNoTeamOrHH then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
467 |
exit; |
4413 | 468 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
469 |
if TWave(s[1]) > High(TWave) then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
470 |
exit; |
4413 | 471 |
|
7805 | 472 |
if not isExternalSource then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
473 |
SendIPC('t' + s); |
4413 | 474 |
|
12815
92218a06c9ff
Don't send taunt message for automatically happening taunt animation
unc0rr
parents:
12490
diff
changeset
|
475 |
PlayTaunt(byte(s[1])) |
4413 | 476 |
end; |
477 |
||
478 |
procedure chPut(var s: shortstring); |
|
479 |
begin |
|
480 |
s:= s; // avoid compiler hint |
|
481 |
doPut(0, 0, false); |
|
482 |
end; |
|
483 |
||
484 |
procedure chCapture(var s: shortstring); |
|
485 |
begin |
|
486 |
s:= s; // avoid compiler hint |
|
10633
2f062fac5791
Add that "make screenshots of Land/LandPixels" thing for map creators
nemo
parents:
10603
diff
changeset
|
487 |
flagMakeCapture:= true; |
11025
999afa63035f
just disable landpixels w/ blurry land instead. the mask can be helpful for debugging at least.
nemo
parents:
11024
diff
changeset
|
488 |
flagDumpLand:= (LocalMessage and gmPrecise <> 0); |
4413 | 489 |
end; |
490 |
||
7629 | 491 |
procedure chRecord(var s: shortstring); |
492 |
begin |
|
493 |
s:= s; // avoid compiler hint |
|
494 |
{$IFDEF USE_VIDEO_RECORDING} |
|
495 |
if flagPrerecording then |
|
496 |
StopPreRecording() |
|
497 |
else |
|
498 |
BeginPreRecording(); |
|
499 |
{$ENDIF} |
|
500 |
end; |
|
501 |
||
4413 | 502 |
procedure chSetMap(var s: shortstring); |
503 |
begin |
|
5679
505c6448069b
accidentally reverted this when reverting the rest of the override changes.
nemo
parents:
5555
diff
changeset
|
504 |
if isDeveloperMode then |
6088 | 505 |
begin |
6339 | 506 |
if s = '' then |
8025 | 507 |
cPathz[ptMapCurrent]:= s |
6339 | 508 |
else |
8025 | 509 |
cPathz[ptMapCurrent]:= cPathz[ptMaps] + '/' + s; |
6088 | 510 |
InitStepsFlags:= InitStepsFlags or cifMap |
511 |
end; |
|
6828
6a5d33bff0b0
At mikade's request. give scripting access to the map name prior to override.
nemo
parents:
6818
diff
changeset
|
512 |
cMapName:= s; |
6245 | 513 |
ScriptLoad('Maps/' + s + '/map.lua') |
4413 | 514 |
end; |
515 |
||
516 |
procedure chSetTheme(var s: shortstring); |
|
517 |
begin |
|
518 |
if isDeveloperMode then |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
519 |
begin |
8025 | 520 |
cPathz[ptCurrTheme]:= cPathz[ptThemes] + '/' + s; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
521 |
Theme:= s; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
522 |
InitStepsFlags:= InitStepsFlags or cifTheme |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
523 |
end |
4413 | 524 |
end; |
525 |
||
526 |
procedure chSetSeed(var s: shortstring); |
|
527 |
begin |
|
528 |
if isDeveloperMode then |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
529 |
begin |
8912 | 530 |
SetRandomSeed(s, true); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
531 |
cSeed:= s; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
532 |
InitStepsFlags:= InitStepsFlags or cifRandomize |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
533 |
end |
12847
1aba77b2e4ac
This is a desyncing change. But... We might need a new release anyway. ☹
nemo
parents:
12815
diff
changeset
|
534 |
end; |
4413 | 535 |
|
536 |
procedure chAmmoMenu(var s: shortstring); |
|
537 |
begin |
|
538 |
s:= s; // avoid compiler hint |
|
539 |
if CheckNoTeamOrHH then |
|
10439
7de934f2247c
allow toggling ammo menu while NoTeamOrHH, as suggested by unC0Rr
sheepluva
parents:
10392
diff
changeset
|
540 |
bShowAmmoMenu:= (not bShowAmmoMenu) |
4413 | 541 |
else |
542 |
begin |
|
543 |
with CurrentTeam^ do |
|
544 |
with Hedgehogs[CurrHedgehog] do |
|
545 |
begin |
|
546 |
bSelected:= false; |
|
547 |
||
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
548 |
if bShowAmmoMenu then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
549 |
bShowAmmoMenu:= false |
12216
5b525d041fb4
Fix crash when trying to open ammo menu with current team hog gear = nil
Wuzzy <almikes@aol.com>
parents:
11919
diff
changeset
|
550 |
else if not(CurrentTeam^.Extdriven) and ((Gear = nil) or ((Gear^.State and (gstAttacking or gstAttacked)) <> 0) |
7946
a99a79bbd857
Simplify ammo menu conditions so it shows up in more states. Should fix issue #465. The part w/ sliding in uworld is main #465 problem.
nemo
parents:
7831
diff
changeset
|
551 |
or ((Gear^.State and gstHHDriven) = 0)) then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
552 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
553 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
554 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
555 |
bShowAmmoMenu:= true |
4413 | 556 |
end; |
557 |
end |
|
558 |
end; |
|
559 |
||
560 |
procedure chVol_p(var s: shortstring); |
|
561 |
begin |
|
562 |
s:= s; // avoid compiler hint |
|
563 |
inc(cVolumeDelta, 3) |
|
564 |
end; |
|
565 |
||
566 |
procedure chVol_m(var s: shortstring); |
|
567 |
begin |
|
568 |
s:= s; // avoid compiler hint |
|
569 |
dec(cVolumeDelta, 3) |
|
570 |
end; |
|
571 |
||
13039
aed4b25ff242
Fix volume caption not being shown when hitting mute key
Wuzzy <Wuzzy2@mail.ru>
parents:
13013
diff
changeset
|
572 |
procedure chMute(var s: shortstring); |
aed4b25ff242
Fix volume caption not being shown when hitting mute key
Wuzzy <Wuzzy2@mail.ru>
parents:
13013
diff
changeset
|
573 |
begin |
aed4b25ff242
Fix volume caption not being shown when hitting mute key
Wuzzy <Wuzzy2@mail.ru>
parents:
13013
diff
changeset
|
574 |
s:= s; // avoid compiler hint |
aed4b25ff242
Fix volume caption not being shown when hitting mute key
Wuzzy <Wuzzy2@mail.ru>
parents:
13013
diff
changeset
|
575 |
cMuteToggle:= true; |
aed4b25ff242
Fix volume caption not being shown when hitting mute key
Wuzzy <Wuzzy2@mail.ru>
parents:
13013
diff
changeset
|
576 |
end; |
aed4b25ff242
Fix volume caption not being shown when hitting mute key
Wuzzy <Wuzzy2@mail.ru>
parents:
13013
diff
changeset
|
577 |
|
4413 | 578 |
procedure chFindhh(var s: shortstring); |
579 |
begin |
|
580 |
s:= s; // avoid compiler hint |
|
10392 | 581 |
if CheckNoTeamOrHH then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
582 |
exit; |
5247 | 583 |
|
7629 | 584 |
if autoCameraOn then |
5247 | 585 |
begin |
7629 | 586 |
FollowGear:= nil; |
10455 | 587 |
AddCaption(trmsg[sidAutoCameraOff], $CCCCCC, capgrpVolume); |
5247 | 588 |
autoCameraOn:= false |
589 |
end |
|
7629 | 590 |
else |
591 |
begin |
|
10455 | 592 |
AddCaption(trmsg[sidAutoCameraOn], $CCCCCC, capgrpVolume); |
5247 | 593 |
bShowFinger:= true; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
594 |
if not CurrentHedgehog^.Unplaced then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
595 |
FollowGear:= CurrentHedgehog^.Gear; |
5247 | 596 |
autoCameraOn:= true |
597 |
end |
|
4413 | 598 |
end; |
599 |
||
600 |
procedure chPause(var s: shortstring); |
|
601 |
begin |
|
10392 | 602 |
if (gameType <> gmtNet) or (s = 'server') then |
9670
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9489
diff
changeset
|
603 |
isPaused:= not isPaused |
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9489
diff
changeset
|
604 |
else |
9671 | 605 |
if (CurrentTeam^.ExtDriven) or (CurrentHedgehog^.BotLevel > 0) then |
606 |
isAFK:= not isAFK |
|
607 |
else |
|
608 |
isAFK:= false; // for real ninjas |
|
5524
40b7f95d9f18
Oh, and fix cursor visibility correlations between gsConfirm state and paused state
unc0rr
parents:
5523
diff
changeset
|
609 |
|
10392 | 610 |
updateCursorVisibility; |
4413 | 611 |
end; |
612 |
||
613 |
procedure chRotateMask(var s: shortstring); |
|
614 |
begin |
|
615 |
s:= s; // avoid compiler hint |
|
12490
b4eb289b5913
Backed out changeset c19e5ece5b3f
Wuzzy <almikes@aol.com>
parents:
12488
diff
changeset
|
616 |
// this is just for me, 'cause I thought it'd be fun. using the old precise + switch to keep it out of people's way |
9693 | 617 |
if LocalMessage and (gmPrecise or gmSwitch) = (gmPrecise or gmSwitch) then |
618 |
begin |
|
619 |
if UIDisplay <> uiNone then |
|
620 |
UIDisplay:= uiNone |
|
621 |
else UIDisplay:= uiAll |
|
622 |
end |
|
12490
b4eb289b5913
Backed out changeset c19e5ece5b3f
Wuzzy <almikes@aol.com>
parents:
12488
diff
changeset
|
623 |
else |
b4eb289b5913
Backed out changeset c19e5ece5b3f
Wuzzy <almikes@aol.com>
parents:
12488
diff
changeset
|
624 |
begin |
b4eb289b5913
Backed out changeset c19e5ece5b3f
Wuzzy <almikes@aol.com>
parents:
12488
diff
changeset
|
625 |
if UIDisplay <> uiNoTeams then |
b4eb289b5913
Backed out changeset c19e5ece5b3f
Wuzzy <almikes@aol.com>
parents:
12488
diff
changeset
|
626 |
UIDisplay:= uiNoTeams |
b4eb289b5913
Backed out changeset c19e5ece5b3f
Wuzzy <almikes@aol.com>
parents:
12488
diff
changeset
|
627 |
else UIDisplay:= uiAll |
b4eb289b5913
Backed out changeset c19e5ece5b3f
Wuzzy <almikes@aol.com>
parents:
12488
diff
changeset
|
628 |
end |
4413 | 629 |
end; |
630 |
||
12997
f06660523198
Add separate control for changing hedgehog tags
Wuzzy <Wuzzy2@mail.ru>
parents:
12990
diff
changeset
|
631 |
procedure chRotateTags(var s: shortstring); |
f06660523198
Add separate control for changing hedgehog tags
Wuzzy <Wuzzy2@mail.ru>
parents:
12990
diff
changeset
|
632 |
begin |
f06660523198
Add separate control for changing hedgehog tags
Wuzzy <Wuzzy2@mail.ru>
parents:
12990
diff
changeset
|
633 |
s:= s; // avoid compiler hint |
13000
c5529aabdda9
Flip Switch/Precise key combintions with change hog tags
Wuzzy <Wuzzy2@mail.ru>
parents:
12999
diff
changeset
|
634 |
// Rotate Tags key + Switch: Toggle translucency only |
c5529aabdda9
Flip Switch/Precise key combintions with change hog tags
Wuzzy <Wuzzy2@mail.ru>
parents:
12999
diff
changeset
|
635 |
if LocalMessage and gmSwitch = gmSwitch then |
12998
22e032ab1cb7
Toggle hog tag translucency with Precise + Change hog tags key
Wuzzy <Wuzzy2@mail.ru>
parents:
12997
diff
changeset
|
636 |
if ((cTagsMask and htTransparent) = 0) then |
13001
876b1ef83191
Fix some consistency issues with change hog tags control
Wuzzy <Wuzzy2@mail.ru>
parents:
13000
diff
changeset
|
637 |
begin |
876b1ef83191
Fix some consistency issues with change hog tags control
Wuzzy <Wuzzy2@mail.ru>
parents:
13000
diff
changeset
|
638 |
cTagsMask:= cTagsMask or htTransparent; |
876b1ef83191
Fix some consistency issues with change hog tags control
Wuzzy <Wuzzy2@mail.ru>
parents:
13000
diff
changeset
|
639 |
cPrevTagsMask:= cPrevTagsMask or htTransparent |
876b1ef83191
Fix some consistency issues with change hog tags control
Wuzzy <Wuzzy2@mail.ru>
parents:
13000
diff
changeset
|
640 |
end |
12998
22e032ab1cb7
Toggle hog tag translucency with Precise + Change hog tags key
Wuzzy <Wuzzy2@mail.ru>
parents:
12997
diff
changeset
|
641 |
else |
13001
876b1ef83191
Fix some consistency issues with change hog tags control
Wuzzy <Wuzzy2@mail.ru>
parents:
13000
diff
changeset
|
642 |
begin |
876b1ef83191
Fix some consistency issues with change hog tags control
Wuzzy <Wuzzy2@mail.ru>
parents:
13000
diff
changeset
|
643 |
cTagsMask:= cTagsMask and (not htTransparent); |
876b1ef83191
Fix some consistency issues with change hog tags control
Wuzzy <Wuzzy2@mail.ru>
parents:
13000
diff
changeset
|
644 |
cPrevTagsMask:= cPrevTagsMask and (not htTransparent) |
876b1ef83191
Fix some consistency issues with change hog tags control
Wuzzy <Wuzzy2@mail.ru>
parents:
13000
diff
changeset
|
645 |
end |
13007
8a8aaaf97a95
The rottags key alone now toggles hog tags; preecise+rottags is used to cycle tags
Wuzzy <Wuzzy2@mail.ru>
parents:
13001
diff
changeset
|
646 |
// Rotate Tags key + Precise: Cycle through hog tags (keeping translucency) |
13000
c5529aabdda9
Flip Switch/Precise key combintions with change hog tags
Wuzzy <Wuzzy2@mail.ru>
parents:
12999
diff
changeset
|
647 |
else if LocalMessage and gmPrecise = gmPrecise then |
13007
8a8aaaf97a95
The rottags key alone now toggles hog tags; preecise+rottags is used to cycle tags
Wuzzy <Wuzzy2@mail.ru>
parents:
13001
diff
changeset
|
648 |
begin |
8a8aaaf97a95
The rottags key alone now toggles hog tags; preecise+rottags is used to cycle tags
Wuzzy <Wuzzy2@mail.ru>
parents:
13001
diff
changeset
|
649 |
cPrevTagsMask:= cTagsMask; |
8a8aaaf97a95
The rottags key alone now toggles hog tags; preecise+rottags is used to cycle tags
Wuzzy <Wuzzy2@mail.ru>
parents:
13001
diff
changeset
|
650 |
if ((GameFlags and gfInvulnerable) = 0) then |
8a8aaaf97a95
The rottags key alone now toggles hog tags; preecise+rottags is used to cycle tags
Wuzzy <Wuzzy2@mail.ru>
parents:
13001
diff
changeset
|
651 |
cTagsMask:= cTagsMasks[cTagsMask] |
8a8aaaf97a95
The rottags key alone now toggles hog tags; preecise+rottags is used to cycle tags
Wuzzy <Wuzzy2@mail.ru>
parents:
13001
diff
changeset
|
652 |
else |
8a8aaaf97a95
The rottags key alone now toggles hog tags; preecise+rottags is used to cycle tags
Wuzzy <Wuzzy2@mail.ru>
parents:
13001
diff
changeset
|
653 |
cTagsMask:= cTagsMasksNoHealth[cTagsMask] |
8a8aaaf97a95
The rottags key alone now toggles hog tags; preecise+rottags is used to cycle tags
Wuzzy <Wuzzy2@mail.ru>
parents:
13001
diff
changeset
|
654 |
end |
8a8aaaf97a95
The rottags key alone now toggles hog tags; preecise+rottags is used to cycle tags
Wuzzy <Wuzzy2@mail.ru>
parents:
13001
diff
changeset
|
655 |
// Rotate Tags key only: Toggle all hog tags on and off |
8a8aaaf97a95
The rottags key alone now toggles hog tags; preecise+rottags is used to cycle tags
Wuzzy <Wuzzy2@mail.ru>
parents:
13001
diff
changeset
|
656 |
else |
12999
46ba3285449a
Switch + Change hog tags now turns on and off all tags
Wuzzy <Wuzzy2@mail.ru>
parents:
12998
diff
changeset
|
657 |
if ((cTagsMask and (htTeamName or htName or htHealth)) = 0) then |
13013
4234a18a082c
Fix hittig precise+rottags the first time when all tags started off showing health tag in gfInvulnerable
Wuzzy <Wuzzy2@mail.ru>
parents:
13007
diff
changeset
|
658 |
begin |
4234a18a082c
Fix hittig precise+rottags the first time when all tags started off showing health tag in gfInvulnerable
Wuzzy <Wuzzy2@mail.ru>
parents:
13007
diff
changeset
|
659 |
cTagsMask:= cPrevTagsMask; |
4234a18a082c
Fix hittig precise+rottags the first time when all tags started off showing health tag in gfInvulnerable
Wuzzy <Wuzzy2@mail.ru>
parents:
13007
diff
changeset
|
660 |
if ((GameFlags and gfInvulnerable) <> 0) then |
4234a18a082c
Fix hittig precise+rottags the first time when all tags started off showing health tag in gfInvulnerable
Wuzzy <Wuzzy2@mail.ru>
parents:
13007
diff
changeset
|
661 |
cTagsMask:= cTagsMask and (not htHealth); |
4234a18a082c
Fix hittig precise+rottags the first time when all tags started off showing health tag in gfInvulnerable
Wuzzy <Wuzzy2@mail.ru>
parents:
13007
diff
changeset
|
662 |
end |
12999
46ba3285449a
Switch + Change hog tags now turns on and off all tags
Wuzzy <Wuzzy2@mail.ru>
parents:
12998
diff
changeset
|
663 |
else |
46ba3285449a
Switch + Change hog tags now turns on and off all tags
Wuzzy <Wuzzy2@mail.ru>
parents:
12998
diff
changeset
|
664 |
begin |
46ba3285449a
Switch + Change hog tags now turns on and off all tags
Wuzzy <Wuzzy2@mail.ru>
parents:
12998
diff
changeset
|
665 |
cPrevTagsMask:= cTagsMask; |
46ba3285449a
Switch + Change hog tags now turns on and off all tags
Wuzzy <Wuzzy2@mail.ru>
parents:
12998
diff
changeset
|
666 |
cTagsMask:= cTagsMask and (not (htTeamName or htName or htHealth)) |
13007
8a8aaaf97a95
The rottags key alone now toggles hog tags; preecise+rottags is used to cycle tags
Wuzzy <Wuzzy2@mail.ru>
parents:
13001
diff
changeset
|
667 |
end; |
12999
46ba3285449a
Switch + Change hog tags now turns on and off all tags
Wuzzy <Wuzzy2@mail.ru>
parents:
12998
diff
changeset
|
668 |
end; |
12997
f06660523198
Add separate control for changing hedgehog tags
Wuzzy <Wuzzy2@mail.ru>
parents:
12990
diff
changeset
|
669 |
|
4413 | 670 |
procedure chSpeedup_p(var s: shortstring); |
671 |
begin |
|
672 |
s:= s; // avoid compiler hint |
|
7629 | 673 |
SpeedStart:= RealTicks; |
4413 | 674 |
isSpeed:= true |
675 |
end; |
|
676 |
||
677 |
procedure chSpeedup_m(var s: shortstring); |
|
678 |
begin |
|
679 |
s:= s; // avoid compiler hint |
|
680 |
isSpeed:= false |
|
681 |
end; |
|
682 |
||
683 |
procedure chZoomIn(var s: shortstring); |
|
684 |
begin |
|
685 |
s:= s; // avoid compiler hint |
|
686 |
if ZoomValue < cMinZoomLevel then |
|
687 |
ZoomValue:= ZoomValue + cZoomDelta; |
|
688 |
end; |
|
689 |
||
690 |
procedure chZoomOut(var s: shortstring); |
|
691 |
begin |
|
692 |
s:= s; // avoid compiler hint |
|
693 |
if ZoomValue > cMaxZoomLevel then |
|
694 |
ZoomValue:= ZoomValue - cZoomDelta; |
|
695 |
end; |
|
696 |
||
697 |
procedure chZoomReset(var s: shortstring); |
|
698 |
begin |
|
699 |
s:= s; // avoid compiler hint |
|
700 |
ZoomValue:= cDefaultZoomLevel; |
|
701 |
end; |
|
702 |
||
6898 | 703 |
procedure chMapGen(var s: shortstring); |
704 |
begin |
|
10603
bda5c7caf396
switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents:
10510
diff
changeset
|
705 |
cMapGen:= TMapGen(StrToInt(s)) |
6898 | 706 |
end; |
707 |
||
708 |
procedure chTemplateFilter(var s: shortstring); |
|
709 |
begin |
|
7151 | 710 |
cTemplateFilter:= StrToInt(s) |
6898 | 711 |
end; |
712 |
||
10472
8d04cebedb16
Partially hook up feature size so horrorcat has something to test.
nemo
parents:
10455
diff
changeset
|
713 |
procedure chFeatureSize(var s: shortstring); |
8d04cebedb16
Partially hook up feature size so horrorcat has something to test.
nemo
parents:
10455
diff
changeset
|
714 |
begin |
8d04cebedb16
Partially hook up feature size so horrorcat has something to test.
nemo
parents:
10455
diff
changeset
|
715 |
cFeatureSize:= StrToInt(s) |
8d04cebedb16
Partially hook up feature size so horrorcat has something to test.
nemo
parents:
10455
diff
changeset
|
716 |
end; |
8d04cebedb16
Partially hook up feature size so horrorcat has something to test.
nemo
parents:
10455
diff
changeset
|
717 |
|
6898 | 718 |
procedure chInactDelay(var s: shortstring); |
719 |
begin |
|
7151 | 720 |
cInactDelay:= StrToInt(s) |
6898 | 721 |
end; |
722 |
||
723 |
procedure chReadyDelay(var s: shortstring); |
|
724 |
begin |
|
7151 | 725 |
cReadyDelay:= StrToInt(s) |
6898 | 726 |
end; |
727 |
||
728 |
procedure chCaseFactor(var s: shortstring); |
|
729 |
begin |
|
7151 | 730 |
cCaseFactor:= StrToInt(s) |
6898 | 731 |
end; |
732 |
||
733 |
procedure chHealthCaseProb(var s: shortstring); |
|
734 |
begin |
|
7151 | 735 |
cHealthCaseProb:= StrToInt(s) |
6898 | 736 |
end; |
737 |
||
738 |
procedure chHealthCaseAmount(var s: shortstring); |
|
739 |
begin |
|
7151 | 740 |
cHealthCaseAmount:= StrToInt(s) |
6898 | 741 |
end; |
742 |
||
743 |
procedure chSuddenDTurns(var s: shortstring); |
|
744 |
begin |
|
7151 | 745 |
cSuddenDTurns:= StrToInt(s) |
6898 | 746 |
end; |
747 |
||
748 |
procedure chWaterRise(var s: shortstring); |
|
749 |
begin |
|
7151 | 750 |
cWaterRise:= StrToInt(s) |
6898 | 751 |
end; |
752 |
||
753 |
procedure chHealthDecrease(var s: shortstring); |
|
754 |
begin |
|
7151 | 755 |
cHealthDecrease:= StrToInt(s) |
6898 | 756 |
end; |
757 |
||
758 |
procedure chDamagePercent(var s: shortstring); |
|
759 |
begin |
|
7151 | 760 |
cDamagePercent:= StrToInt(s) |
6898 | 761 |
end; |
762 |
||
763 |
procedure chRopePercent(var s: shortstring); |
|
764 |
begin |
|
7151 | 765 |
cRopePercent:= StrToInt(s) |
6898 | 766 |
end; |
767 |
||
768 |
procedure chGetAwayTime(var s: shortstring); |
|
769 |
begin |
|
7151 | 770 |
cGetAwayTime:= StrToInt(s) |
6898 | 771 |
end; |
772 |
||
773 |
procedure chMineDudPercent(var s: shortstring); |
|
774 |
begin |
|
7151 | 775 |
cMineDudPercent:= StrToInt(s) |
6898 | 776 |
end; |
777 |
||
778 |
procedure chLandMines(var s: shortstring); |
|
779 |
begin |
|
7151 | 780 |
cLandMines:= StrToInt(s) |
6898 | 781 |
end; |
782 |
||
10818
f642a28cab0c
Add placement of airmines in engine outside of hog proximity. Has a bug, only protecting 1st team. Also fix a spelling error and rename gstHHChooseTarget to gstChooseTarget
nemo
parents:
10672
diff
changeset
|
783 |
procedure chAirMines(var s: shortstring); |
f642a28cab0c
Add placement of airmines in engine outside of hog proximity. Has a bug, only protecting 1st team. Also fix a spelling error and rename gstHHChooseTarget to gstChooseTarget
nemo
parents:
10672
diff
changeset
|
784 |
begin |
f642a28cab0c
Add placement of airmines in engine outside of hog proximity. Has a bug, only protecting 1st team. Also fix a spelling error and rename gstHHChooseTarget to gstChooseTarget
nemo
parents:
10672
diff
changeset
|
785 |
cAirMines:= StrToInt(s) |
f642a28cab0c
Add placement of airmines in engine outside of hog proximity. Has a bug, only protecting 1st team. Also fix a spelling error and rename gstHHChooseTarget to gstChooseTarget
nemo
parents:
10672
diff
changeset
|
786 |
end; |
f642a28cab0c
Add placement of airmines in engine outside of hog proximity. Has a bug, only protecting 1st team. Also fix a spelling error and rename gstHHChooseTarget to gstChooseTarget
nemo
parents:
10672
diff
changeset
|
787 |
|
6898 | 788 |
procedure chExplosives(var s: shortstring); |
789 |
begin |
|
7151 | 790 |
cExplosives:= StrToInt(s) |
6898 | 791 |
end; |
792 |
||
793 |
procedure chGameFlags(var s: shortstring); |
|
794 |
begin |
|
7218
9ecd5bc9810b
Ensure that Clan ammo always takes precedence over Per Hog Ammo in the flags. It'd be best for the user sake if these buttons acted more like radio buttons.
nemo
parents:
7187
diff
changeset
|
795 |
GameFlags:= StrToInt(s); |
7629 | 796 |
if GameFlags and gfSharedAmmo <> 0 then GameFlags:= GameFlags and (not gfPerHogAmmo) |
6898 | 797 |
end; |
798 |
||
799 |
procedure chHedgehogTurnTime(var s: shortstring); |
|
800 |
begin |
|
7151 | 801 |
cHedgehogTurnTime:= StrToInt(s) |
6898 | 802 |
end; |
803 |
||
804 |
procedure chMinesTime(var s: shortstring); |
|
805 |
begin |
|
7151 | 806 |
cMinesTime:= StrToInt(s) |
6898 | 807 |
end; |
808 |
||
809 |
procedure chFastUntilLag(var s: shortstring); |
|
810 |
begin |
|
10862
4575977d3ce0
Don't spawn team widget sorter on each frame when in lag. Issue 'spectate 0' instead, and only on first lag occasion.
unc0rr
parents:
10822
diff
changeset
|
811 |
fastUntilLag:= StrToInt(s) <> 0; |
4575977d3ce0
Don't spawn team widget sorter on each frame when in lag. Issue 'spectate 0' instead, and only on first lag occasion.
unc0rr
parents:
10822
diff
changeset
|
812 |
|
4575977d3ce0
Don't spawn team widget sorter on each frame when in lag. Issue 'spectate 0' instead, and only on first lag occasion.
unc0rr
parents:
10822
diff
changeset
|
813 |
if not fastUntilLag then |
4575977d3ce0
Don't spawn team widget sorter on each frame when in lag. Issue 'spectate 0' instead, and only on first lag occasion.
unc0rr
parents:
10822
diff
changeset
|
814 |
begin |
4575977d3ce0
Don't spawn team widget sorter on each frame when in lag. Issue 'spectate 0' instead, and only on first lag occasion.
unc0rr
parents:
10822
diff
changeset
|
815 |
// update health bars and the wind indicator |
4575977d3ce0
Don't spawn team widget sorter on each frame when in lag. Issue 'spectate 0' instead, and only on first lag occasion.
unc0rr
parents:
10822
diff
changeset
|
816 |
AddVisualGear(0, 0, vgtTeamHealthSorter); |
4575977d3ce0
Don't spawn team widget sorter on each frame when in lag. Issue 'spectate 0' instead, and only on first lag occasion.
unc0rr
parents:
10822
diff
changeset
|
817 |
AddVisualGear(0, 0, vgtSmoothWindBar) |
4575977d3ce0
Don't spawn team widget sorter on each frame when in lag. Issue 'spectate 0' instead, and only on first lag occasion.
unc0rr
parents:
10822
diff
changeset
|
818 |
end |
6898 | 819 |
end; |
4413 | 820 |
|
7201
dc17ffdf0702
The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents:
7187
diff
changeset
|
821 |
procedure chCampVar(var s:shortstring); |
dc17ffdf0702
The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents:
7187
diff
changeset
|
822 |
begin |
dc17ffdf0702
The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents:
7187
diff
changeset
|
823 |
CampaignVariable := s; |
dc17ffdf0702
The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents:
7187
diff
changeset
|
824 |
end; |
dc17ffdf0702
The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents:
7187
diff
changeset
|
825 |
|
9489 | 826 |
procedure chWorldEdge(var s: shortstring); |
827 |
begin |
|
828 |
WorldEdge:= TWorldEdge(StrToInt(s)) |
|
829 |
end; |
|
830 |
||
10237 | 831 |
procedure chAdvancedMapGenMode(var s:shortstring); |
832 |
begin |
|
10249 | 833 |
s:= s; // avoid compiler hint |
10237 | 834 |
cAdvancedMapGenMode:= true; |
835 |
end; |
|
836 |
||
4413 | 837 |
procedure initModule; |
838 |
begin |
|
4528
630f4ab0c926
Reorder top registered variables by frequency gathered from 60 or so games of varying length/type. Oh. And add green hair to joker.
nemo
parents:
4522
diff
changeset
|
839 |
//////// Begin top sorted by freq analysis not including chatmsg |
7407 | 840 |
RegisterVariable('+right' , @chRight_p , false, true); |
841 |
RegisterVariable('-right' , @chRight_m , false, true); |
|
842 |
RegisterVariable('+up' , @chUp_p , false, true); |
|
843 |
RegisterVariable('-up' , @chUp_m , false, true); |
|
844 |
RegisterVariable('+left' , @chLeft_p , false, true); |
|
845 |
RegisterVariable('-left' , @chLeft_m , false, true); |
|
7629 | 846 |
RegisterVariable('+attack' , @chAttack_p , false); |
7407 | 847 |
RegisterVariable('+down' , @chDown_p , false, true); |
848 |
RegisterVariable('-down' , @chDown_m , false, true); |
|
849 |
RegisterVariable('hjump' , @chHJump , false, true); |
|
850 |
RegisterVariable('ljump' , @chLJump , false, true); |
|
7629 | 851 |
RegisterVariable('nextturn', @chNextTurn , false); |
852 |
RegisterVariable('-attack' , @chAttack_m , false); |
|
853 |
RegisterVariable('slot' , @chSlot , false); |
|
7407 | 854 |
RegisterVariable('setweap' , @chSetWeapon , false, true); |
4528
630f4ab0c926
Reorder top registered variables by frequency gathered from 60 or so games of varying length/type. Oh. And add green hair to joker.
nemo
parents:
4522
diff
changeset
|
855 |
//////// End top by freq analysis |
7629 | 856 |
RegisterVariable('gencmd' , @chGenCmd , false); |
6898 | 857 |
RegisterVariable('script' , @chScript , false); |
9902 | 858 |
RegisterVariable('scriptparam', @chScriptParam, false); |
6898 | 859 |
RegisterVariable('proto' , @chCheckProto , true ); |
860 |
RegisterVariable('spectate', @chFastUntilLag , false); |
|
861 |
RegisterVariable('capture' , @chCapture , true ); |
|
862 |
RegisterVariable('rotmask' , @chRotateMask , true ); |
|
12997
f06660523198
Add separate control for changing hedgehog tags
Wuzzy <Wuzzy2@mail.ru>
parents:
12990
diff
changeset
|
863 |
RegisterVariable('rottags' , @chRotateTags , true ); |
6898 | 864 |
RegisterVariable('rdriven' , @chTeamLocal , false); |
865 |
RegisterVariable('map' , @chSetMap , false); |
|
866 |
RegisterVariable('theme' , @chSetTheme , false); |
|
867 |
RegisterVariable('seed' , @chSetSeed , false); |
|
868 |
RegisterVariable('template_filter', @chTemplateFilter, false); |
|
869 |
RegisterVariable('mapgen' , @chMapGen , false); |
|
870 |
RegisterVariable('maze_size',@chTemplateFilter, false); |
|
10472
8d04cebedb16
Partially hook up feature size so horrorcat has something to test.
nemo
parents:
10455
diff
changeset
|
871 |
RegisterVariable('feature_size',@chFeatureSize, false); |
6898 | 872 |
RegisterVariable('delay' , @chInactDelay , false); |
873 |
RegisterVariable('ready' , @chReadyDelay , false); |
|
874 |
RegisterVariable('casefreq', @chCaseFactor , false); |
|
875 |
RegisterVariable('healthprob', @chHealthCaseProb, false); |
|
876 |
RegisterVariable('hcaseamount', @chHealthCaseAmount, false); |
|
877 |
RegisterVariable('sd_turns', @chSuddenDTurns , false); |
|
878 |
RegisterVariable('waterrise', @chWaterRise , false); |
|
879 |
RegisterVariable('healthdec', @chHealthDecrease, false); |
|
880 |
RegisterVariable('damagepct',@chDamagePercent , false); |
|
881 |
RegisterVariable('ropepct' , @chRopePercent , false); |
|
882 |
RegisterVariable('getawaytime' , @chGetAwayTime , false); |
|
883 |
RegisterVariable('minedudpct',@chMineDudPercent, false); |
|
884 |
RegisterVariable('minesnum', @chLandMines , false); |
|
10822 | 885 |
RegisterVariable('airmines', @chAirMines , false); |
6898 | 886 |
RegisterVariable('explosives',@chExplosives , false); |
887 |
RegisterVariable('gmflags' , @chGameFlags , false); |
|
888 |
RegisterVariable('turntime', @chHedgehogTurnTime, false); |
|
889 |
RegisterVariable('minestime',@chMinesTime , false); |
|
890 |
RegisterVariable('quit' , @chQuit , true ); |
|
891 |
RegisterVariable('forcequit', @chForceQuit , true ); |
|
892 |
RegisterVariable('confirm' , @chConfirm , true ); |
|
893 |
RegisterVariable('halt', @chHalt , true ); |
|
894 |
RegisterVariable('+speedup', @chSpeedup_p , true ); |
|
895 |
RegisterVariable('-speedup', @chSpeedup_m , true ); |
|
896 |
RegisterVariable('zoomin' , @chZoomIn , true ); |
|
897 |
RegisterVariable('zoomout' , @chZoomOut , true ); |
|
898 |
RegisterVariable('zoomreset',@chZoomReset , true ); |
|
899 |
RegisterVariable('ammomenu', @chAmmoMenu , true); |
|
7629 | 900 |
RegisterVariable('+precise', @chPrecise_p , false, true); |
901 |
RegisterVariable('-precise', @chPrecise_m , false, true); |
|
6898 | 902 |
RegisterVariable('switch' , @chSwitch , false); |
7629 | 903 |
RegisterVariable('timer' , @chTimer , false, true); |
6898 | 904 |
RegisterVariable('taunt' , @chTaunt , false); |
905 |
RegisterVariable('put' , @chPut , false); |
|
906 |
RegisterVariable('+volup' , @chVol_p , true ); |
|
907 |
RegisterVariable('-volup' , @chVol_m , true ); |
|
908 |
RegisterVariable('+voldown', @chVol_m , true ); |
|
909 |
RegisterVariable('-voldown', @chVol_p , true ); |
|
13039
aed4b25ff242
Fix volume caption not being shown when hitting mute key
Wuzzy <Wuzzy2@mail.ru>
parents:
13013
diff
changeset
|
910 |
RegisterVariable('mute' , @chMute , true ); |
7404 | 911 |
RegisterVariable('findhh' , @chFindhh , true ); |
6898 | 912 |
RegisterVariable('pause' , @chPause , true ); |
913 |
RegisterVariable('+cur_u' , @chCurU_p , true ); |
|
914 |
RegisterVariable('-cur_u' , @chCurU_m , true ); |
|
915 |
RegisterVariable('+cur_d' , @chCurD_p , true ); |
|
916 |
RegisterVariable('-cur_d' , @chCurD_m , true ); |
|
917 |
RegisterVariable('+cur_l' , @chCurL_p , true ); |
|
918 |
RegisterVariable('-cur_l' , @chCurL_m , true ); |
|
919 |
RegisterVariable('+cur_r' , @chCurR_p , true ); |
|
920 |
RegisterVariable('-cur_r' , @chCurR_m , true ); |
|
7201
dc17ffdf0702
The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents:
7187
diff
changeset
|
921 |
RegisterVariable('campvar' , @chCampVar , true ); |
7629 | 922 |
RegisterVariable('record' , @chRecord , true ); |
9489 | 923 |
RegisterVariable('worldedge',@chWorldEdge , false); |
10237 | 924 |
RegisterVariable('advmapgen',@chAdvancedMapGenMode, false); |
4413 | 925 |
end; |
926 |
||
927 |
procedure freeModule; |
|
928 |
begin |
|
929 |
end; |
|
930 |
||
931 |
end. |