Changeset 6095 in orxonox.OLD for branches/network/src/lib
- Timestamp:
- Dec 14, 2005, 1:39:37 AM (19 years ago)
- Location:
- branches/network/src/lib/network
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/lib/network/network_manager.cc
r6007 r6095 107 107 { 108 108 this->tmpStream = new NetworkStream(port); 109 this->bGameServer = true; 109 110 SDL_Delay(20); 110 111 return 1; … … 135 136 this->tmpStream = new NetworkStream(port); 136 137 this->tmpStream->connectSynchronizeable(sync); 138 this->bGameServer = true; 137 139 } 138 140 -
branches/network/src/lib/network/network_manager.h
r6018 r6095 45 45 void setHostID(int id); 46 46 /** Returns the hostID @return The hostID of the object */ 47 inline int getHostID() { return this->hostID; }; 47 inline int getHostID() { return this->hostID; } 48 inline bool isGameServer() { return this->bGameServer; } 48 49 49 50 … … 56 57 57 58 private: 58 const std::list<BaseObject*>* netStreamList; // list with refs to all network streams 59 const std::list<BaseObject*>* syncList; // list of synchronizeables 60 static NetworkManager* singletonRef; //!< Pointer to the only instance of this Class 61 NetworkStream* tmpStream; //!< FIXME: this is only for testing purposes 62 int hostID; //!< The Host-ID of the Manager 59 const std::list<BaseObject*>* netStreamList; // list with refs to all network streams 60 const std::list<BaseObject*>* syncList; // list of synchronizeables 61 static NetworkManager* singletonRef; //!< Pointer to the only instance of this Class 62 NetworkStream* tmpStream; //!< FIXME: this is only for testing purposes 63 int hostID; //!< The Host-ID of the Manager 64 bool bGameServer; //!< true if it is a server 63 65 64 66 };
Note: See TracChangeset
for help on using the changeset viewer.