hedgewars/uCommandHandlers.pas
author koda
Fri, 17 Feb 2012 18:23:36 +0100
changeset 6700 e04da46ee43c
parent 6580 6155187bf599
child 6818 136aa9c8c593
permissions -rw-r--r--
the most important commit of the year
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
6700
e04da46ee43c the most important commit of the year
koda
parents: 6580
diff changeset
     3
 * Copyright (c) 2004-2012 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
5247
bf6d4bc531d2 Ability to turn camera following gears off
unc0rr
parents: 5238
diff changeset
    29
uses uCommands, uTypes, uVariables, uIO, uDebug, uConsts, uScript, uUtils, SDLh, uRandom, uCaptions;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    30
4531
4ea193b0e378 Reenable ReadyTimer using a synced message NEEDS TESTING.
nemo
parents: 4528
diff changeset
    31
procedure chGenCmd(var s: shortstring);
4ea193b0e378 Reenable ReadyTimer using a synced message NEEDS TESTING.
nemo
parents: 4528
diff changeset
    32
begin
4ea193b0e378 Reenable ReadyTimer using a synced message NEEDS TESTING.
nemo
parents: 4528
diff changeset
    33
case s[1] of
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
    34
    'R': if ReadyTimeLeft > 1 then 
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
    35
        begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
    36
        ReadyTimeLeft:= 1;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
    37
        if not CurrentTeam^.ExtDriven then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
    38
            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
    39
        end
4531
4ea193b0e378 Reenable ReadyTimer using a synced message NEEDS TESTING.
nemo
parents: 4528
diff changeset
    40
    end
4ea193b0e378 Reenable ReadyTimer using a synced message NEEDS TESTING.
nemo
parents: 4528
diff changeset
    41
