hedgewars/CCHandlers.inc
author unc0rr
Sun, 21 Nov 2010 17:48:58 +0300
changeset 4398 36d7e4b6ca81
parent 4389 d1c65b60cd68
child 4401 9cb6990af584
permissions -rw-r--r--
Move some command handlers out of uCommands into more appropriate places, thus removing some dependencies. Ideally uCommands shouldn't depend on anything (except for uTypes and uConsts probably)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     1
(*
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
     2
* Hedgewars, a free turn based strategy game
3236
4ab3917d7d44 Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents: 3006
diff changeset
     3
* Copyright (c) 2004-2010 Andrey Korotaev <unC0Rr@gmail.com>
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
     4
*
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
     5
* This program is free software; you can redistribute it and/or modify
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
     6
* it under the terms of the GNU General Public License as published by
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
     7
* the Free Software Foundation; version 2 of the License
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
     8
*
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
     9
* This program is distributed in the hope that it will be useful,
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
    10
* but WITHOUT ANY WARRANTY; without even the implied warranty of
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
    11
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
    12
* GNU General Public License for more details.
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
    13
*
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
    14
* You should have received a copy of the GNU General Public License
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
    15
* along with this program; if not, write to the Free Software
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
    16
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
    17
*)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    18
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    19
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    20
procedure chQuit(var s: shortstring);
1022
f6a3fcb329ca Start exit confirmation implementation
unc0rr
parents: 991
diff changeset
    21
const prevGState: TGameState = gsConfirm;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    22
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
    23
s:= s; // avoid compiler hint
1022
f6a3fcb329ca Start exit confirmation implementation
unc0rr
parents: 991
diff changeset
    24
if GameState <> gsConfirm then
f6a3fcb329ca Start exit confirmation implementation
unc0rr
parents: 991
diff changeset
    25
        begin
f6a3fcb329ca Start exit confirmation implementation
unc0rr
parents: 991
diff changeset
    26
        prevGState:= GameState;
f6a3fcb329ca Start exit confirmation implementation
unc0rr
parents: 991
diff changeset
    27
        GameState:= gsConfirm
f6a3fcb329ca Start exit confirmation implementation
unc0rr
parents: 991
diff changeset
    28
        end else
f6a3fcb329ca Start exit confirmation implementation
unc0rr
parents: 991
diff changeset
    29
        GameState:= prevGState
f6a3fcb329ca Start exit confirmation implementation
unc0rr
parents: 991
diff changeset
    30
end;
f6a3fcb329ca Start exit confirmation implementation
unc0rr
parents: 991
diff changeset
    31
f6a3fcb329ca Start exit confirmation implementation
unc0rr
parents: 991
diff changeset
    32
procedure chConfirm(var s: shortstring);
f6a3fcb329ca Start exit confirmation implementation
unc0rr
parents: 991
diff changeset
    33
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
    34
s:= s; // avoid compiler hint
1022
f6a3fcb329ca Start exit confirmation implementation
unc0rr
parents: 991
diff changeset
    35
if GameState = gsConfirm then
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
    36
    begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
    37
    SendIPC('Q');
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
    38
    GameState:= gsExit
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
    39
    end
2130
708758635955 Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents: 2125
diff changeset
    40
else
708758635955 Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents: 2125
diff changeset
    41
    begin
708758635955 Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents: 2125
diff changeset
    42
    GameState:= gsChat;
708758635955 Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents: 2125
diff changeset
    43
    KeyPressChat(27);
708758635955 Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents: 2125
diff changeset
    44
    KeyPressChat(47);
708758635955 Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents: 2125
diff changeset
    45
    KeyPressChat(116);
708758635955 Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents: 2125
diff changeset
    46
    KeyPressChat(101);
708758635955 Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents: 2125
diff changeset
    47
    KeyPressChat(97);
708758635955 Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents: 2125
diff changeset
    48
    KeyPressChat(109);
708758635955 Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents: 2125
diff changeset
    49
    KeyPressChat(32)
708758635955 Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents: 2125
diff changeset
    50
    end
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    51
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    52
205
8d9aff55e6ab - Set version to 0.8
unc0rr
parents: 192
diff changeset
    53
procedure chCheckProto(var s: shortstring);
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 358
diff changeset
    54
var i, c: LongInt;
205
8d9aff55e6ab - Set version to 0.8
unc0rr
parents: 192
diff changeset
    55
begin
8d9aff55e6ab - Set version to 0.8
unc0rr
parents: 192
diff changeset
    56
if isDeveloperMode then
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
    57
begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
    58
val(s, i, c);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
    59
if (c <> 0) or (i = 0) then exit;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
    60
TryDo(i <= cNetProtoVersion, 'Protocol version mismatch: engine is too old', true);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
    61
TryDo(i >= cNetProtoVersion, 'Protocol version mismatch: engine is too new', true)
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
    62
end
205
8d9aff55e6ab - Set version to 0.8
unc0rr
parents: 192
diff changeset
    63
end;
8d9aff55e6ab - Set version to 0.8
unc0rr
parents: 192
diff changeset
    64
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    65
procedure chTeamLocal(var s: shortstring);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    66
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
    67
s:= s; // avoid compiler hint
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    68
if not isDeveloperMode then exit;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    69
if CurrentTeam = nil then OutError(errmsgIncorrectUse + ' "/rdriven"', true);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 324
diff changeset
    70
CurrentTeam^.ExtDriven:= true
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    71
end;
3969
5f4ef3db0a65 Ok. Let's disable the right one this time. In fact, let's just remove newgrave entirely - no point in half-measures.
nemo
parents: 3968
diff changeset
    72
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    73
procedure chGrave(var s: shortstring);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    74
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    75
if CurrentTeam = nil then OutError(errmsgIncorrectUse + ' "/grave"', true);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    76
if s[1]='"' then Delete(s, 1, 1);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    77
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 324
diff changeset
    78
CurrentTeam^.GraveName:= s
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    79
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    80
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    81
procedure chFort(var s: shortstring);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    82
begin
764
7513452b1d51 Now game looks almost like it did before switching to OpenGL
unc0rr
parents: 753
diff changeset
    83
if CurrentTeam = nil then OutError(errmsgIncorrectUse + ' "/fort"', true);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    84
if s[1]='"' then Delete(s, 1, 1);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    85
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 324
diff changeset
    86
CurrentTeam^.FortName:= s
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    87
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    88
2747
7889a3a9724f Server:
smxx
parents: 2738
diff changeset
    89
procedure chFlag(var s: shortstring);
7889a3a9724f Server:
smxx
parents: 2738
diff changeset
    90
