author | truelight |
Sun, 09 Sep 2007 23:57:47 +0000 | |
changeset 8051 | ec4e97b7b70c |
parent 6447 | 3b71e57fd22b |
permissions | -rw-r--r-- |
5720
cc0ceeafaa55
(svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents:
diff
changeset
|
1 |
/* $Id$ */ |
cc0ceeafaa55
(svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents:
diff
changeset
|
2 |
|
cc0ceeafaa55
(svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents:
diff
changeset
|
3 |
/** |
cc0ceeafaa55
(svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents:
diff
changeset
|
4 |
* @file udp.h Basic functions to receive and send UDP packets. |
5796
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
5 |
* |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
6 |
* |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
7 |
* *** Requesting game information from a server *** |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
8 |
* |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
9 |
* This describes the on-the-wire structure of the request and reply |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
10 |
* packet of the NetworkGameInfo (see game.h) data. |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
11 |
* |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
12 |
* --- Points of attention --- |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
13 |
* - all > 1 byte integral values are written in little endian, |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
14 |
* unless specified otherwise. |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
15 |
* Thus, 0x01234567 would be sent as {0x67, 0x45, 0x23, 0x01}. |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
16 |
* - all sent strings are of variable length and terminated by a '\0'. |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
17 |
* Thus, the length of the strings is not sent. |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
18 |
* - years that are leap years in the 'days since X' to 'date' calculations: |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
19 |
* (year % 4 == 0) and ((year % 100 != 0) or (year % 400 == 0)) |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
20 |
* |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
21 |
* --- Request --- |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
22 |
* Bytes: Description: |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
23 |
* 2 size of the whole packet, in this case 3 |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
24 |
* 1 type of packet, in this case PACKET_UDP_CLIENT_FIND_SERVER (0) |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
25 |
* This packet would look like: { 0x03, 0x00, 0x00 } |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
26 |
* |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
27 |
* --- Reply --- |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
28 |
* Version: Bytes: Description: |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
29 |
* all 2 size of the whole packet |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
30 |
* all 1 type of packet, in this case PACKET_UDP_SERVER_RESPONSE (1) |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
31 |
* all 1 the version of this packet's structure |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
32 |
* |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
33 |
* 4+ 1 number of GRFs attached (n) |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
34 |
* 4+ n * 20 unique identifier for GRF files. Constists of: |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
35 |
* - one 4 byte variable with the GRF ID |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
36 |
* - 16 bytes (sent sequentially) for the MD5 checksum |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
37 |
* of the GRF |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
38 |
* |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
39 |
* 3+ 4 current game date in days since 1-1-0 (DMY) |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
40 |
* 3+ 4 game introduction date in days since 1-1-0 (DMY) |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
41 |
* |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
42 |
* 2+ 1 maximum number of companies allowed on the server |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
43 |
* 2+ 1 number of companies on the server |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
44 |
* 2+ 1 maximum number of spectators allowed on the server |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
45 |
* |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
46 |
* 1+ var string with the name of the server |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
47 |
* 1+ var string with the revision of the server |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
48 |
* 1+ 1 the language run on the server |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
49 |
* (0 = any, 1 = English, 2 = German, 3 = French) |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
50 |
* 1+ 1 whether the server uses a password (0 = no, 1 = yes) |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
51 |
* 1+ 1 maximum number of clients allowed on the server |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
52 |
* 1+ 1 number of clients on the server |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
53 |
* 1+ 1 number of spectators on the server |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
54 |
* 1 & 2 2 current game date in days since 1-1-1920 (DMY) |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
55 |
* 1 & 2 2 game introduction date in days since 1-1-1920 (DMY) |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
56 |
* 1+ var string with the name of the map |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
57 |
* 1+ 2 width of the map in tiles |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
58 |
* 1+ 2 height of the map in tiles |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
59 |
* 1+ 1 type of map: |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
60 |
* (0 = temperate, 1 = arctic, 2 = desert, 3 = toyland) |
61f3b59a00e3
(svn r7888) -Change: add documentation about the 'on-the-wire' structure of the network game information request and reply packets.
rubidium
parents:
5779
diff
changeset
|
61 |
* 1+ 1 whether the server is dedicated (0 = no, 1 = yes) |
5720
cc0ceeafaa55
(svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents:
diff
changeset
|
62 |
*/ |
cc0ceeafaa55
(svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents:
diff
changeset
|
63 |
|
6447
3b71e57fd22b
(svn r8857) -Documentation: Added some doxygen @file tags, repaired others (the @file tag MUST be found before any line of code, that includes preprocessor directives).
celestar
parents:
6121
diff
changeset
|
64 |
#ifndef NETWORK_CORE_UDP_H |
3b71e57fd22b
(svn r8857) -Documentation: Added some doxygen @file tags, repaired others (the @file tag MUST be found before any line of code, that includes preprocessor directives).
celestar
parents:
6121
diff
changeset
|
65 |
#define NETWORK_CORE_UDP_H |
3b71e57fd22b
(svn r8857) -Documentation: Added some doxygen @file tags, repaired others (the @file tag MUST be found before any line of code, that includes preprocessor directives).
celestar
parents:
6121
diff
changeset
|
66 |
|
3b71e57fd22b
(svn r8857) -Documentation: Added some doxygen @file tags, repaired others (the @file tag MUST be found before any line of code, that includes preprocessor directives).
celestar
parents:
6121
diff
changeset
|
67 |
#ifdef ENABLE_NETWORK |
3b71e57fd22b
(svn r8857) -Documentation: Added some doxygen @file tags, repaired others (the @file tag MUST be found before any line of code, that includes preprocessor directives).
celestar
parents:
6121
diff
changeset
|
68 |
|
3b71e57fd22b
(svn r8857) -Documentation: Added some doxygen @file tags, repaired others (the @file tag MUST be found before any line of code, that includes preprocessor directives).
celestar
parents:
6121
diff
changeset
|
69 |
#include "os_abstraction.h" |
3b71e57fd22b
(svn r8857) -Documentation: Added some doxygen @file tags, repaired others (the @file tag MUST be found before any line of code, that includes preprocessor directives).
celestar
parents:
6121
diff
changeset
|
70 |
#include "core.h" |
3b71e57fd22b
(svn r8857) -Documentation: Added some doxygen @file tags, repaired others (the @file tag MUST be found before any line of code, that includes preprocessor directives).
celestar
parents:
6121
diff
changeset
|
71 |
#include "game.h" |
3b71e57fd22b
(svn r8857) -Documentation: Added some doxygen @file tags, repaired others (the @file tag MUST be found before any line of code, that includes preprocessor directives).
celestar
parents:
6121
diff
changeset
|
72 |
#include "packet.h" |
3b71e57fd22b
(svn r8857) -Documentation: Added some doxygen @file tags, repaired others (the @file tag MUST be found before any line of code, that includes preprocessor directives).
celestar
parents:
6121
diff
changeset
|
73 |
#include "../../debug.h" |
3b71e57fd22b
(svn r8857) -Documentation: Added some doxygen @file tags, repaired others (the @file tag MUST be found before any line of code, that includes preprocessor directives).
celestar
parents:
6121
diff
changeset
|
74 |
|
5720
cc0ceeafaa55
(svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents:
diff
changeset
|
75 |
/** Enum with all types of UDP packets. The order MUST not be changed **/ |
5870
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
76 |
enum PacketUDPType { |
5720
cc0ceeafaa55
(svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents:
diff
changeset
|
77 |
PACKET_UDP_CLIENT_FIND_SERVER, ///< Queries a game server for game information |
cc0ceeafaa55
(svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents:
diff
changeset
|
78 |
PACKET_UDP_SERVER_RESPONSE, ///< Reply of the game server with game information |
cc0ceeafaa55
(svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents:
diff
changeset
|
79 |
PACKET_UDP_CLIENT_DETAIL_INFO, ///< Queries a game server about details of the game, such as companies |
cc0ceeafaa55
(svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents:
diff
changeset
|
80 |
PACKET_UDP_SERVER_DETAIL_INFO, ///< Reply of the game server about details of the game, such as companies |
cc0ceeafaa55
(svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents:
diff
changeset
|
81 |
PACKET_UDP_SERVER_REGISTER, ///< Packet to register itself to the master server |
cc0ceeafaa55
(svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents:
diff
changeset
|
82 |
PACKET_UDP_MASTER_ACK_REGISTER, ///< Packet indicating registration has succedeed |
cc0ceeafaa55
(svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents:
diff
changeset
|
83 |
PACKET_UDP_CLIENT_GET_LIST, ///< Request for serverlist from master server |
cc0ceeafaa55
(svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents:
diff
changeset
|
84 |
PACKET_UDP_MASTER_RESPONSE_LIST, ///< Response from master server with server ip's + port's |
cc0ceeafaa55
(svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents:
diff
changeset
|
85 |
PACKET_UDP_SERVER_UNREGISTER, ///< Request to be removed from the server-list |
cc0ceeafaa55
(svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents:
diff
changeset
|
86 |
PACKET_UDP_CLIENT_GET_NEWGRFS, ///< Requests the name for a list of GRFs (GRF_ID and MD5) |
cc0ceeafaa55
(svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents:
diff
changeset
|
87 |
PACKET_UDP_SERVER_NEWGRFS, ///< Sends the list of NewGRF's requested. |
cc0ceeafaa55
(svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents:
diff
changeset
|
88 |
PACKET_UDP_END ///< Must ALWAYS be on the end of this list!! (period) |
cc0ceeafaa55
(svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents:
diff
changeset
|
89 |
}; |
cc0ceeafaa55
(svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents:
diff
changeset
|
90 |
|
5870
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
91 |
#define DECLARE_UDP_RECEIVE_COMMAND(type) virtual void NetworkPacketReceive_## type ##_command(Packet *p, const struct sockaddr_in *) |
6112
77a567235d2f
(svn r8437) -Codechange: move often duplicated (in MSU) define to the udp header.
rubidium
parents:
6016
diff
changeset
|
92 |
#define DEF_UDP_RECEIVE_COMMAND(cls, type) void cls ##NetworkUDPSocketHandler::NetworkPacketReceive_ ## type ## _command(Packet *p, const struct sockaddr_in *client_addr) |
5720
cc0ceeafaa55
(svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents:
diff
changeset
|
93 |
|
5875
4a1391019791
(svn r8083) -Codechange: make a NetworkSocketHandler as base for all sockets and move a little of NetworkClientState functionality to the NetworkSocketHandler. Move the rest of the NetworkClientState to the new NetworkTCPSocketHandler class/struct, which is not yet implemented in an object oriented manner. The UDP socket handler now extends the NetworkSocketHandler instead of having a reference to a NetworkClientState.
rubidium
parents:
5870
diff
changeset
|
94 |
/** Base socket handler for all UDP sockets */ |
4a1391019791
(svn r8083) -Codechange: make a NetworkSocketHandler as base for all sockets and move a little of NetworkClientState functionality to the NetworkSocketHandler. Move the rest of the NetworkClientState to the new NetworkTCPSocketHandler class/struct, which is not yet implemented in an object oriented manner. The UDP socket handler now extends the NetworkSocketHandler instead of having a reference to a NetworkClientState.
rubidium
parents:
5870
diff
changeset
|
95 |
class NetworkUDPSocketHandler : public NetworkSocketHandler { |
5870
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
96 |
protected: |
5875
4a1391019791
(svn r8083) -Codechange: make a NetworkSocketHandler as base for all sockets and move a little of NetworkClientState functionality to the NetworkSocketHandler. Move the rest of the NetworkClientState to the new NetworkTCPSocketHandler class/struct, which is not yet implemented in an object oriented manner. The UDP socket handler now extends the NetworkSocketHandler instead of having a reference to a NetworkClientState.
rubidium
parents:
5870
diff
changeset
|
97 |
NetworkRecvStatus CloseConnection(); |
4a1391019791
(svn r8083) -Codechange: make a NetworkSocketHandler as base for all sockets and move a little of NetworkClientState functionality to the NetworkSocketHandler. Move the rest of the NetworkClientState to the new NetworkTCPSocketHandler class/struct, which is not yet implemented in an object oriented manner. The UDP socket handler now extends the NetworkSocketHandler instead of having a reference to a NetworkClientState.
rubidium
parents:
5870
diff
changeset
|
98 |
|
5870
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
99 |
/* Declare all possible packets here. If it can be received by the |
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
100 |
* a specific handler, it has to be implemented. */ |
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
101 |
DECLARE_UDP_RECEIVE_COMMAND(PACKET_UDP_CLIENT_FIND_SERVER); |
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
102 |
DECLARE_UDP_RECEIVE_COMMAND(PACKET_UDP_SERVER_RESPONSE); |
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
103 |
DECLARE_UDP_RECEIVE_COMMAND(PACKET_UDP_CLIENT_DETAIL_INFO); |
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
104 |
DECLARE_UDP_RECEIVE_COMMAND(PACKET_UDP_SERVER_DETAIL_INFO); |
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
105 |
DECLARE_UDP_RECEIVE_COMMAND(PACKET_UDP_SERVER_REGISTER); |
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
106 |
DECLARE_UDP_RECEIVE_COMMAND(PACKET_UDP_MASTER_ACK_REGISTER); |
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
107 |
DECLARE_UDP_RECEIVE_COMMAND(PACKET_UDP_CLIENT_GET_LIST); |
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
108 |
DECLARE_UDP_RECEIVE_COMMAND(PACKET_UDP_MASTER_RESPONSE_LIST); |
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
109 |
DECLARE_UDP_RECEIVE_COMMAND(PACKET_UDP_SERVER_UNREGISTER); |
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
110 |
DECLARE_UDP_RECEIVE_COMMAND(PACKET_UDP_CLIENT_GET_NEWGRFS); |
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
111 |
DECLARE_UDP_RECEIVE_COMMAND(PACKET_UDP_SERVER_NEWGRFS); |
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
112 |
|
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
113 |
void HandleUDPPacket(Packet *p, const struct sockaddr_in *client_addr); |
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
114 |
|
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
115 |
/** |
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
116 |
* Function that is called for every GRFConfig that is read when receiving |
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
117 |
* a NetworkGameInfo. Only grfid and md5sum are set, the rest is zero. This |
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
118 |
* function must set all appropriate fields. This GRF is later appended to |
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
119 |
* the grfconfig list of the NetworkGameInfo. |
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
120 |
* @param config the GRF to handle |
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
121 |
*/ |
6116
3c464a271d89
(svn r8446) -Fix (8445): accidentally made a function that should not be abstract abstract.
rubidium
parents:
6115
diff
changeset
|
122 |
virtual void HandleIncomingNetworkGameInfoGRFConfig(GRFConfig *config) { NOT_REACHED(); } |
5870
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
123 |
public: |
6115
c5bde03ec914
(svn r8445) -Cleanup: remove some @params from comments as the parameters did not exist anymore and add comments to several variables/functions.
rubidium
parents:
6112
diff
changeset
|
124 |
/** On destructing of this class, the socket needs to be closed */ |
5870
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
125 |
virtual ~NetworkUDPSocketHandler() { this->Close(); } |
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
126 |
|
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
127 |
bool Listen(uint32 host, uint16 port, bool broadcast); |
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
128 |
void Close(); |
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
129 |
|
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
130 |
void SendPacket(Packet *p, const struct sockaddr_in *recv); |
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
131 |
void ReceivePackets(); |
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
132 |
|
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
133 |
void Send_NetworkGameInfo(Packet *p, const NetworkGameInfo *info); |
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
134 |
void Recv_NetworkGameInfo(Packet *p, NetworkGameInfo *info); |
86e55167c9e3
(svn r8078) -Codechange: rewrite UDP part of the network code to make use classes. This is only one of the many steps to really cleanup the network code.
rubidium
parents:
5796
diff
changeset
|
135 |
}; |
5720
cc0ceeafaa55
(svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents:
diff
changeset
|
136 |
|
cc0ceeafaa55
(svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents:
diff
changeset
|
137 |
#endif /* ENABLE_NETWORK */ |
cc0ceeafaa55
(svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents:
diff
changeset
|
138 |
|
cc0ceeafaa55
(svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents:
diff
changeset
|
139 |
#endif /* NETWORK_CORE_UDP_H */ |