Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/netp5/src/network/Server.cc @ 3209

Last change on this file since 3209 was 3209, checked in by rgrieder, 15 years ago

Cleanup in network plus a few dependency reductions (no enet-function inlines, using enum PacketFlag instead of the enet version)

  • Property svn:eol-style set to native
File size: 11.1 KB
RevLine 
[1502]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:
[3084]23 *      Oliver Scheuss
[1502]24 *   Co-authors:
25 *      ...
26 *
27 */
28
29//
30// C++ Implementation: Server
31//
32// Description:
33//
34//
35// Author:  Oliver Scheuss, (C) 2007
36//
37// Copyright: See COPYING file that comes with this distribution
38//
39//
40
41#include "Server.h"
42
[2773]43#include <enet/enet.h>
[1755]44#include <cassert>
[3209]45#include <string>
[1502]46
[3209]47#include "util/Debug.h"
[2896]48#include "core/Clock.h"
[3209]49#include "core/ObjectList.h"
[1735]50#include "packet/Chat.h"
[3209]51#include "packet/ClassID.h"
52#include "packet/DeleteObjects.h"
53#include "packet/FunctionIDs.h"
54#include "packet/Gamestate.h"
[1735]55#include "packet/Welcome.h"
[2087]56#include "ChatListener.h"
[3209]57#include "ClientInformation.h"
[3084]58#include "FunctionCallManager.h"
[3209]59#include "GamestateManager.h"
[1502]60
[2171]61namespace orxonox
[1502]62{
[2087]63  const unsigned int MAX_FAILURES = 20;
[1747]64
[1502]65  /**
66  * Constructor for default values (bindaddress is set to ENET_HOST_ANY
67  *
68  */
69  Server::Server() {
70    timeSinceLastUpdate_=0;
[1735]71    gamestates_ = new GamestateManager();
[1502]72  }
[1747]73
[1502]74  Server::Server(int port){
[3201]75    this->setPort( port );
[1502]76    timeSinceLastUpdate_=0;
[1735]77    gamestates_ = new GamestateManager();
[1502]78  }
79
80  /**
81  * Constructor
82  * @param port Port to listen on
83  * @param bindAddress Address to listen on
84  */
[2087]85  Server::Server(int port, const std::string& bindAddress) {
[3201]86    this->setPort( port );
87    this->setBindAddress( bindAddress );
[1502]88    timeSinceLastUpdate_=0;
[1735]89    gamestates_ = new GamestateManager();
[1502]90  }
91
92  /**
[1907]93  * @brief Destructor
94  */
95  Server::~Server(){
96    if(gamestates_)
97      delete gamestates_;
98  }
[1502]99
100  /**
101  * This function opens the server by creating the listener thread
102  */
103  void Server::open() {
[3201]104    COUT(4) << "opening server" << endl;
105    this->openListener();
[1502]106    return;
107  }
108
109  /**
110  * This function closes the server
111  */
112  void Server::close() {
[3201]113    COUT(4) << "closing server" << endl;
114    this->disconnectClients();
115    this->closeListener();
[1502]116    return;
117  }
118
[2087]119  bool Server::processChat(const std::string& message, unsigned int playerID){
[1735]120    ClientInformation *temp = ClientInformation::getBegin();
[1907]121    packet::Chat *chat;
[1735]122    while(temp){
[1907]123      chat = new packet::Chat(message, playerID);
[1735]124      chat->setClientID(temp->getID());
125      if(!chat->send())
126        COUT(3) << "could not send Chat message to client ID: " << temp->getID() << std::endl;
[1907]127      temp = temp->next();
[1735]128    }
[2087]129//    COUT(1) << "Player " << playerID << ": " << message << std::endl;
[1907]130    return true;
[1502]131  }
132
133
134  /**
135  * Run this function once every tick
136  * calls processQueue and updateGamestate
137  * @param time time since last tick
138  */
[2896]139  void Server::update(const Clock& time) {
[3202]140    Connection::processQueue();
[3084]141    gamestates_->processGamestates();
[1502]142    //this steers our network frequency
[2896]143    timeSinceLastUpdate_+=time.getDeltaTime();
[3202]144    if(timeSinceLastUpdate_>=NETWORK_PERIOD)
145    {
[2087]146      timeSinceLastUpdate_ -= static_cast<unsigned int>( timeSinceLastUpdate_ / NETWORK_PERIOD ) * NETWORK_PERIOD;
[1502]147      updateGamestate();
[3084]148      FunctionCallManager::sendCalls();
[1502]149    }
[3202]150    sendPackets(); // flush the enet queue
[1502]151  }
[1747]152
[1735]153  bool Server::queuePacket(ENetPacket *packet, int clientID){
[3201]154    return ServerConnection::addPacket(packet, clientID);
[1735]155  }
[2087]156 
157  /**
158   * @brief: returns ping time to client in milliseconds
159   */
160  unsigned int Server::getPing(unsigned int clientID){
161    assert(ClientInformation::findClient(clientID));
162    return ClientInformation::findClient(clientID)->getRTT();
163  }
[1502]164
165  /**
[2087]166   * @brief: return packet loss ratio to client (scales from 0 to 1)
167   */
168  double Server::getPacketLoss(unsigned int clientID){
169    assert(ClientInformation::findClient(clientID));
170    return ClientInformation::findClient(clientID)->getPacketLoss();
171  }
[1502]172
173  /**
174  * takes a new snapshot of the gamestate and sends it to the clients
175  */
176  void Server::updateGamestate() {
[2662]177//     if( ClientInformation::getBegin()==NULL )
178      //no client connected
179//       return;
[1735]180    gamestates_->update();
[1534]181    COUT(5) << "Server: one gamestate update complete, goig to sendGameState" << std::endl;
[1502]182    //std::cout << "updated gamestate, sending it" << std::endl;
183    //if(clients->getGamestateID()!=GAMESTATEID_INITIAL)
184    sendGameState();
[1907]185    sendObjectDeletes();
[1534]186    COUT(5) << "Server: one sendGameState turn complete, repeat in next tick" << std::endl;
[1502]187    //std::cout << "sent gamestate" << std::endl;
188  }
189
[1735]190  bool Server::processPacket( ENetPacket *packet, ENetPeer *peer ){
191    packet::Packet *p = packet::Packet::createPacket(packet, peer);
192    return p->process();
193  }
[1747]194
[1502]195  /**
196  * sends the gamestate
197  */
198  bool Server::sendGameState() {
199    COUT(5) << "Server: starting function sendGameState" << std::endl;
[1735]200    ClientInformation *temp = ClientInformation::getBegin();
[1502]201    bool added=false;
202    while(temp != NULL){
203      if( !(temp->getSynched()) ){
204        COUT(5) << "Server: not sending gamestate" << std::endl;
205        temp=temp->next();
[1735]206        if(!temp)
207          break;
[1502]208        //think this works without continue
209        continue;
210      }
[1534]211      COUT(4) << "client id: " << temp->getID() << " RTT: " << temp->getRTT() << " loss: " << temp->getPacketLoss() << std::endl;
[1502]212      COUT(5) << "Server: doing gamestate gamestate preparation" << std::endl;
213      int gid = temp->getGamestateID(); //get gamestate id
214      int cid = temp->getID(); //get client id
215      COUT(5) << "Server: got acked (gamestate) ID from clientlist: " << gid << std::endl;
[1735]216      packet::Gamestate *gs = gamestates_->popGameState(cid);
[1502]217      if(gs==NULL){
218        COUT(2) << "Server: could not generate gamestate (NULL from compress)" << std::endl;
[2087]219        temp = temp->next();
[1502]220        continue;
221      }
222      //std::cout << "adding gamestate" << std::endl;
[1735]223      gs->setClientID(cid);
224      if ( !gs->send() ){
[1747]225        COUT(3) << "Server: packet with client id (cid): " << cid << " not sended: " << temp->getFailures() << std::endl;
[1502]226        temp->addFailure();
227      }else
228        temp->resetFailures();
229      added=true;
230      temp=temp->next();
[1735]231      // gs gets automatically deleted by enet callback
[1502]232    }
233    return true;
234  }
[1747]235
[1907]236  bool Server::sendObjectDeletes(){
237    ClientInformation *temp = ClientInformation::getBegin();
[2662]238    if( temp == NULL )
239      //no client connected
240      return true;
[1907]241    packet::DeleteObjects *del = new packet::DeleteObjects();
242    if(!del->fetchIDs())
243      return true;  //everything ok (no deletes this tick)
244//     COUT(3) << "sending DeleteObjects" << std::endl;
245    while(temp != NULL){
246      if( !(temp->getSynched()) ){
247        COUT(5) << "Server: not sending gamestate" << std::endl;
248        temp=temp->next();
249        continue;
250      }
251      int cid = temp->getID(); //get client id
252      packet::DeleteObjects *cd = new packet::DeleteObjects(*del);
253      assert(cd);
254      cd->setClientID(cid);
255      if ( !cd->send() )
256        COUT(3) << "Server: packet with client id (cid): " << cid << " not sended: " << temp->getFailures() << std::endl;
257      temp=temp->next();
258      // gs gets automatically deleted by enet callback
259    }
[3198]260    delete del;
[1907]261    return true;
262  }
[1747]263
[1907]264
[3201]265  void Server::addClient(ENetEvent *event){
[2087]266    static unsigned int newid=1;
267
268    COUT(2) << "Server: adding client" << std::endl;
[1735]269    ClientInformation *temp = ClientInformation::insertBack(new ClientInformation);
[1502]270    if(!temp){
271      COUT(2) << "Server: could not add client" << std::endl;
272    }
[2087]273    temp->setID(newid);
[1502]274    temp->setPeer(event->peer);
[2087]275
276    // inform all the listeners
[2171]277    ObjectList<ClientConnectionListener>::iterator listener = ObjectList<ClientConnectionListener>::begin();
[2087]278    while(listener){
279      listener->clientConnected(newid);
280      listener++;
281    }
282
[3201]283    ++newid;
[2087]284
[1502]285    COUT(3) << "Server: added client id: " << temp->getID() << std::endl;
[3201]286    createClient(temp->getID());
[2087]287}
[1747]288
[1502]289  bool Server::createClient(int clientID){
[1735]290    ClientInformation *temp = ClientInformation::findClient(clientID);
[1502]291    if(!temp){
292      COUT(2) << "Conn.Man. could not create client with id: " << clientID << std::endl;
293      return false;
294    }
[3084]295    COUT(5) << "Con.Man: creating client id: " << temp->getID() << std::endl;
296   
297    // synchronise class ids
[3201]298    syncClassid(temp->getID());
[3084]299   
300    // now synchronise functionIDs
301    packet::FunctionIDs *fIDs = new packet::FunctionIDs();
302    fIDs->setClientID(clientID);
303    bool b = fIDs->send();
304    assert(b);
305   
[1502]306    temp->setSynched(true);
[3084]307    COUT(4) << "sending welcome" << std::endl;
[1735]308    packet::Welcome *w = new packet::Welcome(temp->getID(), temp->getShipID());
309    w->setClientID(temp->getID());
[3084]310    b = w->send();
[1907]311    assert(b);
[1751]312    packet::Gamestate *g = new packet::Gamestate();
313    g->setClientID(temp->getID());
[3102]314    b = g->collectData(0,0x1);
[2087]315    if(!b)
316      return false; //no data for the client
[1907]317    b = g->compressData();
318    assert(b);
319    b = g->send();
320    assert(b);
[1502]321    return true;
322  }
[3198]323 
[3201]324  void Server::disconnectClient( ClientInformation *client ){
325    ServerConnection::disconnectClient( client );
[1735]326    gamestates_->removeClient(client);
[3198]327// inform all the listeners
328    ObjectList<ClientConnectionListener>::iterator listener = ObjectList<ClientConnectionListener>::begin();
329    while(listener){
330      listener->clientDisconnected(client->getID());
331      ++listener;
332    }
333    delete client; //remove client from list
[1502]334  }
[2087]335
336  bool Server::chat(const std::string& message){
337      return this->sendChat(message, Host::getPlayerID());
338  }
339
340  bool Server::broadcast(const std::string& message){
341      return this->sendChat(message, CLIENTID_UNKNOWN);
342  }
343
344  bool Server::sendChat(const std::string& message, unsigned int clientID){
[1907]345    ClientInformation *temp = ClientInformation::getBegin();
346    packet::Chat *chat;
347    while(temp){
[2087]348      chat = new packet::Chat(message, clientID);
[1907]349      chat->setClientID(temp->getID());
350      if(!chat->send())
351        COUT(3) << "could not send Chat message to client ID: " << temp->getID() << std::endl;
352      temp = temp->next();
353    }
[2087]354//    COUT(1) << "Player " << Host::getPlayerID() << ": " << message << std::endl;
[2171]355    for (ObjectList<ChatListener>::iterator it = ObjectList<ChatListener>::begin(); it != ObjectList<ChatListener>::end(); ++it)
[2087]356      it->incomingChat(message, clientID);
357
[1907]358    return true;
359  }
[1747]360
[3201]361  void Server::syncClassid(unsigned int clientID) {
362    int failures=0;
363    packet::ClassID *classid = new packet::ClassID();
364    classid->setClientID(clientID);
365    while(!classid->send() && failures < 10){
366      failures++;
367    }
368    assert(failures<10);
369    COUT(4) << "syncClassid:\tall synchClassID packets have been sent" << std::endl;
370  }
371
[1502]372}
Note: See TracBrowser for help on using the repository browser.