begin
7889a3a9724f Server:
smxx
parents: 2738
diff changeset
    91
if CurrentTeam = nil then OutError(errmsgIncorrectUse + ' "/flag"', true);
7889a3a9724f Server:
smxx
parents: 2738
diff changeset
    92
if s[1]='"' then Delete(s, 1, 1);
7889a3a9724f Server:
smxx
parents: 2738
diff changeset
    93
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1);
7889a3a9724f Server:
smxx
parents: 2738
diff changeset
    94
CurrentTeam^.flag:= s
7889a3a9724f Server:
smxx
parents: 2738
diff changeset
    95
end;
7889a3a9724f Server:
smxx
parents: 2738
diff changeset
    96
2786
85f6425a4d74 Engine:
smxx
parents: 2747
diff changeset
    97
procedure chScript(var s: shortstring);
85f6425a4d74 Engine:
smxx
parents: 2747
diff changeset
    98
begin
85f6425a4d74 Engine:
smxx
parents: 2747
diff changeset
    99
if s[1]='"' then Delete(s, 1, 1);
85f6425a4d74 Engine:
smxx
parents: 2747
diff changeset
   100
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1);
85f6425a4d74 Engine:
smxx
parents: 2747
diff changeset
   101
ScriptLoad(s)
85f6425a4d74 Engine:
smxx
parents: 2747
diff changeset
   102
end;
85f6425a4d74 Engine:
smxx
parents: 2747
diff changeset
   103
1242
4aca5f7b2504 Hats now fully implemented for local game
unc0rr
parents: 1127
diff changeset
   104
procedure chSetHat(var s: shortstring);
4aca5f7b2504 Hats now fully implemented for local game
unc0rr
parents: 1127
diff changeset
   105
begin
4aca5f7b2504 Hats now fully implemented for local game
unc0rr
parents: 1127
diff changeset
   106
if (not isDeveloperMode) or (CurrentTeam = nil) then exit;
4aca5f7b2504 Hats now fully implemented for local game
unc0rr
parents: 1127
diff changeset
   107
with CurrentTeam^ do
2726
a84fc5113d01 Update translation files, add "King Mode"
nemo
parents: 2724
diff changeset
   108
    begin
a84fc5113d01 Update translation files, add "King Mode"
nemo
parents: 2724
diff changeset
   109
    if not CurrentHedgehog^.King then
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   110
    if (s = '') or 
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   111
        (((GameFlags and gfKing) <> 0) and (s = 'crown')) or
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   112
        ((Length(s) > 39) and (Copy(s,1,8) = 'Reserved') and (Copy(s,9,32) <> PlayerHash)) then
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   113
        CurrentHedgehog^.Hat:= 'NoHat'
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   114
    else
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   115
        CurrentHedgehog^.Hat:= s
2726
a84fc5113d01 Update translation files, add "King Mode"
nemo
parents: 2724
diff changeset
   116
    end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   117
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   118
3346
967fd96f7373 Engine/Frontend:
smxx
parents: 3336
diff changeset
   119
procedure chSetAmmoLoadout(var descr: shortstring);
967fd96f7373 Engine/Frontend:
smxx
parents: 3336
diff changeset
   120
begin
967fd96f7373 Engine/Frontend:
smxx
parents: 3336
diff changeset
   121
SetAmmoLoadout(descr)
967fd96f7373 Engine/Frontend:
smxx
parents: 3336
diff changeset
   122
end;
967fd96f7373 Engine/Frontend:
smxx
parents: 3336
diff changeset
   123
967fd96f7373 Engine/Frontend:
smxx
parents: 3336
diff changeset
   124
procedure chSetAmmoDelay(var descr: shortstring);
967fd96f7373 Engine/Frontend:
smxx
parents: 3336
diff changeset
   125
begin
967fd96f7373 Engine/Frontend:
smxx
parents: 3336
diff changeset
   126
SetAmmoDelay(descr)
967fd96f7373 Engine/Frontend:
smxx
parents: 3336
diff changeset
   127
end;
967fd96f7373 Engine/Frontend:
smxx
parents: 3336
diff changeset
   128
967fd96f7373 Engine/Frontend:
smxx
parents: 3336
diff changeset
   129
procedure chSetAmmoProbability(var descr: shortstring);
967fd96f7373 Engine/Frontend:
smxx
parents: 3336
diff changeset
   130
begin
967fd96f7373 Engine/Frontend:
smxx
parents: 3336
diff changeset
   131
SetAmmoProbability(descr)
967fd96f7373 Engine/Frontend:
smxx
parents: 3336
diff changeset
   132
end;
967fd96f7373 Engine/Frontend:
smxx
parents: 3336
diff changeset
   133
967fd96f7373 Engine/Frontend:
smxx
parents: 3336
diff changeset
   134
procedure chSetAmmoReinforcement(var descr: shortstring);
967fd96f7373 Engine/Frontend:
smxx
parents: 3336
diff changeset
   135
begin
967fd96f7373 Engine/Frontend:
smxx
parents: 3336
diff changeset
   136
SetAmmoReinforcement(descr)
967fd96f7373 Engine/Frontend:
smxx
parents: 3336
diff changeset
   137
end;
967fd96f7373 Engine/Frontend:
smxx
parents: 3336
diff changeset
   138
288
929c44745fd9 Ammo schemes and ammo stores support in engine
unc0rr
parents: 281
diff changeset
   139
procedure chAddAmmoStore(var descr: shortstring);
929c44745fd9 Ammo schemes and ammo stores support in engine
unc0rr
parents: 281
diff changeset
   140
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   141
descr:= ''; // avoid compiler hint
3346
967fd96f7373 Engine/Frontend:
smxx
parents: 3336
diff changeset
   142
AddAmmoStore
288
929c44745fd9 Ammo schemes and ammo stores support in engine
unc0rr
parents: 281
diff changeset
   143
end;
929c44745fd9 Ammo schemes and ammo stores support in engine
unc0rr
parents: 281
diff changeset
   144
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   145
procedure chBind(var id: shortstring);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   146
var s: shortstring;
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 358
diff changeset
   147
    b: LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   148
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   149
s:= '';
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   150
if CurrentTeam = nil then exit;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   151
SplitBySpace(id, s);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   152
if s[1]='"' then Delete(s, 1, 1);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   153
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   154
b:= KeyNameToCode(id);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 324
diff changeset
   155
