hedgewars/uIO.pas
author koda
Sat, 05 Jun 2010 14:07:58 +0000
changeset 3495 a6b4f351d400
parent 3407 dcc129c4352e
child 3611 ed00aa2b339e
permissions -rw-r--r--
now engine can be optionally built as library, there's an example wrapper of how to use it building server is now disabled by default, saves users some headaches
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     1
(*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 1038
diff changeset
     2
 * Hedgewars, a free turn based strategy game
883
07a568ba44e0 Update copyright info in source files headers
unc0rr
parents: 784
diff changeset
     3
 * Copyright (c) 2004, 2005, 2007, 2008 Andrey Korotaev <unC0Rr@gmail.com>
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     4
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 159
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
57c2ef19f719 Relicense to GPL
unc0rr
parents: 159
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
57c2ef19f719 Relicense to GPL
unc0rr
parents: 159
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     8
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 159
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
57c2ef19f719 Relicense to GPL
unc0rr
parents: 159
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
57c2ef19f719 Relicense to GPL
unc0rr
parents: 159
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
57c2ef19f719 Relicense to GPL
unc0rr
parents: 159
diff changeset
    12
 * GNU General Public License for more details.
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    13
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 159
diff changeset
    14
 * You should have received a copy of the GNU General Public License
57c2ef19f719 Relicense to GPL
unc0rr
parents: 159
diff changeset
    15
 * along with this program; if not, write to the Free Software
57c2ef19f719 Relicense to GPL
unc0rr
parents: 159
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    17
 *)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    18
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2599
diff changeset
    19
{$INCLUDE "options.inc"}
079ef82eac75 revamped file access and debug display
koda
parents: 2599
diff changeset
    20
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    21
unit uIO;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    22
interface
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    23
uses SDLh;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    24
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
    25
var ipcPort: Word;
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
    26
    hiTicks: Word;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    27
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2969
diff changeset
    28
procedure initModule;
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2969
diff changeset
    29
procedure freeModule;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
    30
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    31
procedure SendIPC(s: shortstring);
154
5667e6f38704 Network protocol uses integers in network byte order
unc0rr
parents: 112
diff changeset
    32
procedure SendIPCXY(cmd: char; X, Y: SmallInt);
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 154
diff changeset
    33
procedure SendIPCRaw(p: pointer; len: Longword);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    34
procedure SendIPCAndWaitReply(s: shortstring);
649
26166c87dc75 - Use 2 bytes for timestamp in net protocol, thus decreasing average packet size from 6 to 4
unc0rr
parents: 648
diff changeset
    35
procedure SendIPCTimeInc;
2382
bfd378dfc4e7 Optimize network traffic a bit:
unc0rr
parents: 2240
diff changeset
    36
procedure SendKeepAliveMessage(Lag: Longword);
1888
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1821
diff changeset
    37
procedure LoadRecordFromFile(fileName: shortstring);
159
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 155
diff changeset
    38
procedure IPCWaitPongEvent;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    39
procedure IPCCheckSock;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    40
procedure InitIPC;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    41
procedure CloseIPC;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    42
procedure NetGetNextCmd;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    43
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    44
implementation
1351
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1066
diff changeset
    45
uses uConsole, uConsts, uWorld, uMisc, uLand, uChat, uTeams;
648
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    46
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    47
type PCmd = ^TCmd;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    48
     TCmd = packed record
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    49
            Next: PCmd;
2574
2f3e5c57359c Fix (quite rare) spectators queue error when joining game with teams left the game.
unc0rr
parents: 2407
diff changeset
    50
            loTime: Word;
648
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    51
            case byte of
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    52
            1: (len: byte;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    53
                cmd: Char;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    54
                X, Y: SmallInt);
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    55
            2: (str: shortstring);
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    56
            end;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    57
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
    58
var IPCSock: PTCPSocket;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
    59
    fds: PSDLNet_SocketSet;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
    60
    isPonged: boolean;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    61
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
    62
    headcmd: PCmd;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
    63
    lastcmd: PCmd;
2382
bfd378dfc4e7 Optimize network traffic a bit:
unc0rr
parents: 2240
diff changeset
    64
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
    65
    SendEmptyPacketTicks: LongWord;
2382
bfd378dfc4e7 Optimize network traffic a bit:
unc0rr
parents: 2240
diff changeset
    66
