author | unc0rr |
Fri, 20 Nov 2015 23:56:13 +0300 | |
branch | qmlfrontend |
changeset 11423 | 091149424aa4 |
parent 11420 | 05cf35103206 |
child 11424 | 8a5cc31483c6 |
permissions | -rw-r--r-- |
10896
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
1 |
unit uFLNet; |
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
2 |
interface |
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
3 |
|
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
4 |
procedure connectOfficialServer; |
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
5 |
|
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
6 |
procedure initModule; |
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
7 |
procedure freeModule; |
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
8 |
procedure sendNet(s: shortstring); |
11420 | 9 |
procedure sendNetLn(s: shortstring); |
10896
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
10 |
|
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
11 |
implementation |
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
12 |
uses SDLh, uFLIPC, uFLTypes, uFLUICallback, uFLNetTypes, uFLUtils; |
10931 | 13 |
|
10935 | 14 |
const endCmd: string = #10 + #10; |
10931 | 15 |
|
16 |
function getNextChar: char; forward; |
|
17 |
function getCurrChar: char; forward; |
|
18 |
||
10929 | 19 |
type |
10931 | 20 |
TNetState = (netDisconnected, netConnecting, netLoggedIn); |
10929 | 21 |
TParserState = record |
22 |
cmd: TCmdType; |
|
23 |
l: LongInt; |
|
24 |
netState: TNetState; |
|
10931 | 25 |
buf: shortstring; |
26 |
bufpos: byte; |
|
10929 | 27 |
end; |
28 |
PHandler = procedure; |
|
29 |
||
30 |
var state: TParserState; |
|
31 |
||
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
32 |
procedure handleTail; forward; |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
33 |
function getShortString: shortstring; forward; |
10929 | 34 |
|
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
35 |
// generated stuff here |
11423 | 36 |
const letters: array[0..212] of char = ('A', 'S', 'K', 'P', 'A', 'S', 'S', 'W', |
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
37 |
'O', 'R', 'D', #10, 'B', 'A', 'N', 'L', 'I', 'S', 'T', #10, 'Y', 'E', #10, 'C', |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
38 |
'H', 'A', 'T', #10, 'L', 'I', 'E', 'N', 'T', '_', 'F', 'L', 'A', 'G', 'S', #10, |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
39 |
'O', 'N', 'N', 'E', 'C', 'T', 'E', 'D', #10, 'E', 'M', #10, 'R', 'R', 'O', 'R', |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
40 |
#10, 'H', 'H', '_', 'N', 'U', 'M', #10, 'I', 'N', 'F', 'O', #10, 'J', 'O', 'I', |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
41 |
'N', 'E', 'D', #10, 'I', 'N', 'G', #10, 'K', 'I', 'C', 'K', 'E', 'D', #10, 'L', |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
42 |
'E', 'F', 'T', #10, 'O', 'B', 'B', 'Y', ':', 'J', 'O', 'I', 'N', 'E', 'D', #10, |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
43 |
'L', 'E', 'F', 'T', #10, 'N', 'I', 'C', 'K', #10, 'O', 'T', 'I', 'C', 'E', #10, |
11423 | 44 |
'P', 'I', 'N', 'G', #10, 'R', 'O', 'T', 'O', #10, 'R', 'O', 'O', 'M', #10, 'S', |
45 |
#10, 'U', 'N', 'D', '_', 'F', 'I', 'N', 'I', 'S', 'H', 'E', 'D', #10, 'U', 'N', |
|
46 |
'_', 'G', 'A', 'M', 'E', #10, 'S', 'E', 'R', 'V', 'E', 'R', '_', 'A', 'U', 'T', |
|
47 |
'H', #10, 'M', 'E', 'S', 'S', 'A', 'G', 'E', #10, 'V', 'A', 'R', 'S', #10, 'T', |
|
48 |
'E', 'A', 'M', '_', 'A', 'C', 'C', 'E', 'P', 'T', 'E', 'D', #10, 'C', 'O', 'L', |
|
49 |
'O', 'R', #10, 'W', 'A', 'R', 'N', 'I', 'N', 'G', #10, #0, #10); |
|
50 |
const commands: array[0..212] of integer = (12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
51 |
-40, 11, 7, 0, 0, 0, 0, 0, -39, 0, 0, -38, 26, 4, 0, 0, -37, 12, 0, 0, 0, 0, 0, |
|
52 |
0, 0, 0, 0, 0, -36, 0, 0, 0, 0, 0, 0, 0, 0, -35, 8, 2, -34, 0, 0, 0, 0, -33, 7, |
|
53 |
0, 0, 0, 0, 0, -32, 5, 0, 0, 0, -31, 11, 0, 0, 0, 3, 0, -30, 0, 0, 0, -29, 7, 0, |
|
54 |
0, 0, 0, 0, -28, 22, 4, 0, 0, -27, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, -26, 0, 0, |
|
55 |
0, 0, -25, 11, 4, 0, 0, -24, 0, 0, 0, 0, 0, -23, 10, 4, 0, 0, -22, 0, 0, 0, 0, |
|
56 |
-21, 28, 19, 5, 2, -20, 0, -19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, 0, 0, |
|
57 |
0, 0, 0, 0, 0, -17, 25, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, -16, 8, 0, 0, 0, 0, 0, 0, |
|
58 |
-15, 0, 0, 0, 0, -14, 20, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, |
|
59 |
0, -12, 8, 0, 0, 0, 0, 0, 0, -11, 0, -10); |
|
10929 | 60 |
|
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
61 |
procedure handler_; |
10929 | 62 |
begin |
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
63 |
sendUI(mtNetData, @state.cmd, sizeof(state.cmd)); |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
64 |
writeln('handler_'); |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
65 |
handleTail() |
10929 | 66 |
end; |
67 |
||
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
68 |
procedure handler_L; |
10929 | 69 |
begin |
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
70 |
writeln('handler_L'); |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
71 |
handleTail() |
10929 | 72 |
end; |
73 |
||
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
74 |
procedure handler_ML; |
10929 | 75 |
begin |
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
76 |
writeln('handler_ML'); |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
77 |
handleTail() |
10929 | 78 |
end; |
79 |
||
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
80 |
procedure handler_MS; |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
81 |
var cmd: TCmdParamS; |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
82 |
f: boolean; |
10929 | 83 |
begin |
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
84 |
sendUI(mtNetData, @state.cmd, sizeof(state.cmd)); |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
85 |
cmd.cmd:= Succ(state.cmd); |
10929 | 86 |
|
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
87 |
repeat |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
88 |
cmd.str1:= getShortString; |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
89 |
f:= cmd.str1[0] <> #0; |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
90 |
if f then |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
91 |
sendUI(mtNetData, @cmd, sizeof(cmd)); |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
92 |
until not f |
10929 | 93 |
end; |
94 |
||
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
95 |
procedure handler_S; |
10929 | 96 |
begin |
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
97 |
writeln('handler_S'); |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
98 |
handleTail() |
10929 | 99 |
end; |
100 |
||
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
101 |
procedure handler_SL; |
11420 | 102 |
var cmd: TCmdParamSL; |
10929 | 103 |
begin |
11420 | 104 |
cmd.cmd:= state.cmd; |
105 |
cmd.str1:= getShortString; |
|
106 |
cmd.str2:= getShortString; // FIXME should be long string |
|
107 |
sendUI(mtNetData, @cmd, sizeof(cmd)); |
|
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
108 |
handleTail() |
10929 | 109 |
end; |
110 |
||
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
111 |
procedure handler_SMS; |
10929 | 112 |
begin |
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
113 |
writeln('handler_SMS'); |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
114 |
handleTail() |
10929 | 115 |
end; |
116 |
||
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
117 |
procedure handler__i; |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
118 |
var cmd: TCmdParami; |
10929 | 119 |
begin |
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
120 |
writeln('handler__i'); |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
121 |
getShortString; |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
122 |
cmd.cmd:= state.cmd; |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
123 |
cmd.param1:= strToInt(getShortString); |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
124 |
sendUI(mtNetData, @cmd, sizeof(cmd)); |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
125 |
handleTail() |
10929 | 126 |
end; |
127 |
||
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
128 |
procedure handler_i; |
10929 | 129 |
begin |
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
130 |
writeln('handler_i'); |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
131 |
handleTail() |
10929 | 132 |
end; |
133 |
||
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
134 |
procedure handler__UNKNOWN_; |
10929 | 135 |
begin |
10931 | 136 |
writeln('[NET] Unknown cmd'); |
10929 | 137 |
end; |
138 |
||
11423 | 139 |
const handlers: array[0..30] of PHandler = (@handler__UNKNOWN_, @handler_L, @handler_MS, @handler_S, |
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
140 |
@handler_SL, @handler_L, @handler_S, @handler_, @handler_, @handler_MS, |
11423 | 141 |
@handler_MS, @handler_i, @handler_MS, @handler_L, @handler_S, @handler_SL, |
142 |
@handler_MS, @handler_SMS, @handler_, @handler_S, @handler_MS, @handler_MS, |
|
143 |
@handler_MS, @handler_L, @handler_ML, @handler__i, @handler_SMS, @handler_SL, |
|
144 |
@handler_SL, @handler_MS, @handler_S); |
|
145 |
const net2cmd: array[0..30] of TCmdType = (cmd_WARNING, cmd_WARNING, |
|
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
146 |
cmd_TEAM_COLOR, cmd_TEAM_ACCEPTED, cmd_SERVER_VARS, cmd_SERVER_MESSAGE, |
11423 | 147 |
cmd_SERVER_AUTH, cmd_RUN_GAME, cmd_ROUND_FINISHED, cmd_ROOMS, cmd_ROOM, |
148 |
cmd_PROTO, cmd_PING, cmd_NOTICE, cmd_NICK, cmd_LOBBY_LEFT, cmd_LOBBY_JOINED, |
|
149 |
cmd_LEFT, cmd_KICKED, cmd_JOINING, cmd_JOINED, cmd_INFO, cmd_HH_NUM, cmd_ERROR, |
|
150 |
cmd_EM, cmd_CONNECTED, cmd_CLIENT_FLAGS, cmd_CHAT, cmd_BYE, cmd_BANLIST, |
|
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
151 |
cmd_ASKPASSWORD); |
10929 | 152 |
|
153 |
||
11423 | 154 |
|
10929 | 155 |
// end of generated stuff |
10931 | 156 |
procedure handleTail; |
157 |
var cnt: Longint; |
|
158 |
c: char; |
|
159 |
begin |
|
160 |
state.l:= 0; |
|
161 |
||
162 |
c:= getCurrChar; |
|
163 |
repeat |
|
164 |
if c = #10 then cnt:= 0 else cnt:= 1; |
|
165 |
repeat |
|
166 |
c:= getNextChar; |
|
167 |
inc(cnt) |
|
168 |
until (c = #0) or (c = #10); |
|
169 |
until (c = #0) or (cnt = 1) |
|
170 |
end; |
|
171 |
||
10896
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
172 |
var sock: PTCPSocket; |
10900 | 173 |
netReaderThread: PSDL_Thread; |
10931 | 174 |
|
175 |
function getCurrChar: char; |
|
176 |
begin |
|
177 |
getCurrChar:= state.buf[state.bufpos] |
|
178 |
end; |
|
10900 | 179 |
|
180 |
function getNextChar: char; |
|
181 |
var r: byte; |
|
182 |
begin |
|
10931 | 183 |
if state.bufpos < byte(state.buf[0]) then |
10900 | 184 |
begin |
10931 | 185 |
inc(state.bufpos); |
10900 | 186 |
end else |
187 |
begin |
|
10931 | 188 |
r:= SDLNet_TCP_Recv(sock, @state.buf[1], 255); |
10900 | 189 |
if r > 0 then |
190 |
begin |
|
10931 | 191 |
state.bufpos:= 1; |
192 |
state.buf[0]:= char(r); |
|
10900 | 193 |
end else |
194 |
begin |
|
10931 | 195 |
state.bufpos:= 0; |
196 |
state.buf[0]:= #0; |
|
10929 | 197 |
end |
10931 | 198 |
end; |
199 |
||
200 |
getNextChar:= state.buf[state.bufpos]; |
|
10900 | 201 |
end; |
10898 | 202 |
|
203 |
function netReader(data: pointer): LongInt; cdecl; export; |
|
10929 | 204 |
var c: char; |
10933 | 205 |
ipaddr: TIPAddress; |
10898 | 206 |
begin |
10933 | 207 |
netReader:= 0; |
208 |
||
209 |
if SDLNet_ResolveHost(ipaddr, PChar('netserver.hedgewars.org'), 46631) = 0 then |
|
210 |
sock:= SDLNet_TCP_Open(ipaddr); |
|
211 |
||
212 |
repeat |
|
213 |
c:= getNextChar; |
|
214 |
//writeln('>>>>> ', c, ' [', letters[state.l], '] ', commands[state.l]); |
|
215 |
if c = #0 then |
|
216 |
state.netState:= netDisconnected |
|
217 |
else |
|
218 |
begin |
|
219 |
while (letters[state.l] <> c) and (commands[state.l] > 0) do |
|
220 |
inc(state.l, commands[state.l]); |
|
221 |
||
222 |
if c = letters[state.l] then |
|
223 |
if commands[state.l] < 0 then |
|
10931 | 224 |
begin |
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
225 |
state.cmd:= net2cmd[-10 - commands[state.l]]; |
10933 | 226 |
writeln('[NET] ', state.cmd); |
10931 | 227 |
handlers[-10 - commands[state.l]](); |
228 |
end |
|
10933 | 229 |
else |
230 |
inc(state.l) |
|
10931 | 231 |
else |
10933 | 232 |
begin |
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
233 |
handler__UNKNOWN_(); |
10933 | 234 |
handleTail() |
235 |
end |
|
10931 | 236 |
end |
10933 | 237 |
until state.netState = netDisconnected; |
10931 | 238 |
|
11420 | 239 |
SDLNet_TCP_Close(sock); |
10933 | 240 |
sock:= nil; |
241 |
||
242 |
writeln('[NET] netReader: disconnected'); |
|
10931 | 243 |
end; |
244 |
||
245 |
procedure sendNet(s: shortstring); |
|
246 |
begin |
|
247 |
writeln('[NET] Send: ', s); |
|
10935 | 248 |
ipcToNet(s + endCmd); |
249 |
end; |
|
250 |
||
11420 | 251 |
procedure sendNetLn(s: shortstring); |
252 |
begin |
|
253 |
writeln('[NET] Send: ', s); |
|
254 |
ipcToNet(s + #10); |
|
255 |
end; |
|
256 |
||
11418
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
257 |
function getShortString: shortstring; |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
258 |
var s: shortstring; |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
259 |
c: char; |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
260 |
begin |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
261 |
s[0]:= #0; |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
262 |
|
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
263 |
repeat |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
264 |
inc(s[0]); |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
265 |
s[byte(s[0])]:= getNextChar |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
266 |
until (s[0] = #255) or (s[byte(s[0])] = #10) or (s[byte(s[0])] = #0); |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
267 |
|
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
268 |
if s[byte(s[0])] = #10 then |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
269 |
dec(s[0]) |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
270 |
else |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
271 |
repeat c:= getNextChar until (c = #0) or (c = #10); |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
272 |
|
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
273 |
getShortString:= s |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
274 |
end; |
ffff8a0d1a76
Implement processing net commands in the main thread
unc0rr
parents:
11408
diff
changeset
|
275 |
|
10935 | 276 |
procedure netSendCallback(p: pointer; msg: PChar; len: Longword); |
277 |
begin |
|
278 |
// W A R N I N G: totally thread-unsafe due to use of sock variable |
|
279 |
SDLNet_TCP_Send(sock, msg, len); |
|
10898 | 280 |
end; |
10896
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
281 |
|
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
282 |
procedure connectOfficialServer; |
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
283 |
begin |
10898 | 284 |
if sock <> nil then |
10896
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
285 |
exit; |
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
286 |
|
10931 | 287 |
state.bufpos:= 0; |
288 |
state.buf:= ''; |
|
289 |
||
290 |
state.l:= 0; |
|
291 |
state.netState:= netConnecting; |
|
292 |
||
11408 | 293 |
netReaderThread:= SDL_CreateThread(@netReader, 'netReader', nil); |
11420 | 294 |
SDL_DetachThread(netReaderThread) |
10896
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
295 |
end; |
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
296 |
|
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
297 |
procedure initModule; |
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
298 |
begin |
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
299 |
sock:= nil; |
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
300 |
|
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
301 |
SDLNet_Init; |
10935 | 302 |
|
303 |
registerNetCallback(nil, @netSendCallback); |
|
10896
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
304 |
end; |
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
305 |
|
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
306 |
procedure freeModule; |
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
307 |
begin |
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
308 |
end; |
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
309 |
|
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
diff
changeset
|
310 |
end. |