if b = 0 then OutError(errmsgUnknownVariable + ' "' + id + '"', false)
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   156
        else CurrentTeam^.Binds[b]:= s
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   157
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   158
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   159
procedure chCurU_p(var s: shortstring);
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   160
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   161
s:= s; // avoid compiler hint
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   162
CursorMovementY:= -1;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   163
end;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   164
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   165
procedure chCurU_m(var s: shortstring);
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   166
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   167
s:= s; // avoid compiler hint
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   168
CursorMovementY:= 0;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   169
end;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   170
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   171
procedure chCurD_p(var s: shortstring);
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   172
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   173
s:= s; // avoid compiler hint
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   174
CursorMovementY:= 1;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   175
end;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   176
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   177
procedure chCurD_m(var s: shortstring);
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   178
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   179
s:= s; // avoid compiler hint
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   180
CursorMovementY:= 0;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   181
end;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   182
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   183
procedure chCurL_p(var s: shortstring);
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   184
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   185
s:= s; // avoid compiler hint
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   186
CursorMovementX:= -1;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   187
end;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   188
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   189
procedure chCurL_m(var s: shortstring);
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   190
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   191
s:= s; // avoid compiler hint
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   192
CursorMovementX:= 0;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   193
end;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   194
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   195
procedure chCurR_p(var s: shortstring);
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   196
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   197
s:= s; // avoid compiler hint
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   198
CursorMovementX:= 1;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   199
end;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   200
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   201
procedure chCurR_m(var s: shortstring);
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   202
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   203
s:= s; // avoid compiler hint
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   204
CursorMovementX:= 0;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   205
end;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2407
diff changeset
   206
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   207
procedure chLeft_p(var s: shortstring);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   208
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   209
s:= s; // avoid compiler hint
3776
28849f5a03c9 Engine:
smaxx
parents: 3774
diff changeset
   210
if CheckNoTeamOrHH or isPaused then exit;
28849f5a03c9 Engine:
smaxx
parents: 3774
diff changeset
   211
if not CurrentTeam^.ExtDriven then SendIPC('L');
3796
4ab6d6f78312 Engine:
smaxx
parents: 3776
diff changeset
   212
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1;
176
533d03041dcd 'h' marks out current hedgehog
unc0rr
parents: 175
diff changeset
   213
bShowFinger:= false;
602
f7628ebfccde Add CurrentHedgehog variable which simplifies code
unc0rr
parents: 595
diff changeset
   214
with CurrentHedgehog^.Gear^ do
3894
9abce5468583 Engine:
smaxx
parents: 3836
diff changeset
   215
    Message:= Message or gmLeft
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   216
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   217
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   218
procedure chLeft_m(var s: shortstring);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   219
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   220
s:= s; // avoid compiler hint
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   221
if CheckNoTeamOrHH then exit;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 324
diff changeset
   222
if not CurrentTeam^.ExtDriven then SendIPC('l');
602
f7628ebfccde Add CurrentHedgehog variable which simplifies code
unc0rr
parents: 595
diff changeset
   223
with CurrentHedgehog^.Gear^ do
3894
9abce5468583 Engine:
smaxx
parents: 3836
diff changeset
   224
    Message:= Message and not gmLeft
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   225
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   226
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   227
procedure chRight_p(var s: shortstring);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   228
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   229
s:= s; // avoid compiler hint
3776
28849f5a03c9 Engine:
smaxx
parents: 3774
diff changeset
   230
if CheckNoTeamOrHH or isPaused then exit;
28849f5a03c9 Engine:
smaxx
parents: 3774
diff changeset
   231
if not CurrentTeam^.ExtDriven then SendIPC('R');
3796
4ab6d6f78312 Engine:
smaxx
parents: 3776
diff changeset
   232
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1;
176
533d03041dcd 'h' marks out current hedgehog
unc0rr
parents: 175
diff changeset
   233
bShowFinger:= false;
602
f7628ebfccde Add CurrentHedgehog variable which simplifies code
unc0rr
parents: 595
diff changeset
   234
with CurrentHedgehog^.Gear^ do
3894
9abce5468583 Engine:
smaxx
parents: 3836
diff changeset
   235
    Message:= Message or gmRight
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   236
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   237
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   238
procedure chRight_m(var s: shortstring);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   239
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   240
s:= s; // avoid compiler hint
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   241
if CheckNoTeamOrHH then exit;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 324
diff changeset
   242
if not CurrentTeam^.ExtDriven then SendIPC('r');
602
f7628ebfccde Add CurrentHedgehog variable which simplifies code
unc0rr
parents: 595
diff changeset
   243
with CurrentHedgehog^.Gear^ do
3894
9abce5468583 Engine:
smaxx
parents: 3836
diff changeset
   244
    Message:= Message and not gmRight
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   245
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   246
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   247
procedure chUp_p(var s: shortstring);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   248
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   249
s:= s; // avoid compiler hint
3776
28849f5a03c9 Engine:
smaxx
parents: 3774
diff changeset
   250
if CheckNoTeamOrHH or isPaused then exit;
28849f5a03c9 Engine:
smaxx
parents: 3774
diff changeset
   251
if not CurrentTeam^.ExtDriven then SendIPC('U');
3796
4ab6d6f78312 Engine:
smaxx
parents: 3776
diff changeset
   252
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1;
176
533d03041dcd 'h' marks out current hedgehog
unc0rr
parents: 175
diff changeset
   253
bShowFinger:= false;
602
f7628ebfccde Add CurrentHedgehog variable which simplifies code
unc0rr
parents: 595
diff changeset
   254
with CurrentHedgehog^.Gear^ do
3894
9abce5468583 Engine:
smaxx
parents: 3836
diff changeset
   255
    Message:= Message or gmUp
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   256
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   257
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   258
procedure chUp_m(var s: shortstring);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   259
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   260
s:= s; // avoid compiler hint
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   261
if CheckNoTeamOrHH then exit;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 324
diff changeset
   262
if not CurrentTeam^.ExtDriven then SendIPC('u');
602
f7628ebfccde Add CurrentHedgehog variable which simplifies code
unc0rr
parents: 595
diff changeset
   263
with CurrentHedgehog^.Gear^ do
3894
9abce5468583 Engine:
smaxx
parents: 3836
diff changeset
   264
    Message:= Message and not gmUp
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   265
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   266
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   267
procedure chDown_p(var s: shortstring);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   268
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   269
s:= s; // avoid compiler hint
3776
28849f5a03c9 Engine:
smaxx
parents: 3774
diff changeset
   270
if CheckNoTeamOrHH or isPaused then exit;
28849f5a03c9 Engine:
smaxx
parents: 3774
diff changeset
   271