648
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    67
2574
2f3e5c57359c Fix (quite rare) spectators queue error when joining game with teams left the game.
unc0rr
parents: 2407
diff changeset
    68
function AddCmd(Time: Word; str: shortstring): PCmd;
2695
ed789a7ef68d makes freepascal code compatible with OBJFPC mode
koda
parents: 2691
diff changeset
    69
var command: PCmd;
648
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    70
begin
2695
ed789a7ef68d makes freepascal code compatible with OBJFPC mode
koda
parents: 2691
diff changeset
    71
new(command);
ed789a7ef68d makes freepascal code compatible with OBJFPC mode
koda
parents: 2691
diff changeset
    72
FillChar(command^, sizeof(TCmd), 0);
ed789a7ef68d makes freepascal code compatible with OBJFPC mode
koda
parents: 2691
diff changeset
    73
command^.loTime:= Time;
ed789a7ef68d makes freepascal code compatible with OBJFPC mode
koda
parents: 2691
diff changeset
    74
command^.str:= str;
ed789a7ef68d makes freepascal code compatible with OBJFPC mode
koda
parents: 2691
diff changeset
    75
if command^.cmd <> 'F' then dec(command^.len, 2); // cut timestamp
648
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    76
if headcmd = nil then
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    77
   begin
2695
ed789a7ef68d makes freepascal code compatible with OBJFPC mode
koda
parents: 2691
diff changeset
    78
   headcmd:= command;
ed789a7ef68d makes freepascal code compatible with OBJFPC mode
koda
parents: 2691
diff changeset
    79
   lastcmd:= command
648
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    80
   end else
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    81
   begin
2695
ed789a7ef68d makes freepascal code compatible with OBJFPC mode
koda
parents: 2691
diff changeset
    82
   lastcmd^.Next:= command;
ed789a7ef68d makes freepascal code compatible with OBJFPC mode
koda
parents: 2691
diff changeset
    83
   lastcmd:= command
648
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    84
   end;
2695
ed789a7ef68d makes freepascal code compatible with OBJFPC mode
koda
parents: 2691
diff changeset
    85
AddCmd:= command;
648
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    86
end;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    87
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    88
procedure RemoveCmd;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    89
var tmp: PCmd;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    90
begin
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    91
TryDo(headcmd <> nil, 'Engine bug: headcmd = nil', true);
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    92
tmp:= headcmd;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    93
headcmd:= headcmd^.Next;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    94
if headcmd = nil then lastcmd:= nil;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    95
dispose(tmp)
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    96
end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    97
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    98
procedure InitIPC;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    99
var ipaddr: TIPAddress;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   100
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   101
WriteToConsole('Init SDL_Net... ');
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   102
SDLTry(SDLNet_Init = 0, true);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   103
fds:= SDLNet_AllocSocketSet(1);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   104
SDLTry(fds <> nil, true);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   105
WriteLnToConsole(msgOK);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   106
WriteToConsole('Establishing IPC connection... ');
3407
dcc129c4352e Engine:
smxx
parents: 3038
diff changeset
   107
{$HINTS OFF}
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   108
SDLTry(SDLNet_ResolveHost(ipaddr, '127.0.0.1', ipcPort) = 0, true);
3407
dcc129c4352e Engine:
smxx
parents: 3038
diff changeset
   109
{$HINTS ON}
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   110
IPCSock:= SDLNet_TCP_Open(ipaddr);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   111
SDLTry(IPCSock <> nil, true);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   112
WriteLnToConsole(msgOK)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   113
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   114
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   115
procedure CloseIPC;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   116
begin
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   117
    SDLNet_FreeSocketSet(fds);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   118
    SDLNet_TCP_Close(IPCSock);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   119
    SDLNet_Quit();
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   120
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   121
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   122
procedure ParseIPCCommand(s: shortstring);
649
26166c87dc75 - Use 2 bytes for timestamp in net protocol, thus decreasing average packet size from 6 to 4
unc0rr
parents: 648
diff changeset
   123
var loTicks: Word;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   124
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   125
case s[1] of
22
517be8dc5b76 - Fixed spawning boxes under water
unc0rr
parents: 17
diff changeset
   126
     '!': begin {$IFDEF DEBUGFILE}AddFileLog('Ping? Pong!');{$ENDIF}isPonged:= true; end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   127
     '?': SendIPC('!');
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 208
diff changeset
   128
     'e': ParseCommand(copy(s, 2, Length(s) - 1), true);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   129
     'E': OutError(copy(s, 2, Length(s) - 1), true);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   130
     'W': OutError(copy(s, 2, Length(s) - 1), false);
