Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

seems like the ip sync doesn't work properly. investigate

File size: 28.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
53using namespace std;
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_CLIENT;
68}
69
70
71/**
72 * start as a client, connect to a server
73 *  @param host: host name (address)
74 *  @param port: port number
75 */
76NetworkStream::NetworkStream( std::string host, int port )
77{
78  this->init();
79  // init the peers[0] the server to ceonnect to
80  this->peers[0].socket = new UdpSocket( host, port );
81  this->peers[0].userId = 0;
82  this->peers[0].nodeType = NET_MASTER_SERVER;
83  this->peers[0].connectionMonitor = new ConnectionMonitor( 0 );
84  this->peers[0].ip = this->peers[0].socket->getRemoteAddress();
85  // and set also the localhost
86  this->pInfo->nodeType = NET_CLIENT;
87  // get the local ip address
88  IPaddress ip;
89  SDLNet_ResolveHost( &ip, NULL, port );
90  this->pInfo->ip = ip;
91}
92
93
94/**
95 * start as a server
96 *  @param port: at this port
97 */
98NetworkStream::NetworkStream( int port )
99{
100  this->init();
101  this->serverSocket = new UdpServerSocket(port);
102  this->pInfo->nodeType = NET_MASTER_SERVER;
103  // get the local ip address
104  IPaddress ip;
105  SDLNet_ResolveHost( &ip, NULL, port );
106  this->pInfo->ip = ip;
107}
108
109
110/**
111 * generic init functions
112 */
113void NetworkStream::init()
114{
115  /* set the class id for the base object */
116  this->setClassID(CL_NETWORK_STREAM, "NetworkStream");
117  this->serverSocket = NULL;
118  this->networkGameManager = NULL;
119  this->networkMonitor = NULL;
120
121  this->pInfo = new PeerInfo();
122  this->pInfo->userId = 0;
123  this->pInfo->lastAckedState = 0;
124  this->pInfo->lastRecvedState = 0;
125
126
127  this->currentState = 0;
128
129  remainingBytesToWriteToDict = Preferences::getInstance()->getInt( "compression", "writedict", 0 );
130
131  assert( Zip::getInstance()->loadDictionary( "testdict" ) >= 0 );
132  this->dictClient = Zip::getInstance()->loadDictionary( "dict2pl_client" );
133  assert( this->dictClient >= 0 );
134  this->dictServer = Zip::getInstance()->loadDictionary( "dict2p_server" );
135  assert( this->dictServer >= 0 );
136}
137
138
139/**
140 * deconstructor
141 */
142NetworkStream::~NetworkStream()
143{
144  if ( this->serverSocket )
145  {
146    serverSocket->close();
147    delete serverSocket;
148    serverSocket = NULL;
149  }
150  for ( PeerList::iterator i = peers.begin(); i!=peers.end(); i++)
151  {
152    if ( i->second.socket )
153    {
154      i->second.socket->disconnectServer();
155      delete i->second.socket;
156      i->second.socket = NULL;
157    }
158
159    if ( i->second.handshake )
160    {
161      delete i->second.handshake;
162      i->second.handshake = NULL;
163    }
164
165    if ( i->second.connectionMonitor )
166    {
167      delete i->second.connectionMonitor;
168      i->second.connectionMonitor = NULL;
169    }
170  }
171  for ( SynchronizeableList::const_iterator it = getSyncBegin(); it != getSyncEnd(); it ++ )
172    (*it)->setNetworkStream( NULL );
173
174  if( this->pInfo)
175    delete this->pInfo;
176
177  if( this->networkMonitor)
178    delete this->networkMonitor;
179}
180
181
182/**
183 * creates a new instance of the network game manager
184 */
185void NetworkStream::createNetworkGameManager()
186{
187  this->networkGameManager = NetworkGameManager::getInstance();
188  // setUniqueID( maxCon+2 ) because we need one id for every handshake
189  // and one for handshake to reject client maxCon+1
190  this->networkGameManager->setUniqueID( SharedNetworkData::getInstance()->getNewUniqueID() );
191  MessageManager::getInstance()->setUniqueID( SharedNetworkData::getInstance()->getNewUniqueID() );
192}
193
194
195/**
196 * starts the network handshake
197 * handsakes are always initialized from the client side first. this starts the handshake and therefore is only
198 * executed as client
199 */
200void NetworkStream::startHandshake()
201{
202  Handshake* hs = new Handshake(this->pInfo->nodeType);
203  hs->setUniqueID( 0 );
204  assert( peers[0].handshake == NULL );
205  peers[0].handshake = hs;
206
207  // set the preferred nick name
208  hs->setPreferedNickName( Preferences::getInstance()->getString( "multiplayer", "nickname", "Player" ) );
209
210  PRINTF(0)("NetworkStream: Handshake created: %s\n", hs->getName());
211}
212
213
214/**
215 * this functions connects a synchronizeable to the networkstream, therefore synchronizeing
216 * it all over the network and creating it on the other platforms (if and only if it is a
217 * server
218 */
219void NetworkStream::connectSynchronizeable(Synchronizeable& sync)
220{
221  this->synchronizeables.push_back(&sync);
222  sync.setNetworkStream( this );
223
224//   this->bActive = true;
225}
226
227
228/**
229 * removes the synchronizeable from the list of synchronized entities
230 */
231void NetworkStream::disconnectSynchronizeable(Synchronizeable& sync)
232{
233  // removing the Synchronizeable from the List.
234  std::list<Synchronizeable*>::iterator disconnectSynchro = std::find(this->synchronizeables.begin(), this->synchronizeables.end(), &sync);
235  if (disconnectSynchro != this->synchronizeables.end())
236    this->synchronizeables.erase(disconnectSynchro);
237
238  oldSynchronizeables[sync.getUniqueID()] = SDL_GetTicks();
239}
240
241
242/**
243 * this is called to process data from the network socket to the synchronizeable and vice versa
244 */
245void NetworkStream::processData()
246{
247  // create the network monitor after all the init work and before there is any connection handlings
248  if( this->networkMonitor == NULL)
249    this->networkMonitor = new NetworkMonitor(this);
250
251
252  int tick = SDL_GetTicks();
253
254  this->currentState++;
255  // there was a wrap around
256  if( this->currentState < 0)
257  {
258    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");
259  }
260
261  if ( this->pInfo->nodeType == NET_MASTER_SERVER )
262  {
263    // execute everytthing the master server shoudl do
264    if ( serverSocket )
265      serverSocket->update();
266
267    this->updateConnectionList();
268  }
269  else if( this->pInfo->nodeType == NET_PROXY_SERVER_ACTIVE)
270  {
271    // execute everything the proxy server should do
272  }
273  else
274  {
275    // check if the connection is ok else terminate and remove
276    if ( peers[0].socket && ( !peers[0].socket->isOk() || peers[0].connectionMonitor->hasTimedOut() ) )
277    {
278      PRINTF(1)("lost connection to server\n");
279
280      peers[0].socket->disconnectServer();
281      delete peers[0].socket;
282      peers[0].socket = NULL;
283
284      if ( peers[0].handshake )
285        delete peers[0].handshake;
286      peers[0].handshake = NULL;
287
288      if ( peers[0].connectionMonitor )
289        delete peers[0].connectionMonitor;
290      peers[0].connectionMonitor = NULL;
291    }
292  }
293
294  cleanUpOldSyncList();
295  handleHandshakes();
296
297  // update the network monitor
298  this->networkMonitor->process();
299
300  // order of up/downstream is important!!!!
301  // don't change it
302  handleDownstream( tick );
303  handleUpstream( tick );
304}
305
306
307/**
308 * if we are a NET_MASTER_SERVER or NET_PROXY_SERVER_ACTIVE update the connection list to accept new
309 * connections (clients) also start the handsake for the new clients
310 */
311void NetworkStream::updateConnectionList( )
312{
313  //check for new connections
314
315  NetworkSocket* tempNetworkSocket = serverSocket->getNewSocket();
316
317  // we got new network node
318  if ( tempNetworkSocket )
319  {
320    int clientId;
321    // if there is a list of free client id slots, take these
322    if ( freeSocketSlots.size() > 0 )
323    {
324      clientId = freeSocketSlots.back();
325      freeSocketSlots.pop_back();
326    }
327    else
328    {
329      clientId = 1;
330
331      for ( PeerList::iterator it = peers.begin(); it != peers.end(); it++ )
332        if ( it->first >= clientId )
333          clientId = it->first + 1;
334    }
335
336    peers[clientId].socket = tempNetworkSocket;
337    // create new handshake and init its variables
338    peers[clientId].handshake = new Handshake(this->pInfo->nodeType, clientId, this->networkGameManager->getUniqueID(), MessageManager::getInstance()->getUniqueID() );
339    peers[clientId].handshake->setUniqueID(clientId);
340
341    peers[clientId].connectionMonitor = new ConnectionMonitor( clientId );
342    peers[clientId].userId = clientId;
343
344    PRINTF(0)("num sync: %d\n", synchronizeables.size());
345
346    // get the proxy server informations and write them to the handshake, if any (proxy)
347    assert( this->networkMonitor != NULL);
348    PeerInfo* pi = this->networkMonitor->getFirstChoiceProxy();
349    if( pi != NULL)
350    {
351      peers[clientId].handshake->setProxy1Address( pi->ip);
352      PRINTF(0)("proxy1 ip set to: %s\n", pi->ip.ipString().c_str());
353    }
354
355    pi = this->networkMonitor->getSecondChoiceProxy();
356    if( pi != NULL)
357      peers[clientId].handshake->setProxy2Address( pi->ip);
358
359    // check if the connecting client should reconnect to a proxy server
360    peers[clientId].handshake->setRedirect(this->networkMonitor->isReconnectNextClient());
361
362    // the connecting node of course is a client
363    peers[clientId].nodeType = NET_CLIENT;
364    peers[clientId].ip = peers[clientId].socket->getRemoteAddress();
365
366
367    // check if there are too many clients connected (DEPRECATED: new: the masterserver sends a list of proxy servers)
368//     if ( clientId > SharedNetworkData::getInstance()->getMaxPlayer() )
369//     {
370// //       peers[clientId].handshake->setRedirect(true);
371// //
372// //       peers[clientId].handshake->doReject( "too many connections" );
373//       PRINTF(0)("Will reject client %d because there are to many connections!\n", clientId);
374//     }
375//     else
376//     {
377//       PRINTF(0)("New Client: %d\n", clientId);
378//     }
379    PRINTF(0)("New Client: %d\n", clientId);
380
381
382  }
383
384
385
386  //check if connections are ok else remove them
387  for ( PeerList::iterator it = peers.begin(); it != peers.end(); )
388  {
389    if (
390          it->second.socket &&
391          (
392            !it->second.socket->isOk()  ||
393            it->second.connectionMonitor->hasTimedOut()
394          )
395       )
396    {
397      std::string reason = "disconnected";
398      if ( it->second.connectionMonitor->hasTimedOut() )
399        reason = "timeout";
400      PRINTF(0)("Client is gone: %d (%s)\n", it->second.userId, reason.c_str());
401
402
403      // clean up the network data
404      it->second.socket->disconnectServer();
405      delete it->second.socket;
406      it->second.socket = NULL;
407
408      if ( it->second.connectionMonitor )
409        delete it->second.connectionMonitor;
410      it->second.connectionMonitor = NULL;
411
412      if ( it->second.handshake )
413        delete it->second.handshake;
414      it->second.handshake = NULL;
415
416      for ( SynchronizeableList::iterator it2 = synchronizeables.begin(); it2 != synchronizeables.end(); it2++ )
417      {
418        (*it2)->cleanUpUser( it->second.userId );
419      }
420
421      NetworkGameManager::getInstance()->signalLeftPlayer(it->second.userId);
422
423      freeSocketSlots.push_back( it->second.userId );
424
425      PeerList::iterator delit = it;
426      it++;
427
428      peers.erase( delit );
429
430      continue;
431    }
432
433    it++;
434  }
435
436
437}
438
439
440void NetworkStream::debug()
441{
442  if( this->isMasterServer())
443    PRINT(0)(" Host ist Server with ID: %i\n", this->pInfo->userId);
444  else
445    PRINT(0)(" Host ist Client with ID: %i\n", this->pInfo->userId);
446
447  PRINT(0)(" Got %i connected Synchronizeables, showing active Syncs:\n", this->synchronizeables.size());
448  for (SynchronizeableList::iterator it = synchronizeables.begin(); it!=synchronizeables.end(); it++)
449  {
450    if( (*it)->beSynchronized() == true)
451      PRINT(0)("  Synchronizeable of class: %s::%s, with unique ID: %i, Synchronize: %i\n", (*it)->getClassName(), (*it)->getName(),
452               (*it)->getUniqueID(), (*it)->beSynchronized());
453  }
454  PRINT(0)(" Maximal Connections: %i\n", SharedNetworkData::getInstance()->getMaxPlayer() );
455
456}
457
458
459/**
460 * @returns the number of synchronizeables registered to this stream
461 */
462int NetworkStream::getSyncCount()
463{
464  int n = 0;
465  for (SynchronizeableList::iterator it = synchronizeables.begin(); it!=synchronizeables.end(); it++)
466    if( (*it)->beSynchronized() == true)
467      ++n;
468
469  //return synchronizeables.size();
470  return n;
471}
472
473
474/**
475 * check if handshakes completed. if so create the network game manager else remove it again
476 */
477void NetworkStream::handleHandshakes( )
478{
479  for ( PeerList::iterator it = peers.begin(); it != peers.end(); it++ )
480  {
481    if ( it->second.handshake )
482    {
483      // handshake finished
484      if ( it->second.handshake->completed() )
485      {
486        //handshake is correct
487        if ( it->second.handshake->ok() )
488        {
489          if ( !it->second.handshake->allowDel() )
490          {
491            if ( this->pInfo->nodeType == NET_CLIENT )
492            {
493              SharedNetworkData::getInstance()->setHostID( it->second.handshake->getHostId() );
494              this->pInfo->userId = SharedNetworkData::getInstance()->getHostID();
495
496              it->second.nodeType = it->second.handshake->getRemoteNodeType();
497              it->second.ip = it->second.socket->getRemoteAddress();
498              // add the new server to the nodes list (it can be a NET_MASTER_SERVER or NET_PROXY_SERVER)
499              this->networkMonitor->addNode(&it->second);
500              // get proxy 1 address and add it
501              this->networkMonitor->addNode(it->second.handshake->getProxy1Address(), NET_PROXY_SERVER_ACTIVE);
502              PRINTF(0)("proxy1 ip read to: %s\n", it->second.handshake->getProxy1Address().ipString().c_str());
503              // get proxy 2 address and add it
504              this->networkMonitor->addNode(it->second.handshake->getProxy2Address(), NET_PROXY_SERVER_ACTIVE);
505
506              // now check if the server accepted the connection
507              if( it->second.handshake->redirect())
508                this->handleReconnect( it->second.userId);
509
510              // create the new network game manager and init it
511              this->networkGameManager = NetworkGameManager::getInstance();
512              this->networkGameManager->setUniqueID( it->second.handshake->getNetworkGameManagerId() );
513              // init the new message manager
514              MessageManager::getInstance()->setUniqueID( it->second.handshake->getMessageManagerId() );
515            }
516
517
518            PRINT(0)("handshake finished id=%d\n", it->second.handshake->getNetworkGameManagerId());
519
520            it->second.handshake->del();
521          }
522          else
523          {
524            // handshake finished registring new player
525            if ( it->second.handshake->canDel() )
526            {
527              if ( this->pInfo->nodeType == NET_MASTER_SERVER )
528              {
529                it->second.nodeType = it->second.handshake->getRemoteNodeType();
530                it->second.ip = it->second.socket->getRemoteAddress();
531
532                this->networkMonitor->addNode(&it->second);
533
534                this->handleNewClient( it->second.userId );
535
536                if ( PlayerStats::getStats( it->second.userId ) && it->second.handshake->getPreferedNickName() != "" )
537                {
538                  PlayerStats::getStats( it->second.userId )->setNickName( it->second.handshake->getPreferedNickName() );
539                }
540              }
541
542              PRINT(0)("handshake finished delete it\n");
543              delete it->second.handshake;
544              it->second.handshake = NULL;
545            }
546          }
547
548        }
549        else
550        {
551          PRINT(1)("handshake failed!\n");
552          it->second.socket->disconnectServer();
553        }
554      }
555    }
556  }
557}
558
559
560/**
561 * this functions handles a reconnect event received from the a NET_MASTER_SERVER or NET_PROXY_SERVER
562 */
563void NetworkStream::handleReconnect(int userId)
564{
565  PRINTF(0)("===============================================\n");
566  PRINTF(0)("Client is redirected to the other proxy servers\n");
567  PRINTF(0)("===============================================\n");
568
569  PeerInfo* pInfo = &this->peers[userId];
570
571  // reject the server
572  pInfo->handshake->doReject( "redirected to different server");
573
574  // flush the old synchronization states, since the numbering could be completely different
575  pInfo->lastAckedState = 0;
576  pInfo->lastRecvedState = 0;
577  // not sure if this works as expected
578  if( pInfo->handshake)
579    delete pInfo->handshake;
580
581  // disconnect from the current server and reconnect to proxy server
582  pInfo->socket->reconnectToServer( pInfo->handshake->getProxy1Address().ipString(), pInfo->handshake->getProxy1Address().port());
583
584  // and restart the handshake
585  this->startHandshake();
586}
587
588
589/**
590 * handle upstream network traffic
591 */
592void NetworkStream::handleUpstream( int tick )
593{
594  int offset;
595  int n;
596
597  for ( PeerList::reverse_iterator peer = peers.rbegin(); peer != peers.rend(); peer++ )
598  {
599    offset = INTSIZE; // reserve enough space for the packet length
600
601    // continue with the next peer if this peer has no socket assigned (therefore no network)
602    if ( !peer->second.socket )
603      continue;
604
605    // header informations: current state
606    n = Converter::intToByteArray( currentState, buf + offset, UDP_PACKET_SIZE - offset );
607    assert( n == INTSIZE );
608    offset += n;
609
610    // header informations: last acked state
611    n = Converter::intToByteArray( peer->second.lastAckedState, buf + offset, UDP_PACKET_SIZE - offset );
612    assert( n == INTSIZE );
613    offset += n;
614
615    // header informations: last recved state
616    n = Converter::intToByteArray( peer->second.lastRecvedState, buf + offset, UDP_PACKET_SIZE - offset );
617    assert( n == INTSIZE );
618    offset += n;
619
620    // now write all synchronizeables in the packet
621    for ( SynchronizeableList::iterator it = synchronizeables.begin(); it != synchronizeables.end(); it++ )
622    {
623      int oldOffset = offset;
624      Synchronizeable & sync = **it;
625
626      // do not include synchronizeables with uninit id and syncs that don't want to be synchronized
627      if ( !sync.beSynchronized() || sync.getUniqueID() < 0 )
628        continue;
629
630      // if handshake not finished only sync handshake
631      if ( peer->second.handshake && sync.getLeafClassID() != CL_HANDSHAKE )
632        continue;
633
634      // if we are a server and this is not our handshake
635      if ( isMasterServer() && sync.getLeafClassID() == CL_HANDSHAKE && sync.getUniqueID() != peer->second.userId )
636        continue;
637
638      /* list of synchronizeables that will never be synchronized over the network: */
639      // do not sync null parent
640      if ( sync.getLeafClassID() == CL_NULL_PARENT )
641        continue;
642
643      assert( offset + INTSIZE <= UDP_PACKET_SIZE );
644
645      // server fakes uniqueid == 0 for handshake
646      if ( this->isMasterServer() && sync.getUniqueID() < SharedNetworkData::getInstance()->getMaxPlayer() - 1 )
647        n = Converter::intToByteArray( 0, buf + offset, UDP_PACKET_SIZE - offset );
648      else
649        n = Converter::intToByteArray( sync.getUniqueID(), buf + offset, UDP_PACKET_SIZE - offset );
650
651      assert( n == INTSIZE );
652      offset += n;
653
654      // make space for size
655      offset += INTSIZE;
656
657      n = sync.getStateDiff( peer->second.userId, buf + offset, UDP_PACKET_SIZE-offset, currentState, peer->second.lastAckedState, -1000 );
658      offset += n;
659
660      assert( Converter::intToByteArray( n, buf + offset - n - INTSIZE, INTSIZE ) == INTSIZE );
661
662      // check if all data bytes == 0 -> remove data and the synchronizeable from the sync process since there is no update
663      // TODO not all synchronizeables like this maybe add Synchronizeable::canRemoveZeroDiff()
664      bool allZero = true;
665      for ( int i = 0; i < n; i++ )
666      {
667         if ( buf[i+oldOffset+2*INTSIZE] != 0 )
668           allZero = false;
669      }
670      // if there is no new data in this synchronizeable reset the data offset to the last state -> dont synchronizes
671      // data that hast not changed
672      if ( allZero )
673      {
674        offset = oldOffset;
675      }
676    } // all synchronizeables written
677
678
679
680    for ( SynchronizeableList::iterator it = synchronizeables.begin(); it != synchronizeables.end(); it++ )
681    {
682      Synchronizeable & sync = **it;
683
684      if ( !sync.beSynchronized() || sync.getUniqueID() < 0 )
685        continue;
686
687      sync.handleSentState( peer->second.userId, currentState, peer->second.lastAckedState );
688    }
689
690
691    assert( Converter::intToByteArray( offset, buf, INTSIZE ) == INTSIZE );
692
693    // now compress the data with the zip library
694    int compLength = 0;
695    if ( this->isMasterServer() )
696      compLength = Zip::getInstance()->zip( buf, offset, compBuf, UDP_PACKET_SIZE, dictServer );
697    else
698      compLength = Zip::getInstance()->zip( buf, offset, compBuf, UDP_PACKET_SIZE, dictClient );
699
700    if ( compLength <= 0 )
701    {
702      PRINTF(1)("compression failed!\n");
703      continue;
704    }
705
706    assert( peer->second.socket->writePacket( compBuf, compLength ) );
707
708    if ( this->remainingBytesToWriteToDict > 0 )
709      writeToNewDict( buf, offset, true );
710
711    peer->second.connectionMonitor->processUnzippedOutgoingPacket( tick, buf, offset, currentState );
712    peer->second.connectionMonitor->processZippedOutgoingPacket( tick, compBuf, compLength, currentState );
713
714  }
715}
716
717/**
718 * handle downstream network traffic
719 */
720void NetworkStream::handleDownstream( int tick )
721{
722  int offset = 0;
723
724  int length = 0;
725  int packetLength = 0;
726  int compLength = 0;
727  int uniqueId = 0;
728  int state = 0;
729  int ackedState = 0;
730  int fromState = 0;
731  int syncDataLength = 0;
732
733  for ( PeerList::iterator peer = peers.begin(); peer != peers.end(); peer++ )
734  {
735
736    if ( !peer->second.socket )
737      continue;
738
739    while ( 0 < (compLength = peer->second.socket->readPacket( compBuf, UDP_PACKET_SIZE )) )
740    {
741      peer->second.connectionMonitor->processZippedIncomingPacket( tick, compBuf, compLength );
742
743      packetLength = Zip::getInstance()->unZip( compBuf, compLength, buf, UDP_PACKET_SIZE );
744
745      if ( packetLength < 4*INTSIZE )
746      {
747        if ( packetLength != 0 )
748          PRINTF(1)("got too small packet: %d\n", packetLength);
749        continue;
750      }
751
752      if ( this->remainingBytesToWriteToDict > 0 )
753        writeToNewDict( buf, packetLength, false );
754
755      assert( Converter::byteArrayToInt( buf, &length ) == INTSIZE );
756      assert( Converter::byteArrayToInt( buf + INTSIZE, &state ) == INTSIZE );
757      assert( Converter::byteArrayToInt( buf + 2*INTSIZE, &fromState ) == INTSIZE );
758      assert( Converter::byteArrayToInt( buf + 3*INTSIZE, &ackedState ) == INTSIZE );
759      offset = 4*INTSIZE;
760
761      peer->second.connectionMonitor->processUnzippedIncomingPacket( tick, buf, packetLength, state, ackedState );
762
763
764      //if this is an old state drop it
765      if ( state <= peer->second.lastRecvedState )
766        continue;
767
768      if ( packetLength != length )
769      {
770        PRINTF(1)("real packet length (%d) and transmitted packet length (%d) do not match!\n", packetLength, length);
771        peer->second.socket->disconnectServer();
772        continue;
773      }
774
775      while ( offset + 2*INTSIZE < length )
776      {
777        assert( offset > 0 );
778        assert( Converter::byteArrayToInt( buf + offset, &uniqueId ) == INTSIZE );
779        offset += INTSIZE;
780
781        assert( Converter::byteArrayToInt( buf + offset, &syncDataLength ) == INTSIZE );
782        offset += INTSIZE;
783
784        assert( syncDataLength > 0 );
785        assert( syncDataLength < 10000 );
786
787        Synchronizeable * sync = NULL;
788
789        for ( SynchronizeableList::iterator it = synchronizeables.begin(); it != synchronizeables.end(); it++ )
790        {
791        //                                        client thinks his handshake has id 0!!!!!
792          if ( (*it)->getUniqueID() == uniqueId || ( uniqueId == 0 && (*it)->getUniqueID() == peer->second.userId ) )
793          {
794            sync = *it;
795            break;
796          }
797        }
798
799        if ( sync == NULL )
800        {
801          PRINTF(0)("could not find sync with id %d. try to create it\n", uniqueId);
802          if ( oldSynchronizeables.find( uniqueId ) != oldSynchronizeables.end() )
803          {
804            offset += syncDataLength;
805            continue;
806          }
807
808          if ( !peers[peer->second.userId].isMasterServer() )
809          {
810            offset += syncDataLength;
811            continue;
812          }
813
814          int leafClassId;
815          if ( INTSIZE > length - offset )
816          {
817            offset += syncDataLength;
818            continue;
819          }
820
821          Converter::byteArrayToInt( buf + offset, &leafClassId );
822
823          assert( leafClassId != 0 );
824
825          BaseObject * b = NULL;
826          /* These are some small exeptions in creation: Not all objects can/should be created via Factory */
827          /* Exception 1: NullParent */
828          if( leafClassId == CL_NULL_PARENT || leafClassId == CL_SYNCHRONIZEABLE || leafClassId == CL_NETWORK_GAME_MANAGER )
829          {
830            PRINTF(1)("Can not create Class with ID %x!\n", (int)leafClassId);
831            offset += syncDataLength;
832            continue;
833          }
834          else
835            b = Factory::fabricate( (ClassID)leafClassId );
836
837          if ( !b )
838          {
839            PRINTF(1)("Could not fabricate Object with classID %x\n", leafClassId);
840            offset += syncDataLength;
841            continue;
842          }
843
844          if ( b->isA(CL_SYNCHRONIZEABLE) )
845          {
846            sync = dynamic_cast<Synchronizeable*>(b);
847            sync->setUniqueID( uniqueId );
848            sync->setSynchronized(true);
849
850            PRINTF(0)("Fabricated %s with id %d\n", sync->getClassName(), sync->getUniqueID());
851          }
852          else
853          {
854            PRINTF(1)("Class with ID %x is not a synchronizeable!\n", (int)leafClassId);
855            delete b;
856            offset += syncDataLength;
857            continue;
858          }
859        }
860
861
862        int n = sync->setStateDiff( peer->second.userId, buf+offset, syncDataLength, state, fromState );
863        offset += n;
864        //NETPRINTF(0)("SSSSSEEEEETTTTT: %s %d\n",sync->getClassName(), n);
865
866      }
867
868      if ( offset != length )
869      {
870        PRINTF(0)("offset (%d) != length (%d)\n", offset, length);
871        peer->second.socket->disconnectServer();
872      }
873
874
875      for ( SynchronizeableList::iterator it = synchronizeables.begin(); it != synchronizeables.end(); it++ )
876      {
877        Synchronizeable & sync = **it;
878
879        if ( !sync.beSynchronized() || sync.getUniqueID() < 0 )
880          continue;
881
882        sync.handleRecvState( peer->second.userId, state, fromState );
883      }
884
885      assert( peer->second.lastAckedState <= ackedState );
886      peer->second.lastAckedState = ackedState;
887
888      assert( peer->second.lastRecvedState < state );
889      peer->second.lastRecvedState = state;
890
891    }
892
893  }
894
895}
896
897/**
898 * is executed when a handshake has finished
899 */
900void NetworkStream::handleNewClient( int userId )
901{
902  // init and assign the message manager
903  MessageManager::getInstance()->initUser( userId );
904  // do all game relevant stuff here
905  networkGameManager->signalNewPlayer( userId );
906
907  // register the new client at the network monitor
908//   this->networkMonitor->addClient();
909}
910
911
912/**
913 * removes old items from oldSynchronizeables
914 */
915void NetworkStream::cleanUpOldSyncList( )
916{
917  int now = SDL_GetTicks();
918
919  for ( std::map<int,int>::iterator it = oldSynchronizeables.begin(); it != oldSynchronizeables.end();  )
920  {
921    if ( it->second < now - 10*1000 )
922    {
923      std::map<int,int>::iterator delIt = it;
924      it++;
925      oldSynchronizeables.erase( delIt );
926      continue;
927    }
928    it++;
929  }
930}
931
932/**
933 * writes data to DATA/dicts/newdict
934 * @param data pointer to data
935 * @param length length
936 */
937void NetworkStream::writeToNewDict( byte * data, int length, bool upstream )
938{
939  if ( remainingBytesToWriteToDict <= 0 )
940    return;
941
942  if ( length > remainingBytesToWriteToDict )
943    length = remainingBytesToWriteToDict;
944
945  std::string fileName = ResourceManager::getInstance()->getDataDir();
946  fileName += "/dicts/newdict";
947
948  if ( upstream )
949    fileName += "_upstream";
950  else
951    fileName += "_downstream";
952
953  FILE * f = fopen( fileName.c_str(), "a" );
954
955  if ( !f )
956  {
957    PRINTF(2)("could not open %s\n", fileName.c_str());
958    remainingBytesToWriteToDict = 0;
959    return;
960  }
961
962  if ( fwrite( data, 1, length, f ) != length )
963  {
964    PRINTF(2)("could not write to file\n");
965    fclose( f );
966    return;
967  }
968
969  fclose( f );
970
971  remainingBytesToWriteToDict -= length;
972}
973
974
975
976
977
978
Note: See TracBrowser for help on using the repository browser.