if not CurrentTeam^.ExtDriven then SendIPC('D');
3796
4ab6d6f78312 Engine:
smaxx
parents: 3776
diff changeset
   272
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1;
176
533d03041dcd 'h' marks out current hedgehog
unc0rr
parents: 175
diff changeset
   273
bShowFinger:= false;
602
f7628ebfccde Add CurrentHedgehog variable which simplifies code
unc0rr
parents: 595
diff changeset
   274
with CurrentHedgehog^.Gear^ do
3894
9abce5468583 Engine:
smaxx
parents: 3836
diff changeset
   275
    Message:= Message or gmDown
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   276
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   277
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   278
procedure chDown_m(var s: shortstring);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   279
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   280
s:= s; // avoid compiler hint
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   281
if CheckNoTeamOrHH then exit;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 324
diff changeset
   282
if not CurrentTeam^.ExtDriven then SendIPC('d');
602
f7628ebfccde Add CurrentHedgehog variable which simplifies code
unc0rr
parents: 595
diff changeset
   283
with CurrentHedgehog^.Gear^ do
3894
9abce5468583 Engine:
smaxx
parents: 3836
diff changeset
   284
    Message:= Message and not gmDown
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   285
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   286
1639
89b536a3cf3c Implement precise aiming when pressing left shift
unc0rr
parents: 1525
diff changeset
   287
procedure chPrecise_p(var s: shortstring);
89b536a3cf3c Implement precise aiming when pressing left shift
unc0rr
parents: 1525
diff changeset
   288
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   289
s:= s; // avoid compiler hint
3776
28849f5a03c9 Engine:
smaxx
parents: 3774
diff changeset
   290
if CheckNoTeamOrHH or isPaused then exit;
28849f5a03c9 Engine:
smaxx
parents: 3774
diff changeset
   291
if not CurrentTeam^.ExtDriven then SendIPC('Z');
3796
4ab6d6f78312 Engine:
smaxx
parents: 3776
diff changeset
   292
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1;
1639
89b536a3cf3c Implement precise aiming when pressing left shift
unc0rr
parents: 1525
diff changeset
   293
bShowFinger:= false;
89b536a3cf3c Implement precise aiming when pressing left shift
unc0rr
parents: 1525
diff changeset
   294
with CurrentHedgehog^.Gear^ do
3894
9abce5468583 Engine:
smaxx
parents: 3836
diff changeset
   295
    Message:= Message or gmPrecise
1639
89b536a3cf3c Implement precise aiming when pressing left shift
unc0rr
parents: 1525
diff changeset
   296
end;
89b536a3cf3c Implement precise aiming when pressing left shift
unc0rr
parents: 1525
diff changeset
   297
89b536a3cf3c Implement precise aiming when pressing left shift
unc0rr
parents: 1525
diff changeset
   298
procedure chPrecise_m(var s: shortstring);
89b536a3cf3c Implement precise aiming when pressing left shift
unc0rr
parents: 1525
diff changeset
   299
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   300
s:= s; // avoid compiler hint
1639
89b536a3cf3c Implement precise aiming when pressing left shift
unc0rr
parents: 1525
diff changeset
   301
if CheckNoTeamOrHH then exit;
89b536a3cf3c Implement precise aiming when pressing left shift
unc0rr
parents: 1525
diff changeset
   302
if not CurrentTeam^.ExtDriven then SendIPC('z');
89b536a3cf3c Implement precise aiming when pressing left shift
unc0rr
parents: 1525
diff changeset
   303
with CurrentHedgehog^.Gear^ do
3894
9abce5468583 Engine:
smaxx
parents: 3836
diff changeset
   304
    Message:= Message and not gmPrecise
1639
89b536a3cf3c Implement precise aiming when pressing left shift
unc0rr
parents: 1525
diff changeset
   305
end;
89b536a3cf3c Implement precise aiming when pressing left shift
unc0rr
parents: 1525
diff changeset
   306
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   307
procedure chLJump(var s: shortstring);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   308
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   309
s:= s; // avoid compiler hint
3776
28849f5a03c9 Engine:
smaxx
parents: 3774
diff changeset
   310
if CheckNoTeamOrHH or isPaused then exit;
28849f5a03c9 Engine:
smaxx
parents: 3774
diff changeset
   311
if not CurrentTeam^.ExtDriven then SendIPC('j');
3797
e097914ac0e2 Engine:
smaxx
parents: 3796
diff changeset
   312
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1;
176
533d03041dcd 'h' marks out current hedgehog
unc0rr
parents: 175
diff changeset
   313
bShowFinger:= false;
602
f7628ebfccde Add CurrentHedgehog variable which simplifies code
unc0rr
parents: 595
diff changeset
   314
with CurrentHedgehog^.Gear^ do
3894
9abce5468583 Engine:
smaxx
parents: 3836
diff changeset
   315
    Message:= Message or gmLJump
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   316
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   317
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   318
procedure chHJump(var s: shortstring);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   319
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   320
s:= s; // avoid compiler hint
3776
28849f5a03c9 Engine:
smaxx
parents: 3774
diff changeset
   321
if CheckNoTeamOrHH or isPaused then exit;
28849f5a03c9 Engine:
smaxx
parents: 3774
diff changeset
   322
if not CurrentTeam^.ExtDriven then SendIPC('J');
3797
e097914ac0e2 Engine:
smaxx
parents: 3796
diff changeset
   323
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1;
176
533d03041dcd 'h' marks out current hedgehog
unc0rr
parents: 175
diff changeset
   324
bShowFinger:= false;
602
f7628ebfccde Add CurrentHedgehog variable which simplifies code
unc0rr
parents: 595
diff changeset
   325
with CurrentHedgehog^.Gear^ do
3894
9abce5468583 Engine:
smaxx
parents: 3836
diff changeset
   326
    Message:= Message or gmHJump
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   327
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   328
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   329
procedure chAttack_p(var s: shortstring);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   330
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   331
s:= s; // avoid compiler hint
3336
d7c1ffed1e15 Engine:
smxx
parents: 3236
diff changeset
   332
if CheckNoTeamOrHH or isPaused then exit;
3797
e097914ac0e2 Engine:
smaxx
parents: 3796
diff changeset
   333
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1;
176
533d03041dcd 'h' marks out current hedgehog
unc0rr
parents: 175
diff changeset
   334
bShowFinger:= false;
602
f7628ebfccde Add CurrentHedgehog variable which simplifies code
unc0rr
parents: 595
diff changeset
   335
with CurrentHedgehog^.Gear^ do
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   336
    begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   337
    {$IFDEF DEBUGFILE}AddFileLog('/+attack: hedgehog''s Gear^.State = '+inttostr(State));{$ENDIF}
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   338
    if ((State and gstHHDriven) <> 0) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   339
        begin
