hedgewars/uIO.pas
author unc0rr
Thu, 13 Dec 2007 13:51:55 +0000
changeset 648 fc5234aa6493
parent 526 e3689572bb15
child 649 26166c87dc75
permissions -rw-r--r--
Use list instead of array (no limit for network packets amount)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     1
(*
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     2
 * Hedgewars, a worms-like game
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     3
 * Copyright (c) 2004, 2005 Andrey Korotaev <unC0Rr@gmail.com>
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
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    19
unit uIO;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    20
interface
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    21
uses SDLh;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    22
{$INCLUDE options.inc}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    23
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    24
const ipcPort: Word = 0;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    25
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    26
procedure SendIPC(s: shortstring);
154
5667e6f38704 Network protocol uses integers in network byte order
unc0rr
parents: 112
diff changeset
    27
procedure SendIPCXY(cmd: char; X, Y: SmallInt);
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 154
diff changeset
    28
procedure SendIPCRaw(p: pointer; len: Longword);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    29
procedure SendIPCAndWaitReply(s: shortstring);
159
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 155
diff changeset
    30
procedure IPCWaitPongEvent;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    31
procedure IPCCheckSock;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    32
procedure InitIPC;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    33
procedure CloseIPC;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    34
procedure NetGetNextCmd;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    35
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    36
implementation
196
993cf173218b - Many small fixes
unc0rr
parents: 183
diff changeset
    37
uses uConsole, uConsts, uWorld, uMisc, uLand;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    38
const isPonged: boolean = false;
648
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    39
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    40
type PCmd = ^TCmd;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    41
     TCmd = packed record
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    42
            Next: PCmd;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    43
            Time: LongWord;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    44
            case byte of
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    45
            1: (len: byte;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    46
                cmd: Char;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    47
                X, Y: SmallInt);
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    48
            2: (str: shortstring);
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    49
            end;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    50
49
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 48
diff changeset
    51
var  IPCSock: PTCPSocket = nil;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    52
     fds: PSDLNet_SocketSet;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    53
648
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    54
     headcmd: PCmd = nil;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    55
     lastcmd: PCmd = nil;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    56
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    57
function AddCmd(Time: Longword; str: shortstring): PCmd;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    58
var Result: PCmd;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    59
begin
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    60
new(Result);
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    61
FillChar(Result^, sizeof(TCmd), 0);
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    62
Result^.Time:= Time;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    63
Result^.str:= str;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    64
dec(Result^.len, 4);
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    65
if headcmd = nil then
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    66
   begin
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    67
   headcmd:= Result;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    68
   lastcmd:= Result
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    69
   end else
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    70
   begin
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    71
   lastcmd^.Next:= Result;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    72
   lastcmd:= Result
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    73
   end;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    74
AddCmd:= Result
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    75
end;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    76
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    77
procedure RemoveCmd;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    78
var tmp: PCmd;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    79
begin
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    80
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
    81
tmp:= headcmd;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    82
headcmd:= headcmd^.Next;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    83
if headcmd = nil then lastcmd:= nil;
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    84
dispose(tmp)
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
    85
end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    86
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    87
procedure InitIPC;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    88
var ipaddr: TIPAddress;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    89
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    90
WriteToConsole('Init SDL_Net... ');
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    91
SDLTry(SDLNet_Init = 0, true);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    92
fds:= SDLNet_AllocSocketSet(1);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    93
SDLTry(fds <> nil, true);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    94
WriteLnToConsole(msgOK);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    95
WriteToConsole('Establishing IPC connection... ');
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    96
SDLTry(SDLNet_ResolveHost(ipaddr, '127.0.0.1', ipcPort) = 0, true);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    97
IPCSock:= SDLNet_TCP_Open(ipaddr);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    98
SDLTry(IPCSock <> nil, true);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    99
WriteLnToConsole(msgOK)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   100
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   101
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   102
procedure CloseIPC;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   103
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   104
SDLNet_FreeSocketSet(fds);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   105
SDLNet_TCP_Close(IPCSock);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   106
SDLNet_Quit
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   107
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   108
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   109
procedure ParseIPCCommand(s: shortstring);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   110
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   111
case s[1] of
22
517be8dc5b76 - Fixed spawning boxes under water
unc0rr
parents: 17
diff changeset
   112
     '!': begin {$IFDEF DEBUGFILE}AddFileLog('Ping? Pong!');{$ENDIF}isPonged:= true; end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   113
     '?': SendIPC('!');
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 208
diff changeset
   114
     'e': ParseCommand(copy(s, 2, Length(s) - 1), true);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   115
     'E': OutError(copy(s, 2, Length(s) - 1), true);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   116
     'W': OutError(copy(s, 2, Length(s) - 1), false);
367
bc3c3edc5ce1 Check land digest
unc0rr
parents: 351
diff changeset
   117
     'M': CheckLandDigest(s);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   118
     'T': case s[2] of
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   119
               'L': GameType:= gmtLocal;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   120
               'D': GameType:= gmtDemo;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   121
               'N': GameType:= gmtNet;
72
aeb2ac1878dc Basic save support in engine
unc0rr
parents: 70
diff changeset
   122
               'S': GameType:= gmtSave;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   123
               else OutError(errmsgIncorrectUse + ' IPC "T" :' + s[2], true) end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   124
     else
648
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
   125
     AddCmd(SDLNet_Read32(@s[byte(s[0]) - 3]), s);
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
   126
     {$IFDEF DEBUGFILE}AddFileLog('IPC in: '+s[1]+' ticks '+inttostr(lastcmd^.Time));{$ENDIF}
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   127
     end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   128
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   129
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   130
procedure IPCCheckSock;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   131
const ss: string = '';
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 367
diff changeset
   132
var i: LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   133
    buf: array[0..255] of byte;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   134
    s: shortstring absolute buf;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   135
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 208
diff changeset
   136
fds^.numsockets:= 0;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   137
SDLNet_AddSocket(fds, IPCSock);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   138
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   139
while SDLNet_CheckSockets(fds, 0) > 0 do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   140
      begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 208
diff changeset
   141
      i:= SDLNet_TCP_Recv(IPCSock, @buf[1], 255 - Length(ss));
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   142
      if i > 0 then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   143
         begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   144
         buf[0]:= i;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   145
         ss:= ss + s;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   146
         while (Length(ss) > 1)and(Length(ss) > byte(ss[1])) do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   147
               begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   148
               ParseIPCCommand(copy(ss, 2, byte(ss[1])));
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   149
               Delete(ss, 1, Succ(byte(ss[1])))
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   150
               end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   151
         end else OutError('IPC connection lost', true)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   152
      end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   153
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   154
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   155
procedure SendIPC(s: shortstring);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   156
begin
49
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 48
diff changeset
   157
if IPCSock <> nil then
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 48
diff changeset
   158
   begin
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 48
diff changeset
   159
   if s[0]>#251 then s[0]:= #251;
154
5667e6f38704 Network protocol uses integers in network byte order
unc0rr
parents: 112
diff changeset
   160
   SDLNet_Write32(GameTicks, @s[Succ(byte(s[0]))]);
49
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 48
diff changeset
   161
   {$IFDEF DEBUGFILE}AddFileLog('IPC send: '+s);{$ENDIF}
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 48
diff changeset
   162
   inc(s[0],4);
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 48
diff changeset
   163
   SDLNet_TCP_Send(IPCSock, @s, Succ(byte(s[0])))
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 48
diff changeset
   164
   end
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   165
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   166
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 154
diff changeset
   167
procedure SendIPCRaw(p: pointer; len: Longword);
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 154
diff changeset
   168
begin
208
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   169
if IPCSock <> nil then
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   170
   begin
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   171
   SDLNet_TCP_Send(IPCSock, p, len)
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   172
   end
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 154
diff changeset
   173
end;
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 154
diff changeset
   174
154
5667e6f38704 Network protocol uses integers in network byte order
unc0rr
parents: 112
diff changeset
   175
procedure SendIPCXY(cmd: char; X, Y: SmallInt);
5667e6f38704 Network protocol uses integers in network byte order
unc0rr
parents: 112
diff changeset
   176
var s: shortstring;
5667e6f38704 Network protocol uses integers in network byte order
unc0rr
parents: 112
diff changeset
   177
begin
5667e6f38704 Network protocol uses integers in network byte order
unc0rr
parents: 112
diff changeset
   178
s[0]:= #5;
5667e6f38704 Network protocol uses integers in network byte order
unc0rr
parents: 112
diff changeset
   179
s[1]:= cmd;
5667e6f38704 Network protocol uses integers in network byte order
unc0rr
parents: 112
diff changeset
   180
SDLNet_Write16(X, @s[2]);
5667e6f38704 Network protocol uses integers in network byte order
unc0rr
parents: 112
diff changeset
   181
SDLNet_Write16(Y, @s[4]);
5667e6f38704 Network protocol uses integers in network byte order
unc0rr
parents: 112
diff changeset
   182
SendIPC(s)
5667e6f38704 Network protocol uses integers in network byte order
unc0rr
parents: 112
diff changeset
   183
end;
5667e6f38704 Network protocol uses integers in network byte order
unc0rr
parents: 112
diff changeset
   184
159
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 155
diff changeset
   185
procedure IPCWaitPongEvent;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   186
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   187
isPonged:= false;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   188
repeat
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   189
   IPCCheckSock;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   190
   SDL_Delay(1)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   191
until isPonged
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   192
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   193
159
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 155
diff changeset
   194
procedure SendIPCAndWaitReply(s: shortstring);
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 155
diff changeset
   195
begin
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 155
diff changeset
   196
SendIPC(s);
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 155
diff changeset
   197
SendIPC('?');
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 155
diff changeset
   198
IPCWaitPongEvent
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 155
diff changeset
   199
end;
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 155
diff changeset
   200
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   201
procedure NetGetNextCmd;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   202
var tmpflag: boolean;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   203
begin
648
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
   204
while (headcmd <> nil) and (headcmd^.cmd = 's') do
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   205
      begin
648
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
   206
      WriteLnToConsole('> ' + copy(headcmd^.str, 2, Pred(headcmd^.len)));
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
   207
      AddCaption('> ' + copy(headcmd^.str, 2, Pred(headcmd^.len)), $FFFFFF, capgrpNetSay);
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
   208
      RemoveCmd
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   209
      end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 208
diff changeset
   210
648
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
   211
if (headcmd <> nil) then
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
   212
   TryDo(GameTicks <= headcmd^.Time,
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
   213
         'oops, queue error. in buffer: ' + headcmd^.cmd +
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 53
diff changeset
   214
         ' (' + inttostr(GameTicks) + ' > ' +
648
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
   215
         inttostr(headcmd^.Time) + ')',
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 53
diff changeset
   216
         true);
4
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
tmpflag:= true;
648
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
   219
while (headcmd <> nil) and (GameTicks = headcmd^.Time) do
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   220
   begin
648
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
   221
   case headcmd^.cmd of
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 208
diff changeset
   222
        'L': ParseCommand('+left', true);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 208
diff changeset
   223
        'l': ParseCommand('-left', true);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 208
diff changeset
   224
        'R': ParseCommand('+right', true);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 208
diff changeset
   225
        'r': ParseCommand('-right', true);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 208
diff changeset
   226
        'U': ParseCommand('+up', true);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 208
diff changeset
   227
        'u': ParseCommand('-up', true);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 208
diff changeset
   228
        'D': ParseCommand('+down', true);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 208
diff changeset
   229
        'd': ParseCommand('-down', true);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 208
diff changeset
   230
        'A': ParseCommand('+attack', true);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 208
diff changeset
   231
        'a': ParseCommand('-attack', true);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 208
diff changeset
   232
        'S': ParseCommand('switch', true);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 208
diff changeset
   233
        'j': ParseCommand('ljump', true);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 208
diff changeset
   234
        'J': ParseCommand('hjump', true);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 208
diff changeset
   235
        ',': ParseCommand('skip', true);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   236
        'N': begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   237
             tmpflag:= false;
648
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
   238
             {$IFDEF DEBUGFILE}AddFileLog('got cmd "N": time '+inttostr(headcmd^.Time)){$ENDIF}
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   239
             end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   240
        'p': begin
648
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
   241
             TargetPoint.X:= SmallInt(SDLNet_Read16(@(headcmd^.X)));
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
   242
             TargetPoint.Y:= SmallInt(SDLNet_Read16(@(headcmd^.Y)));
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 208
diff changeset
   243
             ParseCommand('put', true)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   244
             end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   245
        'P': begin
648
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
   246
             CursorPoint.X:= SmallInt(SDLNet_Read16(@(headcmd^.X)) + WorldDx);
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
   247
             CursorPoint.Y:= SmallInt(SDLNet_Read16(@(headcmd^.Y)) + WorldDy);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   248
             end;
648
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
   249
        '1'..'5': ParseCommand('timer ' + headcmd^.cmd, true);
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
   250
        #128..char(128 + cMaxSlotIndex): ParseCommand('slot ' + char(byte(headcmd^.cmd) - 79), true)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   251
        end;
648
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
   252
   RemoveCmd
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   253
   end;
648
fc5234aa6493 Use list instead of array (no limit for network packets amount)
unc0rr
parents: 526
diff changeset
   254
isInLag:= (headcmd = nil) and tmpflag
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   255
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   256
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   257
end.