367
bc3c3edc5ce1 Check land digest
unc0rr
parents: 351
diff changeset
   131
     'M': CheckLandDigest(s);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   132
     'T': case s[2] of
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   133
               'L': GameType:= gmtLocal;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   134
               'D': GameType:= gmtDemo;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   135
               'N': GameType:= gmtNet;
72
aeb2ac1878dc Basic save support in engine
unc0rr
parents: 70
diff changeset
   136
               'S': GameType:= gmtSave;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   137
               else OutError(errmsgIncorrectUse + ' IPC "T" :' + s[2], true) end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   138
     else
649
26166c87dc75 - Use 2 bytes for timestamp in net protocol, thus decreasing average packet size from 6 to 4
unc0rr
parents: 648
diff changeset
   139
     loTicks:= SDLNet_Read16(@s[byte(s[0]) - 1]);
2574
2f3e5c57359c Fix (quite rare) spectators queue error when joining game with teams left the game.
unc0rr
parents: 2407
diff changeset
   140
     AddCmd(loTicks, s);
2f3e5c57359c Fix (quite rare) spectators queue error when joining game with teams left the game.
unc0rr
parents: 2407
diff changeset
   141
     {$IFDEF DEBUGFILE}AddFileLog('IPC in: '+s[1]+' ticks '+inttostr(lastcmd^.loTime));{$ENDIF}
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   142
     end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   143
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   144
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   145
procedure IPCCheckSock;
2905
f3c79f7193a9 Engine:
smxx
parents: 2716
diff changeset
   146
const ss: shortstring = '';
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 367
diff changeset
   147
var i: LongInt;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   148
    buf: array[0..255] of byte;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   149
    s: shortstring absolute buf;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   150
begin
1888
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1821
diff changeset
   151
if IPCSock = nil then
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1821
diff changeset
   152
   exit;
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1821
diff changeset
   153
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 208
diff changeset
   154
fds^.numsockets:= 0;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   155
SDLNet_AddSocket(fds, IPCSock);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   156
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   157
while SDLNet_CheckSockets(fds, 0) > 0 do
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   158
    begin
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   159
    i:= SDLNet_TCP_Recv(IPCSock, @buf[1], 255 - Length(ss));
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   160
    if i > 0 then
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   161
        begin
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   162
        buf[0]:= i;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   163
        ss:= ss + s;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   164
        while (Length(ss) > 1) and (Length(ss) > byte(ss[1])) do
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   165
            begin
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   166
            ParseIPCCommand(copy(ss, 2, byte(ss[1])));
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   167
            Delete(ss, 1, Succ(byte(ss[1])))
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   168
            end
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   169
        end else OutError('IPC connection lost', true)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   170
    end;
1888
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1821
diff changeset
   171
end;
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1821
diff changeset
   172
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1821
diff changeset
   173
procedure LoadRecordFromFile(fileName: shortstring);
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1821
diff changeset
   174
var f: file;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   175
    ss: shortstring = '';
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   176
    i: LongInt;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   177
    buf: array[0..255] of byte;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   178
    s: shortstring absolute buf;
1888
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1821
diff changeset
   179
begin
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2599
diff changeset
   180
079ef82eac75 revamped file access and debug display
koda
parents: 2599
diff changeset
   181
// set RDNLY on file open
079ef82eac75 revamped file access and debug display
koda
parents: 2599
diff changeset
   182
filemode:= 0;
2240
7ce9e6b7be3b -Removal of older WAV files, now useless thanks to OpenAL
koda
parents: 2154
diff changeset
   183
1888
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1821
diff changeset
   184
assign(f, fileName);
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1821
diff changeset
   185
reset(f, 1);
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1821
diff changeset
   186
3407
dcc129c4352e Engine:
smxx
parents: 3038
diff changeset
   187
i:= 0; // avoid compiler hints
dcc129c4352e Engine:
smxx
parents: 3038
diff changeset
   188
buf[0]:= 0;
1888
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1821
diff changeset
   189