602
f7628ebfccde Add CurrentHedgehog variable which simplifies code
unc0rr
parents: 595
diff changeset
   340
        FollowGear:= CurrentHedgehog^.Gear;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 324
diff changeset
   341
        if not CurrentTeam^.ExtDriven then SendIPC('A');
3894
9abce5468583 Engine:
smaxx
parents: 3836
diff changeset
   342
        Message:= Message or gmAttack
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   343
        end
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   344
    end
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   345
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   346
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   347
procedure chAttack_m(var s: shortstring);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   348
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   349
s:= s; // avoid compiler hint
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   350
if CheckNoTeamOrHH then exit;
602
f7628ebfccde Add CurrentHedgehog variable which simplifies code
unc0rr
parents: 595
diff changeset
   351
with CurrentHedgehog^.Gear^ do
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   352
    begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   353
    if not CurrentTeam^.ExtDriven and
3894
9abce5468583 Engine:
smaxx
parents: 3836
diff changeset
   354
        ((Message and gmAttack) <> 0) then SendIPC('a');
9abce5468583 Engine:
smaxx
parents: 3836
diff changeset
   355
    Message:= Message and not gmAttack
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   356
    end
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   357
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   358
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   359
procedure chSwitch(var s: shortstring);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   360
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   361
s:= s; // avoid compiler hint
3776
28849f5a03c9 Engine:
smaxx
parents: 3774
diff changeset
   362
if CheckNoTeamOrHH or isPaused then exit;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 324
diff changeset
   363
if not CurrentTeam^.ExtDriven then SendIPC('S');
3796
4ab6d6f78312 Engine:
smaxx
parents: 3776
diff changeset
   364
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1;
3776
28849f5a03c9 Engine:
smaxx
parents: 3774
diff changeset
   365
bShowFinger:= false;
602
f7628ebfccde Add CurrentHedgehog variable which simplifies code
unc0rr
parents: 595
diff changeset
   366
with CurrentHedgehog^.Gear^ do
3894
9abce5468583 Engine:
smaxx
parents: 3836
diff changeset
   367
    Message:= Message or gmSwitch
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   368
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   369
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   370
procedure chNextTurn(var s: shortstring);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   371
begin
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   372
    s:= s; // avoid compiler hint
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   373
    TryDo(AllInactive, '/nextturn called when not all gears are inactive', true);
2046
57fb5673ff17 Oops, some debug stuff left
unc0rr
parents: 2045
diff changeset
   374
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   375
    if not CurrentTeam^.ExtDriven then SendIPC('N');
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   376
{$IFDEF DEBUGFILE}
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   377
    AddFileLog('Doing SwitchHedgehog: time '+inttostr(GameTicks));
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   378
{$ENDIF}
3935
5ca27a0e9a63 made the new menu toggable
koda
parents: 3928
diff changeset
   379
    perfExt_NewTurnBeginning();
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   380
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   381
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   382
procedure chSay(var s: shortstring);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   383
begin
1356
77ab8735401d Share chat between frontend and engine
unc0rr
parents: 1242
diff changeset
   384
SendIPC('s' + s);
1378
1a391883261d Allow /me in chat
unc0rr
parents: 1356
diff changeset
   385
1a391883261d Allow /me in chat
unc0rr
parents: 1356
diff changeset
   386
if copy(s, 1, 4) = '/me ' then
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   387
    s:= #2'* ' + UserNick + ' ' + copy(s, 5, Length(s) - 4)
1378
1a391883261d Allow /me in chat
unc0rr
parents: 1356
diff changeset
   388
else
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   389
    s:= #1 + UserNick + ': ' + s;
1378
1a391883261d Allow /me in chat
unc0rr
parents: 1356
diff changeset
   390
1356
77ab8735401d Share chat between frontend and engine
unc0rr
parents: 1242
diff changeset
   391
AddChatString(s)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   392
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   393
2124
d39c61eaca15 experiment in only sending a message to your clan
nemo
parents: 2114
diff changeset
   394
procedure chTeamSay(var s: shortstring);
d39c61eaca15 experiment in only sending a message to your clan
nemo
parents: 2114
diff changeset
   395
begin
d39c61eaca15 experiment in only sending a message to your clan
nemo
parents: 2114
diff changeset
   396
SendIPC('b' + s);
d39c61eaca15 experiment in only sending a message to your clan
nemo
parents: 2114
diff changeset
   397
2962
38237a443f74 Engine:
smxx
parents: 2957
diff changeset
   398
s:= #4 + '[Team] ' + UserNick + ': ' + s;
2124
d39c61eaca15 experiment in only sending a message to your clan
nemo
parents: 2114
diff changeset
   399
2396
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2379
diff changeset
   400
AddChatString(s)
2124
d39c61eaca15 experiment in only sending a message to your clan
nemo
parents: 2114
diff changeset
   401
end;
d39c61eaca15 experiment in only sending a message to your clan
nemo
parents: 2114
diff changeset
   402
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   403
procedure chTimer(var s: shortstring);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   404
begin
2314
953771a06c64 Better fix
unc0rr
parents: 2313
diff changeset
   405
