hedgewars/uCommandHandlers.pas
author Wuzzy <almikes@aol.com>
Wed, 13 Apr 2016 14:53:47 +0200
changeset 11970 f6fc7e9bef3d
parent 11919 e0476802c8b5
child 12216 5b525d041fb4
permissions -rw-r--r--
Make tab of mission list tab header blend into mission list
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4976
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
     1
(*
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
     2
 * Hedgewars, a free turn based strategy game
11046
47a8c19ecb60 more copyright fixes
sheepluva
parents: 11025
diff changeset
     3
 * Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com>
4976
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
     4
 *
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
     8
 *
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    12
 * GNU General Public License for more details.
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    13
 *
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    14
 * You should have received a copy of the GNU General Public License
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    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
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    17
 *)
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    18
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    19
{$INCLUDE "options.inc"}
4976
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    20
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    21
unit uCommandHandlers;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    22
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    23
interface
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    24
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    25
procedure initModule;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    26
procedure freeModule;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    27
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    28
implementation
10392
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10249
diff changeset
    29
uses uCommands, uTypes, uVariables, uIO, uDebug, uConsts, uScript, uUtils, SDLh, uWorld, uRandom, uCaptions
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
    30
    , uVisualGearsList
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
    31
     {$IFDEF USE_VIDEO_RECORDING}, uVideoRec {$ENDIF};
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    32
7028
0f60591f3a16 old typed const moved to their proper unit
koda
parents: 6982
diff changeset
    33
var prevGState: TGameState = gsConfirm;
8145
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 8025
diff changeset
    34
    cTagsMasks : array[0..15] of byte = (7, 0, 0, 0, 15, 6, 4, 5, 0, 0, 0, 0, 0, 14, 12, 13);
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 8025
diff changeset
    35
    cTagsMasksNoHealth: array[0..15] of byte = (3, 2, 11, 1, 0, 0, 0, 0, 0, 10, 0, 9, 0, 0, 0, 0);
7028
0f60591f3a16 old typed const moved to their proper unit
koda
parents: 6982
diff changeset
    36
4531
4ea193b0e378 Reenable ReadyTimer using a synced message NEEDS TESTING.
nemo
parents: 4528
diff changeset
    37
procedure chGenCmd(var s: shortstring);
4ea193b0e378 Reenable ReadyTimer using a synced message NEEDS TESTING.
nemo
parents: 4528
diff changeset
    38
begin
4ea193b0e378 Reenable ReadyTimer using a synced message NEEDS TESTING.
nemo
parents: 4528
diff changeset
    39
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
    40
    '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
    41
        begin
11919
e0476802c8b5 When doing something, set ready time to 0 instead of 1
Wuzzy <almikes@aol.com>
parents: 11532
diff changeset
    42
        ReadyTimeLeft:= 0;
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7790
diff changeset
    43
        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
    44
            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
    45
        end