end;
4ea193b0e378 Reenable ReadyTimer using a synced message NEEDS TESTING.
nemo
parents: 4528
diff changeset
    42
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    43
procedure chQuit(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    44
const prevGState: TGameState = gsConfirm;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    45
begin
4751
849740a91d36 possible fix hanging server on ctlr+w
koda
parents: 4746
diff changeset
    46
    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
    47
    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
    48
        begin
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    49
        prevGState:= GameState;
5523
9ac5acc4f3e5 Also unhide mouse cursor when in gsConfirm state
unc0rr
parents: 5352
diff changeset
    50
        GameState:= gsConfirm;
9ac5acc4f3e5 Also unhide mouse cursor when in gsConfirm state
unc0rr
parents: 5352
diff changeset
    51
        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
    52
        end
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
    53
    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
    54
        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
    55
            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
    56
            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
    57
            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
    58
            end
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    59
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    60
4744
ecc2c757d0df general uKey refactor in preparaiton of two new shortcuts
koda
parents: 4661
diff changeset
    61
procedure chForceQuit(var s: shortstring);
ecc2c757d0df general uKey refactor in preparaiton of two new shortcuts
koda
parents: 4661
diff changeset
    62
begin
ecc2c757d0df general uKey refactor in preparaiton of two new shortcuts
koda
parents: 4661
diff changeset
    63
    s:= s; // avoid compiler hint
4751
849740a91d36 possible fix hanging server on ctlr+w
koda
parents: 4746
diff changeset
    64
    GameState:= gsConfirm;
849740a91d36 possible fix hanging server on ctlr+w
koda
parents: 4746
diff changeset
    65
    ParseCommand('confirm', true);
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    66
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    67
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    68
procedure chConfirm(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    69
begin
4751
849740a91d36 possible fix hanging server on ctlr+w
koda
parents: 4746
diff changeset
    70
    s:= s; // avoid compiler hint
849740a91d36 possible fix hanging server on ctlr+w
koda
parents: 4746
diff changeset
    71
    if GameState = gsConfirm then
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    72
    begin
4751
849740a91d36 possible fix hanging server on ctlr+w
koda
parents: 4746
diff changeset
    73
        SendIPC('Q');
849740a91d36 possible fix hanging server on ctlr+w
koda
parents: 4746
diff changeset
    74
        GameState:= gsExit
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    75
    end
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    76
else
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    77
    ParseCommand('chat team', true);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    78
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    79
4751
849740a91d36 possible fix hanging server on ctlr+w
koda
parents: 4746
diff changeset
    80
procedure chHalt (var s: shortstring);
4746
3ae448aebe7e implemented actions for closing/enging program (needs testing over the net)
koda
parents: 4744
diff changeset
    81
begin
3ae448aebe7e implemented actions for closing/enging program (needs testing over the net)
koda
parents: 4744
diff changeset
    82
    s:= s; // avoid compiler hint
3ae448aebe7e implemented actions for closing/enging program (needs testing over the net)
koda
parents: 4744
diff changeset
    83
    SendIPC('H');
3ae448aebe7e implemented actions for closing/enging program (needs testing over the net)
koda
parents: 4744
diff changeset
    84
    GameState:= gsExit
3ae448aebe7e implemented actions for closing/enging program (needs testing over the net)
koda
parents: 4744
diff changeset
    85
end;
3ae448aebe7e implemented actions for closing/enging program (needs testing over the net)
koda
parents: 4744
diff changeset
    86
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    87
procedure chCheckProto(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    88
var i, c: LongInt;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    89
begin
6001
24b3a7ba3884 more details in chCheckProto
koda
parents: 5679
diff changeset
    90
    if isDeveloperMode then
24b3a7ba3884 more details in chCheckProto
koda
parents: 5679
diff changeset
    91
        begin
24b3a7ba3884 more details in chCheckProto
koda
parents: 5679
diff changeset
    92
        val(s, i, c);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
    93
        if (c <> 0) or (i = 0) then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
    94
            exit;
6001
24b3a7ba3884 more details in chCheckProto
koda
parents: 5679
diff changeset
    95
        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
    96
        TryDo(i >= cNetProtoVersion, 'Protocol version mismatch: engine is too new (got '+intToStr(i)+', expecting '+intToStr(cNetProtoVersion)+')', true);
24b3a7ba3884 more details in chCheckProto
koda
parents: 5679
diff changeset
    97
    end
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    98
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
    99
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   100
procedure chTeamLocal(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   101
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   102
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
   103
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
   104
    exit;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   105
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
   106
    OutError(errmsgIncorrectUse + ' "/rdriven"', true);
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   107
CurrentTeam^.ExtDriven:= true
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   108
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   109
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   110
procedure chGrave(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   111
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   112
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
   113
    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
   114
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
   115
    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
   116
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
   117
    Delete(s, byte(s[0]), 1);
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   118
CurrentTeam^.GraveName:= s
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   119
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   120
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   121
procedure chFort(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   122
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   123
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
   124
    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
   125
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
   126
    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
   127
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
   128
    Delete(s, byte(s[0]), 1);
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   129
CurrentTeam^.FortName:= s
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   130
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   131
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   132
procedure chFlag(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   133
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   134
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
   135
    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
   136
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
   137
    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
   138
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
   139
    Delete(s, byte(s[0]), 1);
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   140
CurrentTeam^.flag:= s
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   141
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   142
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   143
procedure chScript(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   144
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   145
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
   146
    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
   147
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
   148
    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
   149
cScriptName:= s;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   150
ScriptLoad(s)
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   151
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   152
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   153
procedure chSetHat(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   154
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   155
if (not isDeveloperMode) or (CurrentTeam = nil) then exit;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   156
with CurrentTeam^ do
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   157
    begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   158
    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
   159
    if (s = '')
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   160
    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
   161
    or ((Length(s) > 39) and (Copy(s,1,8) = 'Reserved') and (Copy(s,9,32) <> PlayerHash)) then
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   162
        CurrentHedgehog^.Hat:= 'NoHat'
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   163
    else
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   164
        CurrentHedgehog^.Hat:= s
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   165
    end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   166
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   167
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   168
procedure chCurU_p(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   169
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   170
s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   171
CursorMovementY:= -1;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   172
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   173
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   174
procedure chCurU_m(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   175
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   176
s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   177
CursorMovementY:= 0;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   178
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   179
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   180
procedure chCurD_p(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   181
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   182
s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   183
CursorMovementY:= 1;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   184
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   185
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   186
procedure chCurD_m(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   187
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   188
s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   189
CursorMovementY:= 0;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   190
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   191
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   192
procedure chCurL_p(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   193
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   194
s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   195
CursorMovementX:= -1;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   196
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   197
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   198
procedure chCurL_m(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   199
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   200
s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   201
CursorMovementX:= 0;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   202
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   203
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   204
procedure chCurR_p(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   205
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   206
s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   207
CursorMovementX:= 1;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   208
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   209
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   210
procedure chCurR_m(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   211
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   212
s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   213
CursorMovementX:= 0;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   214
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   215
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   216
procedure chLeft_p(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   217
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   218
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
   219
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
   220
    exit;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   221
if not CurrentTeam^.ExtDriven then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   222
    SendIPC('L');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   223
bShowFinger:= false;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   224
with CurrentHedgehog^.Gear^ do
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   225
    Message:= Message or (gmLeft and InputMask);
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   226
    ScriptCall('onLeft');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   227
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   228
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   229
procedure chLeft_m(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   230
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   231
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
   232
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
   233
    exit;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   234
if not CurrentTeam^.ExtDriven then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   235
    SendIPC('l');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   236
with CurrentHedgehog^.Gear^ do
6453
11c578d30bd3 Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents: 6415
diff changeset
   237
    Message:= Message and (not (gmLeft and InputMask));
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   238
    ScriptCall('onLeftUp');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   239
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   240
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   241
procedure chRight_p(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   242
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   243
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
   244
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
   245
    exit;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   246
if not CurrentTeam^.ExtDriven then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   247
    SendIPC('R');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   248
bShowFinger:= false;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   249
with CurrentHedgehog^.Gear^ do
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   250
    Message:= Message or (gmRight and InputMask);
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   251
    ScriptCall('onRight');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   252
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   253
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   254
procedure chRight_m(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   255
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   256
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
   257
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
   258
    exit;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   259
if not CurrentTeam^.ExtDriven then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   260
    SendIPC('r');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   261
with CurrentHedgehog^.Gear^ do
6453
11c578d30bd3 Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents: 6415
diff changeset
   262
    Message:= Message and (not (gmRight and InputMask));
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   263
    ScriptCall('onRightUp');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   264
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   265
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   266
procedure chUp_p(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   267
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   268
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
   269
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
   270
    exit;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   271
if not CurrentTeam^.ExtDriven then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   272
    SendIPC('U');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   273
bShowFinger:= false;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   274
with CurrentHedgehog^.Gear^ do
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   275
    Message:= Message or (gmUp and InputMask);
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   276
    ScriptCall('onUp');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   277
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   278
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   279
procedure chUp_m(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   280
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   281
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
   282
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
   283
    exit;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   284
if not CurrentTeam^.ExtDriven then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   285
    SendIPC('u');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   286
with CurrentHedgehog^.Gear^ do
6453
11c578d30bd3 Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents: 6415
diff changeset
   287
    Message:= Message and (not (gmUp and InputMask));
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   288
    ScriptCall('onUpUp');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   289
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   290
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   291
procedure chDown_p(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   292
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   293
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
   294
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
   295
    exit;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   296
if not CurrentTeam^.ExtDriven then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   297
    SendIPC('D');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   298
bShowFinger:= false;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   299
with CurrentHedgehog^.Gear^ do
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   300
    Message:= Message or (gmDown and InputMask);
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   301
    ScriptCall('onDown');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   302
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   303
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   304
procedure chDown_m(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   305
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   306
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
   307
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
   308
    exit;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   309
if not CurrentTeam^.ExtDriven then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   310
    SendIPC('d');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   311
with CurrentHedgehog^.Gear^ do
6453
11c578d30bd3 Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents: 6415
diff changeset
   312
    Message:= Message and (not (gmDown and InputMask));
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   313
    ScriptCall('onDownUp');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   314
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   315
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   316
procedure chPrecise_p(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   317
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   318
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
   319
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
   320
    exit;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   321
if not CurrentTeam^.ExtDriven then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   322
    SendIPC('Z');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   323
bShowFinger:= false;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   324
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
   325
    Message:= Message or (gmPrecise and InputMask);
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   326
    ScriptCall('onPrecise');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   327
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   328
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   329
procedure chPrecise_m(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   330
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   331
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
   332
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
   333
    exit;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   334
if not CurrentTeam^.ExtDriven then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   335
    SendIPC('z');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   336
with CurrentHedgehog^.Gear^ do
6453
11c578d30bd3 Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents: 6415
diff changeset
   337
    Message:= Message and (not (gmPrecise and InputMask));
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   338
    ScriptCall('onPreciseUp');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   339
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   340
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   341
procedure chLJump(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   342
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   343
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
   344
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
   345
    exit;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   346
if not CurrentTeam^.ExtDriven then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   347
    SendIPC('j');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   348
bShowFinger:= false;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   349
with CurrentHedgehog^.Gear^ do
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   350
    Message:= Message or (gmLJump and InputMask);
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   351
    ScriptCall('onLJump');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   352
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   353
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   354
procedure chHJump(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   355
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   356
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
   357
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
   358
    exit;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   359
if not CurrentTeam^.ExtDriven then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   360
    SendIPC('J');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   361
bShowFinger:= false;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   362
with CurrentHedgehog^.Gear^ do
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   363
    Message:= Message or (gmHJump and InputMask);
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   364
    ScriptCall('onHJump');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   365
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   366
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   367
procedure chAttack_p(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   368
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   369
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
   370
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
   371
    exit;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   372
bShowFinger:= false;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   373
with CurrentHedgehog^.Gear^ do
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   374
    begin
4900
8ad0e23e6d63 addfilelog <3 debugfile
koda
parents: 4845
diff changeset
   375
    AddFileLog('/+attack: hedgehog''s Gear^.State = '+inttostr(State));
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   376
    if ((State and gstHHDriven) <> 0) then
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   377
        begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   378
        FollowGear:= CurrentHedgehog^.Gear;
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   379
        if not CurrentTeam^.ExtDriven then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   380
            SendIPC('A');
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   381
        Message:= Message or (gmAttack and InputMask);
5247
bf6d4bc531d2 Ability to turn camera following gears off
unc0rr
parents: 5238
diff changeset
   382
        ScriptCall('onAttack');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   383
        end
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   384
    end
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   385
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   386
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   387
procedure chAttack_m(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   388
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   389
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
   390
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
   391
    exit;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   392
with CurrentHedgehog^.Gear^ do
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   393
    begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   394
    if not CurrentTeam^.ExtDriven and
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   395
        ((Message and gmAttack) <> 0) then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   396
            SendIPC('a');
6453
11c578d30bd3 Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents: 6415
diff changeset
   397
    Message:= Message and (not (gmAttack and InputMask));
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   398
    ScriptCall('onAttackUp');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   399
    end
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   400
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   401
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   402
procedure chSwitch(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   403
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   404
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
   405
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
   406
    exit;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   407
if not CurrentTeam^.ExtDriven then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   408
    SendIPC('S');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   409
bShowFinger:= false;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   410
with CurrentHedgehog^.Gear^ do
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   411
    Message:= Message or (gmSwitch and InputMask);
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   412
    ScriptCall('onSwitch');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   413
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   414
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   415
procedure chNextTurn(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   416
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   417
    s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   418
    TryDo(AllInactive, '/nextturn called when not all gears are inactive', true);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   419
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   420
    if not CurrentTeam^.ExtDriven then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   421
        SendIPC('N');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   422
    AddFileLog('Doing SwitchHedgehog: time '+inttostr(GameTicks));
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   423
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   424
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   425
procedure chTimer(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   426
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   427
if (s[0] <> #1) or (s[1] < '1') or (s[1] > '5') 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
   428
    exit;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   429
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   430
if not CurrentTeam^.ExtDriven then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   431
    SendIPC(s);
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   432
bShowFinger:= false;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   433
with CurrentHedgehog^.Gear^ do
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   434
    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
   435
    Message:= Message or (gmTimer and InputMask);
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   436
    MsgParam:= byte(s[1]) - ord('0');
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   437
    ScriptCall('onTimer');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   438
    end
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   439
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   440
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   441
procedure chSlot(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   442
var slot: LongWord;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   443
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   444
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
   445
    exit;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   446
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
   447
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
   448
    exit;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   449
if not CurrentTeam^.ExtDriven then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   450
    SendIPC(char(byte(s[1]) + 79));
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   451
bShowFinger:= false;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   452
with CurrentHedgehog^.Gear^ do
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   453
    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
   454
    Message:= Message or (gmSlot and InputMask);
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   455
    MsgParam:= slot; 
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   456
    ScriptCall('onSlot');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   457
    end
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   458
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   459
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   460
procedure chSetWeapon(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   461
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   462
    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
   463
        exit;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   464
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   465
    if TAmmoType(s[1]) > High(TAmmoType) then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   466
        exit;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   467
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 not CurrentTeam^.ExtDriven then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   469
        SendIPC('w' + s);
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   470
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   471
    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
   472
        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
   473
        Message:= Message or (gmWeapon and InputMask);
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   474
        MsgParam:= byte(s[1]);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   475
        ScriptCall('onSetWeapon');
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   476
        end;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   477
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   478
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   479
procedure chTaunt(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   480
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   481
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
   482
    exit;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   483
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   484
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
   485
    exit;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   486
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   487
if not CurrentTeam^.ExtDriven then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   488
    SendIPC('t' + s);
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   489
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   490
with CurrentHedgehog^.Gear^ do
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   491
    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
   492
    Message:= Message or (gmAnimate and InputMask);
4661
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   493
    MsgParam:= byte(s[1]) ; 
f5d858e4b634 Whole ton of script callbacks on commands. Poor engine.
mikade
parents: 4611
diff changeset
   494
    ScriptCall('onTaunt');
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   495
    end
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   496
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   497
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   498
procedure chPut(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   499
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   500
    s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   501
    doPut(0, 0, false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   502
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   503
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   504
procedure chCapture(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   505
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   506
s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   507
flagMakeCapture:= true
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   508
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   509
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   510
procedure chSetMap(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   511
begin
5679
505c6448069b accidentally reverted this when reverting the rest of the override changes.
nemo
parents: 5555
diff changeset
   512
if isDeveloperMode then
6088
47d1b04003d1 - Frontend: don't pass /script for missions
unc0rr
parents: 5679
diff changeset
   513
    begin
6339
2a3925178178 this should allow overriding static maps from lua
nemo
parents: 6313
diff changeset
   514
    if s = '' then
2a3925178178 this should allow overriding static maps from lua
nemo
parents: 6313
diff changeset
   515
        begin
2a3925178178 this should allow overriding static maps from lua
nemo
parents: 6313
diff changeset
   516
        UserPathz[ptMapCurrent]:= s;
2a3925178178 this should allow overriding static maps from lua
nemo
parents: 6313
diff changeset
   517
        Pathz[ptMapCurrent]:= s;
2a3925178178 this should allow overriding static maps from lua
nemo
parents: 6313
diff changeset
   518
        end
2a3925178178 this should allow overriding static maps from lua
nemo
parents: 6313
diff changeset
   519
    else
2a3925178178 this should allow overriding static maps from lua
nemo
parents: 6313
diff changeset
   520
        begin
2a3925178178 this should allow overriding static maps from lua
nemo
parents: 6313
diff changeset
   521
        UserPathz[ptMapCurrent]:= UserPathz[ptMaps] + '/' + s;
2a3925178178 this should allow overriding static maps from lua
nemo
parents: 6313
diff changeset
   522
        Pathz[ptMapCurrent]:= Pathz[ptMaps] + '/' + s;
2a3925178178 this should allow overriding static maps from lua
nemo
parents: 6313
diff changeset
   523
        end;
6088
47d1b04003d1 - Frontend: don't pass /script for missions
unc0rr
parents: 5679
diff changeset
   524
    InitStepsFlags:= InitStepsFlags or cifMap
47d1b04003d1 - Frontend: don't pass /script for missions
unc0rr
parents: 5679
diff changeset
   525
    end;
47d1b04003d1 - Frontend: don't pass /script for missions
unc0rr
parents: 5679
diff changeset
   526
6245
6df227b5e4c9 fix mission map script loading
sheepluva
parents: 6131
diff changeset
   527
ScriptLoad('Maps/' + s + '/map.lua')
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   528
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   529
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   530
procedure chSetTheme(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   531
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   532
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
   533
    begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   534
    UserPathz[ptCurrTheme]:= UserPathz[ptThemes] + '/' + s;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   535
    Pathz[ptCurrTheme]:= Pathz[ptThemes] + '/' + s;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   536
    Theme:= s;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   537
    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
   538
    end
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   539
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   540
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   541
procedure chSetSeed(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   542
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   543
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
   544
    begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   545
    SetRandomSeed(s);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   546
    cSeed:= s;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   547
    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
   548
    end
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   549
    end;
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   550
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   551
procedure chAmmoMenu(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   552
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   553
s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   554
if CheckNoTeamOrHH then
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   555
    bShowAmmoMenu:= true
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   556
else
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   557
    begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   558
    with CurrentTeam^ do
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   559
        with Hedgehogs[CurrHedgehog] do
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   560
            begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   561
            bSelected:= false;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   562
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   563
            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
   564
                bShowAmmoMenu:= false
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   565
            else if ((Gear^.State and (gstAttacking or gstAttacked)) <> 0)
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   566
            or ((MultiShootAttacks > 0) and ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_NoRoundEnd) = 0))
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   567
            or ((Gear^.State and gstHHDriven) = 0) then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   568
                begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   569
                end
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   570
            else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   571
                bShowAmmoMenu:= true
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   572
            end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   573
    end
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   574
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   575
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   576
procedure chVol_p(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   577
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   578
s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   579
inc(cVolumeDelta, 3)
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   580
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   581
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   582
procedure chVol_m(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
dec(cVolumeDelta, 3)
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   586
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   587
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   588
procedure chFindhh(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   589
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   590
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
   591
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
   592
    exit;
5247
bf6d4bc531d2 Ability to turn camera following gears off
unc0rr
parents: 5238
diff changeset
   593
bf6d4bc531d2 Ability to turn camera following gears off
unc0rr
parents: 5238
diff changeset
   594
if FollowGear <> nil then
bf6d4bc531d2 Ability to turn camera following gears off
unc0rr
parents: 5238
diff changeset
   595
    begin
bf6d4bc531d2 Ability to turn camera following gears off
unc0rr
parents: 5238
diff changeset
   596
    AddCaption('Auto Camera Off', $CCCCCC, capgrpVolume);
bf6d4bc531d2 Ability to turn camera following gears off
unc0rr
parents: 5238
diff changeset
   597
    autoCameraOn:= false
bf6d4bc531d2 Ability to turn camera following gears off
unc0rr
parents: 5238
diff changeset
   598
    end
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   599
    else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   600
        begin
5247
bf6d4bc531d2 Ability to turn camera following gears off
unc0rr
parents: 5238
diff changeset
   601
    AddCaption('Auto Camera On', $CCCCCC, capgrpVolume);
bf6d4bc531d2 Ability to turn camera following gears off
unc0rr
parents: 5238
diff changeset
   602
    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
   603
    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
   604
        FollowGear:= CurrentHedgehog^.Gear;
5247
bf6d4bc531d2 Ability to turn camera following gears off
unc0rr
parents: 5238
diff changeset
   605
    autoCameraOn:= true
bf6d4bc531d2 Ability to turn camera following gears off
unc0rr
parents: 5238
diff changeset
   606
    end
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   607
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   608
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   609
procedure chPause(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   610
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   611
s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   612
if gameType <> gmtNet then
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   613
    isPaused:= not isPaused;
5524
40b7f95d9f18 Oh, and fix cursor visibility correlations between gsConfirm state and paused state
unc0rr
parents: 5523
diff changeset
   614
40b7f95d9f18 Oh, and fix cursor visibility correlations between gsConfirm state and paused state
unc0rr
parents: 5523
diff changeset
   615
if isPaused then
40b7f95d9f18 Oh, and fix cursor visibility correlations between gsConfirm state and paused state
unc0rr
parents: 5523
diff changeset
   616
    SDL_ShowCursor(1)
40b7f95d9f18 Oh, and fix cursor visibility correlations between gsConfirm state and paused state
unc0rr
parents: 5523
diff changeset
   617
    else
40b7f95d9f18 Oh, and fix cursor visibility correlations between gsConfirm state and paused state
unc0rr
parents: 5523
diff changeset
   618
    SDL_ShowCursor(ord(GameState = gsConfirm))
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   619
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   620
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   621
procedure chRotateMask(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   622
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   623
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
   624
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
   625
    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
   626
else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   627
    cTagsMask:= cTagsMasksNoHealth[cTagsMask];
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   628
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   629
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   630
procedure chSpeedup_p(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   631
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   632
s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   633
isSpeed:= true
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   634
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   635
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   636
procedure chSpeedup_m(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   637
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   638
s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   639
isSpeed:= false
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   640
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   641
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   642
procedure chZoomIn(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   643
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   644
    s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   645
    if ZoomValue < cMinZoomLevel then
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   646
        ZoomValue:= ZoomValue + cZoomDelta;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   647
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   648
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   649
procedure chZoomOut(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   650
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   651
    s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   652
    if ZoomValue > cMaxZoomLevel then
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   653
        ZoomValue:= ZoomValue - cZoomDelta;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   654
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   655
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   656
procedure chZoomReset(var s: shortstring);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   657
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   658
    s:= s; // avoid compiler hint
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   659
    ZoomValue:= cDefaultZoomLevel;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   660
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   661
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   662
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   663
procedure initModule;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   664
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
   665
//////// Begin top sorted by freq analysis not including chatmsg
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
   666
    RegisterVariable('+right'  , vtCommand, @chRight_p      , false);
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
   667
    RegisterVariable('-right'  , vtCommand, @chRight_m      , false);
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
   668
    RegisterVariable('+up'     , vtCommand, @chUp_p         , false);
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
   669
    RegisterVariable('-up'     , vtCommand, @chUp_m         , false);
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
   670
    RegisterVariable('+left'   , vtCommand, @chLeft_p       , false);
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
   671
    RegisterVariable('-left'   , vtCommand, @chLeft_m       , false);
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
   672
    RegisterVariable('+attack' , vtCommand, @chAttack_p     , false);
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
   673
    RegisterVariable('+down'   , vtCommand, @chDown_p       , false);
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
   674
    RegisterVariable('-down'   , vtCommand, @chDown_m       , false);
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
   675
    RegisterVariable('hjump'   , vtCommand, @chHJump        , false);
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
   676
    RegisterVariable('ljump'   , vtCommand, @chLJump        , false);
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
   677
    RegisterVariable('nextturn', vtCommand, @chNextTurn     , false);
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
   678
    RegisterVariable('-attack' , vtCommand, @chAttack_m     , false);
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
   679
    RegisterVariable('slot'    , vtCommand, @chSlot         , false);
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
   680
    RegisterVariable('setweap' , vtCommand, @chSetWeapon    , false);
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
   681
//////// End top by freq analysis
4531
4ea193b0e378 Reenable ReadyTimer using a synced message NEEDS TESTING.
nemo
parents: 4528
diff changeset
   682
    RegisterVariable('gencmd'  , vtCommand, @chGenCmd       , false);
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   683
    RegisterVariable('flag'    , vtCommand, @chFlag         , false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   684
    RegisterVariable('script'  , vtCommand, @chScript       , false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   685
    RegisterVariable('proto'   , vtCommand, @chCheckProto   , true );
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   686
    RegisterVariable('spectate', vtBoolean, @fastUntilLag   , false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   687
    RegisterVariable('capture' , vtCommand, @chCapture      , true );
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   688
    RegisterVariable('rotmask' , vtCommand, @chRotateMask   , true );
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   689
    RegisterVariable('rdriven' , vtCommand, @chTeamLocal    , false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   690
    RegisterVariable('map'     , vtCommand, @chSetMap       , false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   691
    RegisterVariable('theme'   , vtCommand, @chSetTheme     , false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   692
    RegisterVariable('seed'    , vtCommand, @chSetSeed      , false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   693
    RegisterVariable('template_filter', vtLongInt, @cTemplateFilter, false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   694
    RegisterVariable('mapgen'  , vtLongInt, @cMapGen        , false);
6313
12567f6f6f02 Make mazes filter use same variable as template filter
nemo
parents: 6304
diff changeset
   695
    RegisterVariable('maze_size',vtLongInt, @cTemplateFilter, false);
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   696
    RegisterVariable('delay'   , vtLongInt, @cInactDelay    , false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   697
    RegisterVariable('ready'   , vtLongInt, @cReadyDelay    , false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   698
    RegisterVariable('casefreq', vtLongInt, @cCaseFactor    , false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   699
    RegisterVariable('healthprob', vtLongInt, @cHealthCaseProb, false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   700
    RegisterVariable('hcaseamount', vtLongInt, @cHealthCaseAmount, false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   701
    RegisterVariable('sd_turns', vtLongInt, @cSuddenDTurns  , false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   702
    RegisterVariable('waterrise', vtLongInt, @cWaterRise    , false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   703
    RegisterVariable('healthdec', vtLongInt, @cHealthDecrease, false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   704
    RegisterVariable('damagepct',vtLongInt, @cDamagePercent , false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   705
    RegisterVariable('ropepct' , vtLongInt, @cRopePercent   , false);
5026
e83d4552625f percentage modifier for get away time
nikin
parents: 4976
diff changeset
   706
    RegisterVariable('getawaytime' , vtLongInt, @cGetAwayTime , false);
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   707
    RegisterVariable('minedudpct',vtLongInt,@cMineDudPercent, false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   708
    RegisterVariable('minesnum', vtLongInt, @cLandMines     , false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   709
    RegisterVariable('explosives',vtLongInt,@cExplosives    , false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   710
    RegisterVariable('gmflags' , vtLongInt, @GameFlags      , false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   711
    RegisterVariable('turntime', vtLongInt, @cHedgehogTurnTime, false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   712
    RegisterVariable('minestime',vtLongInt, @cMinesTime     , false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   713
    RegisterVariable('fort'    , vtCommand, @chFort         , false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   714
    RegisterVariable('grave'   , vtCommand, @chGrave        , false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   715
    RegisterVariable('hat'     , vtCommand, @chSetHat       , false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   716
    RegisterVariable('quit'    , vtCommand, @chQuit         , true );
4744
ecc2c757d0df general uKey refactor in preparaiton of two new shortcuts
koda
parents: 4661
diff changeset
   717
    RegisterVariable('forcequit', vtCommand, @chForceQuit   , true );
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   718
    RegisterVariable('confirm' , vtCommand, @chConfirm      , true );
4751
849740a91d36 possible fix hanging server on ctlr+w
koda
parents: 4746
diff changeset
   719
    RegisterVariable('halt',     vtCommand, @chHalt         , true );
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   720
    RegisterVariable('+speedup', vtCommand, @chSpeedup_p    , true );
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   721
    RegisterVariable('-speedup', vtCommand, @chSpeedup_m    , true );
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   722
    RegisterVariable('zoomin'  , vtCommand, @chZoomIn       , true );
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   723
    RegisterVariable('zoomout' , vtCommand, @chZoomOut      , true );
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   724
    RegisterVariable('zoomreset',vtCommand, @chZoomReset    , true );
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   725
    RegisterVariable('ammomenu', vtCommand, @chAmmoMenu     , true);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   726
    RegisterVariable('+precise', vtCommand, @chPrecise_p    , false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   727
    RegisterVariable('-precise', vtCommand, @chPrecise_m    , false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   728
    RegisterVariable('switch'  , vtCommand, @chSwitch       , false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   729
    RegisterVariable('timer'   , vtCommand, @chTimer        , false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   730
    RegisterVariable('taunt'   , vtCommand, @chTaunt        , false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   731
    RegisterVariable('put'     , vtCommand, @chPut          , false);
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   732
    RegisterVariable('+volup'  , vtCommand, @chVol_p        , true );
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   733
    RegisterVariable('-volup'  , vtCommand, @chVol_m        , true );
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   734
    RegisterVariable('+voldown', vtCommand, @chVol_m        , true );
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   735
    RegisterVariable('-voldown', vtCommand, @chVol_p        , true );
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   736
    RegisterVariable('findhh'  , vtCommand, @chFindhh       , true );
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   737
    RegisterVariable('pause'   , vtCommand, @chPause        , true );
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   738
    RegisterVariable('+cur_u'  , vtCommand, @chCurU_p       , true );
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   739
    RegisterVariable('-cur_u'  , vtCommand, @chCurU_m       , true );
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   740
    RegisterVariable('+cur_d'  , vtCommand, @chCurD_p       , true );
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   741
    RegisterVariable('-cur_d'  , vtCommand, @chCurD_m       , true );
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   742
    RegisterVariable('+cur_l'  , vtCommand, @chCurL_p       , true );
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   743
    RegisterVariable('-cur_l'  , vtCommand, @chCurL_m       , true );
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   744
    RegisterVariable('+cur_r'  , vtCommand, @chCurR_p       , true );
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   745
    RegisterVariable('-cur_r'  , vtCommand, @chCurR_m       , true );
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   746
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   747
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   748
procedure freeModule;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   749
begin
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   750
end;
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   751
46caab3a8f84 uCommandHandlers
unc0rr
parents:
diff changeset
   752
end.