summaryrefslogtreecommitdiff
path: root/network.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2006-12-18 12:26:55 +0000
committerrubidium <rubidium@openttd.org>2006-12-18 12:26:55 +0000
commit32db875d978fd59c6dc941c61d331d4a1b20a24a (patch)
tree5c4580a0208b984837b37eddd6bec260cc6587cd /network.h
parentf010066c1b43489cc2e88df038c6c3e568114738 (diff)
downloadopenttd-32db875d978fd59c6dc941c61d331d4a1b20a24a.tar.xz
(svn r7505) -Feature: show NewGRFs used on a game server, show which NewGRFs you do and do not have.
-Feature: show NewGRF compatability of network games in the Game List window; a green square if you got the same OpenTTD version and have the needed NewGRF, a red square if the version does not match and a yellow square if the version matches, but the client is missing at least one of the NewGRFs.
Diffstat (limited to 'network.h')
-rw-r--r--network.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/network.h b/network.h
index 1b3416a51..5453658e4 100644
--- a/network.h
+++ b/network.h
@@ -54,6 +54,17 @@ enum {
NETWORK_CLIENT_NAME_LENGTH = 25,
NETWORK_RCONCOMMAND_LENGTH = 500,
+ NETWORK_GRF_NAME_LENGTH = 80, ///< Maximum length of the name of a GRF
+ /* Maximum number of GRFs that can be sent.
+ * This value is related to number of handles (files) OpenTTD can open.
+ * This is currently 64 and about 10 are currently used when OpenTTD loads
+ * without any NewGRFs. Therefore one can only load about 55 NewGRFs, so
+ * this is not a limit, but rather a way to easily check whether the limit
+ * imposed by the handle count is reached. Secondly it isn't possible to
+ * send much more GRF IDs + MD5sums in the PACKET_UDP_SERVER_RESPONSE, due
+ * to the limited size of UDP packets. */
+ NETWORK_MAX_GRF_COUNT = 55,
+
NETWORK_NUM_LANGUAGES = 4,
};
@@ -66,7 +77,8 @@ typedef struct NetworkGameInfo {
char server_revision[NETWORK_REVISION_LENGTH]; // The SVN version number the server is using (e.g.: 'r304')
// It even shows a SVN version in release-version, so
// it is easy to compare if a server is of the correct version
- bool compatible; // Can we connect to this server or not? (based on server_revision)
+ bool version_compatible; // Can we connect to this server or not? (based on server_revision)
+ bool compatible; // Can we connect to this server or not? (based on server_revision _and_ grf_match
byte server_lang; // Language of the server (we should make a nice table for this)
byte use_password; // Is set to != 0 if it uses a password
char server_password[NETWORK_PASSWORD_LENGTH]; // On the server: the game password, on the client: != "" if server has password
@@ -84,6 +96,7 @@ typedef struct NetworkGameInfo {
byte map_set; // Graphical set
bool dedicated; // Is this a dedicated server?
char rcon_password[NETWORK_PASSWORD_LENGTH]; // RCon password for the server. "" if rcon is disabled
+ struct GRFConfig *grfconfig; // List of NewGRF files required
} NetworkGameInfo;
typedef struct NetworkPlayerInfo {