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