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