author | unc0rr |
Sun, 20 Nov 2011 19:45:40 +0300 | |
changeset 6407 | f63b2330147a |
parent 6247 | 6dfad55fd71c |
child 6453 | 11c578d30bd3 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
4976 | 3 |
* Copyright (c) 2004-2011 Andrey Korotaev <unC0Rr@gmail.com> |
4 | 4 |
* |
183 | 5 |
* This program is free software; you can redistribute it and/or modify |
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
4 | 8 |
* |
183 | 9 |
* This program is distributed in the hope that it will be useful, |
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
4 | 13 |
* |
183 | 14 |
* You should have received a copy of the GNU General Public License |
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
4 | 17 |
*) |
18 |
||
2630 | 19 |
{$INCLUDE "options.inc"} |
20 |
||
4 | 21 |
unit uIO; |
22 |
interface |
|
4376 | 23 |
uses SDLh, uTypes; |
4 | 24 |
|
3038 | 25 |
procedure initModule; |
26 |
procedure freeModule; |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
27 |
|
4 | 28 |
procedure SendIPC(s: shortstring); |
154
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
112
diff
changeset
|
29 |
procedure SendIPCXY(cmd: char; X, Y: SmallInt); |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
154
diff
changeset
|
30 |
procedure SendIPCRaw(p: pointer; len: Longword); |
4 | 31 |
procedure SendIPCAndWaitReply(s: shortstring); |
2382 | 32 |
procedure SendKeepAliveMessage(Lag: Longword); |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
33 |
procedure LoadRecordFromFile(fileName: shortstring); |
4376 | 34 |
procedure SendStat(sit: TStatInfoType; s: shortstring); |
159 | 35 |
procedure IPCWaitPongEvent; |
4 | 36 |
procedure IPCCheckSock; |
37 |
procedure InitIPC; |
|
38 |
procedure CloseIPC; |
|
39 |
procedure NetGetNextCmd; |
|
4414 | 40 |
procedure doPut(putX, putY: LongInt; fromAI: boolean); |
4 | 41 |
|
42 |
implementation |
|
6247
6dfad55fd71c
unified the objc game state in a single place, which allowed some optimization to ObjcExport class (and more)
koda
parents:
5810
diff
changeset
|
43 |
uses uConsole, uConsts, uVariables, uCommands, uUtils, uDebug; |
648
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
44 |
|
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
45 |
type PCmd = ^TCmd; |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
46 |
TCmd = packed record |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
47 |
Next: PCmd; |
2574
2f3e5c57359c
Fix (quite rare) spectators queue error when joining game with teams left the game.
unc0rr
parents:
2407
diff
changeset
|
48 |
loTime: Word; |
648
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
49 |
case byte of |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
50 |
1: (len: byte; |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
51 |
cmd: Char; |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
52 |
X, Y: SmallInt); |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
53 |
2: (str: shortstring); |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
54 |
end; |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
55 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
56 |
var IPCSock: PTCPSocket; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
57 |
fds: PSDLNet_SocketSet; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
58 |
isPonged: boolean; |
4 | 59 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
60 |
headcmd: PCmd; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
61 |
lastcmd: PCmd; |
2382 | 62 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
63 |
SendEmptyPacketTicks: LongWord; |
2382 | 64 |
|
2574
2f3e5c57359c
Fix (quite rare) spectators queue error when joining game with teams left the game.
unc0rr
parents:
2407
diff
changeset
|
65 |
function AddCmd(Time: Word; str: shortstring): PCmd; |
2695 | 66 |
var command: PCmd; |
648
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
67 |
begin |
2695 | 68 |
new(command); |
69 |
FillChar(command^, sizeof(TCmd), 0); |
|
70 |
command^.loTime:= Time; |
|
71 |
command^.str:= str; |
|
72 |
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
|
73 |
if headcmd = nil then |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
74 |
begin |
2695 | 75 |
headcmd:= command; |
76 |
lastcmd:= command |
|
648
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
77 |
end else |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
78 |
begin |
2695 | 79 |
lastcmd^.Next:= command; |
80 |
lastcmd:= command |
|
648
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
81 |
end; |
2695 | 82 |
AddCmd:= command; |
648
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
83 |
end; |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
84 |
|
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
85 |
procedure RemoveCmd; |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
86 |
var tmp: PCmd; |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
87 |
begin |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
88 |
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
|
89 |
tmp:= headcmd; |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
90 |
headcmd:= headcmd^.Next; |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
91 |
if headcmd = nil then lastcmd:= nil; |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
92 |
dispose(tmp) |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
93 |
end; |
4 | 94 |
|
95 |
procedure InitIPC; |
|
96 |
var ipaddr: TIPAddress; |
|
97 |
begin |
|
4815 | 98 |
WriteToConsole('Init SDL_Net... '); |
99 |
SDLTry(SDLNet_Init = 0, true); |
|
100 |
fds:= SDLNet_AllocSocketSet(1); |
|
101 |
SDLTry(fds <> nil, true); |
|
102 |
WriteLnToConsole(msgOK); |
|
4825 | 103 |
WriteToConsole('Establishing IPC connection to tcp 127.0.0.1:' + IntToStr(ipcPort) + ' '); |
4815 | 104 |
{$HINTS OFF} |
105 |
SDLTry(SDLNet_ResolveHost(ipaddr, '127.0.0.1', ipcPort) = 0, true); |
|
106 |
{$HINTS ON} |
|
107 |
IPCSock:= SDLNet_TCP_Open(ipaddr); |
|
108 |
SDLTry(IPCSock <> nil, true); |
|
109 |
WriteLnToConsole(msgOK) |
|
4 | 110 |
end; |
111 |
||
112 |
procedure CloseIPC; |
|
113 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
114 |
SDLNet_FreeSocketSet(fds); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
115 |
SDLNet_TCP_Close(IPCSock); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
116 |
SDLNet_Quit(); |
4 | 117 |
end; |
118 |
||
119 |
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
|
120 |
var loTicks: Word; |
4 | 121 |
begin |
122 |
case s[1] of |
|
4900 | 123 |
'!': begin AddFileLog('Ping? Pong!'); isPonged:= true; end; |
4 | 124 |
'?': SendIPC('!'); |
351 | 125 |
'e': ParseCommand(copy(s, 2, Length(s) - 1), true); |
4 | 126 |
'E': OutError(copy(s, 2, Length(s) - 1), true); |
127 |
'W': OutError(copy(s, 2, Length(s) - 1), false); |
|
4389 | 128 |
'M': ParseCommand('landcheck ' + s, true); |
4 | 129 |
'T': case s[2] of |
130 |
'L': GameType:= gmtLocal; |
|
131 |
'D': GameType:= gmtDemo; |
|
132 |
'N': GameType:= gmtNet; |
|
72 | 133 |
'S': GameType:= gmtSave; |
4 | 134 |
else OutError(errmsgIncorrectUse + ' IPC "T" :' + s[2], true) end; |
135 |
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
|
136 |
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
|
137 |
AddCmd(loTicks, s); |
4900 | 138 |
AddFileLog('[IPC in] '+s[1]+' ticks '+IntToStr(lastcmd^.loTime)); |
4 | 139 |
end |
140 |
end; |
|
141 |
||
142 |
procedure IPCCheckSock; |
|
2905 | 143 |
const ss: shortstring = ''; |
371 | 144 |
var i: LongInt; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
145 |
buf: array[0..255] of byte; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
146 |
s: shortstring absolute buf; |
4 | 147 |
begin |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
148 |
if IPCSock = nil then |
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
149 |
exit; |
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
150 |
|
351 | 151 |
fds^.numsockets:= 0; |
4 | 152 |
SDLNet_AddSocket(fds, IPCSock); |
153 |
||
154 |
while SDLNet_CheckSockets(fds, 0) > 0 do |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
155 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
156 |
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
|
157 |
if i > 0 then |
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 |
buf[0]:= i; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
160 |
ss:= ss + s; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
161 |
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
|
162 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
163 |
ParseIPCCommand(copy(ss, 2, byte(ss[1]))); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
164 |
Delete(ss, 1, Succ(byte(ss[1]))) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
165 |
end |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
166 |
end else OutError('IPC connection lost', true) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
167 |
end; |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
168 |
end; |
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
169 |
|
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
170 |
procedure LoadRecordFromFile(fileName: shortstring); |
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
171 |
var f: file; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
172 |
ss: shortstring = ''; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
173 |
i: LongInt; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
174 |
buf: array[0..255] of byte; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
175 |
s: shortstring absolute buf; |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
176 |
begin |
2630 | 177 |
|
178 |
// set RDNLY on file open |
|
179 |
filemode:= 0; |
|
5130
3602ede67ec5
Add a parameter for game simulation with no gui/sound enabled, just to get statistics
unc0rr
parents:
4976
diff
changeset
|
180 |
{$I-} |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
181 |
assign(f, fileName); |
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
182 |
reset(f, 1); |
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
183 |
|
5130
3602ede67ec5
Add a parameter for game simulation with no gui/sound enabled, just to get statistics
unc0rr
parents:
4976
diff
changeset
|
184 |
tryDo(IOResult = 0, 'Error opening file ' + fileName, true); |
3602ede67ec5
Add a parameter for game simulation with no gui/sound enabled, just to get statistics
unc0rr
parents:
4976
diff
changeset
|
185 |
|
3407 | 186 |
i:= 0; // avoid compiler hints |
187 |
buf[0]:= 0; |
|
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
188 |
repeat |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
189 |
BlockRead(f, buf[1], 255 - Length(ss), i); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
190 |
if i > 0 then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
191 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
192 |
buf[0]:= i; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
193 |
ss:= ss + s; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
194 |
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
|
195 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
196 |
ParseIPCCommand(copy(ss, 2, byte(ss[1]))); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
197 |
Delete(ss, 1, Succ(byte(ss[1]))) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
198 |
end |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
199 |
end |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
200 |
until i = 0; |
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
201 |
|
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
202 |
close(f) |
5130
3602ede67ec5
Add a parameter for game simulation with no gui/sound enabled, just to get statistics
unc0rr
parents:
4976
diff
changeset
|
203 |
{$I+} |
4 | 204 |
end; |
205 |
||
4376 | 206 |
procedure SendStat(sit: TStatInfoType; s: shortstring); |
207 |
const stc: array [TStatInfoType] of char = 'rDkKHTPsSB'; |
|
208 |
var buf: shortstring; |
|
209 |
begin |
|
210 |
buf:= 'i' + stc[sit] + s; |
|
211 |
SendIPCRaw(@buf[0], length(buf) + 1) |
|
212 |
end; |
|
213 |
||
4377 | 214 |
|
4 | 215 |
procedure SendIPC(s: shortstring); |
216 |
begin |
|
49 | 217 |
if IPCSock <> nil then |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
218 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
219 |
SendEmptyPacketTicks:= 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
220 |
if s[0]>#251 then s[0]:= #251; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
221 |
SDLNet_Write16(GameTicks, @s[Succ(byte(s[0]))]); |
4900 | 222 |
AddFileLog('[IPC out] '+ s[1]); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
223 |
inc(s[0], 2); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
224 |
SDLNet_TCP_Send(IPCSock, @s, Succ(byte(s[0]))) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
225 |
end |
4 | 226 |
end; |
227 |
||
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
154
diff
changeset
|
228 |
procedure SendIPCRaw(p: pointer; len: Longword); |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
154
diff
changeset
|
229 |
begin |
208 | 230 |
if IPCSock <> nil then |
231 |
begin |
|
232 |
SDLNet_TCP_Send(IPCSock, p, len) |
|
233 |
end |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
154
diff
changeset
|
234 |
end; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
154
diff
changeset
|
235 |
|
154
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
112
diff
changeset
|
236 |
procedure SendIPCXY(cmd: char; X, Y: SmallInt); |
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
112
diff
changeset
|
237 |
var s: shortstring; |
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
112
diff
changeset
|
238 |
begin |
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
112
diff
changeset
|
239 |
s[0]:= #5; |
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
112
diff
changeset
|
240 |
s[1]:= cmd; |
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
112
diff
changeset
|
241 |
SDLNet_Write16(X, @s[2]); |
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
112
diff
changeset
|
242 |
SDLNet_Write16(Y, @s[4]); |
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
112
diff
changeset
|
243 |
SendIPC(s) |
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
112
diff
changeset
|
244 |
end; |
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
112
diff
changeset
|
245 |
|
159 | 246 |
procedure IPCWaitPongEvent; |
4 | 247 |
begin |
248 |
isPonged:= false; |
|
249 |
repeat |
|
250 |
IPCCheckSock; |
|
251 |
SDL_Delay(1) |
|
252 |
until isPonged |
|
253 |
end; |
|
254 |
||
159 | 255 |
procedure SendIPCAndWaitReply(s: shortstring); |
256 |
begin |
|
257 |
SendIPC(s); |
|
258 |
SendIPC('?'); |
|
259 |
IPCWaitPongEvent |
|
260 |
end; |
|
261 |
||
2382 | 262 |
procedure SendKeepAliveMessage(Lag: Longword); |
263 |
begin |
|
264 |
inc(SendEmptyPacketTicks, Lag); |
|
265 |
if (SendEmptyPacketTicks >= cSendEmptyPacketTime) then |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
266 |
SendIPC('+') |
2382 | 267 |
end; |
268 |
||
4 | 269 |
procedure NetGetNextCmd; |
270 |
var tmpflag: boolean; |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
271 |
s: shortstring; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
272 |
x16, y16: SmallInt; |
4 | 273 |
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
|
274 |
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
|
275 |
|
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1066
diff
changeset
|
276 |
while (headcmd <> nil) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
277 |
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
|
278 |
and ((GameTicks = hiTicks shl 16 + headcmd^.loTime) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
279 |
or (headcmd^.cmd = 's') // for these commands time is not specified |
4467 | 280 |
or (headcmd^.cmd = 'h') // seems the hedgewars protocol does not allow remote synced commands |
5810 | 281 |
or (headcmd^.cmd = '#') // must be synced for saves to work |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
282 |
or (headcmd^.cmd = 'b') |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
283 |
or (headcmd^.cmd = 'F')) do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
284 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
285 |
case headcmd^.cmd of |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
286 |
'+': ; // do nothing - it is just an empty packet |
5810 | 287 |
'#': begin |
288 |
AddFileLog('hiTicks increment by remote message'); |
|
289 |
inc(hiTicks); |
|
290 |
end; |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
291 |
'L': ParseCommand('+left', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
292 |
'l': ParseCommand('-left', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
293 |
'R': ParseCommand('+right', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
294 |
'r': ParseCommand('-right', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
295 |
'U': ParseCommand('+up', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
296 |
'u': ParseCommand('-up', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
297 |
'D': ParseCommand('+down', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
298 |
'd': ParseCommand('-down', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
299 |
'Z': ParseCommand('+precise', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
300 |
'z': ParseCommand('-precise', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
301 |
'A': ParseCommand('+attack', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
302 |
'a': ParseCommand('-attack', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
303 |
'S': ParseCommand('switch', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
304 |
'j': ParseCommand('ljump', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
305 |
'J': ParseCommand('hjump', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
306 |
',': ParseCommand('skip', true); |
4531
4ea193b0e378
Reenable ReadyTimer using a synced message NEEDS TESTING.
nemo
parents:
4522
diff
changeset
|
307 |
'c': begin |
4ea193b0e378
Reenable ReadyTimer using a synced message NEEDS TESTING.
nemo
parents:
4522
diff
changeset
|
308 |
s:= copy(headcmd^.str, 2, Pred(headcmd^.len)); |
4ea193b0e378
Reenable ReadyTimer using a synced message NEEDS TESTING.
nemo
parents:
4522
diff
changeset
|
309 |
ParseCommand('gencmd ' + s, true); |
4ea193b0e378
Reenable ReadyTimer using a synced message NEEDS TESTING.
nemo
parents:
4522
diff
changeset
|
310 |
end; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
311 |
's': begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
312 |
s:= copy(headcmd^.str, 2, Pred(headcmd^.len)); |
4409 | 313 |
ParseCommand('chatmsg ' + s, true); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
314 |
WriteLnToConsole(s) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
315 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
316 |
'b': begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
317 |
s:= copy(headcmd^.str, 2, Pred(headcmd^.len)); |
4409 | 318 |
ParseCommand('chatmsg '#4 + s, true); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
319 |
WriteLnToConsole(s) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
320 |
end; |
4404 | 321 |
// TODO: deprecate 'F' |
322 |
'F': ParseCommand('teamgone ' + copy(headcmd^.str, 2, Pred(headcmd^.len)), true); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
323 |
'N': begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
324 |
tmpflag:= false; |
4900 | 325 |
AddFileLog('got cmd "N": time '+IntToStr(hiTicks shl 16 + headcmd^.loTime)) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
326 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
327 |
'p': begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
328 |
x16:= SDLNet_Read16(@(headcmd^.X)); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
329 |
y16:= SDLNet_Read16(@(headcmd^.Y)); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
330 |
doPut(x16, y16, false) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
331 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
332 |
'P': begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
333 |
// these are equations solved for CursorPoint |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
334 |
// SDLNet_Read16(@(headcmd^.X)) == CursorPoint.X - WorldDx; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
335 |
// 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
|
336 |
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
|
337 |
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
|
338 |
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
|
339 |
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
|
340 |
end |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
341 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
342 |
'w': ParseCommand('setweap ' + headcmd^.str[2], true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
343 |
't': ParseCommand('taunt ' + headcmd^.str[2], true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
344 |
'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
|
345 |
'1'..'5': ParseCommand('timer ' + headcmd^.cmd, true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
346 |
#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
|
347 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
348 |
OutError('Unexpected protocol command: ' + headcmd^.cmd, True) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
349 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
350 |
RemoveCmd |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
351 |
end; |
351 | 352 |
|
2574
2f3e5c57359c
Fix (quite rare) spectators queue error when joining game with teams left the game.
unc0rr
parents:
2407
diff
changeset
|
353 |
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
|
354 |
TryDo(GameTicks < hiTicks shl 16 + headcmd^.loTime, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
355 |
'oops, queue error. in buffer: ' + headcmd^.cmd + |
4374 | 356 |
' (' + IntToStr(GameTicks) + ' > ' + |
357 |
IntToStr(hiTicks shl 16 + headcmd^.loTime) + ')', |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
358 |
true); |
4 | 359 |
|
2066 | 360 |
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
|
361 |
|
1560
e140bc57ff68
Quick replay round to spectators until current move
unc0rr
parents:
1432
diff
changeset
|
362 |
if isInLag then fastUntilLag:= false |
4 | 363 |
end; |
364 |
||
4403 | 365 |
procedure chFatalError(var s: shortstring); |
366 |
begin |
|
367 |
SendIPC('E' + s); |
|
368 |
end; |
|
369 |
||
4414 | 370 |
procedure doPut(putX, putY: LongInt; fromAI: boolean); |
371 |
begin |
|
372 |
if CheckNoTeamOrHH or isPaused then exit; |
|
373 |
bShowFinger:= false; |
|
374 |
if not CurrentTeam^.ExtDriven and bShowAmmoMenu then |
|
375 |
begin |
|
376 |
bSelected:= true; |
|
377 |
exit |
|
378 |
end; |
|
379 |
||
380 |
with CurrentHedgehog^.Gear^, |
|
381 |
CurrentHedgehog^ do |
|
382 |
if (State and gstHHChooseTarget) <> 0 then |
|
383 |
begin |
|
384 |
isCursorVisible:= false; |
|
385 |
if not CurrentTeam^.ExtDriven then |
|
386 |
begin |
|
387 |
if fromAI then |
|
388 |
begin |
|
389 |
TargetPoint.X:= putX; |
|
390 |
TargetPoint.Y:= putY |
|
391 |
end else |
|
392 |
begin |
|
393 |
TargetPoint.X:= CursorPoint.X - WorldDx; |
|
394 |
TargetPoint.Y:= cScreenHeight - CursorPoint.Y - WorldDy; |
|
395 |
end; |
|
396 |
SendIPCXY('p', TargetPoint.X, TargetPoint.Y); |
|
397 |
end |
|
398 |
else |
|
399 |
begin |
|
400 |
TargetPoint.X:= putX; |
|
401 |
TargetPoint.Y:= putY |
|
402 |
end; |
|
4900 | 403 |
AddFileLog('put: ' + inttostr(TargetPoint.X) + ', ' + inttostr(TargetPoint.Y)); |
4414 | 404 |
State:= State and not gstHHChooseTarget; |
405 |
if (Ammoz[CurAmmoType].Ammo.Propz and ammoprop_AttackingPut) <> 0 then |
|
4522
0f590eefd531
Add an input mask for setting of gear messages. Intended for intercepting user messages. This is totally untested. I don't think it should desync but seriously needs a lot of testing. Esp the doPut behaviour.
nemo
parents:
4467
diff
changeset
|
406 |
Message:= Message or (gmAttack and InputMask); |
4414 | 407 |
end |
408 |
else |
|
409 |
if CurrentTeam^.ExtDriven then |
|
410 |
OutError('got /put while not being in choose target mode', false) |
|
411 |
end; |
|
412 |
||
3038 | 413 |
procedure initModule; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
414 |
begin |
4403 | 415 |
RegisterVariable('fatal', vtCommand, @chFatalError, true ); |
416 |
||
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
417 |
IPCSock:= nil; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
418 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
419 |
headcmd:= nil; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
420 |
lastcmd:= nil; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
421 |
isPonged:= false; // was const |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
422 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
423 |
hiTicks:= 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
424 |
SendEmptyPacketTicks:= 0; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
425 |
end; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
426 |
|
3038 | 427 |
procedure freeModule; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
428 |
begin |
5592 | 429 |
while headcmd <> nil do RemoveCmd |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
430 |
end; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
431 |
|
4 | 432 |
end. |