author | sheepluva |
Tue, 15 May 2018 16:55:37 +0200 | |
branch | ui-scaling |
changeset 13385 | ec1491bb5acc |
parent 12894 | ff54aca22bb5 |
child 13506 | bdac56fb6f1a |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
11046 | 3 |
* Copyright (c) 2004-2015 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 |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
10015
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 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 |
|
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; |
9972
feb4b031b52e
Remove X and Y from the structure since those are misaligned in c code and I failed to do anything about that and they were the last cause of desyncs and only used in 4 places and I'm too lazy
unc0rr
parents:
9521
diff
changeset
|
54 |
cmd: Char); |
648
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
55 |
2: (str: shortstring); |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
56 |
end; |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
57 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
58 |
var IPCSock: PTCPSocket; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
59 |
fds: PSDLNet_SocketSet; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
60 |
isPonged: boolean; |
7028 | 61 |
SocketString: shortstring; |
4 | 62 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
63 |
headcmd: PCmd; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
64 |
lastcmd: PCmd; |
2382 | 65 |
|
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
66 |
flushDelayTicks: LongWord; |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
67 |
sendBuffer: record |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
68 |
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
|
69 |
count: Word; |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
70 |
end; |
2382 | 71 |
|
2574
2f3e5c57359c
Fix (quite rare) spectators queue error when joining game with teams left the game.
unc0rr
parents:
2407
diff
changeset
|
72 |
function AddCmd(Time: Word; str: shortstring): PCmd; |
2695 | 73 |
var command: PCmd; |
648
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
74 |
begin |
12894 | 75 |
if (lastcmd <> nil) |
76 |
and (lastcmd^.cmd = '+') // don't overwrite timestamped msg with non-timestamped one |
|
77 |
and (str[1] <> 'F') |
|
78 |
and (str[1] <> 'G') |
|
79 |
and (str[1] <> 's') |
|
80 |
and (str[1] <> 'h') |
|
81 |
and (str[1] <> 'b') |
|
82 |
then |
|
11483
dbc0d54798dc
Overwrite last '+' cmd in the queue instead of appending new command
unc0rr
parents:
11363
diff
changeset
|
83 |
begin |
dbc0d54798dc
Overwrite last '+' cmd in the queue instead of appending new command
unc0rr
parents:
11363
diff
changeset
|
84 |
command:= lastcmd; |
dbc0d54798dc
Overwrite last '+' cmd in the queue instead of appending new command
unc0rr
parents:
11363
diff
changeset
|
85 |
end else |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
86 |
begin |
11483
dbc0d54798dc
Overwrite last '+' cmd in the queue instead of appending new command
unc0rr
parents:
11363
diff
changeset
|
87 |
new(command); |
dbc0d54798dc
Overwrite last '+' cmd in the queue instead of appending new command
unc0rr
parents:
11363
diff
changeset
|
88 |
|
dbc0d54798dc
Overwrite last '+' cmd in the queue instead of appending new command
unc0rr
parents:
11363
diff
changeset
|
89 |
if headcmd = nil then |
dbc0d54798dc
Overwrite last '+' cmd in the queue instead of appending new command
unc0rr
parents:
11363
diff
changeset
|
90 |
begin |
dbc0d54798dc
Overwrite last '+' cmd in the queue instead of appending new command
unc0rr
parents:
11363
diff
changeset
|
91 |
headcmd:= command; |
dbc0d54798dc
Overwrite last '+' cmd in the queue instead of appending new command
unc0rr
parents:
11363
diff
changeset
|
92 |
lastcmd:= command |
dbc0d54798dc
Overwrite last '+' cmd in the queue instead of appending new command
unc0rr
parents:
11363
diff
changeset
|
93 |
end |
dbc0d54798dc
Overwrite last '+' cmd in the queue instead of appending new command
unc0rr
parents:
11363
diff
changeset
|
94 |
else |
dbc0d54798dc
Overwrite last '+' cmd in the queue instead of appending new command
unc0rr
parents:
11363
diff
changeset
|
95 |
begin |
dbc0d54798dc
Overwrite last '+' cmd in the queue instead of appending new command
unc0rr
parents:
11363
diff
changeset
|
96 |
lastcmd^.Next:= command; |
dbc0d54798dc
Overwrite last '+' cmd in the queue instead of appending new command
unc0rr
parents:
11363
diff
changeset
|
97 |
lastcmd:= command |
dbc0d54798dc
Overwrite last '+' cmd in the queue instead of appending new command
unc0rr
parents:
11363
diff
changeset
|
98 |
end; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
99 |
end; |
11483
dbc0d54798dc
Overwrite last '+' cmd in the queue instead of appending new command
unc0rr
parents:
11363
diff
changeset
|
100 |
|
dbc0d54798dc
Overwrite last '+' cmd in the queue instead of appending new command
unc0rr
parents:
11363
diff
changeset
|
101 |
FillChar(command^, sizeof(TCmd), 0); |
dbc0d54798dc
Overwrite last '+' cmd in the queue instead of appending new command
unc0rr
parents:
11363
diff
changeset
|
102 |
command^.loTime:= Time; |
dbc0d54798dc
Overwrite last '+' cmd in the queue instead of appending new command
unc0rr
parents:
11363
diff
changeset
|
103 |
command^.str:= str; |
dbc0d54798dc
Overwrite last '+' cmd in the queue instead of appending new command
unc0rr
parents:
11363
diff
changeset
|
104 |
if (command^.cmd <> 'F') and (command^.cmd <> 'G') then dec(command^.len, 2); // cut timestamp |
dbc0d54798dc
Overwrite last '+' cmd in the queue instead of appending new command
unc0rr
parents:
11363
diff
changeset
|
105 |
|
dbc0d54798dc
Overwrite last '+' cmd in the queue instead of appending new command
unc0rr
parents:
11363
diff
changeset
|
106 |
AddCmd:= command; |
648
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
107 |
end; |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
108 |
|
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
109 |
procedure RemoveCmd; |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
110 |
var tmp: PCmd; |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
111 |
begin |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
112 |
tmp:= headcmd; |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
113 |
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
|
114 |
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
|
115 |
lastcmd:= nil; |
648
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
116 |
dispose(tmp) |
fc5234aa6493
Use list instead of array (no limit for network packets amount)
unc0rr
parents:
526
diff
changeset
|
117 |
end; |
4 | 118 |
|
119 |
procedure InitIPC; |
|
120 |
var ipaddr: TIPAddress; |
|
121 |
begin |
|
4815 | 122 |
WriteToConsole('Init SDL_Net... '); |
11507 | 123 |
SDLCheck(SDLNet_Init = 0, 'SDLNet_Init', true); |
4815 | 124 |
fds:= SDLNet_AllocSocketSet(1); |
11507 | 125 |
SDLCheck(fds <> nil, 'SDLNet_AllocSocketSet', true); |
4815 | 126 |
WriteLnToConsole(msgOK); |
4825 | 127 |
WriteToConsole('Establishing IPC connection to tcp 127.0.0.1:' + IntToStr(ipcPort) + ' '); |
4815 | 128 |
{$HINTS OFF} |
11507 | 129 |
SDLCheck(SDLNet_ResolveHost(ipaddr, PChar('127.0.0.1'), ipcPort) = 0, 'SDLNet_ResolveHost', true); |
4815 | 130 |
{$HINTS ON} |
131 |
IPCSock:= SDLNet_TCP_Open(ipaddr); |
|
11507 | 132 |
SDLCheck(IPCSock <> nil, 'SDLNet_TCP_Open', true); |
4815 | 133 |
WriteLnToConsole(msgOK) |
4 | 134 |
end; |
135 |
||
10392 | 136 |
procedure ParseChatCommand(command: shortstring; message: shortstring; |
137 |
messageStartIndex: Byte); |
|
138 |
var |
|
139 |
text: shortstring; |
|
140 |
begin |
|
141 |
text:= copy(message, messageStartIndex, |
|
142 |
Length(message) - messageStartIndex + 1); |
|
143 |
ParseCommand(command + text, true); |
|
144 |
WriteLnToConsole(text) |
|
145 |
end; |
|
146 |
||
4 | 147 |
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
|
148 |
var loTicks: Word; |
10392 | 149 |
isProcessed: boolean; |
4 | 150 |
begin |
10392 | 151 |
isProcessed := true; |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
8003
diff
changeset
|
152 |
|
4 | 153 |
case s[1] of |
4900 | 154 |
'!': begin AddFileLog('Ping? Pong!'); isPonged:= true; end; |
7068 | 155 |
'?': SendIPC(_S'!'); |
351 | 156 |
'e': ParseCommand(copy(s, 2, Length(s) - 1), true); |
4 | 157 |
'E': OutError(copy(s, 2, Length(s) - 1), true); |
158 |
'W': OutError(copy(s, 2, Length(s) - 1), false); |
|
4389 | 159 |
'M': ParseCommand('landcheck ' + s, true); |
8243 | 160 |
'o': if fastUntilLag then ParseCommand('forcequit', true); |
4 | 161 |
'T': case s[2] of |
162 |
'L': GameType:= gmtLocal; |
|
163 |
'D': GameType:= gmtDemo; |
|
164 |
'N': GameType:= gmtNet; |
|
72 | 165 |
'S': GameType:= gmtSave; |
7180 | 166 |
'V': GameType:= gmtRecord; |
4 | 167 |
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
|
168 |
'V': begin |
dc17ffdf0702
The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents:
7103
diff
changeset
|
169 |
if s[2] = '.' then |
dc17ffdf0702
The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents:
7103
diff
changeset
|
170 |
ParseCommand('campvar ' + copy(s, 3, length(s) - 2), true); |
10392 | 171 |
end; |
172 |
'I': ParseCommand('pause server', true); |
|
173 |
's': if gameType = gmtNet then |
|
174 |
ParseChatCommand('chatmsg ', s, 2) |
|
10510 | 175 |
else |
10392 | 176 |
isProcessed:= false; |
177 |
'b': if gameType = gmtNet then |
|
178 |
ParseChatCommand('chatmsg ' + #4, s, 2) |
|
10510 | 179 |
else |
10392 | 180 |
isProcessed:= false; |
4 | 181 |
else |
10392 | 182 |
isProcessed:= false; |
183 |
end; |
|
184 |
||
185 |
if (not isProcessed) then |
|
186 |
begin |
|
187 |
loTicks:= SDLNet_Read16(@s[byte(s[0]) - 1]); |
|
188 |
AddCmd(loTicks, s); |
|
189 |
AddFileLog('[IPC in] ' + sanitizeCharForLog(s[1]) + ' ticks ' + IntToStr(lastcmd^.loTime)); |
|
190 |
end |
|
4 | 191 |
end; |
192 |
||
193 |
procedure IPCCheckSock; |
|
371 | 194 |
var i: LongInt; |
6453
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6247
diff
changeset
|
195 |
s: shortstring; |
4 | 196 |
begin |
6982 | 197 |
if IPCSock = nil then |
198 |
exit; |
|
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
199 |
|
6982 | 200 |
fds^.numsockets:= 0; |
201 |
SDLNet_AddSocket(fds, IPCSock); |
|
4 | 202 |
|
6982 | 203 |
while SDLNet_CheckSockets(fds, 0) > 0 do |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
204 |
begin |
6982 | 205 |
i:= SDLNet_TCP_Recv(IPCSock, @s[1], 255 - Length(SocketString)); |
206 |
if i > 0 then |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
207 |
begin |
6982 | 208 |
s[0]:= char(i); |
209 |
SocketString:= SocketString + s; |
|
210 |
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
|
211 |
begin |
6982 | 212 |
ParseIPCCommand(copy(SocketString, 2, byte(SocketString[1]))); |
213 |
Delete(SocketString, 1, Succ(byte(SocketString[1]))) |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
214 |
end |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
215 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
216 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
217 |
OutError('IPC connection lost', true) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
218 |
end; |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
219 |
end; |
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
220 |
|
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
221 |
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
|
222 |
var f : File; |
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
8003
diff
changeset
|
223 |
ss : shortstring = ''; |
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
8003
diff
changeset
|
224 |
i : LongInt; |
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
8003
diff
changeset
|
225 |
s : shortstring; |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
226 |
begin |
2630 | 227 |
|
228 |
// set RDNLY on file open |
|
229 |
filemode:= 0; |
|
5130
3602ede67ec5
Add a parameter for game simulation with no gui/sound enabled, just to get statistics
unc0rr
parents:
4976
diff
changeset
|
230 |
{$I-} |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
231 |
assign(f, fileName); |
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
232 |
reset(f, 1); |
11532 | 233 |
if checkFails(IOResult = 0, 'Error opening file ' + fileName, true) then |
234 |
exit; |
|
5130
3602ede67ec5
Add a parameter for game simulation with no gui/sound enabled, just to get statistics
unc0rr
parents:
4976
diff
changeset
|
235 |
|
3407 | 236 |
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
|
237 |
s[0]:= #0; |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
238 |
repeat |
6453
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6247
diff
changeset
|
239 |
BlockRead(f, s[1], 255 - Length(ss), i); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
240 |
if i > 0 then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
241 |
begin |
6453
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6247
diff
changeset
|
242 |
s[0]:= char(i); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
243 |
ss:= ss + s; |
11539 | 244 |
while (Length(ss) > 1)and(Length(ss) > byte(ss[1])) and allOK do |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
245 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
246 |
ParseIPCCommand(copy(ss, 2, byte(ss[1]))); |
10015 | 247 |
Delete(ss, 1, Succ(byte(ss[1]))); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
248 |
end |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
249 |
end |
11539 | 250 |
until (i = 0) or (not allOK); |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
251 |
|
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1821
diff
changeset
|
252 |
close(f) |
5130
3602ede67ec5
Add a parameter for game simulation with no gui/sound enabled, just to get statistics
unc0rr
parents:
4976
diff
changeset
|
253 |
{$I+} |
4 | 254 |
end; |
255 |
||
4376 | 256 |
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
|
257 |
const stc: array [TStatInfoType] of char = ('r', 'D', 'k', 'K', 'H', 'T', 'P', 's', 'S', 'B', 'c', 'g', 'p'); |
4376 | 258 |
var buf: shortstring; |
259 |
begin |
|
260 |
buf:= 'i' + stc[sit] + s; |
|
261 |
SendIPCRaw(@buf[0], length(buf) + 1) |
|
262 |
end; |
|
263 |
||
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
264 |
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
|
265 |
begin |
8841 | 266 |
case c of |
10343
fe9853dea6c4
Finish implementation of ability to take control over your team after being disconnected. Completely untested.
unc0rr
parents:
10307
diff
changeset
|
267 |
'+', '#', 'L', 'l', 'R', 'r', 'U' |
fe9853dea6c4
Finish implementation of ability to take control over your team after being disconnected. Completely untested.
unc0rr
parents:
10307
diff
changeset
|
268 |
, 'u', 'D', 'd', 'Z', 'z', 'A', 'a' |
fe9853dea6c4
Finish implementation of ability to take control over your team after being disconnected. Completely untested.
unc0rr
parents:
10307
diff
changeset
|
269 |
, 'S', 'j', 'J', ',', 'c', 'N', 'p' |
fe9853dea6c4
Finish implementation of ability to take control over your team after being disconnected. Completely untested.
unc0rr
parents:
10307
diff
changeset
|
270 |
, 'P', 'w', 't', '1', '2', '3', '4' |
fe9853dea6c4
Finish implementation of ability to take control over your team after being disconnected. Completely untested.
unc0rr
parents:
10307
diff
changeset
|
271 |
, '5', 'f', 'g': isSyncedCommand:= true; |
8841 | 272 |
else |
10142 | 273 |
isSyncedCommand:= ((byte(c) >= 128) and (byte(c) <= 128 + cMaxSlotIndex)) |
8841 | 274 |
end |
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
275 |
end; |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
276 |
|
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
277 |
procedure flushBuffer(); |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
278 |
begin |
8645 | 279 |
if IPCSock <> nil then |
280 |
begin |
|
281 |
SDLNet_TCP_Send(IPCSock, @sendBuffer.buf, sendBuffer.count); |
|
282 |
flushDelayTicks:= 0; |
|
283 |
sendBuffer.count:= 0 |
|
284 |
end |
|
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
285 |
end; |
4377 | 286 |
|
4 | 287 |
procedure SendIPC(s: shortstring); |
288 |
begin |
|
49 | 289 |
if IPCSock <> nil then |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
290 |
begin |
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
291 |
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
|
292 |
s[0]:= #251; |
8330 | 293 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
294 |
SDLNet_Write16(GameTicks, @s[Succ(byte(s[0]))]); |
10015 | 295 |
|
8498
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8472
diff
changeset
|
296 |
AddFileLog('[IPC out] '+ sanitizeCharForLog(s[1])); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
297 |
inc(s[0], 2); |
10015 | 298 |
|
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
299 |
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
|
300 |
begin |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
301 |
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
|
302 |
flushBuffer(); |
10015 | 303 |
|
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
304 |
Move(s, sendBuffer.buf[sendBuffer.count], byte(s[0]) + 1); |
8543 | 305 |
inc(sendBuffer.count, byte(s[0]) + 1); |
10015 | 306 |
|
8545
1385ab7219d9
Oh, and # too to prevent occasional game hang when N is followed by #
unc0rr
parents:
8543
diff
changeset
|
307 |
if (s[1] = 'N') or (s[1] = '#') then |
8543 | 308 |
flushBuffer(); |
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
309 |
end else |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
310 |
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
|
311 |
end |
4 | 312 |
end; |
313 |
||
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
154
diff
changeset
|
314 |
procedure SendIPCRaw(p: pointer; len: Longword); |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
154
diff
changeset
|
315 |
begin |
208 | 316 |
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
|
317 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
318 |
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
|
319 |
end |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
154
diff
changeset
|
320 |
end; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
154
diff
changeset
|
321 |
|
8003 | 322 |
procedure SendIPCXY(cmd: char; X, Y: LongInt); |
154
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
112
diff
changeset
|
323 |
var s: shortstring; |
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
112
diff
changeset
|
324 |
begin |
8024 | 325 |
s[0]:= #9; |
154
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
112
diff
changeset
|
326 |
s[1]:= cmd; |
8003 | 327 |
SDLNet_Write32(X, @s[2]); |
8024 | 328 |
SDLNet_Write32(Y, @s[6]); |
154
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
112
diff
changeset
|
329 |
SendIPC(s) |
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
112
diff
changeset
|
330 |
end; |
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
112
diff
changeset
|
331 |
|
159 | 332 |
procedure IPCWaitPongEvent; |
4 | 333 |
begin |
334 |
isPonged:= false; |
|
335 |
repeat |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
336 |
IPCCheckSock; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
337 |
SDL_Delay(1) |
11539 | 338 |
until isPonged or (not allOK) |
4 | 339 |
end; |
340 |
||
159 | 341 |
procedure SendIPCAndWaitReply(s: shortstring); |
342 |
begin |
|
343 |
SendIPC(s); |
|
7068 | 344 |
SendIPC(_S'?'); |
159 | 345 |
IPCWaitPongEvent |
346 |
end; |
|
347 |
||
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
348 |
procedure FlushMessages(Lag: Longword); |
2382 | 349 |
begin |
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
350 |
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
|
351 |
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
|
352 |
begin |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
353 |
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
|
354 |
SendIPC(_S'+'); |
10015 | 355 |
|
356 |
flushBuffer() |
|
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
357 |
end |
2382 | 358 |
end; |
359 |
||
4 | 360 |
procedure NetGetNextCmd; |
361 |
var tmpflag: boolean; |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
362 |
s: shortstring; |
8003 | 363 |
x32, y32: LongInt; |
4 | 364 |
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
|
365 |
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
|
366 |
|
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1066
diff
changeset
|
367 |
while (headcmd <> nil) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
368 |
and (tmpflag or (headcmd^.cmd = '#')) // '#' is the only cmd which can be sent within same tick after 'N' |
10560 | 369 |
and ((GameTicks = LongWord(hiTicks shl 16 + headcmd^.loTime)) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
370 |
or (headcmd^.cmd = 's') // for these commands time is not specified |
4467 | 371 |
or (headcmd^.cmd = 'h') // seems the hedgewars protocol does not allow remote synced commands |
5810 | 372 |
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
|
373 |
or (headcmd^.cmd = 'b') |
10343
fe9853dea6c4
Finish implementation of ability to take control over your team after being disconnected. Completely untested.
unc0rr
parents:
10307
diff
changeset
|
374 |
or (headcmd^.cmd = 'F') |
fe9853dea6c4
Finish implementation of ability to take control over your team after being disconnected. Completely untested.
unc0rr
parents:
10307
diff
changeset
|
375 |
or (headcmd^.cmd = 'G')) do |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
376 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
377 |
case headcmd^.cmd of |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
378 |
'+': ; // do nothing - it is just an empty packet |
5810 | 379 |
'#': begin |
380 |
AddFileLog('hiTicks increment by remote message'); |
|
381 |
inc(hiTicks); |
|
382 |
end; |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
383 |
'L': ParseCommand('+left', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
384 |
'l': ParseCommand('-left', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
385 |
'R': ParseCommand('+right', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
386 |
'r': ParseCommand('-right', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
387 |
'U': ParseCommand('+up', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
388 |
'u': ParseCommand('-up', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
389 |
'D': ParseCommand('+down', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
390 |
'd': ParseCommand('-down', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
391 |
'Z': ParseCommand('+precise', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
392 |
'z': ParseCommand('-precise', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
393 |
'A': ParseCommand('+attack', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
394 |
'a': ParseCommand('-attack', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
395 |
'S': ParseCommand('switch', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
396 |
'j': ParseCommand('ljump', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
397 |
'J': ParseCommand('hjump', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
398 |
',': ParseCommand('skip', true); |
4531
4ea193b0e378
Reenable ReadyTimer using a synced message NEEDS TESTING.
nemo
parents:
4522
diff
changeset
|
399 |
'c': begin |
4ea193b0e378
Reenable ReadyTimer using a synced message NEEDS TESTING.
nemo
parents:
4522
diff
changeset
|
400 |
s:= copy(headcmd^.str, 2, Pred(headcmd^.len)); |
4ea193b0e378
Reenable ReadyTimer using a synced message NEEDS TESTING.
nemo
parents:
4522
diff
changeset
|
401 |
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
|
402 |
end; |
10392 | 403 |
's': ParseChatCommand('chatmsg ', headcmd^.str, 2); |
404 |
'b': ParseChatCommand('chatmsg ' + #4, headcmd^.str, 2); |
|
10343
fe9853dea6c4
Finish implementation of ability to take control over your team after being disconnected. Completely untested.
unc0rr
parents:
10307
diff
changeset
|
405 |
'F': ParseCommand('teamgone u' + copy(headcmd^.str, 2, Pred(headcmd^.len)), true); |
fe9853dea6c4
Finish implementation of ability to take control over your team after being disconnected. Completely untested.
unc0rr
parents:
10307
diff
changeset
|
406 |
'G': ParseCommand('teamback u' + copy(headcmd^.str, 2, Pred(headcmd^.len)), true); |
10349
a51de45dcc42
Fix some issues with rejoining (rejoining client still desyncs though)
unc0rr
parents:
10343
diff
changeset
|
407 |
'f': ParseCommand('teamgone s' + copy(headcmd^.str, 2, Pred(headcmd^.len)), true); |
a51de45dcc42
Fix some issues with rejoining (rejoining client still desyncs though)
unc0rr
parents:
10343
diff
changeset
|
408 |
'g': ParseCommand('teamback s' + copy(headcmd^.str, 2, Pred(headcmd^.len)), true); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
409 |
'N': begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
410 |
tmpflag:= false; |
7103 | 411 |
lastTurnChecksum:= SDLNet_Read32(@headcmd^.str[2]); |
4900 | 412 |
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
|
413 |
end; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
414 |
'p': begin |
9972
feb4b031b52e
Remove X and Y from the structure since those are misaligned in c code and I failed to do anything about that and they were the last cause of desyncs and only used in 4 places and I'm too lazy
unc0rr
parents:
9521
diff
changeset
|
415 |
x32:= SDLNet_Read32(@(headcmd^.str[2])); |
9974 | 416 |
y32:= SDLNet_Read32(@(headcmd^.str[6])); |
8003 | 417 |
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
|
418 |
end; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
419 |
'P': begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
420 |
// these are equations solved for CursorPoint |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
421 |
// SDLNet_Read16(@(headcmd^.X)) == CursorPoint.X - WorldDx; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
422 |
// 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
|
423 |
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
|
424 |
begin |
9972
feb4b031b52e
Remove X and Y from the structure since those are misaligned in c code and I failed to do anything about that and they were the last cause of desyncs and only used in 4 places and I'm too lazy
unc0rr
parents:
9521
diff
changeset
|
425 |
TargetCursorPoint.X:= LongInt(SDLNet_Read32(@(headcmd^.str[2]))) + WorldDx; |
9974 | 426 |
TargetCursorPoint.Y:= cScreenHeight - LongInt(SDLNet_Read32(@(headcmd^.str[6]))) - WorldDy; |
8373
209c9ba77a09
Prevent camera from moving with auto camera disabled when remote teams are targetting
nemo
parents:
8243
diff
changeset
|
427 |
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
|
428 |
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
|
429 |
end |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
430 |
end; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
431 |
'w': ParseCommand('setweap ' + headcmd^.str[2], true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
432 |
't': ParseCommand('taunt ' + headcmd^.str[2], true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
433 |
'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
|
434 |
'1'..'5': ParseCommand('timer ' + headcmd^.cmd, true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
435 |
else |
9972
feb4b031b52e
Remove X and Y from the structure since those are misaligned in c code and I failed to do anything about that and they were the last cause of desyncs and only used in 4 places and I'm too lazy
unc0rr
parents:
9521
diff
changeset
|
436 |
if (byte(headcmd^.cmd) >= 128) and (byte(headcmd^.cmd) <= 128 + cMaxSlotIndex) then |
6874 | 437 |
ParseCommand('slot ' + char(byte(headcmd^.cmd) - 79), true) |
438 |
else |
|
439 |
OutError('Unexpected protocol command: ' + headcmd^.cmd, True) |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
440 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
441 |
RemoveCmd |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
442 |
end; |
351 | 443 |
|
2574
2f3e5c57359c
Fix (quite rare) spectators queue error when joining game with teams left the game.
unc0rr
parents:
2407
diff
changeset
|
444 |
if (headcmd <> nil) and tmpflag and (not CurrentTeam^.hasGone) then |
11532 | 445 |
checkFails(GameTicks < LongWord(hiTicks shl 16) + headcmd^.loTime, |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
446 |
'oops, queue error. in buffer: ' + headcmd^.cmd + |
4374 | 447 |
' (' + IntToStr(GameTicks) + ' > ' + |
448 |
IntToStr(hiTicks shl 16 + headcmd^.loTime) + ')', |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
449 |
true); |
4 | 450 |
|
2066 | 451 |
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
|
452 |
|
10862
4575977d3ce0
Don't spawn team widget sorter on each frame when in lag. Issue 'spectate 0' instead, and only on first lag occasion.
unc0rr
parents:
10851
diff
changeset
|
453 |
if isInLag and fastUntilLag then |
4575977d3ce0
Don't spawn team widget sorter on each frame when in lag. Issue 'spectate 0' instead, and only on first lag occasion.
unc0rr
parents:
10851
diff
changeset
|
454 |
begin |
4575977d3ce0
Don't spawn team widget sorter on each frame when in lag. Issue 'spectate 0' instead, and only on first lag occasion.
unc0rr
parents:
10851
diff
changeset
|
455 |
ParseCommand('spectate 0', true); |
4575977d3ce0
Don't spawn team widget sorter on each frame when in lag. Issue 'spectate 0' instead, and only on first lag occasion.
unc0rr
parents:
10851
diff
changeset
|
456 |
fastUntilLag:= false |
4575977d3ce0
Don't spawn team widget sorter on each frame when in lag. Issue 'spectate 0' instead, and only on first lag occasion.
unc0rr
parents:
10851
diff
changeset
|
457 |
end; |
4 | 458 |
end; |
459 |
||
4403 | 460 |
procedure chFatalError(var s: shortstring); |
461 |
begin |
|
462 |
SendIPC('E' + s); |
|
9301
c5d1c8259ef4
break uDebug and uCommand depedency loop by putting stuff in uIO
koda
parents:
9178
diff
changeset
|
463 |
// TODO: should we try to clean more stuff here? |
c5d1c8259ef4
break uDebug and uCommand depedency loop by putting stuff in uIO
koda
parents:
9178
diff
changeset
|
464 |
SDL_Quit; |
10307
e13d3147f15b
do not get stuck on "in game..." page just because of game crash. output a message instead. could still need some tweaking, but a man gotta sleep. and sheep too...
sheepluva
parents:
10306
diff
changeset
|
465 |
|
e13d3147f15b
do not get stuck on "in game..." page just because of game crash. output a message instead. could still need some tweaking, but a man gotta sleep. and sheep too...
sheepluva
parents:
10306
diff
changeset
|
466 |
if IPCSock <> nil then |
e13d3147f15b
do not get stuck on "in game..." page just because of game crash. output a message instead. could still need some tweaking, but a man gotta sleep. and sheep too...
sheepluva
parents:
10306
diff
changeset
|
467 |
halt(HaltFatalError) |
e13d3147f15b
do not get stuck on "in game..." page just because of game crash. output a message instead. could still need some tweaking, but a man gotta sleep. and sheep too...
sheepluva
parents:
10306
diff
changeset
|
468 |
else |
e13d3147f15b
do not get stuck on "in game..." page just because of game crash. output a message instead. could still need some tweaking, but a man gotta sleep. and sheep too...
sheepluva
parents:
10306
diff
changeset
|
469 |
halt(HaltFatalErrorNoIPC); |
4403 | 470 |
end; |
471 |
||
4414 | 472 |
procedure doPut(putX, putY: LongInt; fromAI: boolean); |
473 |
begin |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
474 |
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
|
475 |
exit; |
4414 | 476 |
bShowFinger:= false; |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
8003
diff
changeset
|
477 |
if (not CurrentTeam^.ExtDriven) and bShowAmmoMenu then |
4414 | 478 |
begin |
479 |
bSelected:= true; |
|
480 |
exit |
|
481 |
end; |
|
482 |
||
483 |
with CurrentHedgehog^.Gear^, |
|
484 |
CurrentHedgehog^ do |
|
10818
f642a28cab0c
Add placement of airmines in engine outside of hog proximity. Has a bug, only protecting 1st team. Also fix a spelling error and rename gstHHChooseTarget to gstChooseTarget
nemo
parents:
10663
diff
changeset
|
485 |
if (State and gstChooseTarget) <> 0 then |
4414 | 486 |
begin |
12687
ebb32d3021a5
Fix cursor still being visible after using piano strike
Wuzzy <almikes@aol.com>
parents:
12650
diff
changeset
|
487 |
if (Ammoz[CurAmmoType].Ammo.Propz and ammoprop_NoTargetAfter) <> 0 then |
12650
eaf719616c7b
Fix cursor often jumping to center when putting target while moving cursor
Wuzzy <almikes@aol.com>
parents:
11539
diff
changeset
|
488 |
isCursorVisible:= false; |
4414 | 489 |
if not CurrentTeam^.ExtDriven then |
490 |
begin |
|
491 |
if fromAI then |
|
492 |
begin |
|
493 |
TargetPoint.X:= putX; |
|
494 |
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
|
495 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
496 |
else |
4414 | 497 |
begin |
498 |
TargetPoint.X:= CursorPoint.X - WorldDx; |
|
499 |
TargetPoint.Y:= cScreenHeight - CursorPoint.Y - WorldDy; |
|
500 |
end; |
|
12789
28782e03b8f0
Fix CheckWorldWrap not correctly checking for bounce edge. Also fix teleport @ bounce edge
Wuzzy <Wuzzy2@mail.ru>
parents:
12736
diff
changeset
|
501 |
if (WorldEdge <> weBounce) then |
28782e03b8f0
Fix CheckWorldWrap not correctly checking for bounce edge. Also fix teleport @ bounce edge
Wuzzy <Wuzzy2@mail.ru>
parents:
12736
diff
changeset
|
502 |
TargetPoint.X:= CalcWorldWrap(TargetPoint.X, 0); |
4414 | 503 |
SendIPCXY('p', TargetPoint.X, TargetPoint.Y); |
504 |
end |
|
505 |
else |
|
506 |
begin |
|
12736
7cbb0241d31c
Wrap around target coordinates when clicking on other side of wrap-around world edge
Wuzzy <Wuzzy2@mail.ru>
parents:
12687
diff
changeset
|
507 |
TargetPoint.X:= CalcWorldWrap(TargetPoint.X, 0); |
4414 | 508 |
TargetPoint.X:= putX; |
509 |
TargetPoint.Y:= putY |
|
510 |
end; |
|
4900 | 511 |
AddFileLog('put: ' + inttostr(TargetPoint.X) + ', ' + inttostr(TargetPoint.Y)); |
10818
f642a28cab0c
Add placement of airmines in engine outside of hog proximity. Has a bug, only protecting 1st team. Also fix a spelling error and rename gstHHChooseTarget to gstChooseTarget
nemo
parents:
10663
diff
changeset
|
512 |
State:= State and (not gstChooseTarget); |
4414 | 513 |
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
|
514 |
Message:= Message or (gmAttack and InputMask); |
4414 | 515 |
end |
516 |
else |
|
517 |
if CurrentTeam^.ExtDriven then |
|
518 |
OutError('got /put while not being in choose target mode', false) |
|
519 |
end; |
|
520 |
||
3038 | 521 |
procedure initModule; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
522 |
begin |
6898 | 523 |
RegisterVariable('fatal', @chFatalError, true ); |
4403 | 524 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
525 |
IPCSock:= nil; |
11507 | 526 |
fds:= nil; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
527 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
528 |
headcmd:= nil; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
529 |
lastcmd:= nil; |
6982 | 530 |
isPonged:= false; |
531 |
SocketString:= ''; |
|
8330 | 532 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
533 |
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
|
534 |
flushDelayTicks:= 0; |
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8373
diff
changeset
|
535 |
sendBuffer.count:= 0; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
536 |
end; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
537 |
|
3038 | 538 |
procedure freeModule; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
539 |
begin |
7026
8d1724e1337e
split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents:
6982
diff
changeset
|
540 |
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
|
541 |
SDLNet_FreeSocketSet(fds); |
8d1724e1337e
split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents:
6982
diff
changeset
|
542 |
SDLNet_TCP_Close(IPCSock); |
8d1724e1337e
split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents:
6982
diff
changeset
|
543 |
SDLNet_Quit(); |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
8003
diff
changeset
|
544 |
|
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
545 |
end; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
546 |
|
4 | 547 |
end. |