| 
                Last change
                  on this file since 9458 was
                  9458,
                  checked in by patrick, 19 years ago
           | 
        
        
          | 
               
switching to new permission system, first step 
 
           | 
        
        | 
            File size:
            1.5 KB
           | 
      
      
        
  | Line |   | 
|---|
| 1 | /*! | 
|---|
| 2 |  * @file network_manager.h | 
|---|
| 3 |   *  Main interface for the network module. Manages all the modules | 
|---|
| 4 | */ | 
|---|
| 5 |  | 
|---|
| 6 | /* you will want to add such a a line at your header file also, since it will | 
|---|
| 7 |    prevent c++ from including your code twice*/ | 
|---|
| 8 | #ifndef _NETWORK_MANAGER | 
|---|
| 9 | #define _NETWORK_MANAGER | 
|---|
| 10 |  | 
|---|
| 11 | /* include this file, it contains some default definitions */ | 
|---|
| 12 | #include "netdefs.h" | 
|---|
| 13 | #include "shared_network_data.h" | 
|---|
| 14 |  | 
|---|
| 15 | /* include base_object.h since all classes are derived from this one */ | 
|---|
| 16 | #include "base_object.h" | 
|---|
| 17 |  | 
|---|
| 18 |  | 
|---|
| 19 |  | 
|---|
| 20 | class NetworkStream; | 
|---|
| 21 | class Synchronizeable; | 
|---|
| 22 |  | 
|---|
| 23 |  | 
|---|
| 24 | /* and here is the class itsself*/ | 
|---|
| 25 | class NetworkManager : public BaseObject | 
|---|
| 26 | { | 
|---|
| 27 |  | 
|---|
| 28 |   public: | 
|---|
| 29 |  | 
|---|
| 30 |     inline static NetworkManager* getInstance() { if (!NetworkManager::singletonRef) NetworkManager::singletonRef = new NetworkManager(); | 
|---|
| 31 |       return NetworkManager::singletonRef; } | 
|---|
| 32 |     virtual ~NetworkManager(); | 
|---|
| 33 |  | 
|---|
| 34 |     void initialize(); | 
|---|
| 35 |     void shutdown(); | 
|---|
| 36 |  | 
|---|
| 37 |     int createClient( const std::string & name, unsigned int port); | 
|---|
| 38 |     int createMasterServer( unsigned int port); | 
|---|
| 39 |     int createProxyServer( unsigned int port); | 
|---|
| 40 |  | 
|---|
| 41 |     void connectSynchronizeable(Synchronizeable& sync); | 
|---|
| 42 |     void synchronize(float dtS); | 
|---|
| 43 |  | 
|---|
| 44 |     void debug(); | 
|---|
| 45 |  | 
|---|
| 46 |  | 
|---|
| 47 |   private: | 
|---|
| 48 |     NetworkManager(); | 
|---|
| 49 |  | 
|---|
| 50 |  | 
|---|
| 51 |   private: | 
|---|
| 52 |     static NetworkManager*           singletonRef;            //!< Pointer to the only instance of this Class | 
|---|
| 53 |     NetworkStream*                   networkStream;           //!< pointer to network stream | 
|---|
| 54 |  | 
|---|
| 55 |     float                            elapsedTime;             //!< elapsed time since the last network update | 
|---|
| 56 | }; | 
|---|
| 57 |  | 
|---|
| 58 |  | 
|---|
| 59 |  | 
|---|
| 60 | #endif /* _NETWORK_MANAGER */ | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.