repeat
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   190
    BlockRead(f, buf[1], 255 - Length(ss), i);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   191
    if i > 0 then
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   192
        begin
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   193
        buf[0]:= i;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   194
        ss:= ss + s;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   195
        while (Length(ss) > 1)and(Length(ss) > byte(ss[1])) do
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   196
            begin
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   197
            ParseIPCCommand(copy(ss, 2, byte(ss[1])));
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   198
            Delete(ss, 1, Succ(byte(ss[1])))
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   199
            end
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   200
        end
1888
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1821
diff changeset
   201
until i = 0;
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1821
diff changeset
   202
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1821
diff changeset
   203
close(f)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   204
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   205
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   206
procedure SendIPC(s: shortstring);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   207
begin
49
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 48
diff changeset
   208
if IPCSock <> nil then
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   209
    begin
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   210
    SendEmptyPacketTicks:= 0;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   211
    if s[0]>#251 then s[0]:= #251;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   212
    SDLNet_Write16(GameTicks, @s[Succ(byte(s[0]))]);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   213
    {$IFDEF DEBUGFILE}AddFileLog('IPC send: '+ s[1]);{$ENDIF}
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   214
    inc(s[0], 2);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   215
    SDLNet_TCP_Send(IPCSock, @s, Succ(byte(s[0])))
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   216
    end
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   217
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   218
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 154
diff changeset
   219
procedure SendIPCRaw(p: pointer; len: Longword);
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 154
diff changeset
   220
begin
208
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   221
if IPCSock <> nil then
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   222
   begin
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   223
   SDLNet_TCP_Send(IPCSock, p, len)
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   224
   end
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 154
diff changeset
   225
end;
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 154
diff changeset
   226
154
5667e6f38704 Network protocol uses integers in network byte order
unc0rr
parents: 112
diff changeset
   227
procedure SendIPCXY(cmd: char; X, Y: SmallInt);
5667e6f38704 Network protocol uses integers in network byte order
unc0rr
parents: 112
diff changeset
   228
var s: shortstring;
5667e6f38704 Network protocol uses integers in network byte order
unc0rr
parents: 112
diff changeset
   229
begin
5667e6f38704 Network protocol uses integers in network byte order
unc0rr
parents: 112
diff changeset
   230
s[0]:= #5;
5667e6f38704 Network protocol uses integers in network byte order
unc0rr
parents: 112
diff changeset
   231
s[1]:= cmd;
5667e6f38704 Network protocol uses integers in network byte order
unc0rr
parents: 112
diff changeset
   232
SDLNet_Write16(X, @s[2]);
5667e6f38704 Network protocol uses integers in network byte order
unc0rr
parents: 112
diff changeset
   233
SDLNet_Write16(Y, @s[4]);
5667e6f38704 Network protocol uses integers in network byte order
unc0rr
parents: 112
diff changeset
   234
SendIPC(s)
5667e6f38704 Network protocol uses integers in network byte order
unc0rr
parents: 112
diff changeset
   235
end;
5667e6f38704 Network protocol uses integers in network byte order
unc0rr
parents: 112
diff changeset
   236
649
26166c87dc75 - Use 2 bytes for timestamp in net protocol, thus decreasing average packet size from 6 to 4
unc0rr
parents: 648
diff changeset
   237
procedure SendIPCTimeInc;
26166c87dc75 - Use 2 bytes for timestamp in net protocol, thus decreasing average packet size from 6 to 4
unc0rr
parents: 648
diff changeset
   238
const timeinc: shortstring = '#';
26166c87dc75 - Use 2 bytes for timestamp in net protocol, thus decreasing average packet size from 6 to 4
unc0rr
parents: 648
diff changeset
   239
begin
26166c87dc75 - Use 2 bytes for timestamp in net protocol, thus decreasing average packet size from 6 to 4
unc0rr
parents: 648
diff changeset
   240
SendIPCRaw(@timeinc, 2)
26166c87dc75 - Use 2 bytes for timestamp in net protocol, thus decreasing average packet size from 6 to 4
unc0rr
parents: 648
diff changeset
   241
end;
26166c87dc75 - Use 2 bytes for timestamp in net protocol, thus decreasing average packet size from 6 to 4
unc0rr
parents: 648
diff changeset
   242
159
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 155
diff changeset
   243
procedure IPCWaitPongEvent;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   244
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   245
isPonged:= false;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   246
repeat
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   247
   IPCCheckSock;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   248
   SDL_Delay(1)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   249
until isPonged
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   250
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   251
159
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 155
diff changeset
   252
