| 
                Last change
                  on this file since 2082 was
                  1907,
                  checked in by scheusso, 17 years ago
           | 
        
        
          | 
               
merged network branch back to trunk 
 
           | 
        
        
          
            
              - 
                  Property svn:eol-style set to
                  
native
               
             
           | 
        
        | 
            File size:
            583 bytes
           | 
      
      
        
  | Line |   | 
|---|
| 1 |  | 
|---|
| 2 | #ifndef NETWORKCHAT_H | 
|---|
| 3 | #define NETWORKCHAT_H | 
|---|
| 4 |  | 
|---|
| 5 | #include <string> | 
|---|
| 6 | #include <cstring> | 
|---|
| 7 |  | 
|---|
| 8 | #include "Packet.h" | 
|---|
| 9 |  | 
|---|
| 10 | namespace network { | 
|---|
| 11 | namespace packet { | 
|---|
| 12 | /** | 
|---|
| 13 |         @author  | 
|---|
| 14 | */ | 
|---|
| 15 | class Chat : public Packet | 
|---|
| 16 | { | 
|---|
| 17 | public: | 
|---|
| 18 |   Chat( std::string message, unsigned int playerID ); | 
|---|
| 19 |   Chat( uint8_t* data, unsigned int clientID ); | 
|---|
| 20 |   ~Chat(); | 
|---|
| 21 |    | 
|---|
| 22 |   inline unsigned int getSize() const; | 
|---|
| 23 |   bool process(); | 
|---|
| 24 |    | 
|---|
| 25 |   unsigned int getMessageLength(){ return messageLength_; }; | 
|---|
| 26 |   unsigned char *getMessage(); | 
|---|
| 27 | private: | 
|---|
| 28 |   uint32_t messageLength_; | 
|---|
| 29 |   unsigned int clientID_; | 
|---|
| 30 | }; | 
|---|
| 31 |  | 
|---|
| 32 | } //namespace packet | 
|---|
| 33 | } //namespace network | 
|---|
| 34 |  | 
|---|
| 35 | #endif | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.