4531
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
end;
4ea193b0e378 Reenable ReadyTimer using a synced message NEEDS TESTING.
nemo
parents: 4528
diff changeset
    48
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    49
procedure chQuit(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    50
begin
4751
849740a91d36 possible fix hanging server on ctlr+w
koda
parents: 4746
diff changeset
    51
    s:= s; // avoid compiler hint
5555
38e3d9347910 Don't switch to gsConfirm state (which is pretty same as gsGame) when not in gsGame or gsChat state. Prevents crashes and other possible kinds of wierd behaviour.
unc0rr
parents: 5524
diff changeset
    52
    if (GameState = gsGame) or (GameState = gsChat) then
38e3d9347910 Don't switch to gsConfirm state (which is pretty same as gsGame) when not in gsGame or gsChat state. Prevents crashes and other possible kinds of wierd behaviour.
unc0rr
parents: 5524
diff changeset
    53
        begin
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    54
        prevGState:= GameState;
5523
9ac5acc4f3e5 Also unhide mouse cursor when in gsConfirm state
unc0rr
parents: 5352
diff changeset
    55
        GameState:= gsConfirm;
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
    56
        end
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
    57
    else
10510
9329dab04490 some whitespace fixes
sheepluva
parents: 10472
diff changeset
    58
        if GameState = gsConfirm then
9329dab04490 some whitespace fixes
sheepluva
parents: 10472
diff changeset
    59
            GameState:= prevGState;
9329dab04490 some whitespace fixes
sheepluva
parents: 10472
diff changeset
    60
10392
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10249
diff changeset
    61
    updateCursorVisibility;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    62
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    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
849740a91d36 possible fix hanging server on ctlr+w
koda
parents: 4746
diff changeset
    67
    GameState:= gsConfirm;
849740a91d36 possible fix hanging server on ctlr+w
koda
parents: 4746
diff changeset
    68
    ParseCommand('confirm', true);
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    69
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    70
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    71
procedure chConfirm(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    72
begin
4751
849740a91d36 possible fix hanging server on ctlr+w
koda
parents: 4746
diff changeset
    73
    s:= s; // avoid compiler hint
849740a91d36 possible fix hanging server on ctlr+w
koda
parents: 4746
diff changeset
    74
    if GameState = gsConfirm then
7722
1518827049ed No commit message
unc0rr
parents: 7671
diff changeset
    75
        begin
7068
b1b7eb9c8cc9 Get rid of cripple SendIPCc
unc0rr
parents: 7058
diff changeset
    76
        SendIPC(_S'Q');
4751
849740a91d36 possible fix hanging server on ctlr+w
koda
parents: 4746
diff changeset
    77
        GameState:= gsExit
7722
1518827049ed No commit message
unc0rr
parents: 7671
diff changeset
    78
        end
1518827049ed No commit message
unc0rr
parents: 7671
diff changeset
    79
    else
1518827049ed No commit message
unc0rr
parents: 7671
diff changeset
    80
        ParseCommand('chat team', true);
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    81
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    82
4751
849740a91d36 possible fix hanging server on ctlr+w
koda
parents: 4746
diff changeset
    83
procedure chHalt (var s: shortstring);
4746
3ae448aebe7e implemented actions for closing/enging program (needs testing over the net)
koda
parents: 4744
diff changeset
    84
begin
3ae448aebe7e implemented actions for closing/enging program (needs testing over the net)
koda
parents: 4744
diff changeset
    85
    s:= s; // avoid compiler hint
7068
b1b7eb9c8cc9 Get rid of cripple SendIPCc
unc0rr
parents: 7058
diff changeset
    86
    SendIPC(_S'H');
4746
3ae448aebe7e implemented actions for closing/enging program (needs testing over the net)
koda
parents: 4744
diff changeset
    87
    GameState:= gsExit
3ae448aebe7e implemented actions for closing/enging program (needs testing over the net)
koda
parents: 4744
diff changeset
    88
end;
3ae448aebe7e implemented actions for closing/enging program (needs testing over the net)
koda
parents: 4744
diff changeset
    89
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    90
procedure chCheckProto(var s: shortstring);
8370
0c79946e96f8 Fix tons of warnings
martin_bede
parents: 8145
diff changeset
    91
var i: LongInt;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    92
begin
6001
24b3a7ba3884 more details in chCheckProto
koda
parents: 5679
diff changeset
    93
    if isDeveloperMode then
24b3a7ba3884 more details in chCheckProto
koda
parents: 5679
diff changeset
    94
        begin
8370
0c79946e96f8 Fix tons of warnings
martin_bede
parents: 8145
diff changeset
    95
        i:= StrToInt(s);
11532
bf86c6cb9341 Bye-bye TryDo
unc0rr
parents: 11046
diff changeset
    96
        checkFails(i <= cNetProtoVersion, 'Protocol version mismatch: engine is too old (got '+intToStr(i)+', expecting '+intToStr(cNetProtoVersion)+')', true);
bf86c6cb9341 Bye-bye TryDo
unc0rr
parents: 11046
diff changeset
    97
        checkFails(i >= cNetProtoVersion, 'Protocol version mismatch: engine is too new (got '+intToStr(i)+', expecting '+intToStr(cNetProtoVersion)+')', true);
7058
56596f3531d9 uCommandHandlers now compiles
unc0rr
parents: 7028
diff changeset
    98
        end
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    99
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   100
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   101
procedure chTeamLocal(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   102
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   103
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
   104
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
   105
    exit;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   106
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
   107
    OutError(errmsgIncorrectUse + ' "/rdriven"', true);
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   108
CurrentTeam^.ExtDriven:= true
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   109
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   110
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   111
procedure chScript(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   112
begin
6580
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[1]='"' 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, 1, 1);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   115
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
   116
    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
   117
cScriptName:= s;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   118
ScriptLoad(s)
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   119
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   120
9902
eb8e8b09b2f0 Special script parameter variable in game scheme
unc0rr
parents: 9797
diff changeset
   121
procedure chScriptParam(var s: shortstring);
eb8e8b09b2f0 Special script parameter variable in game scheme
unc0rr
parents: 9797
diff changeset
   122
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
   123
    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
   124
    ScriptCall('onParameters');
9902
eb8e8b09b2f0 Special script parameter variable in game scheme
unc0rr
parents: 9797
diff changeset
   125
end;
eb8e8b09b2f0 Special script parameter variable in game scheme
unc0rr
parents: 9797
diff changeset
   126
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   127
procedure chCurU_p(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   128
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   129
s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   130
CursorMovementY:= -1;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   131
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   132
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   133
procedure chCurU_m(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   134
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   135
s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   136
CursorMovementY:= 0;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   137
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   138
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   139
procedure chCurD_p(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   140
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   141
s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   142
CursorMovementY:= 1;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   143
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   144
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   145
procedure chCurD_m(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   146
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   147
s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   148
CursorMovementY:= 0;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   149
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   150
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   151
procedure chCurL_p(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   152
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   153
s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   154
CursorMovementX:= -1;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   155
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   156
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   157
procedure chCurL_m(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   158
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   159
s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   160
CursorMovementX:= 0;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   161
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   162
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   163
procedure chCurR_p(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   164
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   165
s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   166
CursorMovementX:= 1;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   167
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   168
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   169
procedure chCurR_m(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   170
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   171
s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   172
CursorMovementX:= 0;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   173
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   174
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   175
procedure chLeft_p(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   176
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   177
s:= s; // avoid compiler hint
10392
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10249
diff changeset
   178
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
   179
    exit;
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7790
diff changeset
   180
if not isExternalSource then
7068
b1b7eb9c8cc9 Get rid of cripple SendIPCc
unc0rr
parents: 7058
diff changeset
   181
    SendIPC(_S'L');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   182
bShowFinger:= false;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   183
with CurrentHedgehog^.Gear^ do
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   184
    Message:= Message or (gmLeft and InputMask);
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   185
    ScriptCall('onLeft');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   186
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   187
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   188
procedure chLeft_m(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   189
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   190
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
   191
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
   192
    exit;
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7790
diff changeset
   193
if not isExternalSource then
7068
b1b7eb9c8cc9 Get rid of cripple SendIPCc
unc0rr
parents: 7058
diff changeset
   194
    SendIPC(_S'l');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   195
with CurrentHedgehog^.Gear^ do
6453
11c578d30bd3 Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents: 6415
diff changeset
   196
    Message:= Message and (not (gmLeft and InputMask));
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   197
    ScriptCall('onLeftUp');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   198
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   199
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   200
procedure chRight_p(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   201
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   202
s:= s; // avoid compiler hint
10392
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10249
diff changeset
   203
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
   204
    exit;
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7790
diff changeset
   205
if not isExternalSource then
7068
b1b7eb9c8cc9 Get rid of cripple SendIPCc
unc0rr
parents: 7058
diff changeset
   206
    SendIPC(_S'R');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   207
bShowFinger:= false;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   208
with CurrentHedgehog^.Gear^ do
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   209
    Message:= Message or (gmRight and InputMask);
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   210
    ScriptCall('onRight');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   211
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   212
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   213
procedure chRight_m(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   214
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   215
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
   216
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
   217
    exit;
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7790
diff changeset
   218
if not isExternalSource then
7068
b1b7eb9c8cc9 Get rid of cripple SendIPCc
unc0rr
parents: 7058
diff changeset
   219
    SendIPC(_S'r');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   220
with CurrentHedgehog^.Gear^ do
6453
11c578d30bd3 Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents: 6415
diff changeset
   221
    Message:= Message and (not (gmRight and InputMask));
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   222
    ScriptCall('onRightUp');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   223
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   224
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   225
procedure chUp_p(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   226
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   227
s:= s; // avoid compiler hint
10392
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10249
diff changeset
   228
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
   229
    exit;
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7790
diff changeset
   230
if not isExternalSource then
7068
b1b7eb9c8cc9 Get rid of cripple SendIPCc
unc0rr
parents: 7058
diff changeset
   231
    SendIPC(_S'U');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   232
bShowFinger:= false;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   233
with CurrentHedgehog^.Gear^ do
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   234
    Message:= Message or (gmUp and InputMask);
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   235
    ScriptCall('onUp');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   236
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   237
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   238
procedure chUp_m(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   239
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   240
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
   241
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
   242
    exit;
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7790
diff changeset
   243
if not isExternalSource then
7068
b1b7eb9c8cc9 Get rid of cripple SendIPCc
unc0rr
parents: 7058
diff changeset
   244
    SendIPC(_S'u');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   245
with CurrentHedgehog^.Gear^ do
6453
11c578d30bd3 Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents: 6415
diff changeset
   246
    Message:= Message and (not (gmUp and InputMask));
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   247
    ScriptCall('onUpUp');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   248
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   249
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   250
procedure chDown_p(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   251
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   252
s:= s; // avoid compiler hint
10392
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10249
diff changeset
   253
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
   254
    exit;
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7790
diff changeset
   255
if not isExternalSource then
7068
b1b7eb9c8cc9 Get rid of cripple SendIPCc
unc0rr
parents: 7058
diff changeset
   256
    SendIPC(_S'D');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   257
bShowFinger:= false;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   258
with CurrentHedgehog^.Gear^ do
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   259
    Message:= Message or (gmDown and InputMask);
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   260
    ScriptCall('onDown');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   261
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   262
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   263
procedure chDown_m(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   264
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   265
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
   266
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
   267
    exit;
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7790
diff changeset
   268
if not isExternalSource then
7068
b1b7eb9c8cc9 Get rid of cripple SendIPCc
unc0rr
parents: 7058
diff changeset
   269
    SendIPC(_S'd');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   270
with CurrentHedgehog^.Gear^ do
6453
11c578d30bd3 Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents: 6415
diff changeset
   271
    Message:= Message and (not (gmDown and InputMask));
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   272
    ScriptCall('onDownUp');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   273
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   274
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   275
procedure chPrecise_p(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   276
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   277
s:= s; // avoid compiler hint
10392
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10249
diff changeset
   278
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
   279
    exit;
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7790
diff changeset
   280
if not isExternalSource then
7068
b1b7eb9c8cc9 Get rid of cripple SendIPCc
unc0rr
parents: 7058
diff changeset
   281
    SendIPC(_S'Z');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   282
bShowFinger:= false;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   283
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
   284
    Message:= Message or (gmPrecise and InputMask);
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   285
    ScriptCall('onPrecise');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   286
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   287
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   288
procedure chPrecise_m(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   289
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   290
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
   291
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
   292
    exit;
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7790
diff changeset
   293
if not isExternalSource then
7068
b1b7eb9c8cc9 Get rid of cripple SendIPCc
unc0rr
parents: 7058
diff changeset
   294
    SendIPC(_S'z');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   295
with CurrentHedgehog^.Gear^ do
6453
11c578d30bd3 Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents: 6415
diff changeset
   296
    Message:= Message and (not (gmPrecise and InputMask));
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   297
    ScriptCall('onPreciseUp');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   298
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   299
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   300
procedure chLJump(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   301
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   302
s:= s; // avoid compiler hint
10392
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10249
diff changeset
   303
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
   304
    exit;
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7790
diff changeset
   305
if not isExternalSource then
7068
b1b7eb9c8cc9 Get rid of cripple SendIPCc
unc0rr
parents: 7058
diff changeset
   306
    SendIPC(_S'j');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   307
bShowFinger:= false;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   308
with CurrentHedgehog^.Gear^ do
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   309
    Message:= Message or (gmLJump and InputMask);
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   310
    ScriptCall('onLJump');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   311
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   312
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   313
procedure chHJump(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   314
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   315
s:= s; // avoid compiler hint
10392
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10249
diff changeset
   316
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
   317
    exit;
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7790
diff changeset
   318
if not isExternalSource then
7068
b1b7eb9c8cc9 Get rid of cripple SendIPCc
unc0rr
parents: 7058
diff changeset
   319
    SendIPC(_S'J');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   320
bShowFinger:= false;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   321
with CurrentHedgehog^.Gear^ do
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   322
    Message:= Message or (gmHJump and InputMask);
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   323
    ScriptCall('onHJump');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   324
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   325
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   326
procedure chAttack_p(var s: shortstring);
10672
c2004c3e9c7d Issue 768: Bee: Camera focus lost
sheepluva
parents: 10633
diff changeset
   327
var inbtwnTrgtAttks: Boolean;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   328
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   329
s:= s; // avoid compiler hint
10392
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10249
diff changeset
   330
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
   331
    exit;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   332
bShowFinger:= false;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   333
with CurrentHedgehog^.Gear^ do
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   334
    begin
4900
8ad0e23e6d63 addfilelog <3 debugfile
koda
parents: 4845
diff changeset
   335
    AddFileLog('/+attack: hedgehog''s Gear^.State = '+inttostr(State));
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   336
    if ((State and gstHHDriven) <> 0) then
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   337
        begin
10672
c2004c3e9c7d Issue 768: Bee: Camera focus lost
sheepluva
parents: 10633
diff changeset
   338
        inbtwnTrgtAttks:= ((GameFlags and gfInfAttack) <> 0) and ((Ammoz[CurrentHedgehog^.CurAmmoType].Ammo.Propz and ammoprop_NeedTarget) <> 0);
c2004c3e9c7d Issue 768: Bee: Camera focus lost
sheepluva
parents: 10633
diff changeset
   339
        if (not inbtwnTrgtAttks) then
c2004c3e9c7d Issue 768: Bee: Camera focus lost
sheepluva
parents: 10633
diff changeset
   340
            FollowGear:= CurrentHedgehog^.Gear;
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7790
diff changeset
   341
        if not isExternalSource then
7068
b1b7eb9c8cc9 Get rid of cripple SendIPCc
unc0rr
parents: 7058
diff changeset
   342
            SendIPC(_S'A');
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   343
        Message:= Message or (gmAttack and InputMask);
10228
947cadb40bc5 Add race type detection
unc0rr
parents: 10127
diff changeset
   344
        ScriptCall('onAttack'); // so if I fire airstrike, it doesn't count as attack? fine, fine
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   345
        end
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   346
    end
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   347
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   348
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   349
procedure chAttack_m(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   350
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   351
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
   352
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
   353
    exit;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   354
with CurrentHedgehog^.Gear^ do
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   355
    begin
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7790
diff changeset
   356
    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
   357
        ((Message and gmAttack) <> 0) then
7068
b1b7eb9c8cc9 Get rid of cripple SendIPCc
unc0rr
parents: 7058
diff changeset
   358
            SendIPC(_S'a');
6453
11c578d30bd3 Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents: 6415
diff changeset
   359
    Message:= Message and (not (gmAttack and InputMask));
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   360
    ScriptCall('onAttackUp');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   361
    end
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   362
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   363
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   364
procedure chSwitch(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   365
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   366
s:= s; // avoid compiler hint
10392
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10249
diff changeset
   367
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
   368
    exit;
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7790
diff changeset
   369
if not isExternalSource then
7068
b1b7eb9c8cc9 Get rid of cripple SendIPCc
unc0rr
parents: 7058
diff changeset
   370
    SendIPC(_S'S');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   371
bShowFinger:= false;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   372
with CurrentHedgehog^.Gear^ do
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   373
    Message:= Message or (gmSwitch and InputMask);
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   374
    ScriptCall('onSwitch');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   375
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   376
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   377
procedure chNextTurn(var s: shortstring);
7671
43f38923bc6e Fix some warnings
unc0rr
parents: 7629
diff changeset
   378
var gi: PGear;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   379
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   380
    s:= s; // avoid compiler hint
7103
1c1afb5a1565 Feel free to add real checksum function
unc0rr
parents: 7068
diff changeset
   381
11532
bf86c6cb9341 Bye-bye TryDo
unc0rr
parents: 11046
diff changeset
   382
    if checkFails(AllInactive, '/nextturn called when not all gears are inactive', true) then exit;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   383
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
   384
    CheckSum:= CheckSum xor GameTicks;
7104
2468316c1d9d checksum
nemo
parents: 7103
diff changeset
   385
    gi := GearsList;
2468316c1d9d checksum
nemo
parents: 7103
diff changeset
   386
    while gi <> nil do
2468316c1d9d checksum
nemo
parents: 7103
diff changeset
   387
        begin
9797
1fdc1507e42d remove state from check, just to see if this was why we just desynced
nemo
parents: 9796
diff changeset
   388
        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
   389
        AddRandomness(CheckSum);
7104
2468316c1d9d checksum
nemo
parents: 7103
diff changeset
   390
        gi := gi^.NextGear
2468316c1d9d checksum
nemo
parents: 7103
diff changeset
   391
        end;
7103
1c1afb5a1565 Feel free to add real checksum function
unc0rr
parents: 7068
diff changeset
   392
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7790
diff changeset
   393
    if not isExternalSource then
7103
1c1afb5a1565 Feel free to add real checksum function
unc0rr
parents: 7068
diff changeset
   394
        begin
1c1afb5a1565 Feel free to add real checksum function
unc0rr
parents: 7068
diff changeset
   395
        s[0]:= #5;
1c1afb5a1565 Feel free to add real checksum function
unc0rr
parents: 7068
diff changeset
   396
        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
   397
        SDLNet_Write32(CheckSum, @s[2]);
7103
1c1afb5a1565 Feel free to add real checksum function
unc0rr
parents: 7068
diff changeset
   398
        SendIPC(s)
1c1afb5a1565 Feel free to add real checksum function
unc0rr
parents: 7068
diff changeset
   399
        end
1c1afb5a1565 Feel free to add real checksum function
unc0rr
parents: 7068
diff changeset
   400
    else
11532
bf86c6cb9341 Bye-bye TryDo
unc0rr
parents: 11046
diff changeset
   401
        checkFails(CurrentTeam^.hasGone or (CheckSum = lastTurnChecksum), 'Desync detected', true);
7831
cd6c6b8d9b75 No hacks! Fix issue 437
unc0rr
parents: 7829
diff changeset
   402
7187
aff30d80bd7b - Allow camera movement while current hedgehog is falling
unc0rr
parents: 7151
diff changeset
   403
    AddFileLog('Next turn: time '+inttostr(GameTicks));
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   404
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   405
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   406
procedure chTimer(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   407
begin
7790
040fc517fece - Fix desyncs triggered by AI
unc0rr
parents: 7722
diff changeset
   408
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
   409
    exit;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   410
11532
bf86c6cb9341 Bye-bye TryDo
unc0rr
parents: 11046
diff changeset
   411
if checkFails((s[0] = #1) and (s[1] >= '1') and (s[1] <= '5'), 'Malformed /timer', true) then exit;
7790
040fc517fece - Fix desyncs triggered by AI
unc0rr
parents: 7722
diff changeset
   412
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7790
diff changeset
   413
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
   414
    SendIPC(s);
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   415
bShowFinger:= false;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   416
with CurrentHedgehog^.Gear^ do
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   417
    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
   418
    Message:= Message or (gmTimer and InputMask);
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   419
    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
   420
    ScriptCall('onTimer', MsgParam);
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   421
    end
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   422
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   423
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   424
procedure chSlot(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   425
var slot: LongWord;
7068
b1b7eb9c8cc9 Get rid of cripple SendIPCc
unc0rr
parents: 7058
diff changeset
   426
    ss: shortstring;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   427
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   428
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
   429
    exit;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   430
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
   431
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
   432
    exit;
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7790
diff changeset
   433
if not isExternalSource then
7068
b1b7eb9c8cc9 Get rid of cripple SendIPCc
unc0rr
parents: 7058
diff changeset
   434
    begin
b1b7eb9c8cc9 Get rid of cripple SendIPCc
unc0rr
parents: 7058
diff changeset
   435
    ss[0]:= #1;
b1b7eb9c8cc9 Get rid of cripple SendIPCc
unc0rr
parents: 7058
diff changeset
   436
    ss[1]:= char(byte(s[1]) + 79);
b1b7eb9c8cc9 Get rid of cripple SendIPCc
unc0rr
parents: 7058
diff changeset
   437
    SendIPC(ss);
b1b7eb9c8cc9 Get rid of cripple SendIPCc
unc0rr
parents: 7058
diff changeset
   438
    end;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   439
bShowFinger:= false;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   440
with CurrentHedgehog^.Gear^ do
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   441
    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
   442
    Message:= Message or (gmSlot and InputMask);
8924
13ac59499066 update 0.9.19 with dev branch
koda
parents: 8912
diff changeset
   443
    MsgParam:= slot;
6818
136aa9c8c593 Add the parameters I missed the first time when I added these hooks.
mikade
parents: 6700
diff changeset
   444
    ScriptCall('onSlot', MsgParam);
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   445
    end
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   446
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   447
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   448
procedure chSetWeapon(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   449
begin
7790
040fc517fece - Fix desyncs triggered by AI
unc0rr
parents: 7722
diff changeset
   450
    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
   451
        exit;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   452
11532
bf86c6cb9341 Bye-bye TryDo
unc0rr
parents: 11046
diff changeset
   453
    if checkFails((s[0] = #1) and (s[1] <= char(High(TAmmoType))), 'Malformed /setweap', true) then exit;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   454
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7790
diff changeset
   455
    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
   456
        SendIPC('w' + s);
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   457
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   458
    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
   459
        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
   460
        Message:= Message or (gmWeapon and InputMask);
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   461
        MsgParam:= byte(s[1]);
6818
136aa9c8c593 Add the parameters I missed the first time when I added these hooks.
mikade
parents: 6700
diff changeset
   462
        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
   463
        end;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   464
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   465
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   466
procedure chTaunt(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   467
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   468
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
   469
    exit;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   470
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   471
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
   472
    exit;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   473
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7790
diff changeset
   474
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
   475
    SendIPC('t' + s);
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   476
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   477
with CurrentHedgehog^.Gear^ do
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   478
    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
   479
    Message:= Message or (gmAnimate and InputMask);
8924
13ac59499066 update 0.9.19 with dev branch
koda
parents: 8912
diff changeset
   480
    MsgParam:= byte(s[1]) ;
6818
136aa9c8c593 Add the parameters I missed the first time when I added these hooks.
mikade
parents: 6700
diff changeset
   481
    ScriptCall('onTaunt', MsgParam);
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   482
    end
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   483
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   484
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   485
procedure chPut(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   486
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   487
    s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   488
    doPut(0, 0, false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   489
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   490
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   491
procedure chCapture(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   492
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   493
s:= s; // avoid compiler hint
10633
2f062fac5791 Add that "make screenshots of Land/LandPixels" thing for map creators
nemo
parents: 10603
diff changeset
   494
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
   495
flagDumpLand:= (LocalMessage and gmPrecise  <> 0);
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   496
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   497
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   498
procedure chRecord(var s: shortstring);
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   499
begin
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   500
s:= s; // avoid compiler hint
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   501
{$IFDEF USE_VIDEO_RECORDING}
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   502
if flagPrerecording then
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   503
    StopPreRecording()
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   504
else
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   505
    BeginPreRecording();
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   506
{$ENDIF}
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   507
end;
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   508
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   509
procedure chSetMap(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   510
begin
5679
505c6448069b accidentally reverted this when reverting the rest of the override changes.
nemo
parents: 5555
diff changeset
   511
if isDeveloperMode then
6088
47d1b04003d1 - Frontend: don't pass /script for missions
unc0rr
parents: 5679
diff changeset
   512
    begin
6339
2a3925178178 this should allow overriding static maps from lua
nemo
parents: 6313
diff changeset
   513
    if s = '' then
8025
07862ab415c8 Get rid of Pathz and UserPathz
unc0rr
parents: 7946
diff changeset
   514
        cPathz[ptMapCurrent]:= s
6339
2a3925178178 this should allow overriding static maps from lua
nemo
parents: 6313
diff changeset
   515
    else
8025
07862ab415c8 Get rid of Pathz and UserPathz
unc0rr
parents: 7946
diff changeset
   516
        cPathz[ptMapCurrent]:= cPathz[ptMaps] + '/' + s;
6088
47d1b04003d1 - Frontend: don't pass /script for missions
unc0rr
parents: 5679
diff changeset
   517
    InitStepsFlags:= InitStepsFlags or cifMap
47d1b04003d1 - Frontend: don't pass /script for missions
unc0rr
parents: 5679
diff changeset
   518
    end;
6828
6a5d33bff0b0 At mikade's request. give scripting access to the map name prior to override.
nemo
parents: 6818
diff changeset
   519
cMapName:= s;
6245
6df227b5e4c9 fix mission map script loading
sheepluva
parents: 6131
diff changeset
   520
ScriptLoad('Maps/' + s + '/map.lua')
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   521
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   522
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   523
procedure chSetTheme(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   524
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   525
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
   526
    begin
8025
07862ab415c8 Get rid of Pathz and UserPathz
unc0rr
parents: 7946
diff changeset
   527
    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
   528
    Theme:= s;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   529
    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
   530
    end
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   531
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   532
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   533
procedure chSetSeed(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   534
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   535
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
   536
    begin
8912
78ea1839aac9 Implement issue 308 with '|' as separator
unc0rr
parents: 8556
diff changeset
   537
    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
   538
    cSeed:= s;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   539
    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
   540
    end
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   541
    end;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   542
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   543
procedure chAmmoMenu(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   544
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   545
s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   546
if CheckNoTeamOrHH then
10439
7de934f2247c allow toggling ammo menu while NoTeamOrHH, as suggested by unC0Rr
sheepluva
parents: 10392
diff changeset
   547
    bShowAmmoMenu:= (not bShowAmmoMenu)
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   548
else
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   549
    begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   550
    with CurrentTeam^ do
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   551
        with Hedgehogs[CurrHedgehog] do
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   552
            begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   553
            bSelected:= false;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   554
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   555
            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
   556
                bShowAmmoMenu:= false
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
   557
            else if not(CurrentTeam^.Extdriven) and (((Gear^.State and (gstAttacking or gstAttacked)) <> 0)
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
   558
            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
   559
                begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   560
                end
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   561
            else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   562
                bShowAmmoMenu:= true
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   563
            end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   564
    end
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   565
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   566
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   567
procedure chVol_p(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   568
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   569
s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   570
inc(cVolumeDelta, 3)
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   571
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   572
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   573
procedure chVol_m(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   574
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   575
s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   576
dec(cVolumeDelta, 3)
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   577
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   578
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   579
procedure chFindhh(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   580
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   581
s:= s; // avoid compiler hint
10392
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10249
diff changeset
   582
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
   583
    exit;
5247
bf6d4bc531d2 Ability to turn camera following gears off
unc0rr
parents: 5238
diff changeset
   584
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   585
if autoCameraOn then
5247
bf6d4bc531d2 Ability to turn camera following gears off
unc0rr
parents: 5238
diff changeset
   586
    begin
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   587
    FollowGear:= nil;
10455
e167cfdf6e80 Add Auto Camera messages to localisation
nemo
parents: 10439
diff changeset
   588
    AddCaption(trmsg[sidAutoCameraOff], $CCCCCC, capgrpVolume);
5247
bf6d4bc531d2 Ability to turn camera following gears off
unc0rr
parents: 5238
diff changeset
   589
    autoCameraOn:= false
bf6d4bc531d2 Ability to turn camera following gears off
unc0rr
parents: 5238
diff changeset
   590
    end
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   591
else
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   592
    begin
10455
e167cfdf6e80 Add Auto Camera messages to localisation
nemo
parents: 10439
diff changeset
   593
    AddCaption(trmsg[sidAutoCameraOn], $CCCCCC, capgrpVolume);
5247
bf6d4bc531d2 Ability to turn camera following gears off
unc0rr
parents: 5238
diff changeset
   594
    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
   595
    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
   596
        FollowGear:= CurrentHedgehog^.Gear;
5247
bf6d4bc531d2 Ability to turn camera following gears off
unc0rr
parents: 5238
diff changeset
   597
    autoCameraOn:= true
bf6d4bc531d2 Ability to turn camera following gears off
unc0rr
parents: 5238
diff changeset
   598
    end
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   599
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   600
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   601
procedure chPause(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   602
begin
10392
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10249
diff changeset
   603
if (gameType <> gmtNet) or (s = 'server') then
9670
1954f692e8c6 Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents: 9489
diff changeset
   604
    isPaused:= not isPaused
1954f692e8c6 Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents: 9489
diff changeset
   605
    else
9671
6e95617988c9 Only toggle afk mode when it's not your turn
unc0rr
parents: 9670
diff changeset
   606
    if (CurrentTeam^.ExtDriven) or (CurrentHedgehog^.BotLevel > 0) then
6e95617988c9 Only toggle afk mode when it's not your turn
unc0rr
parents: 9670
diff changeset
   607
        isAFK:= not isAFK
6e95617988c9 Only toggle afk mode when it's not your turn
unc0rr
parents: 9670
diff changeset
   608
    else
6e95617988c9 Only toggle afk mode when it's not your turn
unc0rr
parents: 9670
diff changeset
   609
        isAFK:= false; // for real ninjas
5524
40b7f95d9f18 Oh, and fix cursor visibility correlations between gsConfirm state and paused state
unc0rr
parents: 5523
diff changeset
   610
10392
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10249
diff changeset
   611
updateCursorVisibility;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   612
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   613
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   614
procedure chRotateMask(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   615
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   616
s:= s; // avoid compiler hint
9693
9e31e3bb4476 Delete now toggles hiding team area
nemo
parents: 9671
diff changeset
   617
// 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
9e31e3bb4476 Delete now toggles hiding team area
nemo
parents: 9671
diff changeset
   618
if LocalMessage and (gmPrecise or gmSwitch) = (gmPrecise or gmSwitch) then
9e31e3bb4476 Delete now toggles hiding team area
nemo
parents: 9671
diff changeset
   619
    begin
9e31e3bb4476 Delete now toggles hiding team area
nemo
parents: 9671
diff changeset
   620
    if UIDisplay <> uiNone then
9e31e3bb4476 Delete now toggles hiding team area
nemo
parents: 9671
diff changeset
   621
         UIDisplay:= uiNone
9e31e3bb4476 Delete now toggles hiding team area
nemo
parents: 9671
diff changeset
   622
    else UIDisplay:= uiAll
9e31e3bb4476 Delete now toggles hiding team area
nemo
parents: 9671
diff changeset
   623
    end
9e31e3bb4476 Delete now toggles hiding team area
nemo
parents: 9671
diff changeset
   624
else if LocalMessage and gmPrecise = gmPrecise then
9e31e3bb4476 Delete now toggles hiding team area
nemo
parents: 9671
diff changeset
   625
    begin
9e31e3bb4476 Delete now toggles hiding team area
nemo
parents: 9671
diff changeset
   626
    if ((GameFlags and gfInvulnerable) = 0) then
9e31e3bb4476 Delete now toggles hiding team area
nemo
parents: 9671
diff changeset
   627
        cTagsMask:= cTagsMasks[cTagsMask]
9e31e3bb4476 Delete now toggles hiding team area
nemo
parents: 9671
diff changeset
   628
    else
9e31e3bb4476 Delete now toggles hiding team area
nemo
parents: 9671
diff changeset
   629
        cTagsMask:= cTagsMasksNoHealth[cTagsMask]
9e31e3bb4476 Delete now toggles hiding team area
nemo
parents: 9671
diff changeset
   630
    end
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   631
else
9693
9e31e3bb4476 Delete now toggles hiding team area
nemo
parents: 9671
diff changeset
   632
    begin
9e31e3bb4476 Delete now toggles hiding team area
nemo
parents: 9671
diff changeset
   633
    if UIDisplay <> uiNoTeams then
9e31e3bb4476 Delete now toggles hiding team area
nemo
parents: 9671
diff changeset
   634
         UIDisplay:= uiNoTeams
9e31e3bb4476 Delete now toggles hiding team area
nemo
parents: 9671
diff changeset
   635
    else UIDisplay:= uiAll
9e31e3bb4476 Delete now toggles hiding team area
nemo
parents: 9671
diff changeset
   636
    end
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   637
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   638
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   639
procedure chSpeedup_p(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   640
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   641
s:= s; // avoid compiler hint
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   642
SpeedStart:= RealTicks;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   643
isSpeed:= true
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   644
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   645
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   646
procedure chSpeedup_m(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   647
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   648
s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   649
isSpeed:= false
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   650
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   651
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   652
procedure chZoomIn(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   653
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   654
    s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   655
    if ZoomValue < cMinZoomLevel then
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   656
        ZoomValue:= ZoomValue + cZoomDelta;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   657
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   658
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   659
procedure chZoomOut(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   660
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   661
    s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   662
    if ZoomValue > cMaxZoomLevel then
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   663
        ZoomValue:= ZoomValue - cZoomDelta;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   664
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   665
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   666
procedure chZoomReset(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   667
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   668
    s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   669
    ZoomValue:= cDefaultZoomLevel;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   670
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   671
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   672
procedure chMapGen(var s: shortstring);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   673
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
   674
cMapGen:= TMapGen(StrToInt(s))
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   675
end;
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   676
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   677
procedure chTemplateFilter(var s: shortstring);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   678
begin
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7104
diff changeset
   679
cTemplateFilter:= StrToInt(s)
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   680
end;
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   681
10472
8d04cebedb16 Partially hook up feature size so horrorcat has something to test.
nemo
parents: 10455
diff changeset
   682
procedure chFeatureSize(var s: shortstring);
8d04cebedb16 Partially hook up feature size so horrorcat has something to test.
nemo
parents: 10455
diff changeset
   683
begin
8d04cebedb16 Partially hook up feature size so horrorcat has something to test.
nemo
parents: 10455
diff changeset
   684
cFeatureSize:= StrToInt(s)
8d04cebedb16 Partially hook up feature size so horrorcat has something to test.
nemo
parents: 10455
diff changeset
   685
end;
8d04cebedb16 Partially hook up feature size so horrorcat has something to test.
nemo
parents: 10455
diff changeset
   686
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   687
procedure chInactDelay(var s: shortstring);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   688
begin
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7104
diff changeset
   689
cInactDelay:= StrToInt(s)
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   690
end;
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   691
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   692
procedure chReadyDelay(var s: shortstring);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   693
begin
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7104
diff changeset
   694
cReadyDelay:= StrToInt(s)
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   695
end;
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   696
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   697
procedure chCaseFactor(var s: shortstring);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   698
begin
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7104
diff changeset
   699
cCaseFactor:= StrToInt(s)
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   700
end;
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   701
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   702
procedure chHealthCaseProb(var s: shortstring);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   703
begin
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7104
diff changeset
   704
cHealthCaseProb:= StrToInt(s)
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   705
end;
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   706
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   707
procedure chHealthCaseAmount(var s: shortstring);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   708
begin
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7104
diff changeset
   709
cHealthCaseAmount:= StrToInt(s)
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   710
end;
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   711
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   712
procedure chSuddenDTurns(var s: shortstring);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   713
begin
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7104
diff changeset
   714
cSuddenDTurns:= StrToInt(s)
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   715
end;
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   716
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   717
procedure chWaterRise(var s: shortstring);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   718
begin
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7104
diff changeset
   719
cWaterRise:= StrToInt(s)
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   720
end;
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   721
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   722
procedure chHealthDecrease(var s: shortstring);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   723
begin
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7104
diff changeset
   724
cHealthDecrease:= StrToInt(s)
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   725
end;
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   726
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   727
procedure chDamagePercent(var s: shortstring);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   728
begin
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7104
diff changeset
   729
cDamagePercent:= StrToInt(s)
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   730
end;
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   731
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   732
procedure chRopePercent(var s: shortstring);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   733
begin
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7104
diff changeset
   734
cRopePercent:= StrToInt(s)
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   735
end;
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   736
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   737
procedure chGetAwayTime(var s: shortstring);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   738
begin
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7104
diff changeset
   739
cGetAwayTime:= StrToInt(s)
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   740
end;
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   741
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   742
procedure chMineDudPercent(var s: shortstring);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   743
begin
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7104
diff changeset
   744
cMineDudPercent:= StrToInt(s)
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   745
end;
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   746
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   747
procedure chLandMines(var s: shortstring);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   748
begin
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7104
diff changeset
   749
cLandMines:= StrToInt(s)
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   750
end;
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   751
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
   752
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
   753
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
   754
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
   755
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
   756
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   757
procedure chExplosives(var s: shortstring);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   758
begin
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7104
diff changeset
   759
cExplosives:= StrToInt(s)
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   760
end;
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   761
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   762
procedure chGameFlags(var s: shortstring);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   763
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
   764
GameFlags:= StrToInt(s);
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   765
if GameFlags and gfSharedAmmo <> 0 then GameFlags:= GameFlags and (not gfPerHogAmmo)
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   766
end;
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   767
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   768
procedure chHedgehogTurnTime(var s: shortstring);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   769
begin
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7104
diff changeset
   770
cHedgehogTurnTime:= StrToInt(s)
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   771
end;
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   772
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   773
procedure chMinesTime(var s: shortstring);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   774
begin
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7104
diff changeset
   775
cMinesTime:= StrToInt(s)
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   776
end;
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   777
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   778
procedure chFastUntilLag(var s: shortstring);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   779
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
   780
    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
   781
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
   782
    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
   783
    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
   784
        // 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
   785
        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
   786
        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
   787
    end
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   788
end;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   789
7201
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7187
diff changeset
   790
procedure chCampVar(var s:shortstring);
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7187
diff changeset
   791
begin
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7187
diff changeset
   792
  CampaignVariable := s;
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7187
diff changeset
   793
end;
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7187
diff changeset
   794
9489
0818d14e90be add world edges to config
nemo
parents: 9080
diff changeset
   795
procedure chWorldEdge(var s: shortstring);
0818d14e90be add world edges to config
nemo
parents: 9080
diff changeset
   796
begin
0818d14e90be add world edges to config
nemo
parents: 9080
diff changeset
   797
WorldEdge:= TWorldEdge(StrToInt(s))
0818d14e90be add world edges to config
nemo
parents: 9080
diff changeset
   798
end;
0818d14e90be add world edges to config
nemo
parents: 9080
diff changeset
   799
10237
282e49f9ce9d sekret feature (test commit)
unc0rr
parents: 10228
diff changeset
   800
procedure chAdvancedMapGenMode(var s:shortstring);
282e49f9ce9d sekret feature (test commit)
unc0rr
parents: 10228
diff changeset
   801
begin
10249
b47ac2c19de3 get rid of fpc warnings/hints
sheepluva
parents: 10237
diff changeset
   802
  s:= s; // avoid compiler hint
10237
282e49f9ce9d sekret feature (test commit)
unc0rr
parents: 10228
diff changeset
   803
  cAdvancedMapGenMode:= true;
282e49f9ce9d sekret feature (test commit)
unc0rr
parents: 10228
diff changeset
   804
end;
282e49f9ce9d sekret feature (test commit)
unc0rr
parents: 10228
diff changeset
   805
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   806
procedure initModule;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   807
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
   808
//////// Begin top sorted by freq analysis not including chatmsg
7407
c1ade666c124 I thirst for randomness.
nemo
parents: 7404
diff changeset
   809
    RegisterVariable('+right'  , @chRight_p      , false, true);
c1ade666c124 I thirst for randomness.
nemo
parents: 7404
diff changeset
   810
    RegisterVariable('-right'  , @chRight_m      , false, true);
c1ade666c124 I thirst for randomness.
nemo
parents: 7404
diff changeset
   811
    RegisterVariable('+up'     , @chUp_p         , false, true);
c1ade666c124 I thirst for randomness.
nemo
parents: 7404
diff changeset
   812
    RegisterVariable('-up'     , @chUp_m         , false, true);
c1ade666c124 I thirst for randomness.
nemo
parents: 7404
diff changeset
   813
    RegisterVariable('+left'   , @chLeft_p       , false, true);
c1ade666c124 I thirst for randomness.
nemo
parents: 7404
diff changeset
   814
    RegisterVariable('-left'   , @chLeft_m       , false, true);
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   815
    RegisterVariable('+attack' , @chAttack_p     , false);
7407
c1ade666c124 I thirst for randomness.
nemo
parents: 7404
diff changeset
   816
    RegisterVariable('+down'   , @chDown_p       , false, true);
c1ade666c124 I thirst for randomness.
nemo
parents: 7404
diff changeset
   817
    RegisterVariable('-down'   , @chDown_m       , false, true);
c1ade666c124 I thirst for randomness.
nemo
parents: 7404
diff changeset
   818
    RegisterVariable('hjump'   , @chHJump        , false, true);
c1ade666c124 I thirst for randomness.
nemo
parents: 7404
diff changeset
   819
    RegisterVariable('ljump'   , @chLJump        , false, true);
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   820
    RegisterVariable('nextturn', @chNextTurn     , false);
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   821
    RegisterVariable('-attack' , @chAttack_m     , false);
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   822
    RegisterVariable('slot'    , @chSlot         , false);
7407
c1ade666c124 I thirst for randomness.
nemo
parents: 7404
diff changeset
   823
    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
   824
//////// End top by freq analysis
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   825
    RegisterVariable('gencmd'  , @chGenCmd       , false);
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   826
    RegisterVariable('script'  , @chScript       , false);
9902
eb8e8b09b2f0 Special script parameter variable in game scheme
unc0rr
parents: 9797
diff changeset
   827
    RegisterVariable('scriptparam', @chScriptParam, false);
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   828
    RegisterVariable('proto'   , @chCheckProto   , true );
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   829
    RegisterVariable('spectate', @chFastUntilLag   , false);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   830
    RegisterVariable('capture' , @chCapture      , true );
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   831
    RegisterVariable('rotmask' , @chRotateMask   , true );
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   832
    RegisterVariable('rdriven' , @chTeamLocal    , false);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   833
    RegisterVariable('map'     , @chSetMap       , false);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   834
    RegisterVariable('theme'   , @chSetTheme     , false);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   835
    RegisterVariable('seed'    , @chSetSeed      , false);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   836
    RegisterVariable('template_filter', @chTemplateFilter, false);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   837
    RegisterVariable('mapgen'  , @chMapGen        , false);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   838
    RegisterVariable('maze_size',@chTemplateFilter, false);
10472
8d04cebedb16 Partially hook up feature size so horrorcat has something to test.
nemo
parents: 10455
diff changeset
   839
    RegisterVariable('feature_size',@chFeatureSize, false);
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   840
    RegisterVariable('delay'   , @chInactDelay    , false);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   841
    RegisterVariable('ready'   , @chReadyDelay    , false);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   842
    RegisterVariable('casefreq', @chCaseFactor    , false);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   843
    RegisterVariable('healthprob', @chHealthCaseProb, false);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   844
    RegisterVariable('hcaseamount', @chHealthCaseAmount, false);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   845
    RegisterVariable('sd_turns', @chSuddenDTurns  , false);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   846
    RegisterVariable('waterrise', @chWaterRise    , false);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   847
    RegisterVariable('healthdec', @chHealthDecrease, false);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   848
    RegisterVariable('damagepct',@chDamagePercent , false);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   849
    RegisterVariable('ropepct' , @chRopePercent   , false);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   850
    RegisterVariable('getawaytime' , @chGetAwayTime , false);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   851
    RegisterVariable('minedudpct',@chMineDudPercent, false);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   852
    RegisterVariable('minesnum', @chLandMines     , false);
10822
def423815f24 hook up to frontend
nemo
parents: 10818
diff changeset
   853
    RegisterVariable('airmines', @chAirMines      , false);
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   854
    RegisterVariable('explosives',@chExplosives    , false);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   855
    RegisterVariable('gmflags' , @chGameFlags      , false);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   856
    RegisterVariable('turntime', @chHedgehogTurnTime, false);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   857
    RegisterVariable('minestime',@chMinesTime     , false);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   858
    RegisterVariable('quit'    , @chQuit         , true );
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   859
    RegisterVariable('forcequit', @chForceQuit   , true );
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   860
    RegisterVariable('confirm' , @chConfirm      , true );
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   861
    RegisterVariable('halt',     @chHalt         , true );
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   862
    RegisterVariable('+speedup', @chSpeedup_p    , true );
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   863
    RegisterVariable('-speedup', @chSpeedup_m    , true );
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   864
    RegisterVariable('zoomin'  , @chZoomIn       , true );
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   865
    RegisterVariable('zoomout' , @chZoomOut      , true );
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   866
    RegisterVariable('zoomreset',@chZoomReset    , true );
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   867
    RegisterVariable('ammomenu', @chAmmoMenu     , true);
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   868
    RegisterVariable('+precise', @chPrecise_p    , false, true);
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   869
    RegisterVariable('-precise', @chPrecise_m    , false, true);
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   870
    RegisterVariable('switch'  , @chSwitch       , false);
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   871
    RegisterVariable('timer'   , @chTimer        , false, true);
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   872
    RegisterVariable('taunt'   , @chTaunt        , false);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   873
    RegisterVariable('put'     , @chPut          , false);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   874
    RegisterVariable('+volup'  , @chVol_p        , true );
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   875
    RegisterVariable('-volup'  , @chVol_m        , true );
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   876
    RegisterVariable('+voldown', @chVol_m        , true );
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   877
    RegisterVariable('-voldown', @chVol_p        , true );
7404
38a23771ee45 ooops (and indentation)
koda
parents: 7403
diff changeset
   878
    RegisterVariable('findhh'  , @chFindhh       , true );
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   879
    RegisterVariable('pause'   , @chPause        , true );
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   880
    RegisterVariable('+cur_u'  , @chCurU_p       , true );
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   881
    RegisterVariable('-cur_u'  , @chCurU_m       , true );
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   882
    RegisterVariable('+cur_d'  , @chCurD_p       , true );
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   883
    RegisterVariable('-cur_d'  , @chCurD_m       , true );
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   884
    RegisterVariable('+cur_l'  , @chCurL_p       , true );
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   885
    RegisterVariable('-cur_l'  , @chCurL_m       , true );
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   886
    RegisterVariable('+cur_r'  , @chCurR_p       , true );
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6828
diff changeset
   887
    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
   888
    RegisterVariable('campvar' , @chCampVar      , true );
7629
d624030abf24 neglected stuff
nemo
parents: 7628
diff changeset
   889
    RegisterVariable('record'  , @chRecord       , true );
9489
0818d14e90be add world edges to config
nemo
parents: 9080
diff changeset
   890
    RegisterVariable('worldedge',@chWorldEdge    , false);
10237
282e49f9ce9d sekret feature (test commit)
unc0rr
parents: 10228
diff changeset
   891
    RegisterVariable('advmapgen',@chAdvancedMapGenMode, false);
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   892
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   893
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   894
procedure freeModule;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   895
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   896
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   897
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   898
end.