| 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 | 
|---|
| 13 |    co-programmer: | 
|---|
| 14 | */ | 
|---|
| 15 |  | 
|---|
| 16 |  | 
|---|
| 17 | /* this is for debug output. It just says, that all calls to PRINT() belong to the DEBUG_MODULE_NETWORK module | 
|---|
| 18 |    For more information refere to https://www.orxonox.net/cgi-bin/trac.cgi/wiki/DebugOutput | 
|---|
| 19 | */ | 
|---|
| 20 | #define DEBUG_MODULE_NETWORK | 
|---|
| 21 |  | 
|---|
| 22 | #include "handshake.h" | 
|---|
| 23 |  | 
|---|
| 24 | #include <cassert> | 
|---|
| 25 | #include "debug.h" | 
|---|
| 26 |  | 
|---|
| 27 | Handshake::Handshake( bool server, int clientId, int networkGameManagerId, int messageManagerId ) | 
|---|
| 28 |   : Synchronizeable() | 
|---|
| 29 | { | 
|---|
| 30 |   /* set the class id for the base object */ | 
|---|
| 31 |   this->setClassID(CL_HANDSHAKE, "Handshake"); | 
|---|
| 32 |  | 
|---|
| 33 |   this->setIsServer(server); | 
|---|
| 34 |  | 
|---|
| 35 |   orxId_handler = registerVarId( new SynchronizeableInt( &localState.orxId, &remoteState.orxId, "orxonoxId", PERMISSION_ALL ) ); | 
|---|
| 36 |   version_handler = registerVarId( new SynchronizeableInt( &localState.version, &remoteState.version, "version", PERMISSION_ALL ) ); | 
|---|
| 37 |   netManId_handler = registerVarId( new SynchronizeableInt( &localState.networkManagerId, &remoteState.networkManagerId, "networkManagerId", PERMISSION_ALL ) ); | 
|---|
| 38 |   msgManId_handler = registerVarId( new SynchronizeableInt( &localState.messageManagerId, &remoteState.messageManagerId, "messageManagerId", PERMISSION_ALL ) ); | 
|---|
| 39 |   hostId_handler = registerVarId( new SynchronizeableInt( &localState.hostId, &remoteState.hostId, "hostId", PERMISSION_ALL ) ); | 
|---|
| 40 |   completed_handler = registerVarId( new SynchronizeableInt( &localState.completed, &remoteState.completed, "completed", PERMISSION_ALL ) ); | 
|---|
| 41 |   error_handler = registerVarId( new SynchronizeableInt( &localState.error, &remoteState.error, "error", PERMISSION_ALL ) ); | 
|---|
| 42 |   errorString_handler = registerVarId( new SynchronizeableString( &localState.errorString, &remoteState.errorString, "errorString", PERMISSION_ALL ) ); | 
|---|
| 43 |  | 
|---|
| 44 |   candel_id = registerVarId( new SynchronizeableInt( &localState.canDel, &remoteState.canDel, "canDel", PERMISSION_ALL ) ); | 
|---|
| 45 |  | 
|---|
| 46 |   localState.completed = 0; | 
|---|
| 47 |   localState.error = 0; | 
|---|
| 48 |   localState.errorString = ""; | 
|---|
| 49 |   localState.hostId = clientId; | 
|---|
| 50 |   localState.networkManagerId = networkGameManagerId; | 
|---|
| 51 |   this->localState.messageManagerId = messageManagerId; | 
|---|
| 52 |   localState.orxId = _ORXONOX_ID; | 
|---|
| 53 |   localState.version = _ORXONOX_VERSION; | 
|---|
| 54 |   localState.canDel = 0; | 
|---|
| 55 |  | 
|---|
| 56 |   remoteState.completed = 0; | 
|---|
| 57 |   remoteState.error = 0; | 
|---|
| 58 |   remoteState.errorString = ""; | 
|---|
| 59 |   remoteState.hostId = -1; | 
|---|
| 60 |   remoteState.networkManagerId = -1; | 
|---|
| 61 |   remoteState.messageManagerId = -1; | 
|---|
| 62 |   remoteState.orxId = 0; | 
|---|
| 63 |   remoteState.version = 0; | 
|---|
| 64 |   remoteState.canDel = 0; | 
|---|
| 65 |  | 
|---|
| 66 |   this->setSynchronized(true); | 
|---|
| 67 |   PRINTF(0)("Handshake created clientId = %d\n", clientId); | 
|---|
| 68 | } | 
|---|
| 69 |  | 
|---|
| 70 | /** | 
|---|
| 71 |  * handler for changes in synced vars | 
|---|
| 72 |  * @param id id's which have changed | 
|---|
| 73 |  */ | 
|---|
| 74 | void Handshake::varChangeHandler( std::list< int > & id ) | 
|---|
| 75 | { | 
|---|
| 76 |   for ( std::list<int>::iterator it = id.begin(); it != id.end(); it++ ) | 
|---|
| 77 |   { | 
|---|
| 78 |     if ( *it == orxId_handler ) | 
|---|
| 79 |     { | 
|---|
| 80 |       if ( remoteState.orxId != _ORXONOX_ID ) | 
|---|
| 81 |       { | 
|---|
| 82 |         localState.error = 1; | 
|---|
| 83 |         localState.completed = 1; | 
|---|
| 84 |         localState.errorString = "Seems not to be orxonox!"; | 
|---|
| 85 |         continue; | 
|---|
| 86 |       } | 
|---|
| 87 |  | 
|---|
| 88 |     } | 
|---|
| 89 |  | 
|---|
| 90 |     if ( *it == version_handler ) | 
|---|
| 91 |     { | 
|---|
| 92 |       if ( remoteState.version != _ORXONOX_VERSION ) | 
|---|
| 93 |       { | 
|---|
| 94 |         localState.error = 2; | 
|---|
| 95 |         localState.completed = 1; | 
|---|
| 96 |         localState.errorString = "Versions of server and client do not match!"; | 
|---|
| 97 |         continue; | 
|---|
| 98 |       } | 
|---|
| 99 |  | 
|---|
| 100 |     } | 
|---|
| 101 |  | 
|---|
| 102 |     if ( *it == candel_id ) | 
|---|
| 103 |     { | 
|---|
| 104 |       PRINTF(0)("handshake finished candel changed\n"); | 
|---|
| 105 |     } | 
|---|
| 106 |  | 
|---|
| 107 |   } | 
|---|
| 108 |  | 
|---|
| 109 |   if ( | 
|---|
| 110 |       remoteState.orxId == _ORXONOX_ID && | 
|---|
| 111 |       remoteState.version == _ORXONOX_VERSION | 
|---|
| 112 |      ) | 
|---|
| 113 |     localState.completed = 1; | 
|---|
| 114 | } | 
|---|
| 115 |  | 
|---|