procedure SendIPCAndWaitReply(s: shortstring);
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 155
diff changeset
   253
begin
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 155
diff changeset
   254
SendIPC(s);
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 155
diff changeset
   255
SendIPC('?');
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 155
diff changeset
   256
IPCWaitPongEvent
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 155
diff changeset
   257
end;
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 155
diff changeset
   258
2382
bfd378dfc4e7 Optimize network traffic a bit:
unc0rr
parents: 2240
diff changeset
   259
procedure SendKeepAliveMessage(Lag: Longword);
bfd378dfc4e7 Optimize network traffic a bit:
unc0rr
parents: 2240
diff changeset
   260
begin
bfd378dfc4e7 Optimize network traffic a bit:
unc0rr
parents: 2240
diff changeset
   261
inc(SendEmptyPacketTicks, Lag);
bfd378dfc4e7 Optimize network traffic a bit:
unc0rr
parents: 2240
diff changeset
   262
if (SendEmptyPacketTicks >= cSendEmptyPacketTime) then
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   263
    SendIPC('+')
2382
bfd378dfc4e7 Optimize network traffic a bit:
unc0rr
parents: 2240
diff changeset
   264
end;
bfd378dfc4e7 Optimize network traffic a bit:
unc0rr
parents: 2240
diff changeset
   265
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   266
procedure NetGetNextCmd;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   267
var tmpflag: boolean;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   268
    s: shortstring;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   269
    x16, y16: SmallInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   270
