Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/presentation/src/libraries/network/MasterServer.cc @ 7756

Last change on this file since 7756 was 7756, checked in by smerkli, 13 years ago

started implementing server pings, but need a change to masterservercomm soon.

File size: 8.2 KB
Line 
1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *                    > www.orxonox.net <
4 *
5 *
6 *   License notice:
7 *
8 *   This program is free software; you can redistribute it and/or
9 *   modify it under the terms of the GNU General Public License
10 *   as published by the Free Software Foundation; either version 2
11 *   of the License, or (at your option) any later version.
12 *
13 *   This program is distributed in the hope that it will be useful,
14 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 *   GNU General Public License for more details.
17 *
18 *   You should have received a copy of the GNU General Public License
19 *   along with this program; if not, write to the Free Software
20 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 *
22 *   Author:
23 *      Sandro 'smerkli' Merkli
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29#include "MasterServer.h"
30#include "util/ScopedSingletonManager.h"
31#include "core/CoreIncludes.h"
32#include "core/CorePrereqs.h"
33
34namespace orxonox
35{
36  /* helpers */
37  static void 
38  helper_output_debug( ENetEvent *event, char *addrconv )
39  {
40    COUT(4) << "A packet of length" 
41      << event->packet->dataLength
42      << " containing "
43      << (const char*)event->packet->data
44      << " was received from "
45      << addrconv
46      << " on channel "
47      << event->channelID << "\n";
48  }
49
50  void
51  MasterServer::helper_sendlist( ENetEvent *event )
52  {
53    /* get an iterator */
54    std::list<packet::ServerInformation>::iterator i;
55
56    /* packet holder */
57    ENetPacket *reply;
58
59    /* loop through list elements */
60    for( i = mainlist.serverlist.begin(); i
61        != mainlist.serverlist.end(); ++i ) 
62    {
63      /* send this particular server */
64      /* build reply string */
65      char *tosend = (char *)calloc( (*i).getServerIP().length() 
66          + MSPROTO_SERVERLIST_ITEM_LEN + 2,1 );
67      if( !tosend ) 
68      { COUT(2) << "Masterserver.cc: Memory allocation failed.\n";
69        continue;
70      } 
71      sprintf( tosend, "%s %s", MSPROTO_SERVERLIST_ITEM, 
72          (*i).getServerIP().c_str() );
73
74      /* create packet from it */
75      reply = enet_packet_create( tosend,
76          strlen( tosend ) + 1, 
77          ENET_PACKET_FLAG_RELIABLE);
78
79      /* Send the reply to the peer over channel id 0. */
80      enet_peer_send( event->peer, 0, reply );
81
82      /* One could just use enet_host_service() instead. */
83      enet_host_flush( this->server );
84
85      /* free the tosend buffer */
86      free( tosend );
87    } 
88
89    /* create end-of-list packet */
90    reply = enet_packet_create( MSPROTO_SERVERLIST_END,
91        MSPROTO_SERVERLIST_END_LEN + 1,
92        ENET_PACKET_FLAG_RELIABLE );
93
94    /* send end-of-list packet */
95    enet_peer_send( event->peer, 0, reply );
96
97    /* One could just use enet_host_service() instead. */
98    enet_host_flush( this->server );
99  }
100
101
102
103
104  /***** EVENTS *****/
105  /* connect event */
106  int 
107  MasterServer::eventConnect( ENetEvent *event )
108  { /* check for bad parameters */
109    if( !event )
110    { COUT(2) << "MasterServer::eventConnect: No event given.\n" ;
111      return -1;
112    }
113
114    /* convert address to string. */
115    char *addrconv = (char *) calloc( 50, 1 );
116    enet_address_get_host_ip( &(event->peer->address), addrconv, 49 );
117
118    /* output debug info */
119    COUT(4) << "A new client connected from " 
120      << addrconv
121      << " on port " 
122      << event->peer->address.port << "\n";
123
124    /* store string form of address here */
125    event->peer->data = addrconv; 
126
127    /* all fine. */
128    return 0;
129  }
130
131  /* disconnect event */
132  int 
133  MasterServer::eventDisconnect( ENetEvent *event )
134  { /* check for bad parameters */
135    if( !event )
136    { COUT(2) << "No event given.\n";
137      return -1;
138    }
139
140    /* output that the disconnect happened */
141    COUT(4) << (char*)event->peer->data << " disconnected.\n";
142
143    /* create string from peer data */
144    std::string name = std::string( (char*)event->peer->data );
145
146    /* remove the server from the list it belongs to */
147    this->mainlist.delServerByName( name );
148
149    /* Reset the peer's client information. */
150    if( event->peer->data ) free( event->peer->data );
151
152    /* done */
153    return 0;
154  }
155
156  /* data event */
157  int 
158  MasterServer::eventData( ENetEvent *event )
159  { /* validate packet */
160    if( !event || !(event->packet) || !(event->peer) )
161    { COUT(2) << "No complete event given.\n";
162      return -1;
163    }
164     
165    /* generate address in readable form */
166    char *addrconv = (char *) calloc( 50, 1 );
167    enet_address_get_host_ip( &(event->peer->address), addrconv, 49 );
168
169    /* output debug info about the data that has come */
170    helper_output_debug( event, addrconv );
171
172    /* GAME SERVER OR CLIENT CONNECTION? */
173    if( !strncmp( (char *)event->packet->data, MSPROTO_GAME_SERVER, 
174      MSPROTO_GAME_SERVER_LEN ) )
175    { /* Game server */
176
177      if( !strncmp( (char *)event->packet->data
178        + MSPROTO_GAME_SERVER_LEN+1, 
179        MSPROTO_REGISTER_SERVER, MSPROTO_REGISTER_SERVER_LEN ) )
180      { /* register new server */
181        mainlist.addServer( packet::ServerInformation( event ) );
182       
183        /* tell people we did so */
184        COUT(2) << "Added new server to list: " << 
185          packet::ServerInformation( event ).getServerIP() << "\n";
186      }
187
188      /* TODO add hook for disconnect here */
189    }
190    else if( !strncmp( (char *)event->packet->data, MSPROTO_CLIENT, 
191      MSPROTO_CLIENT_LEN) )
192    { /* client */
193      if( !strncmp( (char *)event->packet->data + MSPROTO_CLIENT_LEN+1,
194        MSPROTO_REQ_LIST, MSPROTO_REQ_LIST_LEN ) )
195        /* send server list */
196        helper_sendlist( event );
197    }
198    else
199    { /* bad message, don't do anything. */ } 
200
201    /* delete addrconv */
202    if( addrconv ) free( addrconv );
203
204    /* Clean up the packet now that we're done using it. */
205    enet_packet_destroy( event->packet );
206    return 0;
207  }
208
209
210  /**** MAIN ROUTINE *****/
211  int 
212  MasterServer::run()
213  {
214    /***** ENTER MAIN LOOP *****/
215    ENetEvent *event = (ENetEvent *)calloc(sizeof(ENetEvent), sizeof(char));
216    if( event == NULL )
217    { 
218      COUT(1) << "Could not create ENetEvent structure, exiting.\n";
219      exit( EXIT_FAILURE );
220    }
221
222    /* TODO schedule pings for servers somewhere here */
223   
224    /* create an iterator for the loop */
225    enet_host_service( this->server, event, 100 );
226
227    /* check what type of event it is and react accordingly */
228    switch (event->type)
229    { /* new connection */
230      case ENET_EVENT_TYPE_CONNECT: 
231        eventConnect( event ); break;
232
233        /* disconnect */
234      case ENET_EVENT_TYPE_DISCONNECT: 
235        eventDisconnect( event ); break;
236
237        /* incoming data */
238      case ENET_EVENT_TYPE_RECEIVE: eventData( event ); break;
239      default: break;
240    }
241
242    /* done */
243    return 0;
244  } 
245
246  /* constructor */
247  MasterServer::MasterServer()
248  {
249    /***** INITIALIZE NETWORKING *****/
250    if( enet_initialize () != 0)
251    { COUT(1) << "An error occurred while initializing ENet.\n";
252      exit( EXIT_FAILURE );
253    }
254
255    /* register deinitialization */
256    atexit( enet_deinitialize );
257
258    /* set the quit flag to false */
259    this->quit = false;
260
261    /* Bind the server to the default localhost and port ORX_MSERVER_PORT */
262    this->address.host = ENET_HOST_ANY;
263    this->address.port = ORX_MSERVER_PORT;
264
265    /* create a host with the above settings (the last two 0 mean: accept
266     * any input/output bandwidth */
267    this->server = enet_host_create( &this->address, ORX_MSERVER_MAXCONNS, 
268        ORX_MSERVER_MAXCHANS, 0, 0 );     
269
270    /* see if creation worked */
271    if( !this->server )
272    { COUT(1) << 
273        "An error occurred while trying to create an ENet server host.\n";
274      exit( EXIT_FAILURE );
275    }
276
277    /***** INITIALIZE GAME SERVER AND PEER LISTS *****/
278    this->peers = new PeerList();
279
280    /* tell people we're now initialized */
281    COUT(0) << "MasterServer initialized, waiting for connections.\n";
282  }
283
284  /* destructor */
285  MasterServer::~MasterServer()
286  {
287    /***** CLEANUP PROCESS *****/
288    /* terminate all networking connections */
289    enet_host_destroy( this->server );
290
291    /* free all used memory */
292    /* clear the list of connected game servers */
293    /* clear the list of connected game clients */
294  }
295
296/* end of namespace */
297}
Note: See TracBrowser for help on using the repository browser.