2007-07-13 13:40:04 +00:00
|
|
|
#include <cstdio>
|
|
|
|
#include <cstring>
|
|
|
|
#include <cstdlib>
|
2007-05-24 20:54:08 +00:00
|
|
|
|
2007-05-27 18:31:20 +00:00
|
|
|
#include <baselib/system.h>
|
|
|
|
|
|
|
|
#include <engine/interface.h>
|
|
|
|
|
|
|
|
#include <engine/packet.h>
|
|
|
|
#include <engine/snapshot.h>
|
|
|
|
|
2007-07-13 13:40:04 +00:00
|
|
|
#include <engine/compression.h>
|
2007-05-27 18:31:20 +00:00
|
|
|
#include <engine/versions.h>
|
|
|
|
|
2007-07-13 13:40:04 +00:00
|
|
|
#include <engine/network.h>
|
|
|
|
#include <engine/config.h>
|
2007-05-27 18:31:20 +00:00
|
|
|
|
2007-07-21 18:07:27 +00:00
|
|
|
#include <mastersrv/mastersrv.h>
|
2007-05-27 18:31:20 +00:00
|
|
|
|
2007-07-13 13:40:04 +00:00
|
|
|
namespace baselib {}
|
|
|
|
using namespace baselib;
|
2007-05-27 18:31:20 +00:00
|
|
|
|
|
|
|
static snapshot_builder builder;
|
|
|
|
|
|
|
|
void *snap_new_item(int type, int id, int size)
|
|
|
|
{
|
|
|
|
dbg_assert(type >= 0 && type <=0xffff, "incorrect type");
|
|
|
|
dbg_assert(id >= 0 && id <=0xffff, "incorrect id");
|
|
|
|
return builder.new_item(type, id, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
class client
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
STATE_EMPTY = 0,
|
|
|
|
STATE_CONNECTING = 1,
|
|
|
|
STATE_INGAME = 2,
|
|
|
|
};
|
|
|
|
|
2007-07-22 09:15:34 +00:00
|
|
|
struct stored_snapshot
|
|
|
|
{
|
|
|
|
int64 send_time;
|
|
|
|
snapshot snap;
|
|
|
|
};
|
|
|
|
|
2007-05-27 18:31:20 +00:00
|
|
|
// connection state info
|
|
|
|
int state;
|
2007-07-22 09:15:34 +00:00
|
|
|
int latency;
|
2007-07-13 13:40:04 +00:00
|
|
|
|
|
|
|
int last_acked_snapshot;
|
|
|
|
snapshot_storage snapshots;
|
2007-05-27 18:31:20 +00:00
|
|
|
|
|
|
|
char name[MAX_NAME_LENGTH];
|
|
|
|
char clan[MAX_CLANNAME_LENGTH];
|
|
|
|
|
|
|
|
bool is_empty() const { return state == STATE_EMPTY; }
|
|
|
|
bool is_ingame() const { return state == STATE_INGAME; }
|
|
|
|
};
|
|
|
|
|
|
|
|
static client clients[MAX_CLIENTS];
|
|
|
|
static int current_tick = 0;
|
2007-07-13 13:40:04 +00:00
|
|
|
static net_server net;
|
2007-05-27 18:31:20 +00:00
|
|
|
|
|
|
|
int server_tick()
|
|
|
|
{
|
|
|
|
return current_tick;
|
|
|
|
}
|
|
|
|
|
|
|
|
int server_tickspeed()
|
|
|
|
{
|
2007-07-13 13:40:04 +00:00
|
|
|
return SERVER_TICK_SPEED;
|
2007-05-27 18:31:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int server_init()
|
|
|
|
{
|
|
|
|
for(int i = 0; i < MAX_CLIENTS; i++)
|
|
|
|
{
|
|
|
|
clients[i].state = client::STATE_EMPTY;
|
|
|
|
clients[i].name[0] = 0;
|
|
|
|
clients[i].clan[0] = 0;
|
2007-07-13 13:40:04 +00:00
|
|
|
//clients[i].lastactivity = 0;
|
2007-05-27 18:31:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
current_tick = 0;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int server_getclientinfo(int client_id, client_info *info)
|
|
|
|
{
|
|
|
|
dbg_assert(client_id >= 0 && client_id < MAX_CLIENTS, "client_id is not valid");
|
|
|
|
dbg_assert(info != 0, "info can not be null");
|
|
|
|
|
|
|
|
if(clients[client_id].is_ingame())
|
|
|
|
{
|
|
|
|
info->name = clients[client_id].name;
|
2007-07-22 09:15:34 +00:00
|
|
|
info->latency = clients[client_id].latency;
|
2007-05-27 18:31:20 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-07-13 13:40:04 +00:00
|
|
|
|
|
|
|
int server_send_msg(int client_id)
|
|
|
|
{
|
|
|
|
const msg_info *info = msg_get_info();
|
|
|
|
NETPACKET packet;
|
2007-07-21 19:02:47 +00:00
|
|
|
mem_zero(&packet, sizeof(NETPACKET));
|
|
|
|
|
2007-07-13 13:40:04 +00:00
|
|
|
packet.client_id = client_id;
|
|
|
|
packet.data = info->data;
|
|
|
|
packet.data_size = info->size;
|
|
|
|
|
|
|
|
if(info->flags&MSGFLAG_VITAL)
|
|
|
|
packet.flags = PACKETFLAG_VITAL;
|
2007-07-14 13:09:42 +00:00
|
|
|
|
|
|
|
if(client_id == -1)
|
|
|
|
{
|
|
|
|
// broadcast
|
|
|
|
for(int i = 0; i < MAX_CLIENTS; i++)
|
|
|
|
if(clients[i].is_ingame())
|
|
|
|
{
|
|
|
|
packet.client_id = i;
|
|
|
|
net.send(&packet);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
net.send(&packet);
|
2007-07-13 13:40:04 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: remove this class
|
2007-05-27 18:31:20 +00:00
|
|
|
class server
|
|
|
|
{
|
|
|
|
public:
|
2007-07-13 13:40:04 +00:00
|
|
|
//socket_udp4 game_socket;
|
2007-05-27 18:31:20 +00:00
|
|
|
|
|
|
|
const char *map_name;
|
|
|
|
int64 lasttick;
|
|
|
|
int64 lastheartbeat;
|
|
|
|
netaddr4 master_server;
|
|
|
|
|
|
|
|
int biggest_snapshot;
|
|
|
|
|
2007-07-26 20:07:45 +00:00
|
|
|
bool run(const char *mapname)
|
2007-05-27 18:31:20 +00:00
|
|
|
{
|
|
|
|
biggest_snapshot = 0;
|
|
|
|
|
|
|
|
net_init(); // For Windows compatibility.
|
|
|
|
map_name = mapname;
|
|
|
|
|
|
|
|
// load map
|
|
|
|
if(!map_load(mapname))
|
|
|
|
{
|
|
|
|
dbg_msg("server", "failed to load map. mapname='%s'");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// start server
|
2007-07-13 13:40:04 +00:00
|
|
|
if(!net.open(8303, 0, 0))
|
2007-05-27 18:31:20 +00:00
|
|
|
{
|
|
|
|
dbg_msg("network/server", "couldn't open socket");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-07-26 20:07:45 +00:00
|
|
|
dbg_msg("server", "server name is '%s'", config.sv_name);
|
|
|
|
dbg_msg("server", "masterserver is '%s'", config.masterserver);
|
2007-07-21 21:28:56 +00:00
|
|
|
if (net_host_lookup(config.masterserver, MASTERSERVER_PORT, &master_server) != 0)
|
2007-05-27 18:31:20 +00:00
|
|
|
{
|
|
|
|
// TODO: fix me
|
|
|
|
//master_server = netaddr4(0, 0, 0, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
mods_init();
|
|
|
|
|
|
|
|
int64 time_per_tick = time_freq()/SERVER_TICK_SPEED;
|
|
|
|
int64 time_per_heartbeat = time_freq() * 30;
|
|
|
|
int64 starttime = time_get();
|
|
|
|
//int64 lasttick = starttime;
|
|
|
|
lasttick = starttime;
|
|
|
|
lastheartbeat = 0;
|
|
|
|
|
|
|
|
int64 reporttime = time_get();
|
2007-07-21 18:07:27 +00:00
|
|
|
int reportinterval = 3;
|
|
|
|
//int64 reportinterval = time_freq()*3;
|
2007-05-27 18:31:20 +00:00
|
|
|
|
|
|
|
int64 simulationtime = 0;
|
|
|
|
int64 snaptime = 0;
|
|
|
|
int64 networktime = 0;
|
2007-07-21 18:07:27 +00:00
|
|
|
int64 totaltime = 0;
|
2007-05-27 18:31:20 +00:00
|
|
|
|
2007-07-21 18:07:27 +00:00
|
|
|
while(true)
|
2007-05-27 18:31:20 +00:00
|
|
|
{
|
|
|
|
int64 t = time_get();
|
|
|
|
if(t-lasttick > time_per_tick)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
int64 start = time_get();
|
|
|
|
tick();
|
|
|
|
simulationtime += time_get()-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
int64 start = time_get();
|
|
|
|
snap();
|
|
|
|
snaptime += time_get()-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
lasttick += time_per_tick;
|
|
|
|
}
|
|
|
|
|
2007-07-26 20:07:45 +00:00
|
|
|
if(config.sv_sendheartbeats)
|
2007-05-27 18:31:20 +00:00
|
|
|
{
|
|
|
|
if (t > lastheartbeat+time_per_heartbeat)
|
|
|
|
{
|
2007-07-21 18:07:27 +00:00
|
|
|
send_heartbeat();
|
2007-05-27 18:31:20 +00:00
|
|
|
lastheartbeat = t+time_per_heartbeat;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
int64 start = time_get();
|
|
|
|
pump_network();
|
|
|
|
networktime += time_get()-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(reporttime < time_get())
|
|
|
|
{
|
|
|
|
dbg_msg("server/report", "sim=%.02fms snap=%.02fms net=%.02fms total=%.02fms load=%.02f%%",
|
2007-07-21 18:07:27 +00:00
|
|
|
(simulationtime/reportinterval)/(double)time_freq()*1000,
|
|
|
|
(snaptime/reportinterval)/(double)time_freq()*1000,
|
|
|
|
(networktime/reportinterval)/(double)time_freq()*1000,
|
|
|
|
(totaltime/reportinterval)/(double)time_freq()*1000,
|
|
|
|
(totaltime)/reportinterval/(double)time_freq()*100.0f);
|
2007-05-27 18:31:20 +00:00
|
|
|
|
|
|
|
simulationtime = 0;
|
|
|
|
snaptime = 0;
|
|
|
|
networktime = 0;
|
2007-07-21 18:07:27 +00:00
|
|
|
totaltime = 0;
|
2007-05-27 18:31:20 +00:00
|
|
|
|
2007-07-21 18:07:27 +00:00
|
|
|
reporttime += time_freq()*reportinterval;
|
2007-05-27 18:31:20 +00:00
|
|
|
}
|
2007-07-21 18:07:27 +00:00
|
|
|
totaltime += time_get()-t;
|
2007-07-22 12:27:49 +00:00
|
|
|
thread_sleep(1);
|
2007-05-27 18:31:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mods_shutdown();
|
|
|
|
map_unload();
|
|
|
|
}
|
|
|
|
|
|
|
|
void tick()
|
|
|
|
{
|
|
|
|
current_tick++;
|
|
|
|
mods_tick();
|
|
|
|
}
|
|
|
|
|
|
|
|
void snap()
|
|
|
|
{
|
2007-07-13 13:40:04 +00:00
|
|
|
//if(current_tick&1)
|
|
|
|
// return;
|
2007-05-27 18:31:20 +00:00
|
|
|
mods_presnap();
|
|
|
|
|
|
|
|
for(int i = 0; i < MAX_CLIENTS; i++)
|
|
|
|
{
|
|
|
|
if(clients[i].is_ingame())
|
|
|
|
{
|
|
|
|
char data[MAX_SNAPSHOT_SIZE];
|
2007-07-13 13:40:04 +00:00
|
|
|
char deltadata[MAX_SNAPSHOT_SIZE];
|
2007-05-27 18:31:20 +00:00
|
|
|
char compdata[MAX_SNAPSHOT_SIZE];
|
2007-07-13 13:40:04 +00:00
|
|
|
//char intdata[MAX_SNAPSHOT_SIZE];
|
2007-05-27 18:31:20 +00:00
|
|
|
builder.start();
|
|
|
|
mods_snap(i);
|
|
|
|
|
|
|
|
// finish snapshot
|
|
|
|
int snapshot_size = builder.finish(data);
|
|
|
|
|
2007-07-13 13:40:04 +00:00
|
|
|
// remove old snapshos
|
|
|
|
// keep 1 seconds worth of snapshots
|
|
|
|
clients[i].snapshots.purge_until(current_tick-SERVER_TICK_SPEED);
|
|
|
|
|
|
|
|
// save it the snapshot
|
2007-07-22 09:15:34 +00:00
|
|
|
clients[i].snapshots.add(current_tick, time_get(), snapshot_size, data);
|
2007-07-13 13:40:04 +00:00
|
|
|
|
|
|
|
// find snapshot that we can preform delta against
|
|
|
|
static snapshot emptysnap;
|
|
|
|
emptysnap.data_size = 0;
|
|
|
|
emptysnap.num_items = 0;
|
|
|
|
|
|
|
|
snapshot *deltashot = &emptysnap;
|
|
|
|
int deltashot_size;
|
|
|
|
int delta_tick = -1;
|
|
|
|
{
|
|
|
|
void *delta_data;
|
2007-07-22 09:15:34 +00:00
|
|
|
deltashot_size = clients[i].snapshots.get(clients[i].last_acked_snapshot, 0, (void **)&delta_data);
|
2007-07-13 13:40:04 +00:00
|
|
|
if(deltashot_size >= 0)
|
|
|
|
{
|
|
|
|
delta_tick = clients[i].last_acked_snapshot;
|
|
|
|
deltashot = (snapshot *)delta_data;
|
|
|
|
}
|
2007-07-29 22:09:15 +00:00
|
|
|
else
|
|
|
|
dbg_msg("server", "no delta, sending full snapshot");
|
2007-07-13 13:40:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// create delta
|
|
|
|
int deltasize = snapshot_create_delta(deltashot, (snapshot*)data, deltadata);
|
|
|
|
|
|
|
|
if(deltasize)
|
2007-05-27 18:31:20 +00:00
|
|
|
{
|
2007-07-13 13:40:04 +00:00
|
|
|
// compress it
|
|
|
|
//int intsize = -1;
|
|
|
|
unsigned char intdata[MAX_SNAPSHOT_SIZE];
|
|
|
|
int intsize = intpack_compress(deltadata, deltasize, intdata);
|
|
|
|
|
|
|
|
int compsize = zerobit_compress(intdata, intsize, compdata);
|
|
|
|
//dbg_msg("compress", "%5d --delta-> %5d --int-> %5d --zero-> %5d %5d",
|
|
|
|
//snapshot_size, deltasize, intsize, compsize, intsize-compsize);
|
|
|
|
snapshot_size = compsize;
|
|
|
|
|
|
|
|
if(snapshot_size > biggest_snapshot)
|
|
|
|
biggest_snapshot = snapshot_size;
|
|
|
|
|
|
|
|
const int max_size = MAX_SNAPSHOT_PACKSIZE;
|
|
|
|
int numpackets = (snapshot_size+max_size-1)/max_size;
|
|
|
|
for(int n = 0, left = snapshot_size; left; n++)
|
|
|
|
{
|
|
|
|
int chunk = left < max_size ? left : max_size;
|
|
|
|
left -= chunk;
|
|
|
|
|
2007-07-29 22:09:15 +00:00
|
|
|
//if(numpackets == 1)
|
|
|
|
// msg_pack_start_system(NETMSG_SNAPSMALL, 0);
|
|
|
|
//else
|
|
|
|
msg_pack_start_system(NETMSG_SNAP, 0);
|
2007-07-13 13:40:04 +00:00
|
|
|
msg_pack_int(current_tick);
|
|
|
|
msg_pack_int(current_tick-delta_tick); // compressed with
|
|
|
|
msg_pack_int(chunk);
|
|
|
|
msg_pack_raw(&compdata[n*max_size], chunk);
|
|
|
|
msg_pack_end();
|
|
|
|
//const msg_info *info = msg_get_info();
|
|
|
|
//dbg_msg("server", "size=%d", info->size);
|
|
|
|
server_send_msg(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-07-14 13:09:42 +00:00
|
|
|
msg_pack_start_system(NETMSG_SNAPEMPTY, 0);
|
2007-07-13 13:40:04 +00:00
|
|
|
msg_pack_int(current_tick);
|
|
|
|
msg_pack_int(current_tick-delta_tick); // compressed with
|
|
|
|
msg_pack_end();
|
|
|
|
server_send_msg(i);
|
2007-05-27 18:31:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mods_postsnap();
|
|
|
|
}
|
|
|
|
|
2007-07-13 13:40:04 +00:00
|
|
|
void send_map(int cid)
|
2007-05-27 18:31:20 +00:00
|
|
|
{
|
2007-07-14 13:09:42 +00:00
|
|
|
msg_pack_start_system(NETMSG_MAP, MSGFLAG_VITAL);
|
2007-07-13 13:40:04 +00:00
|
|
|
msg_pack_string(map_name, 0);
|
|
|
|
msg_pack_end();
|
|
|
|
server_send_msg(cid);
|
2007-05-27 18:31:20 +00:00
|
|
|
}
|
2007-07-21 18:07:27 +00:00
|
|
|
|
|
|
|
void send_heartbeat()
|
|
|
|
{
|
|
|
|
dbg_msg("server", "sending heartbeat");
|
|
|
|
NETPACKET packet;
|
|
|
|
packet.client_id = -1;
|
|
|
|
packet.address = master_server;
|
|
|
|
packet.flags = PACKETFLAG_CONNLESS;
|
|
|
|
packet.data_size = sizeof(SERVERBROWSE_HEARTBEAT);
|
|
|
|
packet.data = SERVERBROWSE_HEARTBEAT;
|
|
|
|
net.send(&packet);
|
|
|
|
}
|
2007-05-27 18:31:20 +00:00
|
|
|
|
|
|
|
void drop(int cid, const char *reason)
|
|
|
|
{
|
|
|
|
if(clients[cid].state == client::STATE_EMPTY)
|
|
|
|
return;
|
|
|
|
|
|
|
|
clients[cid].state = client::STATE_EMPTY;
|
|
|
|
mods_client_drop(cid);
|
|
|
|
dbg_msg("game", "player dropped. reason='%s' cid=%x name='%s'", reason, cid, clients[cid].name);
|
|
|
|
}
|
|
|
|
|
2007-07-13 13:40:04 +00:00
|
|
|
void process_client_packet(NETPACKET *packet)
|
2007-05-27 18:31:20 +00:00
|
|
|
{
|
2007-07-13 13:40:04 +00:00
|
|
|
int cid = packet->client_id;
|
2007-07-14 13:09:42 +00:00
|
|
|
int sys;
|
|
|
|
int msg = msg_unpack_start(packet->data, packet->data_size, &sys);
|
|
|
|
if(sys)
|
2007-05-27 18:31:20 +00:00
|
|
|
{
|
2007-07-14 13:09:42 +00:00
|
|
|
// system message
|
|
|
|
if(msg == NETMSG_INFO)
|
|
|
|
{
|
|
|
|
strncpy(clients[cid].name, msg_unpack_string(), MAX_NAME_LENGTH);
|
|
|
|
strncpy(clients[cid].clan, msg_unpack_string(), MAX_CLANNAME_LENGTH);
|
|
|
|
const char *password = msg_unpack_string();
|
|
|
|
const char *skin = msg_unpack_string();
|
|
|
|
(void)password; // ignore these variables
|
|
|
|
(void)skin;
|
|
|
|
send_map(cid);
|
|
|
|
}
|
|
|
|
else if(msg == NETMSG_ENTERGAME)
|
|
|
|
{
|
2007-07-25 07:24:57 +00:00
|
|
|
if(clients[cid].state != client::STATE_INGAME)
|
|
|
|
{
|
|
|
|
dbg_msg("game", "player as entered the game. cid=%x", cid);
|
|
|
|
clients[cid].state = client::STATE_INGAME;
|
|
|
|
mods_client_enter(cid);
|
|
|
|
}
|
2007-07-14 13:09:42 +00:00
|
|
|
}
|
|
|
|
else if(msg == NETMSG_INPUT)
|
|
|
|
{
|
|
|
|
int input[MAX_INPUT_SIZE];
|
|
|
|
int size = msg_unpack_int();
|
|
|
|
for(int i = 0; i < size/4; i++)
|
|
|
|
input[i] = msg_unpack_int();
|
|
|
|
mods_client_input(cid, input);
|
|
|
|
}
|
|
|
|
else if(msg == NETMSG_SNAPACK)
|
|
|
|
{
|
|
|
|
clients[cid].last_acked_snapshot = msg_unpack_int();
|
2007-07-22 09:15:34 +00:00
|
|
|
int64 tagtime;
|
|
|
|
if(clients[cid].snapshots.get(clients[cid].last_acked_snapshot, &tagtime, 0) >= 0)
|
|
|
|
clients[cid].latency = (int)(((time_get()-tagtime)*1000)/time_freq());
|
2007-07-14 13:09:42 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dbg_msg("server", "strange message cid=%d msg=%d data_size=%d", cid, msg, packet->data_size);
|
|
|
|
}
|
2007-05-27 18:31:20 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-07-14 13:09:42 +00:00
|
|
|
// game message
|
|
|
|
mods_message(msg, cid);
|
2007-05-27 18:31:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-13 13:40:04 +00:00
|
|
|
void process_packet(NETPACKET *packet)
|
2007-05-27 18:31:20 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void client_timeout(int clientId)
|
|
|
|
{
|
|
|
|
drop(clientId, "client timedout");
|
|
|
|
}
|
|
|
|
|
2007-07-21 18:07:27 +00:00
|
|
|
void send_serverinfo(NETADDR4 *addr)
|
|
|
|
{
|
|
|
|
NETPACKET packet;
|
|
|
|
|
|
|
|
data_packer packer;
|
|
|
|
packer.reset();
|
|
|
|
packer.add_raw(SERVERBROWSE_INFO, sizeof(SERVERBROWSE_INFO));
|
2007-07-26 20:07:45 +00:00
|
|
|
packer.add_string(config.sv_name, 128);
|
2007-07-21 18:07:27 +00:00
|
|
|
packer.add_string(map_name, 128);
|
2007-07-26 19:26:36 +00:00
|
|
|
packer.add_int(MAX_CLIENTS); // max_players
|
|
|
|
int c = 0;
|
|
|
|
for(int i = 0; i < MAX_CLIENTS; i++)
|
|
|
|
{
|
|
|
|
if(!clients[i].is_empty())
|
|
|
|
c++;
|
|
|
|
}
|
|
|
|
packer.add_int(c); // num_players
|
2007-07-21 18:07:27 +00:00
|
|
|
|
|
|
|
packet.client_id = -1;
|
|
|
|
packet.address = *addr;
|
|
|
|
packet.flags = PACKETFLAG_CONNLESS;
|
|
|
|
packet.data_size = packer.size();
|
|
|
|
packet.data = packer.data();
|
|
|
|
net.send(&packet);
|
|
|
|
}
|
|
|
|
|
2007-07-21 21:28:56 +00:00
|
|
|
|
|
|
|
void send_fwcheckresponse(NETADDR4 *addr)
|
|
|
|
{
|
|
|
|
NETPACKET packet;
|
|
|
|
packet.client_id = -1;
|
|
|
|
packet.address = *addr;
|
|
|
|
packet.flags = PACKETFLAG_CONNLESS;
|
|
|
|
packet.data_size = sizeof(SERVERBROWSE_FWRESPONSE);
|
|
|
|
packet.data = SERVERBROWSE_FWRESPONSE;
|
|
|
|
net.send(&packet);
|
|
|
|
}
|
|
|
|
|
2007-05-27 18:31:20 +00:00
|
|
|
void pump_network()
|
|
|
|
{
|
2007-07-13 13:40:04 +00:00
|
|
|
net.update();
|
|
|
|
|
|
|
|
// process packets
|
|
|
|
NETPACKET packet;
|
|
|
|
while(net.recv(&packet))
|
|
|
|
{
|
|
|
|
if(packet.client_id == -1)
|
|
|
|
{
|
|
|
|
// stateless
|
2007-07-21 18:07:27 +00:00
|
|
|
if(packet.data_size == sizeof(SERVERBROWSE_GETINFO) &&
|
|
|
|
memcmp(packet.data, SERVERBROWSE_GETINFO, sizeof(SERVERBROWSE_GETINFO)) == 0)
|
|
|
|
{
|
|
|
|
send_serverinfo(&packet.address);
|
2007-07-21 21:28:56 +00:00
|
|
|
}
|
|
|
|
else if(packet.data_size == sizeof(SERVERBROWSE_FWCHECK) &&
|
|
|
|
memcmp(packet.data, SERVERBROWSE_FWCHECK, sizeof(SERVERBROWSE_FWCHECK)) == 0)
|
|
|
|
{
|
|
|
|
send_fwcheckresponse(&packet.address);
|
|
|
|
}
|
|
|
|
else if(packet.data_size == sizeof(SERVERBROWSE_FWOK) &&
|
|
|
|
memcmp(packet.data, SERVERBROWSE_FWOK, sizeof(SERVERBROWSE_FWOK)) == 0)
|
|
|
|
{
|
|
|
|
dbg_msg("server", "no firewall/nat problems detected");
|
|
|
|
}
|
|
|
|
else if(packet.data_size == sizeof(SERVERBROWSE_FWERROR) &&
|
|
|
|
memcmp(packet.data, SERVERBROWSE_FWERROR, sizeof(SERVERBROWSE_FWERROR)) == 0)
|
|
|
|
{
|
2007-07-23 13:17:26 +00:00
|
|
|
dbg_msg("server", "ERROR: the master server reports that clients can not connect to this server.");
|
|
|
|
dbg_msg("server", "ERROR: configure your firewall/nat to let trough udp on port %d.", 8303);
|
2007-07-21 18:07:27 +00:00
|
|
|
}
|
2007-07-13 13:40:04 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
process_client_packet(&packet);
|
|
|
|
}
|
|
|
|
|
|
|
|
// check for removed clients
|
2007-05-27 18:31:20 +00:00
|
|
|
while(1)
|
|
|
|
{
|
2007-07-13 13:40:04 +00:00
|
|
|
int cid = net.delclient();
|
|
|
|
if(cid == -1)
|
2007-05-27 18:31:20 +00:00
|
|
|
break;
|
2007-07-13 13:40:04 +00:00
|
|
|
|
|
|
|
clients[cid].state = client::STATE_EMPTY;
|
|
|
|
clients[cid].name[0] = 0;
|
|
|
|
clients[cid].clan[0] = 0;
|
|
|
|
clients[cid].snapshots.purge_all();
|
|
|
|
|
|
|
|
mods_client_drop(cid);
|
|
|
|
}
|
|
|
|
|
|
|
|
// check for new clients
|
|
|
|
while(1)
|
|
|
|
{
|
|
|
|
int cid = net.newclient();
|
|
|
|
if(cid == -1)
|
|
|
|
break;
|
|
|
|
|
|
|
|
clients[cid].state = client::STATE_CONNECTING;
|
|
|
|
clients[cid].name[0] = 0;
|
|
|
|
clients[cid].clan[0] = 0;
|
|
|
|
clients[cid].snapshots.purge_all();
|
|
|
|
clients[cid].last_acked_snapshot = -1;
|
2007-05-27 18:31:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
dbg_msg("server", "starting...");
|
|
|
|
|
2007-07-13 13:40:04 +00:00
|
|
|
config_reset();
|
2007-07-24 22:53:43 +00:00
|
|
|
config_load("default.cfg");
|
2007-07-13 13:40:04 +00:00
|
|
|
|
2007-07-30 19:46:31 +00:00
|
|
|
const char *mapname = "dm1";
|
2007-07-13 13:40:04 +00:00
|
|
|
|
2007-05-27 18:31:20 +00:00
|
|
|
// parse arguments
|
|
|
|
for(int i = 1; i < argc; i++)
|
|
|
|
{
|
|
|
|
if(argv[i][0] == '-' && argv[i][1] == 'm' && argv[i][2] == 0 && argc - i > 1)
|
|
|
|
{
|
|
|
|
// -m map
|
|
|
|
i++;
|
|
|
|
mapname = argv[i];
|
|
|
|
}
|
|
|
|
else if(argv[i][0] == '-' && argv[i][1] == 'n' && argv[i][2] == 0 && argc - i > 1)
|
|
|
|
{
|
|
|
|
// -n server name
|
|
|
|
i++;
|
2007-07-26 20:07:45 +00:00
|
|
|
config_set_sv_name(&config, argv[i]);
|
2007-05-27 18:31:20 +00:00
|
|
|
}
|
|
|
|
else if(argv[i][0] == '-' && argv[i][1] == 'p' && argv[i][2] == 0)
|
|
|
|
{
|
|
|
|
// -p (private server)
|
2007-07-26 20:07:45 +00:00
|
|
|
config_set_sv_sendheartbeats(&config, 0);
|
2007-05-27 18:31:20 +00:00
|
|
|
}
|
2007-07-13 13:40:04 +00:00
|
|
|
else if(argv[i][0] == '-' && argv[i][1] == 'o' && argv[i][2] == 0)
|
|
|
|
{
|
|
|
|
// -o port
|
|
|
|
i++;
|
|
|
|
config_set_sv_port(&config, atol(argv[i]));
|
|
|
|
}
|
2007-05-27 18:31:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(!mapname)
|
|
|
|
{
|
|
|
|
dbg_msg("server", "no map given (-m MAPNAME)");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
server_init();
|
|
|
|
server s;
|
2007-07-26 20:07:45 +00:00
|
|
|
s.run(mapname);
|
2007-05-27 18:31:20 +00:00
|
|
|
return 0;
|
|
|
|
}
|