begin
977
fdbf2a5c1ad7 Fix an oops with chat string appearing between two net commands (it's very rare and random condition, but I caught it while playing via net)
unc0rr
parents: 946
diff changeset
   271
tmpflag:= true;
fdbf2a5c1ad7 Fix an oops with chat string appearing between two net commands (it's very rare and random condition, but I caught it while playing via net)
unc0rr
parents: 946
diff changeset
   272
1351
aa7aefec5c1b Add partial implementation of handling disconnects while playing via network
unc0rr
parents: 1066
diff changeset
   273
while (headcmd <> nil)
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   274
    and (tmpflag or (headcmd^.cmd = '#')) // '#' is the only cmd which can be sent within same tick after 'N'
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   275
    and ((GameTicks = hiTicks shl 16 + headcmd^.loTime)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   276
        or (headcmd^.cmd = 's') // for these commands time is not specified
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   277
        or (headcmd^.cmd = '#')
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   278
        or (headcmd^.cmd = 'b')
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   279
        or (headcmd^.cmd = 'F')) do
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   280
    begin
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   281
    case headcmd^.cmd of
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   282
        '+': ; // do nothing - it is just an empty packet
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   283
        '#': inc(hiTicks);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   284
        'L': ParseCommand('+left', true);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   285
        'l': ParseCommand('-left', true);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   286
        'R': ParseCommand('+right', true);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   287
        'r': ParseCommand('-right', true);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   288
        'U': ParseCommand('+up', true);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   289
        'u': ParseCommand('-up', true);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   290
        'D': ParseCommand('+down', true);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   291
        'd': ParseCommand('-down', true);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   292
        'Z': ParseCommand('+precise', true);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   293
        'z': ParseCommand('-precise', true);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   294
        'A': ParseCommand('+attack', true);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   295
        'a': ParseCommand('-attack', true);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   296
        'S': ParseCommand('switch', true);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   297
        'j': ParseCommand('ljump', true);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   298
        'J': ParseCommand('hjump', true);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   299
        ',': ParseCommand('skip', true);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   300
        's': begin
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   301
            s:= copy(headcmd^.str, 2, Pred(headcmd^.len));
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   302
            AddChatString(s);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   303
            WriteLnToConsole(s)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   304
            end;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   305
        'b': begin
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   306
            s:= copy(headcmd^.str, 2, Pred(headcmd^.len));
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   307
            AddChatString(#4 + s);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   308
            WriteLnToConsole(s)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   309
            end;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   310
        'F': TeamGone(copy(headcmd^.str, 2, Pred(headcmd^.len)));
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   311
        'N': begin
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   312
            tmpflag:= false;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   313
            {$IFDEF DEBUGFILE}AddFileLog('got cmd "N": time '+inttostr(hiTicks shl 16 + headcmd^.loTime)){$ENDIF}
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   314
            end;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   315
        'p': begin
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   316
            x16:= SDLNet_Read16(@(headcmd^.X));
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   317
            y16:= SDLNet_Read16(@(headcmd^.Y));
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   318
            doPut(x16, y16, false)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   319
            end;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   320
        'P': begin
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   321
            // these are equations solved for CursorPoint
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   322
            // SDLNet_Read16(@(headcmd^.X)) == CursorPoint.X - WorldDx;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   323
            // SDLNet_Read16(@(headcmd^.Y)) == cScreenHeight - CursorPoint.Y - WorldDy;
2969
79024988792e This *should* solve issue w/ cursor moving around in ammo menu while not your turn NEEDS TESTING, changing uIO makes me nervous
nemo
parents: 2948
diff changeset
   324
            if not (CurrentTeam^.ExtDriven and bShowAmmoMenu) then
79024988792e This *should* solve issue w/ cursor moving around in ammo menu while not your turn NEEDS TESTING, changing uIO makes me nervous
nemo
parents: 2948
diff changeset
   325
               begin
79024988792e This *should* solve issue w/ cursor moving around in ammo menu while not your turn NEEDS TESTING, changing uIO makes me nervous
nemo
parents: 2948
diff changeset
   326
               CursorPoint.X:= SmallInt(SDLNet_Read16(@(headcmd^.X))) + WorldDx;
79024988792e This *should* solve issue w/ cursor moving around in ammo menu while not your turn NEEDS TESTING, changing uIO makes me nervous
nemo
parents: 2948
diff changeset
   327
               CursorPoint.Y:= cScreenHeight - SmallInt(SDLNet_Read16(@(headcmd^.Y))) - WorldDy
79024988792e This *should* solve issue w/ cursor moving around in ammo menu while not your turn NEEDS TESTING, changing uIO makes me nervous
nemo
parents: 2948
diff changeset
   328
               end
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   329
            end;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   330
        'w': ParseCommand('setweap ' + headcmd^.str[2], true);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   331
        't': ParseCommand('taunt ' + headcmd^.str[2], true);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   332
        'g': ParseCommand('newgrave', true);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   333
        'h': ParseCommand('hogsay ' + copy(headcmd^.str, 2, Pred(headcmd^.len)), true);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   334
        '1'..'5': ParseCommand('timer ' + headcmd^.cmd, true);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   335
        #128..char(128 + cMaxSlotIndex): ParseCommand('slot ' + char(byte(headcmd^.cmd) - 79), true)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   336
        else
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   337
            OutError('Unexpected protocol command: ' + headcmd^.cmd, True)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   338
        end;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   339
    RemoveCmd
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   340
    end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 208
diff changeset
   341
2574
2f3e5c57359c Fix (quite rare) spectators queue error when joining game with teams left the game.
unc0rr
parents: 2407
diff changeset
   342
if (headcmd <> nil) and tmpflag and (not CurrentTeam^.hasGone) then
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   343
    TryDo(GameTicks < hiTicks shl 16 + headcmd^.loTime,
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   344
            'oops, queue error. in buffer: ' + headcmd^.cmd +
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   345
            ' (' + inttostr(GameTicks) + ' > ' +
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   346
            inttostr(hiTicks shl 16 + headcmd^.loTime) + ')',
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   347
            true);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   348
2066
d0e3f570b901 Final fix
unc0rr
parents: 2065
diff changeset
   349
isInLag:= (headcmd = nil) and tmpflag and (not CurrentTeam^.hasGone);
2043
1f2b91b5e7ef Don't accept 'team gone' command right after 'next turn' cmd
unc0rr
parents: 2017
diff changeset
   350
1560
e140bc57ff68 Quick replay round to spectators until current move
unc0rr
parents: 1432
diff changeset
   351
if isInLag then fastUntilLag:= false
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   352
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   353
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2969
diff changeset
   354
procedure initModule;
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2695
diff changeset
   355
begin
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   356
    IPCSock:= nil;
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2695
diff changeset
   357
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   358
    headcmd:= nil;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   359
    lastcmd:= nil;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   360
    isPonged:= false;   // was const
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2695
diff changeset
   361
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   362
    hiTicks:= 0;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   363
    SendEmptyPacketTicks:= 0;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2905
diff changeset
   364
    ipcPort:= 0;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
   365
end;
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
   366
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2969
diff changeset
   367
procedure freeModule;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
   368
begin
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
   369
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2695
diff changeset
   370
end;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2695
diff changeset
   371
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   372
end.