Changeset 496 for code/branches/FICN/src/network
- Timestamp:
- Dec 12, 2007, 10:37:30 PM (17 years ago)
- Location:
- code/branches/FICN/src/network
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/network/Client.cc
r459 r496 170 170 void Client::processClassid(classid *clid){ 171 171 orxonox::Identifier *id; 172 id= orxonox::ID(std::string(clid->message));172 id=ID(std::string(clid->message)); 173 173 if(id!=NULL) 174 174 id->setNetworkID(clid->clid); -
code/branches/FICN/src/network/Client.h
r459 r496 19 19 #include "PacketManager.h" 20 20 #include "GameStateClient.h" 21 #include "orxonox/core/ IdentifierIncludes.h"21 #include "orxonox/core/CoreIncludes.h" 22 22 //#include "NetworkFrameListener.h" 23 23 -
code/branches/FICN/src/network/ConnectionManager.cc
r446 r496 224 224 orxonox::Identifier *id; 225 225 while(!abort){ 226 id = orxonox::ID(i);226 id = ID(i); 227 227 if(id == NULL) 228 228 abort=true; -
code/branches/FICN/src/network/ConnectionManager.h
r475 r496 24 24 #include "PacketBuffer.h" 25 25 #include "PacketManager.h" 26 #include "orxonox/core/ IdentifierIncludes.h"26 #include "orxonox/core/CoreIncludes.h" 27 27 28 28 namespace std{ -
code/branches/FICN/src/network/GameStateClient.h
r436 r496 15 15 #include "zlib.h" 16 16 #include "Synchronisable.h" 17 #include "orxonox/core/ IdentifierIncludes.h"17 #include "orxonox/core/CoreIncludes.h" 18 18 #include "GameStateManager.h" 19 19 -
code/branches/FICN/src/network/GameStateManager.h
r436 r496 19 19 #include "ClientInformation.h" 20 20 #include "Synchronisable.h" 21 #include "orxonox/core/ IdentifierIncludes.h"21 #include "orxonox/core/CoreIncludes.h" 22 22 #include "orxonox/core/Iterator.h" 23 23 #include "PacketTypes.h" -
code/branches/FICN/src/network/Synchronisable.h
r459 r496 16 16 #include <iostream> 17 17 18 #include "orxonox/core/ IdentifierIncludes.h"18 #include "orxonox/core/CoreIncludes.h" 19 19 #include "orxonox/core/OrxonoxClass.h" 20 20
Note: See TracChangeset
for help on using the changeset viewer.