author | unC0Rr |
Mon, 17 Jun 2013 17:07:27 +0200 | |
branch | webgl |
changeset 9199 | 9ed29795d2a3 |
parent 9197 | e4e366013e9a |
child 9521 | 8054d9d775fd |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
9080 | 3 |
* Copyright (c) 2004-2013 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 |
|
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
8003
diff
changeset
|
23 |
uses SDLh, uTypes, uMisc; |
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 |
|
7026
8d1724e1337e
split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents:
6982
diff
changeset
|
28 |
procedure InitIPC; |
4 | 29 |
procedure SendIPC(s: shortstring); |
8003 | 30 |
procedure SendIPCXY(cmd: char; X, Y: LongInt); |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
154
diff
changeset
|
31 |
procedure SendIPCRaw(p: pointer; len: Longword); |
4 | 32 |
procedure SendIPCAndWaitReply(s: shortstring); |
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
33 |
procedure FlushMessages(Lag: Longword); |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
34 |
procedure LoadRecordFromFile(fileName: shortstring); |
4376 | 35 |
procedure SendStat(sit: TStatInfoType; s: shortstring); |
159 | 36 |
procedure IPCWaitPongEvent; |
4 | 37 |
procedure IPCCheckSock; |
38 |
procedure NetGetNextCmd; |
|
4414 | 39 |
procedure doPut(putX, putY: LongInt; fromAI: boolean); |
4 | 40 |
|
41 |
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
|
42 |
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
|
43 |
|
8145
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
8024
diff
changeset
|
44 |
const |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
8024
diff
changeset
|
45 |
cSendEmptyPacketTime = 1000; |
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
46 |
cSendBufferSize = 1024; |
8145
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
8024
diff
changeset
|
47 |
|
648
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
48 |
type PCmd = ^TCmd; |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
49 |
TCmd = packed record |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
50 |
Next: PCmd; |
2574
2f3e5c57359c
Fix (quite rare) spectators queue error when joining game with teams left the game.
unc0rr
parents:
2407
diff
changeset
|
51 |
loTime: Word; |
648
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
52 |
case byte of |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
53 |
1: (len: byte; |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
54 |
cmd: Char; |
8003 | 55 |
X, Y: LongInt); |
648
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
56 |
2: (str: shortstring); |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
57 |
end; |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
58 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
59 |
var IPCSock: PTCPSocket; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
60 |
fds: PSDLNet_SocketSet; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
61 |
isPonged: boolean; |
7028 | 62 |
SocketString: shortstring; |
4 | 63 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
64 |
headcmd: PCmd; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
65 |
lastcmd: PCmd; |
2382 | 66 |
|
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
67 |
flushDelayTicks: LongWord; |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
68 |
sendBuffer: record |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
69 |
buf: array[0..Pred(cSendBufferSize)] of byte; |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
70 |
count: Word; |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
71 |
end; |
2382 | 72 |
|
2574
2f3e5c57359c
Fix (quite rare) spectators queue error when joining game with teams left the game.
unc0rr
parents:
2407
diff
changeset
|
73 |
function AddCmd(Time: Word; str: shortstring): PCmd; |
2695 | 74 |
var command: PCmd; |
648
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
75 |
begin |
2695 | 76 |
new(command); |
77 |
FillChar(command^, sizeof(TCmd), 0); |
|
78 |
command^.loTime:= Time; |
|
79 |
command^.str:= str; |
|
80 |
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
|
81 |
if headcmd = nil then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
82 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
83 |
headcmd:= command; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
84 |
lastcmd:= command |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
85 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
86 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
87 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
88 |
lastcmd^.Next:= command; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
89 |
lastcmd:= command |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
90 |
end; |
2695 | 91 |
AddCmd:= command; |
648
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
92 |
end; |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
93 |
|
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
94 |
procedure RemoveCmd; |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
95 |
var tmp: PCmd; |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
96 |
begin |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
97 |
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
|
98 |
tmp:= headcmd; |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
99 |
headcmd:= headcmd^.Next; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
100 |
if headcmd = nil then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
101 |
lastcmd:= nil; |
648
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
102 |
dispose(tmp) |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
103 |
end; |
4 | 104 |
|
105 |
procedure InitIPC; |
|
106 |
var ipaddr: TIPAddress; |
|
107 |
begin |
|
4815 | 108 |
WriteToConsole('Init SDL_Net... '); |
109 |
SDLTry(SDLNet_Init = 0, true); |
|
110 |
fds:= SDLNet_AllocSocketSet(1); |
|
111 |
SDLTry(fds <> nil, true); |
|
112 |
WriteLnToConsole(msgOK); |
|
4825 | 113 |
WriteToConsole('Establishing IPC connection to tcp 127.0.0.1:' + IntToStr(ipcPort) + ' '); |
4815 | 114 |
{$HINTS OFF} |
6898 | 115 |
SDLTry(SDLNet_ResolveHost(ipaddr, PChar('127.0.0.1'), ipcPort) = 0, true); |
4815 | 116 |
{$HINTS ON} |
117 |
IPCSock:= SDLNet_TCP_Open(ipaddr); |
|
118 |
SDLTry(IPCSock <> nil, true); |
|
119 |
WriteLnToConsole(msgOK) |
|
4 | 120 |
end; |
121 |
||
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 | 124 |
begin |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
8003
diff
changeset
|
125 |
|
4 | 126 |
case s[1] of |
4900 | 127 |
'!': begin AddFileLog('Ping? Pong!'); isPonged:= true; end; |
7068 | 128 |
'?': SendIPC(_S'!'); |
351 | 129 |
'e': ParseCommand(copy(s, 2, Length(s) - 1), true); |
4 | 130 |
'E': OutError(copy(s, 2, Length(s) - 1), true); |
131 |
'W': OutError(copy(s, 2, Length(s) - 1), false); |
|
4389 | 132 |
'M': ParseCommand('landcheck ' + s, true); |
8243 | 133 |
'o': if fastUntilLag then ParseCommand('forcequit', true); |
4 | 134 |
'T': case s[2] of |
135 |
'L': GameType:= gmtLocal; |
|
136 |
'D': GameType:= gmtDemo; |
|
137 |
'N': GameType:= gmtNet; |
|
72 | 138 |
'S': GameType:= gmtSave; |
7180 | 139 |
'V': GameType:= gmtRecord; |
4 | 140 |
else OutError(errmsgIncorrectUse + ' IPC "T" :' + s[2], true) end; |
7201
dc17ffdf0702
The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents:
7103
diff
changeset
|
141 |
'V': begin |
dc17ffdf0702
The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents:
7103
diff
changeset
|
142 |
if s[2] = '.' then |
dc17ffdf0702
The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents:
7103
diff
changeset
|
143 |
ParseCommand('campvar ' + copy(s, 3, length(s) - 2), true); |
dc17ffdf0702
The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents:
7103
diff
changeset
|
144 |
end |
4 | 145 |
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
|
146 |
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
|
147 |
AddCmd(loTicks, s); |
8498
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8472
diff
changeset
|
148 |
AddFileLog('[IPC in] ' + sanitizeCharForLog(s[1]) + ' ticks ' + IntToStr(lastcmd^.loTime)); |
4 | 149 |
end |
150 |
end; |
|
151 |
||
152 |
procedure IPCCheckSock; |
|
371 | 153 |
var i: LongInt; |
6453
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6247
diff
changeset
|
154 |
s: shortstring; |
4 | 155 |
begin |
6982 | 156 |
if IPCSock = nil then |
157 |
exit; |
|
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
158 |
|
6982 | 159 |
fds^.numsockets:= 0; |
160 |
SDLNet_AddSocket(fds, IPCSock); |
|
4 | 161 |
|
6982 | 162 |
while SDLNet_CheckSockets(fds, 0) > 0 do |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
163 |
begin |
6982 | 164 |
i:= SDLNet_TCP_Recv(IPCSock, @s[1], 255 - Length(SocketString)); |
165 |
if i > 0 then |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
166 |
begin |
6982 | 167 |
s[0]:= char(i); |
168 |
SocketString:= SocketString + s; |
|
169 |
while (Length(SocketString) > 1) and (Length(SocketString) > byte(SocketString[1])) do |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
170 |
begin |
6982 | 171 |
ParseIPCCommand(copy(SocketString, 2, byte(SocketString[1]))); |
172 |
Delete(SocketString, 1, Succ(byte(SocketString[1]))) |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
173 |
end |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
174 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
175 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
176 |
OutError('IPC connection lost', true) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
177 |
end; |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
178 |
end; |
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
179 |
|
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
180 |
procedure LoadRecordFromFile(fileName: shortstring); |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
8003
diff
changeset
|
181 |
var f : File; |
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
8003
diff
changeset
|
182 |
ss : shortstring = ''; |
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
8003
diff
changeset
|
183 |
i : LongInt; |
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
8003
diff
changeset
|
184 |
s : shortstring; |
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
8003
diff
changeset
|
185 |
t, tt : string; |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
186 |
begin |
2630 | 187 |
|
188 |
// set RDNLY on file open |
|
189 |
filemode:= 0; |
|
5130
3602ede67ec5
Add a parameter for game simulation with no gui/sound enabled, just to get statistics
unc0rr
parents:
4976
diff
changeset
|
190 |
{$I-} |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
191 |
assign(f, fileName); |
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
192 |
reset(f, 1); |
5130
3602ede67ec5
Add a parameter for game simulation with no gui/sound enabled, just to get statistics
unc0rr
parents:
4976
diff
changeset
|
193 |
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
|
194 |
|
3407 | 195 |
i:= 0; // avoid compiler hints |
6453
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6247
diff
changeset
|
196 |
s[0]:= #0; |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
197 |
repeat |
6453
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6247
diff
changeset
|
198 |
BlockRead(f, s[1], 255 - Length(ss), i); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
199 |
if i > 0 then |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
8003
diff
changeset
|
200 |
begin |
6453
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6247
diff
changeset
|
201 |
s[0]:= char(i); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
202 |
ss:= ss + s; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
203 |
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
|
204 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
205 |
ParseIPCCommand(copy(ss, 2, byte(ss[1]))); |
8330 | 206 |
Delete(ss, 1, Succ(byte(ss[1]))); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
207 |
end |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
208 |
end |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
209 |
until i = 0; |
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
210 |
|
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
211 |
close(f) |
5130
3602ede67ec5
Add a parameter for game simulation with no gui/sound enabled, just to get statistics
unc0rr
parents:
4976
diff
changeset
|
212 |
{$I+} |
4 | 213 |
end; |
214 |
||
4376 | 215 |
procedure SendStat(sit: TStatInfoType; s: shortstring); |
9178
c0902317c823
created a new sendstat type for changing the kills label
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9175
diff
changeset
|
216 |
const stc: array [TStatInfoType] of char = ('r', 'D', 'k', 'K', 'H', 'T', 'P', 's', 'S', 'B', 'c', 'g', 'p'); |
4376 | 217 |
var buf: shortstring; |
218 |
begin |
|
219 |
buf:= 'i' + stc[sit] + s; |
|
220 |
SendIPCRaw(@buf[0], length(buf) + 1) |
|
221 |
end; |
|
222 |
||
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
223 |
function isSyncedCommand(c: char): boolean; |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
224 |
begin |
8841 | 225 |
case c of |
226 |
'+', '#', 'L', 'l', 'R', 'r', 'U', 'u', 'D', 'd', 'Z', 'z', 'A', 'a', 'S', 'j', 'J', ',', 'c', 'N', 'p', 'P', 'w', 't', '1', '2', '3', '4', '5': isSyncedCommand:= true; |
|
227 |
else |
|
228 |
isSyncedCommand:= ((c >= #128) and (c <= char(128 + cMaxSlotIndex))) |
|
229 |
end |
|
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
230 |
end; |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
231 |
|
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
232 |
procedure flushBuffer(); |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
233 |
begin |
8645 | 234 |
if IPCSock <> nil then |
235 |
begin |
|
236 |
SDLNet_TCP_Send(IPCSock, @sendBuffer.buf, sendBuffer.count); |
|
237 |
flushDelayTicks:= 0; |
|
238 |
sendBuffer.count:= 0 |
|
239 |
end |
|
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
240 |
end; |
4377 | 241 |
|
4 | 242 |
procedure SendIPC(s: shortstring); |
243 |
begin |
|
49 | 244 |
if IPCSock <> nil then |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
245 |
begin |
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
246 |
if s[0] > #251 then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
247 |
s[0]:= #251; |
8330 | 248 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
249 |
SDLNet_Write16(GameTicks, @s[Succ(byte(s[0]))]); |
8498
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8472
diff
changeset
|
250 |
|
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8472
diff
changeset
|
251 |
AddFileLog('[IPC out] '+ sanitizeCharForLog(s[1])); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
252 |
inc(s[0], 2); |
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
253 |
|
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
254 |
if isSyncedCommand(s[1]) then |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
255 |
begin |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
256 |
if sendBuffer.count + byte(s[0]) >= cSendBufferSize then |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
257 |
flushBuffer(); |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
258 |
|
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
259 |
Move(s, sendBuffer.buf[sendBuffer.count], byte(s[0]) + 1); |
8543 | 260 |
inc(sendBuffer.count, byte(s[0]) + 1); |
261 |
||
8545
1385ab7219d9
Oh, and # too to prevent occasional game hang when N is followed by #
unc0rr
parents:
8543
diff
changeset
|
262 |
if (s[1] = 'N') or (s[1] = '#') then |
8543 | 263 |
flushBuffer(); |
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
264 |
end else |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
265 |
SDLNet_TCP_Send(IPCSock, @s, Succ(byte(s[0]))) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
266 |
end |
4 | 267 |
end; |
268 |
||
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
154
diff
changeset
|
269 |
procedure SendIPCRaw(p: pointer; len: Longword); |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
154
diff
changeset
|
270 |
begin |
208 | 271 |
if IPCSock <> nil then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
272 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
273 |
SDLNet_TCP_Send(IPCSock, p, len) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
274 |
end |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
154
diff
changeset
|
275 |
end; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
154
diff
changeset
|
276 |
|
8003 | 277 |
procedure SendIPCXY(cmd: char; X, Y: LongInt); |
154
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
112
diff
changeset
|
278 |
var s: shortstring; |
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
112
diff
changeset
|
279 |
begin |
8024 | 280 |
s[0]:= #9; |
154
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
112
diff
changeset
|
281 |
s[1]:= cmd; |
8003 | 282 |
SDLNet_Write32(X, @s[2]); |
8024 | 283 |
SDLNet_Write32(Y, @s[6]); |
154
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
112
diff
changeset
|
284 |
SendIPC(s) |
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
112
diff
changeset
|
285 |
end; |
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
112
diff
changeset
|
286 |
|
159 | 287 |
procedure IPCWaitPongEvent; |
4 | 288 |
begin |
289 |
isPonged:= false; |
|
290 |
repeat |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
291 |
IPCCheckSock; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
292 |
SDL_Delay(1) |
4 | 293 |
until isPonged |
294 |
end; |
|
295 |
||
159 | 296 |
procedure SendIPCAndWaitReply(s: shortstring); |
297 |
begin |
|
298 |
SendIPC(s); |
|
7068 | 299 |
SendIPC(_S'?'); |
159 | 300 |
IPCWaitPongEvent |
301 |
end; |
|
302 |
||
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
303 |
procedure FlushMessages(Lag: Longword); |
2382 | 304 |
begin |
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
305 |
inc(flushDelayTicks, Lag); |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
306 |
if (flushDelayTicks >= cSendEmptyPacketTime) then |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
307 |
begin |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
308 |
if sendBuffer.count = 0 then |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
309 |
SendIPC(_S'+'); |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
310 |
|
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
311 |
flushBuffer() |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
312 |
end |
2382 | 313 |
end; |
314 |
||
4 | 315 |
procedure NetGetNextCmd; |
316 |
var tmpflag: boolean; |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
317 |
s: shortstring; |
8003 | 318 |
x32, y32: LongInt; |
4 | 319 |
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
|
320 |
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
|
321 |
|
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1066
diff
changeset
|
322 |
while (headcmd <> nil) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
323 |
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
|
324 |
and ((GameTicks = hiTicks shl 16 + headcmd^.loTime) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
325 |
or (headcmd^.cmd = 's') // for these commands time is not specified |
4467 | 326 |
or (headcmd^.cmd = 'h') // seems the hedgewars protocol does not allow remote synced commands |
5810 | 327 |
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
|
328 |
or (headcmd^.cmd = 'b') |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
329 |
or (headcmd^.cmd = 'F')) do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
330 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
331 |
case headcmd^.cmd of |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
332 |
'+': ; // do nothing - it is just an empty packet |
5810 | 333 |
'#': begin |
334 |
AddFileLog('hiTicks increment by remote message'); |
|
335 |
inc(hiTicks); |
|
336 |
end; |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
337 |
'L': ParseCommand('+left', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
338 |
'l': ParseCommand('-left', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
339 |
'R': ParseCommand('+right', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
340 |
'r': ParseCommand('-right', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
341 |
'U': ParseCommand('+up', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
342 |
'u': ParseCommand('-up', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
343 |
'D': ParseCommand('+down', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
344 |
'd': ParseCommand('-down', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
345 |
'Z': ParseCommand('+precise', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
346 |
'z': ParseCommand('-precise', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
347 |
'A': ParseCommand('+attack', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
348 |
'a': ParseCommand('-attack', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
349 |
'S': ParseCommand('switch', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
350 |
'j': ParseCommand('ljump', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
351 |
'J': ParseCommand('hjump', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
352 |
',': ParseCommand('skip', true); |
4531
4ea193b0e378
Reenable ReadyTimer using a synced message NEEDS TESTING.
nemo
parents:
4522
diff
changeset
|
353 |
'c': begin |
4ea193b0e378
Reenable ReadyTimer using a synced message NEEDS TESTING.
nemo
parents:
4522
diff
changeset
|
354 |
s:= copy(headcmd^.str, 2, Pred(headcmd^.len)); |
4ea193b0e378
Reenable ReadyTimer using a synced message NEEDS TESTING.
nemo
parents:
4522
diff
changeset
|
355 |
ParseCommand('gencmd ' + s, true); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
356 |
end; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
357 |
's': begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
358 |
s:= copy(headcmd^.str, 2, Pred(headcmd^.len)); |
4409 | 359 |
ParseCommand('chatmsg ' + s, true); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
360 |
WriteLnToConsole(s) |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
361 |
end; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
362 |
'b': begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
363 |
s:= copy(headcmd^.str, 2, Pred(headcmd^.len)); |
6453
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6247
diff
changeset
|
364 |
ParseCommand('chatmsg ' + #4 + s, true); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
365 |
WriteLnToConsole(s) |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
366 |
end; |
4404 | 367 |
// TODO: deprecate 'F' |
368 |
'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
|
369 |
'N': begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
370 |
tmpflag:= false; |
7103 | 371 |
lastTurnChecksum:= SDLNet_Read32(@headcmd^.str[2]); |
4900 | 372 |
AddFileLog('got cmd "N": time '+IntToStr(hiTicks shl 16 + headcmd^.loTime)) |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
373 |
end; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
374 |
'p': begin |
8003 | 375 |
x32:= SDLNet_Read32(@(headcmd^.X)); |
376 |
y32:= SDLNet_Read32(@(headcmd^.Y)); |
|
377 |
doPut(x32, y32, false) |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
378 |
end; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
379 |
'P': begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
380 |
// these are equations solved for CursorPoint |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
381 |
// SDLNet_Read16(@(headcmd^.X)) == CursorPoint.X - WorldDx; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
382 |
// SDLNet_Read16(@(headcmd^.Y)) == cScreenHeight - CursorPoint.Y - WorldDy; |
8373
209c9ba77a09
Prevent camera from moving with auto camera disabled when remote teams are targetting
nemo
parents:
8243
diff
changeset
|
383 |
if CurrentTeam^.ExtDriven then |
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
|
384 |
begin |
8373
209c9ba77a09
Prevent camera from moving with auto camera disabled when remote teams are targetting
nemo
parents:
8243
diff
changeset
|
385 |
TargetCursorPoint.X:= LongInt(SDLNet_Read32(@(headcmd^.X))) + WorldDx; |
209c9ba77a09
Prevent camera from moving with auto camera disabled when remote teams are targetting
nemo
parents:
8243
diff
changeset
|
386 |
TargetCursorPoint.Y:= cScreenHeight - LongInt(SDLNet_Read32(@(headcmd^.Y))) - WorldDy; |
209c9ba77a09
Prevent camera from moving with auto camera disabled when remote teams are targetting
nemo
parents:
8243
diff
changeset
|
387 |
if not bShowAmmoMenu and autoCameraOn then |
209c9ba77a09
Prevent camera from moving with auto camera disabled when remote teams are targetting
nemo
parents:
8243
diff
changeset
|
388 |
CursorPoint:= TargetCursorPoint |
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
|
389 |
end |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
390 |
end; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
391 |
'w': ParseCommand('setweap ' + headcmd^.str[2], true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
392 |
't': ParseCommand('taunt ' + headcmd^.str[2], true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
393 |
'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
|
394 |
'1'..'5': ParseCommand('timer ' + headcmd^.cmd, true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
395 |
else |
6876
f588dfc27da3
Unbreak build (change was only tested with pas2c parser, and was okay to it)
unc0rr
parents:
6874
diff
changeset
|
396 |
if (headcmd^.cmd >= #128) and (headcmd^.cmd <= char(128 + cMaxSlotIndex)) then |
6874 | 397 |
ParseCommand('slot ' + char(byte(headcmd^.cmd) - 79), true) |
398 |
else |
|
399 |
OutError('Unexpected protocol command: ' + headcmd^.cmd, True) |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
400 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
401 |
RemoveCmd |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
402 |
end; |
351 | 403 |
|
2574
2f3e5c57359c
Fix (quite rare) spectators queue error when joining game with teams left the game.
unc0rr
parents:
2407
diff
changeset
|
404 |
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
|
405 |
TryDo(GameTicks < hiTicks shl 16 + headcmd^.loTime, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
406 |
'oops, queue error. in buffer: ' + headcmd^.cmd + |
4374 | 407 |
' (' + IntToStr(GameTicks) + ' > ' + |
408 |
IntToStr(hiTicks shl 16 + headcmd^.loTime) + ')', |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
409 |
true); |
4 | 410 |
|
2066 | 411 |
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
|
412 |
|
1560
e140bc57ff68
Quick replay round to spectators until current move
unc0rr
parents:
1432
diff
changeset
|
413 |
if isInLag then fastUntilLag:= false |
4 | 414 |
end; |
415 |
||
4403 | 416 |
procedure chFatalError(var s: shortstring); |
417 |
begin |
|
418 |
SendIPC('E' + s); |
|
419 |
end; |
|
420 |
||
4414 | 421 |
procedure doPut(putX, putY: LongInt; fromAI: boolean); |
422 |
begin |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
423 |
if CheckNoTeamOrHH or isPaused then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
424 |
exit; |
4414 | 425 |
bShowFinger:= false; |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
8003
diff
changeset
|
426 |
if (not CurrentTeam^.ExtDriven) and bShowAmmoMenu then |
4414 | 427 |
begin |
428 |
bSelected:= true; |
|
429 |
exit |
|
430 |
end; |
|
431 |
||
432 |
with CurrentHedgehog^.Gear^, |
|
433 |
CurrentHedgehog^ do |
|
434 |
if (State and gstHHChooseTarget) <> 0 then |
|
435 |
begin |
|
436 |
isCursorVisible:= false; |
|
437 |
if not CurrentTeam^.ExtDriven then |
|
438 |
begin |
|
439 |
if fromAI then |
|
440 |
begin |
|
441 |
TargetPoint.X:= putX; |
|
442 |
TargetPoint.Y:= putY |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
443 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
444 |
else |
4414 | 445 |
begin |
446 |
TargetPoint.X:= CursorPoint.X - WorldDx; |
|
447 |
TargetPoint.Y:= cScreenHeight - CursorPoint.Y - WorldDy; |
|
448 |
end; |
|
449 |
SendIPCXY('p', TargetPoint.X, TargetPoint.Y); |
|
450 |
end |
|
451 |
else |
|
452 |
begin |
|
453 |
TargetPoint.X:= putX; |
|
454 |
TargetPoint.Y:= putY |
|
455 |
end; |
|
4900 | 456 |
AddFileLog('put: ' + inttostr(TargetPoint.X) + ', ' + inttostr(TargetPoint.Y)); |
7426
55b49cc1f33a
Changes for the benefit of pas2c. Use downto in for loops to avoid repeated calls of Random/GetRandom. Wrap nots.
nemo
parents:
7103
diff
changeset
|
457 |
State:= State and (not gstHHChooseTarget); |
4414 | 458 |
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
|
459 |
Message:= Message or (gmAttack and InputMask); |
4414 | 460 |
end |
461 |
else |
|
462 |
if CurrentTeam^.ExtDriven then |
|
463 |
OutError('got /put while not being in choose target mode', false) |
|
464 |
end; |
|
465 |
||
3038 | 466 |
procedure initModule; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
467 |
begin |
6898 | 468 |
RegisterVariable('fatal', @chFatalError, true ); |
4403 | 469 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
470 |
IPCSock:= nil; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
471 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
472 |
headcmd:= nil; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
473 |
lastcmd:= nil; |
6982 | 474 |
isPonged:= false; |
475 |
SocketString:= ''; |
|
8330 | 476 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
477 |
hiTicks:= 0; |
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
478 |
flushDelayTicks:= 0; |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
479 |
sendBuffer.count:= 0; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
480 |
end; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
481 |
|
3038 | 482 |
procedure freeModule; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
483 |
begin |
7026
8d1724e1337e
split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents:
6982
diff
changeset
|
484 |
while headcmd <> nil do RemoveCmd; |
8d1724e1337e
split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents:
6982
diff
changeset
|
485 |
SDLNet_FreeSocketSet(fds); |
8d1724e1337e
split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents:
6982
diff
changeset
|
486 |
SDLNet_TCP_Close(IPCSock); |
8d1724e1337e
split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents:
6982
diff
changeset
|
487 |
SDLNet_Quit(); |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
8003
diff
changeset
|
488 |
|
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
489 |
end; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
490 |
|
4 | 491 |
end. |