if (s[0] <> #1) or (s[1] < '1') or (s[1] > '5') or CheckNoTeamOrHH then exit;
953771a06c64 Better fix
unc0rr
parents: 2313
diff changeset
   406
926
d231e007452a Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents: 917
diff changeset
   407
if not CurrentTeam^.ExtDriven then SendIPC(s);
3796
4ab6d6f78312 Engine:
smaxx
parents: 3776
diff changeset
   408
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1;
3776
28849f5a03c9 Engine:
smaxx
parents: 3774
diff changeset
   409
bShowFinger:= false;
926
d231e007452a Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents: 917
diff changeset
   410
with CurrentHedgehog^.Gear^ do
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   411
    begin
3894
9abce5468583 Engine:
smaxx
parents: 3836
diff changeset
   412
    Message:= Message or gmTimer;
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   413
    MsgParam:= byte(s[1]) - ord('0')
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   414
    end
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   415
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   416
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   417
procedure chSlot(var s: shortstring);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   418
var slot: LongWord;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   419
begin
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 83
diff changeset
   420
if (s[0] <> #1) or CheckNoTeamOrHH then exit;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   421
slot:= byte(s[1]) - 49;
10
edf56dca1587 - Mine weapon
unc0rr
parents: 4
diff changeset
   422
if slot > cMaxSlotIndex then exit;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 324
diff changeset
   423
if not CurrentTeam^.ExtDriven then SendIPC(char(byte(s[1]) + 79));
3796
4ab6d6f78312 Engine:
smaxx
parents: 3776
diff changeset
   424
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1;
3776
28849f5a03c9 Engine:
smaxx
parents: 3774
diff changeset
   425
bShowFinger:= false;
783
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 764
diff changeset
   426
with CurrentHedgehog^.Gear^ do
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   427
    begin
3894
9abce5468583 Engine:
smaxx
parents: 3836
diff changeset
   428
    Message:= Message or gmSlot;
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   429
    MsgParam:= slot
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   430
    end
783
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 764
diff changeset
   431
end;
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 764
diff changeset
   432
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 764
diff changeset
   433
procedure chSetWeapon(var s: shortstring);
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 764
diff changeset
   434
begin
3637
0db298524c3d implement the check on the type of ammo requiring a second tap to confirm
koda
parents: 3611
diff changeset
   435
    if (s[0] <> #1) or CheckNoTeamOrHH then exit;
784
b203147d91b5 - Handle new command in game record and net
unc0rr
parents: 783
diff changeset
   436
3637
0db298524c3d implement the check on the type of ammo requiring a second tap to confirm
koda
parents: 3611
diff changeset
   437
    if TAmmoType(s[1]) > High(TAmmoType) then exit;
784
b203147d91b5 - Handle new command in game record and net
unc0rr
parents: 783
diff changeset
   438
3637
0db298524c3d implement the check on the type of ammo requiring a second tap to confirm
koda
parents: 3611
diff changeset
   439
    if not CurrentTeam^.ExtDriven then SendIPC('w' + s);
784
b203147d91b5 - Handle new command in game record and net
unc0rr
parents: 783
diff changeset
   440
3637
0db298524c3d implement the check on the type of ammo requiring a second tap to confirm
koda
parents: 3611
diff changeset
   441
    with CurrentHedgehog^.Gear^ do
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   442
    begin
3894
9abce5468583 Engine:
smaxx
parents: 3836
diff changeset
   443
        Message:= Message or gmWeapon;
3637
0db298524c3d implement the check on the type of ammo requiring a second tap to confirm
koda
parents: 3611
diff changeset
   444
        MsgParam:= byte(s[1]);
0db298524c3d implement the check on the type of ammo requiring a second tap to confirm
koda
parents: 3611
diff changeset
   445
    end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   446
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   447
1035
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1022
diff changeset
   448
procedure chTaunt(var s: shortstring);
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1022
diff changeset
   449
begin
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1022
diff changeset
   450
if (s[0] <> #1) or CheckNoTeamOrHH then exit;
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1022
diff changeset
   451
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1022
diff changeset
   452
if TWave(s[1]) > High(TWave) then exit;
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1022
diff changeset
   453
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1022
diff changeset
   454
if not CurrentTeam^.ExtDriven then SendIPC('t' + s);
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1022
diff changeset
   455
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1022
diff changeset
   456
with CurrentHedgehog^.Gear^ do
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   457
    begin
3894
9abce5468583 Engine:
smaxx
parents: 3836
diff changeset
   458
    Message:= Message or gmAnimate;
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   459
    MsgParam:= byte(s[1])
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   460
    end
1035
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1022
diff changeset
   461
end;
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1022
diff changeset
   462
543
465e2ec8f05f - Better randomness of placing hedgehogs on the land
unc0rr
parents: 542
diff changeset
   463
procedure doPut(putX, putY: LongInt; fromAI: boolean);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   464
begin
3776
28849f5a03c9 Engine:
smaxx
parents: 3774
diff changeset
   465
if CheckNoTeamOrHH or isPaused then exit;
3796
4ab6d6f78312 Engine:
smaxx
parents: 3776
diff changeset
   466
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1;
3776
28849f5a03c9 Engine:
smaxx
parents: 3774
diff changeset
   467
bShowFinger:= false;
2963
0f0789204802 This might be all it takes to prevent the desync. needs local/remote testing. Also toggle 2nd barrel state on 0 movement
nemo
parents: 2962
diff changeset
   468
if not CurrentTeam^.ExtDriven and bShowAmmoMenu then
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   469
    begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   470
    bSelected:= true;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   471
    exit
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   472
    end;
543
465e2ec8f05f - Better randomness of placing hedgehogs on the land
unc0rr
parents: 542
diff changeset
   473
602
f7628ebfccde Add CurrentHedgehog variable which simplifies code
unc0rr
parents: 595
diff changeset
   474
with CurrentHedgehog^.Gear^,
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   475
    CurrentHedgehog^ do
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   476
    if (State and gstHHChooseTarget) <> 0 then
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   477
        begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   478
        isCursorVisible:= false;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   479
        if not CurrentTeam^.ExtDriven then
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   480
            begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   481
            if fromAI then
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   482
                begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   483
                TargetPoint.X:= putX;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   484
                TargetPoint.Y:= putY
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   485
                end else
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   486
                begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   487
                TargetPoint.X:= CursorPoint.X - WorldDx;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   488
                TargetPoint.Y:= cScreenHeight - CursorPoint.Y - WorldDy;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   489
                end;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   490
            SendIPCXY('p', TargetPoint.X, TargetPoint.Y);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   491
            end
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   492
        else
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   493
            begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   494
            TargetPoint.X:= putX;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   495
            TargetPoint.Y:= putY
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   496
            end;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   497
        {$IFDEF DEBUGFILE}AddFilelog('put: ' + inttostr(TargetPoint.X) + ', ' + inttostr(TargetPoint.Y));{$ENDIF}
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   498
        State:= State and not gstHHChooseTarget;
3836
833c0f32e326 Change all use of curslot/idx to CurAmmoType to try and avoid some bugs with use of last weapon.
nemo
parents: 3797
diff changeset
   499
        if (Ammoz[CurAmmoType].Ammo.Propz and ammoprop_AttackingPut) <> 0 then
3894
9abce5468583 Engine:
smaxx
parents: 3836
diff changeset
   500
            Message:= Message or gmAttack;
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   501
        end
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   502
    else
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   503
        if CurrentTeam^.ExtDriven then
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   504
            OutError('got /put while not being in choose target mode', false)
543
465e2ec8f05f - Better randomness of placing hedgehogs on the land
unc0rr
parents: 542
diff changeset
   505
end;
465e2ec8f05f - Better randomness of placing hedgehogs on the land
unc0rr
parents: 542
diff changeset
   506
465e2ec8f05f - Better randomness of placing hedgehogs on the land
unc0rr
parents: 542
diff changeset
   507
procedure chPut(var s: shortstring);
465e2ec8f05f - Better randomness of placing hedgehogs on the land
unc0rr
parents: 542
diff changeset
   508
begin
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   509
    s:= s; // avoid compiler hint
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   510
    doPut(0, 0, false);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   511
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   512
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   513
procedure chCapture(var s: shortstring);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   514
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   515
s:= s; // avoid compiler hint
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   516
flagMakeCapture:= true
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   517
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   518
55
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 48
diff changeset
   519
procedure chSetMap(var s: shortstring);
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 48
diff changeset
   520
begin
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 48
diff changeset
   521
if isDeveloperMode then
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   522
begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   523
Pathz[ptMapCurrent]:= Pathz[ptMaps] + '/' + s;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   524
InitStepsFlags:= InitStepsFlags or cifMap
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   525
end
55
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 48
diff changeset
   526
end;
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 48
diff changeset
   527
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 48
diff changeset
   528
procedure chSetTheme(var s: shortstring);
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 48
diff changeset
   529
begin
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 48
diff changeset
   530
if isDeveloperMode then
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   531
begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   532
Pathz[ptCurrTheme]:= Pathz[ptThemes] + '/' + s;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   533
InitStepsFlags:= InitStepsFlags or cifTheme
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   534
end
55
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 48
diff changeset
   535
end;
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 48
diff changeset
   536
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 48
diff changeset
   537
procedure chSetSeed(var s: shortstring);
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 48
diff changeset
   538
begin
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 48
diff changeset
   539
if isDeveloperMode then
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   540
begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   541
SetRandomSeed(s);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   542
cSeed:= s;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   543
InitStepsFlags:= InitStepsFlags or cifRandomize
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   544
end
55
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 48
diff changeset
   545
end;
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 48
diff changeset
   546
161
d8870bbf960e - AmmoMenu
unc0rr
parents: 154
diff changeset
   547
procedure chAmmoMenu(var s: shortstring);
d8870bbf960e - AmmoMenu
unc0rr
parents: 154
diff changeset
   548
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   549
s:= s; // avoid compiler hint
3797
e097914ac0e2 Engine:
smaxx
parents: 3796
diff changeset
   550
if CheckNoTeamOrHH then
e097914ac0e2 Engine:
smaxx
parents: 3796
diff changeset
   551
    bShowAmmoMenu:= true
2855
7e6adeb57427 Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents: 2853
diff changeset
   552
else
3797
e097914ac0e2 Engine:
smaxx
parents: 3796
diff changeset
   553
    begin
e097914ac0e2 Engine:
smaxx
parents: 3796
diff changeset
   554
    with CurrentTeam^ do
2855
7e6adeb57427 Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents: 2853
diff changeset
   555
        with Hedgehogs[CurrHedgehog] do
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   556
            begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   557
            bSelected:= false;
682
a37b6966de84 Some misc fixes
unc0rr
parents: 626
diff changeset
   558
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   559
            if bShowAmmoMenu then bShowAmmoMenu:= false
3396
e5b3e5f2818e More portal changes. Allows for a multishoot utility. Hopefully not breaking anything.
nemo
parents: 3395
diff changeset
   560
            else if ((Gear^.State and (gstAttacking or gstAttacked)) <> 0) or 
4241
835fd7a0e1bf Move resurrection to utilities, reduce its probablit a bit to match other utilities, rename the "hint" prop since it really isn't being used as a hint anymore. That can be put back if it changes.
nemo
parents: 4210
diff changeset
   561
                    ((MultiShootAttacks > 0) and ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_NoRoundEnd) = 0)) or
3396
e5b3e5f2818e More portal changes. Allows for a multishoot utility. Hopefully not breaking anything.
nemo
parents: 3395
diff changeset
   562
                    ((Gear^.State and gstHHDriven) = 0) then else bShowAmmoMenu:= true
3797
e097914ac0e2 Engine:
smaxx
parents: 3796
diff changeset
   563
            end;
e097914ac0e2 Engine:
smaxx
parents: 3796
diff changeset
   564
    if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1
e097914ac0e2 Engine:
smaxx
parents: 3796
diff changeset
   565
    end
161
d8870bbf960e - AmmoMenu
unc0rr
parents: 154
diff changeset
   566
end;
d8870bbf960e - AmmoMenu
unc0rr
parents: 154
diff changeset
   567
175
d226d976d836 - Some improvements to volume control
unc0rr
parents: 174
diff changeset
   568
procedure chVol_p(var s: shortstring);
174
0b2c5b22f644 Changeable volume
unc0rr
parents: 167
diff changeset
   569
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   570
s:= s; // avoid compiler hint
175
d226d976d836 - Some improvements to volume control
unc0rr
parents: 174
diff changeset
   571
inc(cVolumeDelta, 3)
174
0b2c5b22f644 Changeable volume
unc0rr
parents: 167
diff changeset
   572
end;
0b2c5b22f644 Changeable volume
unc0rr
parents: 167
diff changeset
   573
175
d226d976d836 - Some improvements to volume control
unc0rr
parents: 174
diff changeset
   574
procedure chVol_m(var s: shortstring);
174
0b2c5b22f644 Changeable volume
unc0rr
parents: 167
diff changeset
   575
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   576
s:= s; // avoid compiler hint
175
d226d976d836 - Some improvements to volume control
unc0rr
parents: 174
diff changeset
   577
dec(cVolumeDelta, 3)
174
0b2c5b22f644 Changeable volume
unc0rr
parents: 167
diff changeset
   578
end;
0b2c5b22f644 Changeable volume
unc0rr
parents: 167
diff changeset
   579
176
533d03041dcd 'h' marks out current hedgehog
unc0rr
parents: 175
diff changeset
   580
procedure chFindhh(var s: shortstring);
533d03041dcd 'h' marks out current hedgehog
unc0rr
parents: 175
diff changeset
   581
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   582
s:= s; // avoid compiler hint
3336
d7c1ffed1e15 Engine:
smxx
parents: 3236
diff changeset
   583
if CheckNoTeamOrHH or isPaused then exit;
176
533d03041dcd 'h' marks out current hedgehog
unc0rr
parents: 175
diff changeset
   584
bShowFinger:= true;
602
f7628ebfccde Add CurrentHedgehog variable which simplifies code
unc0rr
parents: 595
diff changeset
   585
FollowGear:= CurrentHedgehog^.Gear
176
533d03041dcd 'h' marks out current hedgehog
unc0rr
parents: 175
diff changeset
   586
end;
533d03041dcd 'h' marks out current hedgehog
unc0rr
parents: 175
diff changeset
   587
281
5b483aa9f2ab Pause support (mouse cursor is released when the game is paused)
unc0rr
parents: 263
diff changeset
   588
procedure chPause(var s: shortstring);
5b483aa9f2ab Pause support (mouse cursor is released when the game is paused)
unc0rr
parents: 263
diff changeset
   589
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   590
s:= s; // avoid compiler hint
3796
4ab6d6f78312 Engine:
smaxx
parents: 3776
diff changeset
   591
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1;
1743
ebc54f5fe4e7 Don't allow pause when playing online
unc0rr
parents: 1656
diff changeset
   592
if gameType <> gmtNet then
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   593
    isPaused:= not isPaused;
281
5b483aa9f2ab Pause support (mouse cursor is released when the game is paused)
unc0rr
parents: 263
diff changeset
   594
SDL_ShowCursor(ord(isPaused))
5b483aa9f2ab Pause support (mouse cursor is released when the game is paused)
unc0rr
parents: 263
diff changeset
   595
end;
539
6a9bf1852bbc Ability to choose which info is shown above hedgehogs
unc0rr
parents: 534
diff changeset
   596
6a9bf1852bbc Ability to choose which info is shown above hedgehogs
unc0rr
parents: 534
diff changeset
   597
procedure chRotateMask(var s: shortstring);
6a9bf1852bbc Ability to choose which info is shown above hedgehogs
unc0rr
parents: 534
diff changeset
   598
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   599
s:= s; // avoid compiler hint
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2905
diff changeset
   600
if ((GameFlags and gfInvulnerable) = 0) then cTagsMask:= cTagsMasks[cTagsMask] else cTagsMask:= cTagsMasksNoHealth[cTagsMask];
539
6a9bf1852bbc Ability to choose which info is shown above hedgehogs
unc0rr
parents: 534
diff changeset
   601
end;
6a9bf1852bbc Ability to choose which info is shown above hedgehogs
unc0rr
parents: 534
diff changeset
   602
626
a30171dbcd19 's' key to speed up demo playing
unc0rr
parents: 615
diff changeset
   603
procedure chSpeedup_p(var s: shortstring);
a30171dbcd19 's' key to speed up demo playing
unc0rr
parents: 615
diff changeset
   604
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   605
s:= s; // avoid compiler hint
626
a30171dbcd19 's' key to speed up demo playing
unc0rr
parents: 615
diff changeset
   606
isSpeed:= true
a30171dbcd19 's' key to speed up demo playing
unc0rr
parents: 615
diff changeset
   607
end;
a30171dbcd19 's' key to speed up demo playing
unc0rr
parents: 615
diff changeset
   608
a30171dbcd19 's' key to speed up demo playing
unc0rr
parents: 615
diff changeset
   609
procedure chSpeedup_m(var s: shortstring);
a30171dbcd19 's' key to speed up demo playing
unc0rr
parents: 615
diff changeset
   610
begin
3407
dcc129c4352e Engine:
smxx
parents: 3405
diff changeset
   611
s:= s; // avoid compiler hint
626
a30171dbcd19 's' key to speed up demo playing
unc0rr
parents: 615
diff changeset
   612
isSpeed:= false
a30171dbcd19 's' key to speed up demo playing
unc0rr
parents: 615
diff changeset
   613
end;
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 929
diff changeset
   614
2162
2bce91404d49 - Implement zoom-in and zoom-out
unc0rr
parents: 2130
diff changeset
   615
procedure chZoomIn(var s: shortstring);
2bce91404d49 - Implement zoom-in and zoom-out
unc0rr
parents: 2130
diff changeset
   616
begin
3523
6592fbb969da fix zoom smoothness
koda
parents: 3522
diff changeset
   617
    s:= s; // avoid compiler hint
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   618
    if ZoomValue < cMinZoomLevel then
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   619
        ZoomValue:= ZoomValue + cZoomDelta;
2162
2bce91404d49 - Implement zoom-in and zoom-out
unc0rr
parents: 2130
diff changeset
   620
end;
2bce91404d49 - Implement zoom-in and zoom-out
unc0rr
parents: 2130
diff changeset
   621
2bce91404d49 - Implement zoom-in and zoom-out
unc0rr
parents: 2130
diff changeset
   622
procedure chZoomOut(var s: shortstring);
2bce91404d49 - Implement zoom-in and zoom-out
unc0rr
parents: 2130
diff changeset
   623
begin
3523
6592fbb969da fix zoom smoothness
koda
parents: 3522
diff changeset
   624
    s:= s; // avoid compiler hint
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   625
    if ZoomValue > cMaxZoomLevel then
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   626
        ZoomValue:= ZoomValue - cZoomDelta;
2162
2bce91404d49 - Implement zoom-in and zoom-out
unc0rr
parents: 2130
diff changeset
   627
end;
2bce91404d49 - Implement zoom-in and zoom-out
unc0rr
parents: 2130
diff changeset
   628
2379
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2373
diff changeset
   629
procedure chZoomReset(var s: shortstring);
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2373
diff changeset
   630
begin
3523
6592fbb969da fix zoom smoothness
koda
parents: 3522
diff changeset
   631
    s:= s; // avoid compiler hint
6592fbb969da fix zoom smoothness
koda
parents: 3522
diff changeset
   632
    ZoomValue:= cDefaultZoomLevel;
2379
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2373
diff changeset
   633
end;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2373
diff changeset
   634
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 929
diff changeset
   635
procedure chChat(var s: shortstring);
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 929
diff changeset
   636
begin
3680
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3663
diff changeset
   637
    s:= s; // avoid compiler hint
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3663
diff changeset
   638
    GameState:= gsChat;
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3663
diff changeset
   639
    KeyPressChat(27)
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 929
diff changeset
   640
end;
991
d17c71ee074e Enable history (bound on ` key)
unc0rr
parents: 990
diff changeset
   641
d17c71ee074e Enable history (bound on ` key)
unc0rr
parents: 990
diff changeset
   642
procedure chHistory(var s: shortstring);
d17c71ee074e Enable history (bound on ` key)
unc0rr
parents: 990
diff changeset
   643
begin
3680
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3663
diff changeset
   644
    s:= s; // avoid compiler hint
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3663
diff changeset
   645
    uChat.showAll:= not uChat.showAll
991
d17c71ee074e Enable history (bound on ` key)
unc0rr
parents: 990
diff changeset
   646
end;
4389
d1c65b60cd68 Move land hash checking into commands
unc0rr
parents: 4365
diff changeset
   647