2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2006-10-12 14:13:39 +00:00
|
|
|
#ifdef ENABLE_NETWORK
|
|
|
|
|
2004-12-04 17:54:56 +00:00
|
|
|
#include "stdafx.h"
|
2005-02-05 15:58:59 +00:00
|
|
|
#include "debug.h"
|
2004-12-04 17:54:56 +00:00
|
|
|
#include "network_data.h"
|
2006-12-18 12:26:55 +00:00
|
|
|
#include "newgrf_config.h"
|
2004-12-04 17:54:56 +00:00
|
|
|
|
|
|
|
// This file handles the GameList
|
|
|
|
// Also, it handles the request to a server for data about the server
|
|
|
|
|
2006-01-26 13:01:53 +00:00
|
|
|
/** Add a new item to the linked gamelist. If the IP and Port match
|
|
|
|
* return the existing item instead of adding it again
|
|
|
|
* @param ip the IP-address (inet_addr) of the to-be added item
|
|
|
|
* @param port the port the server is running on
|
|
|
|
* @return a point to the newly added or already existing item */
|
2004-12-04 17:54:56 +00:00
|
|
|
NetworkGameList *NetworkGameListAddItem(uint32 ip, uint16 port)
|
|
|
|
{
|
2006-01-25 19:03:50 +00:00
|
|
|
NetworkGameList *item, *prev_item;
|
2004-12-04 17:54:56 +00:00
|
|
|
|
2006-01-25 19:03:50 +00:00
|
|
|
prev_item = NULL;
|
|
|
|
for (item = _network_game_list; item != NULL; item = item->next) {
|
|
|
|
if (item->ip == ip && item->port == port) return item;
|
|
|
|
prev_item = item;
|
2004-12-04 17:54:56 +00:00
|
|
|
}
|
|
|
|
|
2006-01-25 19:03:50 +00:00
|
|
|
item = malloc(sizeof(*item));
|
2004-12-04 17:54:56 +00:00
|
|
|
memset(item, 0, sizeof(*item));
|
|
|
|
item->next = NULL;
|
|
|
|
item->ip = ip;
|
|
|
|
item->port = port;
|
2006-01-25 19:03:50 +00:00
|
|
|
|
2006-06-27 21:25:53 +00:00
|
|
|
if (prev_item == NULL) {
|
|
|
|
_network_game_list = item;
|
|
|
|
} else {
|
|
|
|
prev_item->next = item;
|
|
|
|
}
|
2006-01-25 19:03:50 +00:00
|
|
|
DEBUG(net, 4) ("[NET][GameList] Added server to list");
|
2004-12-04 17:54:56 +00:00
|
|
|
|
|
|
|
UpdateNetworkGameWindow(false);
|
|
|
|
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
2006-01-26 13:01:53 +00:00
|
|
|
/** Remove an item from the gamelist linked list
|
|
|
|
* @param remove pointer to the item to be removed */
|
2004-12-20 22:14:39 +00:00
|
|
|
void NetworkGameListRemoveItem(NetworkGameList *remove)
|
|
|
|
{
|
2006-01-25 19:03:50 +00:00
|
|
|
NetworkGameList *item, *prev_item;
|
2004-12-20 22:14:39 +00:00
|
|
|
|
2006-01-25 19:03:50 +00:00
|
|
|
prev_item = NULL;
|
|
|
|
for (item = _network_game_list; item != NULL; item = item->next) {
|
|
|
|
if (remove == item) {
|
2006-06-27 21:25:53 +00:00
|
|
|
if (prev_item == NULL) {
|
|
|
|
_network_game_list = remove->next;
|
|
|
|
} else {
|
|
|
|
prev_item->next = remove->next;
|
|
|
|
}
|
2004-12-20 22:14:39 +00:00
|
|
|
|
2006-12-18 12:26:55 +00:00
|
|
|
/* Remove GRFConfig information */
|
2006-12-20 21:17:33 +00:00
|
|
|
ClearGRFConfigList(&remove->info.grfconfig);
|
2004-12-20 22:14:39 +00:00
|
|
|
free(remove);
|
2006-12-20 21:17:33 +00:00
|
|
|
remove = NULL;
|
|
|
|
|
2004-12-20 22:14:39 +00:00
|
|
|
DEBUG(net, 4) ("[NET][GameList] Removed server from list");
|
2006-01-25 19:03:50 +00:00
|
|
|
UpdateNetworkGameWindow(false);
|
2004-12-20 22:14:39 +00:00
|
|
|
return;
|
|
|
|
}
|
2006-01-25 19:03:50 +00:00
|
|
|
prev_item = item;
|
2004-12-20 22:14:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-12-04 17:54:56 +00:00
|
|
|
#endif /* ENABLE_NETWORK */
|