Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/proxy/src/lib/network/network_stream.cc @ 9534

Last change on this file since 9534 was 9534, checked in by patrick, 18 years ago

forgot about the server clients host id

File size: 34.5 KB
Line 
1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11### File Specific:
12   main-programmer: Christoph Renner rennerc@ee.ethz.ch
13   co-programmer:   Patrick Boenzli  boenzlip@orxonox.ethz.ch
14
15     June 2006: finishing work on the network stream for pps presentation (rennerc@ee.ethz.ch)
16     July 2006: some code rearangement and integration of the proxy server mechanism (boenzlip@ee.ethz.ch)
17*/
18
19
20#define DEBUG_MODULE_NETWORK
21
22
23#include "base_object.h"
24#include "network_protocol.h"
25#include "udp_socket.h"
26#include "udp_server_socket.h"
27#include "monitor/connection_monitor.h"
28#include "monitor/network_monitor.h"
29#include "synchronizeable.h"
30#include "ip.h"
31#include "network_game_manager.h"
32#include "shared_network_data.h"
33#include "message_manager.h"
34#include "preferences.h"
35#include "zip.h"
36
37#include "src/lib/util/loading/resource_manager.h"
38
39#include "network_log.h"
40
41#include "player_stats.h"
42
43#include "lib/util/loading/factory.h"
44
45#include "debug.h"
46#include "class_list.h"
47#include <algorithm>
48
49
50#include "network_stream.h"
51
52
53#include "converter.h"
54
55
56#define PACKAGE_SIZE  256
57
58
59/**
60 * empty constructor
61 */
62NetworkStream::NetworkStream()
63    : DataStream()
64{
65  this->init();
66  /* initialize the references */
67  this->pInfo->nodeType = NET_UNASSIGNED;
68}
69
70
71NetworkStream::NetworkStream( int nodeType)
72{
73  this->init();
74
75  this->pInfo->nodeType = nodeType;
76
77  switch( nodeType)
78  {
79    case NET_MASTER_SERVER:
80      // init the shared network data
81      SharedNetworkData::getInstance()->setHostID(NET_ID_MASTER_SERVER);
82      break;
83    case NET_PROXY_SERVER_ACTIVE:
84      // init the shared network data
85      SharedNetworkData::getInstance()->setHostID(NET_ID_PROXY_SERVER_01);
86      break;
87    case NET_PROXY_SERVER_PASSIVE:
88      // init the shared network data
89      SharedNetworkData::getInstance()->setHostID(NET_ID_PROXY_SERVER_01);
90      break;
91    case NET_CLIENT:
92      SharedNetworkData::getInstance()->setHostID(NET_ID_UNASSIGNED);
93      break;
94  }
95
96  SharedNetworkData::getInstance()->setDefaultSyncStream(this);
97
98  // get the local ip address
99  IPaddress ip;
100  SDLNet_ResolveHost( &ip, NULL, 0);
101  this->pInfo->ip = ip;
102}
103
104
105
106/**
107 * generic init functions
108 */
109void NetworkStream::init()
110{
111  /* set the class id for the base object */
112  this->setClassID(CL_NETWORK_STREAM, "NetworkStream");
113  this->clientSocket = NULL;
114  this->proxySocket = NULL;
115  this->networkGameManager = NULL;
116  this->networkMonitor = NULL;
117
118  this->pInfo = new PeerInfo();
119  this->pInfo->userId = 0;
120  this->pInfo->lastAckedState = 0;
121  this->pInfo->lastRecvedState = 0;
122
123  this->bRedirect = false;
124
125  this->currentState = 0;
126
127  remainingBytesToWriteToDict = Preferences::getInstance()->getInt( "compression", "writedict", 0 );
128
129  assert( Zip::getInstance()->loadDictionary( "testdict" ) >= 0 );
130  this->dictClient = Zip::getInstance()->loadDictionary( "dict2pl_client" );
131  assert( this->dictClient >= 0 );
132  this->dictServer = Zip::getInstance()->loadDictionary( "dict2p_server" );
133  assert( this->dictServer >= 0 );
134}
135
136
137/**
138 * deconstructor
139 */
140NetworkStream::~NetworkStream()
141{
142  if ( this->clientSocket )
143  {
144    clientSocket->close();
145    delete clientSocket;
146    clientSocket = NULL;
147  }
148  if ( this->proxySocket)
149  {
150    proxySocket->close();
151    delete proxySocket;
152    proxySocket = NULL;
153  }
154  for ( PeerList::iterator i = peers.begin(); i!=peers.end(); i++)
155  {
156    if ( i->second.socket )
157    {
158      i->second.socket->disconnectServer();
159      delete i->second.socket;
160      i->second.socket = NULL;
161    }
162
163    if ( i->second.handshake )
164    {
165      delete i->second.handshake;
166      i->second.handshake = NULL;
167    }
168
169    if ( i->second.connectionMonitor )
170    {
171      delete i->second.connectionMonitor;
172      i->second.connectionMonitor = NULL;
173    }
174  }
175  for ( SynchronizeableList::const_iterator it = getSyncBegin(); it != getSyncEnd(); it ++ )
176    (*it)->setNetworkStream( NULL );
177
178  if( this->pInfo)
179    delete this->pInfo;
180
181  if( this->networkMonitor)
182    delete this->networkMonitor;
183}
184
185
186/**
187 * establish a connection to a remote master server
188 * @param host: host name
189 * @param port: the port number
190 */
191void NetworkStream::connectToMasterServer(std::string host, int port)
192{
193  int node = NET_ID_MASTER_SERVER;
194  // this create the new node in the peers map
195  this->peers[node].socket = new UdpSocket( host, port );
196  this->peers[node].userId = NET_ID_MASTER_SERVER;
197
198  this->peers[node].nodeType = NET_MASTER_SERVER;
199  this->peers[node].connectionMonitor = new ConnectionMonitor( NET_ID_MASTER_SERVER );
200  this->peers[node].ip = this->peers[node].socket->getRemoteAddress();
201}
202
203
204/**
205 * establish a connection to a remote proxy server
206 * @param host: host name
207 * @param port: the port number
208 */
209void NetworkStream::connectToProxyServer(int proxyId, std::string host, int port)
210{
211  PRINTF(0)("connect to proxy %s, this is proxyId %i\n", host.c_str(), proxyId);
212
213  // this creates the new proxyId in the peers map
214  this->peers[proxyId].socket = new UdpSocket( host, port );
215  this->peers[proxyId].userId = proxyId;
216
217  this->peers[proxyId].nodeType = NET_PROXY_SERVER_ACTIVE;
218  this->peers[proxyId].connectionMonitor = new ConnectionMonitor( proxyId );
219  this->peers[proxyId].ip = this->peers[proxyId].socket->getRemoteAddress();
220}
221
222
223/**
224 * create a server
225 * @param port: interface port for all clients
226 */
227void NetworkStream::createServer(int clientPort, int proxyPort)
228{
229  PRINTF(0)(" Creating new Server: listening for clients on port %i and for proxies on port %i", clientPort, proxyPort);
230  this->clientSocket= new UdpServerSocket(clientPort);
231  this->proxySocket = new UdpServerSocket(proxyPort);
232}
233
234
235/**
236 * creates a new instance of the network game manager
237 */
238void NetworkStream::createNetworkGameManager()
239{
240  this->networkGameManager = NetworkGameManager::getInstance();
241
242  this->networkGameManager->setUniqueID( SharedNetworkData::getInstance()->getNewUniqueID() );
243  MessageManager::getInstance()->setUniqueID( SharedNetworkData::getInstance()->getNewUniqueID() );
244}
245
246
247/**
248 * starts the network handshake
249 * handsakes are always initialized from the client side first. this starts the handshake and therefore is only
250 * executed as client
251 * @param userId: start handshake for this user id (optional, default == 0)
252 */
253void NetworkStream::startHandshake(int userId)
254{
255  Handshake* hs = new Handshake(this->pInfo->nodeType);
256  // fake the unique id
257  hs->setUniqueID( NET_UID_HANDSHAKE );
258  assert( peers[userId].handshake == NULL );
259  peers[userId].handshake = hs;
260
261  // set the preferred nick name
262  hs->setPreferedNickName( Preferences::getInstance()->getString( "multiplayer", "nickname", "Player" ) );
263
264  PRINTF(0)("NetworkStream: Handshake created: %s\n", hs->getCName());
265}
266
267
268/**
269 * this functions connects a synchronizeable to the networkstream, therefore synchronizeing
270 * it all over the network and creating it on the other platforms (if and only if it is a
271 * server
272 * @param sync: the synchronizeable to add
273 */
274void NetworkStream::connectSynchronizeable(Synchronizeable& sync)
275{
276  this->synchronizeables.push_back(&sync);
277  sync.setNetworkStream( this );
278}
279
280
281/**
282 * removes the synchronizeable from the list of synchronized entities
283 * @param sync: the syncronizeable to remove
284 */
285void NetworkStream::disconnectSynchronizeable(Synchronizeable& sync)
286{
287  // removing the Synchronizeable from the List.
288  std::list<Synchronizeable*>::iterator disconnectSynchro = std::find(this->synchronizeables.begin(), this->synchronizeables.end(), &sync);
289  if (disconnectSynchro != this->synchronizeables.end())
290    this->synchronizeables.erase(disconnectSynchro);
291
292  oldSynchronizeables[sync.getUniqueID()] = SDL_GetTicks();
293}
294
295
296/**
297 * this is called to process data from the network socket to the synchronizeable and vice versa
298 */
299void NetworkStream::processData()
300{
301  // create the network monitor after all the init work and before there is any connection handlings
302  if( this->networkMonitor == NULL)
303    this->networkMonitor = new NetworkMonitor(this);
304
305
306  int tick = SDL_GetTicks();
307
308  this->currentState++;
309  // there was a wrap around
310  if( this->currentState < 0)
311  {
312    PRINTF(1)("A wrap around in the state variable as occured. The server was running so long? Pls restart server or write a mail to the supporters!\n");
313  }
314
315  if ( SharedNetworkData::getInstance()->isMasterServer())
316  {
317    // execute everytthing the master server shoudl do
318    if ( this->clientSocket )
319      this->clientSocket->update();
320    if( this->proxySocket)
321      this->proxySocket->update();
322
323    this->updateConnectionList();
324  }
325  else if( SharedNetworkData::getInstance()->isProxyServerActive())
326  {
327    //execute everything the proxy server should do
328    if ( this->clientSocket )
329      this->clientSocket->update();
330    if( this->proxySocket)
331      this->proxySocket->update();
332
333    this->updateConnectionList();
334  }
335
336#warning make this more modular: every proxy/master server connection should be watched for termination
337  if( !SharedNetworkData::getInstance()->isMasterServer())
338  {
339    // check if the connection is ok else terminate and remove
340    if ( !peers.empty() && peers[NET_ID_MASTER_SERVER].socket &&
341          ( !peers[NET_ID_MASTER_SERVER].socket->isOk() ||
342          peers[NET_ID_MASTER_SERVER].connectionMonitor->hasTimedOut() ) )
343    {
344      this->handleDisconnect( NET_ID_MASTER_SERVER);
345      PRINTF(1)("lost connection to server\n");
346    }
347    // check if there is a redirection command
348    if( this->bRedirect)
349    {
350      this->handleReconnect( NET_ID_MASTER_SERVER);
351    }
352  }
353
354  this->cleanUpOldSyncList();
355  this->handleHandshakes();
356
357  // update the network monitor
358  this->networkMonitor->process();
359
360  // order of up/downstream is important!!!!
361  // don't change it
362  this->handleDownstream( tick );
363  this->handleUpstream( tick );
364}
365
366
367/**
368 * @brief handles incoming connections
369 *
370 * if we are a NET_MASTER_SERVER or NET_PROXY_SERVER_ACTIVE update the connection list to accept new connections (clients)
371 * start and initialize the handsake for the new clients
372 */
373void NetworkStream::updateConnectionList( )
374{
375  //check for new connections
376
377  NetworkSocket* tempNetworkSocket = NULL;
378  int userId;
379
380  if( this->clientSocket != NULL)
381  {
382    tempNetworkSocket = this->clientSocket->getNewSocket();
383
384    // we got new NET_CLIENT connecting
385    if ( tempNetworkSocket )
386    {
387      // determine the network node id
388      if ( freeSocketSlots.size() > 0 )
389      {
390        // this should never be called
391        assert(false);
392        userId = freeSocketSlots.back();
393        freeSocketSlots.pop_back();
394      }
395      else
396      {
397        //userId = 1;
398        // each server (proxy and master) have an address space for new network nodes of 1000 nodes
399        userId = SharedNetworkData::getInstance()->getHostID() * 1000;
400
401        for ( PeerList::iterator it = peers.begin(); it != peers.end(); it++ )
402          if ( it->first >= userId )
403            userId = it->first + 1;
404
405        assert( userId < (SharedNetworkData::getInstance()->getHostID() + 1) * 1000);
406      }
407      // this creates a new entry in the peers list
408      peers[userId].socket = tempNetworkSocket;
409      peers[userId].nodeType = NET_CLIENT;
410
411      // handle the newly connected client
412      this->handleConnect(userId);
413
414      PRINTF(0)("New Client: %d\n", userId);
415    }
416  }
417
418
419  if( this->proxySocket != NULL)
420  {
421    tempNetworkSocket = this->proxySocket->getNewSocket();
422
423    // we got new NET_PROXY_SERVER_ACTIVE connecting
424    if ( tempNetworkSocket )
425    {
426      // determine the network node id
427      if ( freeSocketSlots.size() > 0 )
428      {
429        userId = freeSocketSlots.back();
430        freeSocketSlots.pop_back();
431      }
432      else
433      {
434        userId = 1;
435
436        for ( PeerList::iterator it = peers.begin(); it != peers.end(); it++ )
437          if ( it->first >= userId )
438            userId = it->first + 1;
439      }
440
441      // this creates a new entry in the peers list
442      peers[userId].socket = tempNetworkSocket;
443      peers[userId].nodeType = NET_PROXY_SERVER_ACTIVE;
444
445      // handle the newly connected proxy server
446      this->handleConnect(userId);
447
448      PRINTF(0)("New proxy connected: %d\n", userId);
449    }
450  }
451
452
453  //check if connections are ok else remove them
454  for ( PeerList::iterator it = peers.begin(); it != peers.end(); )
455  {
456    if (
457          it->second.socket &&
458          (
459            !it->second.socket->isOk()  ||
460            it->second.connectionMonitor->hasTimedOut()
461          )
462       )
463    {
464      std::string reason = "disconnected";
465      if ( it->second.connectionMonitor->hasTimedOut() )
466        reason = "timeout";
467      PRINTF(0)("Client is gone: %d (%s)\n", it->second.userId, reason.c_str());
468
469      this->handleDisconnect( it->second.userId);
470
471      it++;
472      continue;
473    }
474
475    it++;
476  }
477
478
479}
480
481
482/**
483 * this handles new connections
484 * @param userId: the id of the new user node
485 */
486void NetworkStream::handleConnect( int userId)
487{
488  // create new handshake and init its variables
489  peers[userId].handshake = new Handshake(this->pInfo->nodeType, userId, this->networkGameManager->getUniqueID(), MessageManager::getInstance()->getUniqueID());
490  peers[userId].handshake->setUniqueID(userId);
491
492  peers[userId].connectionMonitor = new ConnectionMonitor( userId );
493  peers[userId].userId = userId;
494
495  PRINTF(0)("num sync: %d\n", synchronizeables.size());
496
497  // get the proxy server informations and write them to the handshake, if any (proxy)
498  assert( this->networkMonitor != NULL);
499  PeerInfo* pi = this->networkMonitor->getFirstChoiceProxy();
500  if( pi != NULL)
501  {
502    peers[userId].handshake->setProxy1Address( pi->ip);
503  }
504  pi = this->networkMonitor->getSecondChoiceProxy();
505  if( pi != NULL)
506    peers[userId].handshake->setProxy2Address( pi->ip);
507
508  // check if the connecting client should reconnect to a proxy server
509  if( SharedNetworkData::getInstance()->isMasterServer())
510    peers[userId].handshake->setRedirect(/*this->networkMonitor->isReconnectNextClient()*/false);
511
512  // the connecting node of course is a client
513  peers[userId].ip = peers[userId].socket->getRemoteAddress();
514}
515
516
517
518/**
519 * some debug output
520 */
521void NetworkStream::debug()
522{
523  if( SharedNetworkData::getInstance()->isMasterServer()) {
524    PRINT(0)(" Host ist Master Server with ID: %i\n", this->pInfo->userId);
525  }
526  else if( SharedNetworkData::getInstance()->isProxyServerActive()) {
527    PRINT(0)(" Host ist Proxy Server with ID: %i\n", this->pInfo->userId);
528  }
529  else {
530    PRINT(0)(" Host ist Client with ID: %i\n", this->pInfo->userId);
531  }
532
533  PRINT(0)(" Got %i connected Synchronizeables, showing active Syncs:\n", this->synchronizeables.size());
534  for (SynchronizeableList::iterator it = synchronizeables.begin(); it!=synchronizeables.end(); it++)
535  {
536    if( (*it)->beSynchronized() == true)
537      PRINT(0)("  Synchronizeable of class: %s::%s, with unique ID: %i, Synchronize: %i\n", (*it)->getClassCName(), (*it)->getCName(),
538               (*it)->getUniqueID(), (*it)->beSynchronized());
539  }
540  PRINT(0)(" Maximal Connections: %i\n", SharedNetworkData::getInstance()->getMaxPlayer() );
541
542}
543
544
545/**
546 * @returns the number of synchronizeables registered to this stream
547 */
548int NetworkStream::getSyncCount()
549{
550  int n = 0;
551  for (SynchronizeableList::iterator it = synchronizeables.begin(); it!=synchronizeables.end(); it++)
552    if( (*it)->beSynchronized() == true)
553      ++n;
554
555  //return synchronizeables.size();
556  return n;
557}
558
559
560/**
561 * check if handshakes completed. if so create the network game manager else remove it again
562 */
563void NetworkStream::handleHandshakes( )
564{
565  for ( PeerList::iterator it = peers.begin(); it != peers.end(); it++ )
566  {
567    if ( it->second.handshake )
568    {
569      // handshake finished
570      if ( it->second.handshake->completed() )
571      {
572        //handshake is correct
573        if ( it->second.handshake->ok() )
574        {
575          // write the first informations into the node so they can be read from there for case differentiation
576          it->second.nodeType = it->second.handshake->getRemoteNodeType();
577
578          // the counter part didn't mark it free for deletion yet
579          if ( !it->second.handshake->allowDel() )
580          {
581            // make sure this is a connection:
582            // - client       <==> master server
583            // - proxy server <==> master server
584            if(  SharedNetworkData::getInstance()->isClient() || SharedNetworkData::getInstance()->isProxyServerActive() && it->second.isMasterServer())
585            {
586              PRINTF(0)("Handshake: i am in client role\n");
587
588              SharedNetworkData::getInstance()->setHostID( it->second.handshake->getHostId() );
589              this->pInfo->userId = SharedNetworkData::getInstance()->getHostID();
590
591#warning the ip address is not set here because it results in a segfault when connecting to a proxy server => trace this later
592//               it->second.ip = it->second.socket->getRemoteAddress();
593
594              // it->second.nodeType = it->second.handshake->getRemoteNodeType();
595              // it->second.ip = it->second.socket->getRemoteAddress();
596              // add the new server to the nodes list (it can be a NET_MASTER_SERVER or NET_PROXY_SERVER)
597              this->networkMonitor->addNode(&it->second);
598              // get proxy 1 address and add it
599              this->networkMonitor->addNode(it->second.handshake->getProxy1Address(), NET_PROXY_SERVER_ACTIVE);
600              // get proxy 2 address and add it
601              this->networkMonitor->addNode(it->second.handshake->getProxy2Address(), NET_PROXY_SERVER_ACTIVE);
602
603              // now check if the server accepted the connection
604              if( SharedNetworkData::getInstance()->isClient() && it->second.handshake->redirect() )
605              {
606                this->bRedirect = true;
607              }
608
609              // create the new network game manager and init it
610              this->networkGameManager = NetworkGameManager::getInstance();
611              this->networkGameManager->setUniqueID( it->second.handshake->getNetworkGameManagerId() );
612              // init the new message manager
613              MessageManager::getInstance()->setUniqueID( it->second.handshake->getMessageManagerId() );
614            }
615
616            PRINT(0)("handshake finished id=%d\n", it->second.handshake->getNetworkGameManagerId());
617            it->second.handshake->del();
618
619          }
620          else
621          {
622            // handshake finished registring new player
623            if ( it->second.handshake->canDel() )
624            {
625
626              if (  SharedNetworkData::getInstance()->isMasterServer() )
627              {
628                it->second.ip = it->second.socket->getRemoteAddress();
629
630                this->networkMonitor->addNode(&it->second);
631
632                this->handleNewClient( it->second.userId );
633
634                if ( PlayerStats::getStats( it->second.userId ) && it->second.handshake->getPreferedNickName() != "" )
635                {
636                  PlayerStats::getStats( it->second.userId )->setNickName( it->second.handshake->getPreferedNickName() );
637                }
638              }
639              else if ( SharedNetworkData::getInstance()->isProxyServerActive() && it->second.isClient() )
640              {
641                PRINTF(0)("Handshake: i am in server role\n");
642
643                it->second.ip = it->second.socket->getRemoteAddress();
644
645                this->networkMonitor->addNode(&it->second);
646
647                this->handleNewClient( it->second.userId );
648
649                if ( PlayerStats::getStats( it->second.userId ) && it->second.handshake->getPreferedNickName() != "" )
650                {
651                  PlayerStats::getStats( it->second.userId )->setNickName( it->second.handshake->getPreferedNickName() );
652                }
653              }
654
655              PRINT(0)("handshake finished delete it\n");
656              delete it->second.handshake;
657              it->second.handshake = NULL;
658            }
659          }
660
661        }
662        else
663        {
664          PRINT(1)("handshake failed!\n");
665          it->second.socket->disconnectServer();
666        }
667      }
668    }
669  }
670}
671
672
673/**
674 * this functions handles a reconnect event received from the a NET_MASTER_SERVER or NET_PROXY_SERVER
675 */
676void NetworkStream::handleReconnect(int userId)
677{
678  this->bRedirect = false;
679  PeerInfo* pInfo = &this->peers[userId];
680
681  PRINTF(0)("===============================================\n");
682  PRINTF(0)("Client is redirected to the other proxy servers\n");
683  PRINTF(0)("  user id: %i\n", userId);
684  PRINTF(0)("  connecting to: %s\n", this->networkMonitor->getFirstChoiceProxy()->ip.ipString().c_str());
685  PRINTF(0)("===============================================\n");
686
687  // flush the old synchronization states, since the numbering could be completely different
688  pInfo->lastAckedState = 0;
689  pInfo->lastRecvedState = 0;
690
691  // temp save the ip address here
692  IP proxyIP = pInfo->handshake->getProxy1Address();
693
694  // disconnect from the current server and reconnect to proxy server
695  this->handleDisconnect( userId);
696  this->connectToProxyServer(NET_ID_PROXY_SERVER_01, proxyIP.ipString(), 9999);
697  #warning the ports are not yet integrated correctly in the ip class
698
699  // and restart the handshake
700  this->startHandshake( userId);
701}
702
703
704/**
705 * handles the disconnect event
706 * @param userId id of the user to remove
707 */
708void NetworkStream::handleDisconnect( int userId )
709{
710  peers[userId].socket->disconnectServer();
711  delete peers[userId].socket;
712  peers[userId].socket = NULL;
713
714  if ( peers[userId].handshake )
715    delete peers[userId].handshake;
716  peers[userId].handshake = NULL;
717
718  if ( peers[userId].connectionMonitor )
719    delete peers[userId].connectionMonitor;
720  peers[userId].connectionMonitor = NULL;
721
722
723  for ( SynchronizeableList::iterator it2 = synchronizeables.begin(); it2 != synchronizeables.end(); it2++ )  {
724    (*it2)->cleanUpUser( userId );
725  }
726
727  if( SharedNetworkData::getInstance()->isMasterServer())
728    NetworkGameManager::getInstance()->signalLeftPlayer(userId);
729
730  this->freeSocketSlots.push_back( userId );
731
732  peers.erase( userId);
733}
734
735
736
737/**
738 * handle upstream network traffic
739 * @param tick: seconds elapsed since last update
740 */
741void NetworkStream::handleUpstream( int tick )
742{
743  int offset;
744  int n;
745
746  for ( PeerList::reverse_iterator peer = peers.rbegin(); peer != peers.rend(); peer++ )
747  {
748    offset = INTSIZE; // reserve enough space for the packet length
749
750    // continue with the next peer if this peer has no socket assigned (therefore no network)
751    if ( !peer->second.socket )
752      continue;
753
754    // header informations: current state
755    n = Converter::intToByteArray( currentState, buf + offset, UDP_PACKET_SIZE - offset );
756    assert( n == INTSIZE );
757    offset += n;
758
759    // header informations: last acked state
760    n = Converter::intToByteArray( peer->second.lastAckedState, buf + offset, UDP_PACKET_SIZE - offset );
761    assert( n == INTSIZE );
762    offset += n;
763
764    // header informations: last recved state
765    n = Converter::intToByteArray( peer->second.lastRecvedState, buf + offset, UDP_PACKET_SIZE - offset );
766    assert( n == INTSIZE );
767    offset += n;
768
769    // now write all synchronizeables in the packet
770    for ( SynchronizeableList::iterator it = synchronizeables.begin(); it != synchronizeables.end(); it++ )
771    {
772
773      int oldOffset = offset;
774      Synchronizeable & sync = **it;
775
776
777      // do not include synchronizeables with uninit id and syncs that don't want to be synchronized
778      if ( !sync.beSynchronized() || sync.getUniqueID() <= NET_UID_UNASSIGNED )
779        continue;
780
781      // if handshake not finished only sync handshake
782      if ( peer->second.handshake && sync.getLeafClassID() != CL_HANDSHAKE )
783        continue;
784
785      // if we are a server (both master and proxy servers) and this is not our handshake
786      if ( ( SharedNetworkData::getInstance()->isMasterServer() ||
787             SharedNetworkData::getInstance()->isProxyServerActive() &&  peer->second.isClient())
788             && sync.getLeafClassID() == CL_HANDSHAKE && sync.getUniqueID() != peer->second.userId )
789        continue;
790
791      /* list of synchronizeables that will never be synchronized over the network: */
792      // do not sync null parent
793      if ( sync.getLeafClassID() == CL_NULL_PARENT )
794        continue;
795
796
797      assert( sync.getLeafClassID() != 0);
798
799      assert( offset + INTSIZE <= UDP_PACKET_SIZE );
800
801      // server fakes uniqueid == 0 for handshake synchronizeable
802      if ( ( SharedNetworkData::getInstance()->isMasterServer() ||
803             SharedNetworkData::getInstance()->isProxyServerActive() &&  peer->second.isClient() ) &&
804             ( sync.getUniqueID() >= 1000 || sync.getUniqueID() <= SharedNetworkData::getInstance()->getMaxPlayer() + 1)
805             /*<= SharedNetworkData::getInstance()->getMaxPlayer() + 1*/) // plus one to handle one client more than the max to redirect it
806        n = Converter::intToByteArray( 0, buf + offset, UDP_PACKET_SIZE - offset );
807      else
808        n = Converter::intToByteArray( sync.getUniqueID(), buf + offset, UDP_PACKET_SIZE - offset );
809
810
811      assert( n == INTSIZE );
812      offset += n;
813
814      // make space for packet size
815      offset += INTSIZE;
816
817      n = sync.getStateDiff( peer->second.userId, buf + offset, UDP_PACKET_SIZE-offset, currentState, peer->second.lastAckedState, -1000 );
818      offset += n;
819
820      assert( Converter::intToByteArray( n, buf + offset - n - INTSIZE, INTSIZE ) == INTSIZE );
821
822      // check if all data bytes == 0 -> remove data and the synchronizeable from the sync process since there is no update
823      // TODO not all synchronizeables like this maybe add Synchronizeable::canRemoveZeroDiff()
824      bool allZero = true;
825      for ( int i = 0; i < n; i++ )
826      {
827         if ( buf[i+oldOffset+2*INTSIZE] != 0 )
828           allZero = false;
829      }
830      // if there is no new data in this synchronizeable reset the data offset to the last state -> dont synchronizes
831      // data that hast not changed
832      if ( allZero )
833      {
834        offset = oldOffset;
835      }
836    } // all synchronizeables written
837
838
839
840    for ( SynchronizeableList::iterator it = synchronizeables.begin(); it != synchronizeables.end(); it++ )
841    {
842      Synchronizeable & sync = **it;
843
844      // again exclude all unwanted syncs
845      if ( !sync.beSynchronized() || sync.getUniqueID() <= NET_UID_UNASSIGNED)
846        continue;
847
848      sync.handleSentState( peer->second.userId, currentState, peer->second.lastAckedState );
849    }
850
851
852    assert( Converter::intToByteArray( offset, buf, INTSIZE ) == INTSIZE );
853
854    // now compress the data with the zip library
855    int compLength = 0;
856    if ( SharedNetworkData::getInstance()->isMasterServer() ||
857         SharedNetworkData::getInstance()->isProxyServerActive())
858      compLength = Zip::getInstance()->zip( buf, offset, compBuf, UDP_PACKET_SIZE, dictServer );
859    else
860      compLength = Zip::getInstance()->zip( buf, offset, compBuf, UDP_PACKET_SIZE, dictClient );
861
862    if ( compLength <= 0 )
863    {
864      PRINTF(1)("compression failed!\n");
865      continue;
866    }
867
868    assert( peer->second.socket->writePacket( compBuf, compLength ) );
869
870    if ( this->remainingBytesToWriteToDict > 0 )
871      writeToNewDict( buf, offset, true );
872
873    peer->second.connectionMonitor->processUnzippedOutgoingPacket( tick, buf, offset, currentState );
874    peer->second.connectionMonitor->processZippedOutgoingPacket( tick, compBuf, compLength, currentState );
875
876  }
877}
878
879/**
880 * handle downstream network traffic
881 */
882void NetworkStream::handleDownstream( int tick )
883{
884  int offset = 0;
885
886  int length = 0;
887  int packetLength = 0;
888  int compLength = 0;
889  int uniqueId = 0;
890  int state = 0;
891  int ackedState = 0;
892  int fromState = 0;
893  int syncDataLength = 0;
894
895  for ( PeerList::iterator peer = peers.begin(); peer != peers.end(); peer++ )
896  {
897
898    if ( !peer->second.socket )
899      continue;
900
901    while ( 0 < (compLength = peer->second.socket->readPacket( compBuf, UDP_PACKET_SIZE )) )
902    {
903      peer->second.connectionMonitor->processZippedIncomingPacket( tick, compBuf, compLength );
904
905      packetLength = Zip::getInstance()->unZip( compBuf, compLength, buf, UDP_PACKET_SIZE );
906
907      if ( packetLength < 4*INTSIZE )
908      {
909        if ( packetLength != 0 )
910          PRINTF(1)("got too small packet: %d\n", packetLength);
911        continue;
912      }
913
914      if ( this->remainingBytesToWriteToDict > 0 )
915        writeToNewDict( buf, packetLength, false );
916
917      assert( Converter::byteArrayToInt( buf, &length ) == INTSIZE );
918      assert( Converter::byteArrayToInt( buf + INTSIZE, &state ) == INTSIZE );
919      assert( Converter::byteArrayToInt( buf + 2*INTSIZE, &fromState ) == INTSIZE );
920      assert( Converter::byteArrayToInt( buf + 3*INTSIZE, &ackedState ) == INTSIZE );
921      offset = 4*INTSIZE;
922
923      peer->second.connectionMonitor->processUnzippedIncomingPacket( tick, buf, packetLength, state, ackedState );
924
925
926      //if this is an old state drop it
927      if ( state <= peer->second.lastRecvedState )
928        continue;
929
930      if ( packetLength != length )
931      {
932        PRINTF(1)("real packet length (%d) and transmitted packet length (%d) do not match!\n", packetLength, length);
933        peer->second.socket->disconnectServer();
934        continue;
935      }
936
937      while ( offset + 2 * INTSIZE < length )
938      {
939        // read the unique id of the sync
940        assert( offset > 0 );
941        assert( Converter::byteArrayToInt( buf + offset, &uniqueId ) == INTSIZE );
942        offset += INTSIZE;
943
944        // read the data length
945        assert( Converter::byteArrayToInt( buf + offset, &syncDataLength ) == INTSIZE );
946        offset += INTSIZE;
947
948        assert( syncDataLength > 0 );
949        assert( syncDataLength < 10000 );
950
951        Synchronizeable * sync = NULL;
952
953        // look for the synchronizeable in question
954        for ( SynchronizeableList::iterator it = synchronizeables.begin(); it != synchronizeables.end(); it++ )
955        {
956          // client thinks his handshake has a special id: hostId * 1000 (host id of this server)
957          if ( (*it)->getUniqueID() == uniqueId ||
958                 ( uniqueId == 0  && (*it)->getUniqueID() == peer->second.userId ) )
959          {
960            sync = *it;
961            break;
962          }
963        }
964
965        // this synchronizeable does not yet exist! create it
966        if ( sync == NULL )
967        {
968          PRINTF(0)("could not find sync with id %d. try to create it\n", uniqueId);
969
970          // if it is an old synchronizeable already removed, ignore it
971          if ( oldSynchronizeables.find( uniqueId ) != oldSynchronizeables.end() )
972          {
973            offset += syncDataLength;
974            continue;
975          }
976
977          // if the node we got this unknown sync we ignore it if:
978          //  - the remote host is a client
979          //  - the remote host is a proxy server and we are master server
980          // (since it has no rights to create a new sync)
981          if ( peers[peer->second.userId].isClient() ||
982               (peers[peer->second.userId].isProxyServerActive() && SharedNetworkData::getInstance()->isMasterServer()))
983          {
984            offset += syncDataLength;
985            continue;
986          }
987
988          int leafClassId;
989          if ( INTSIZE > length - offset )
990          {
991            offset += syncDataLength;
992            continue;
993          }
994
995          Converter::byteArrayToInt( buf + offset, &leafClassId );
996
997          assert( leafClassId != 0 );
998
999
1000          BaseObject * b = NULL;
1001          /* These are some small exeptions in creation: Not all objects can/should be created via Factory */
1002          /* Exception 1: NullParent */
1003          if( leafClassId == CL_NULL_PARENT || leafClassId == CL_SYNCHRONIZEABLE || leafClassId == CL_NETWORK_GAME_MANAGER )
1004          {
1005            PRINTF(1)("Don't create Object with ID %x, ignored!\n", (int)leafClassId);
1006            offset += syncDataLength;
1007            continue;
1008          }
1009          else
1010            b = Factory::fabricate( (ClassID)leafClassId );
1011
1012          if ( !b )
1013          {
1014            PRINTF(1)("Could not fabricate Object with classID %x\n", leafClassId);
1015            offset += syncDataLength;
1016            continue;
1017          }
1018
1019          if ( b->isA(CL_SYNCHRONIZEABLE) )
1020          {
1021            sync = dynamic_cast<Synchronizeable*>(b);
1022            sync->setUniqueID( uniqueId );
1023            sync->setSynchronized(true);
1024
1025            PRINTF(0)("Fabricated %s with id %d\n", sync->getClassCName(), sync->getUniqueID());
1026          }
1027          else
1028          {
1029            PRINTF(1)("Class with ID %x is not a synchronizeable!\n", (int)leafClassId);
1030            delete b;
1031            offset += syncDataLength;
1032            continue;
1033          }
1034        }
1035
1036
1037        int n = sync->setStateDiff( peer->second.userId, buf+offset, syncDataLength, state, fromState );
1038        offset += n;
1039
1040      }
1041
1042      if ( offset != length )
1043      {
1044        PRINTF(0)("offset (%d) != length (%d)\n", offset, length);
1045        peer->second.socket->disconnectServer();
1046      }
1047
1048
1049      for ( SynchronizeableList::iterator it = synchronizeables.begin(); it != synchronizeables.end(); it++ )
1050      {
1051        Synchronizeable & sync = **it;
1052
1053        if ( !sync.beSynchronized() || sync.getUniqueID() <= NET_UID_UNASSIGNED )
1054          continue;
1055
1056        sync.handleRecvState( peer->second.userId, state, fromState );
1057      }
1058
1059      assert( peer->second.lastAckedState <= ackedState );
1060      peer->second.lastAckedState = ackedState;
1061
1062      assert( peer->second.lastRecvedState < state );
1063      peer->second.lastRecvedState = state;
1064
1065    }
1066
1067  }
1068
1069}
1070
1071/**
1072 * is executed when a handshake has finished
1073 */
1074void NetworkStream::handleNewClient( int userId )
1075{
1076  // init and assign the message manager
1077  MessageManager::getInstance()->initUser( userId );
1078  // do all game relevant stuff here
1079  networkGameManager->signalNewPlayer( userId );
1080}
1081
1082
1083/**
1084 * removes old items from oldSynchronizeables
1085 */
1086void NetworkStream::cleanUpOldSyncList( )
1087{
1088  int now = SDL_GetTicks();
1089
1090  for ( std::map<int,int>::iterator it = oldSynchronizeables.begin(); it != oldSynchronizeables.end();  )
1091  {
1092    if ( it->second < now - 10*1000 )
1093    {
1094      std::map<int,int>::iterator delIt = it;
1095      it++;
1096      oldSynchronizeables.erase( delIt );
1097      continue;
1098    }
1099    it++;
1100  }
1101}
1102
1103/**
1104 * writes data to DATA/dicts/newdict
1105 * @param data pointer to data
1106 * @param length length
1107 */
1108void NetworkStream::writeToNewDict( byte * data, int length, bool upstream )
1109{
1110  if ( remainingBytesToWriteToDict <= 0 )
1111    return;
1112
1113  if ( length > remainingBytesToWriteToDict )
1114    length = remainingBytesToWriteToDict;
1115
1116  std::string fileName = ResourceManager::getInstance()->getDataDir();
1117  fileName += "/dicts/newdict";
1118
1119  if ( upstream )
1120    fileName += "_upstream";
1121  else
1122    fileName += "_downstream";
1123
1124  FILE * f = fopen( fileName.c_str(), "a" );
1125
1126  if ( !f )
1127  {
1128    PRINTF(2)("could not open %s\n", fileName.c_str());
1129    remainingBytesToWriteToDict = 0;
1130    return;
1131  }
1132
1133  if ( fwrite( data, 1, length, f ) != length )
1134  {
1135    PRINTF(2)("could not write to file\n");
1136    fclose( f );
1137    return;
1138  }
1139
1140  fclose( f );
1141
1142  remainingBytesToWriteToDict -= length;
1143}
1144
1145
1146
1147
1148
1149
Note: See TracBrowser for help on using the repository browser.