Last change
on this file since 6026 was
5822,
checked in by bensch, 19 years ago
|
orxonox/trunk: merged branches/network to the trunk
merged with command:
svn merge -r 5505:HEAD branches/network trunk
conflicts resolved in favor of the trunk (as always
also fixed a typo in the #include "SDL_tread.h"
|
File size:
777 bytes
|
Line | |
---|
1 | /*! |
---|
2 | |
---|
3 | */ |
---|
4 | |
---|
5 | #ifndef _NETWORK_PROTOCOL_H |
---|
6 | #define _NETWORK_PROTOCOL_H |
---|
7 | |
---|
8 | #include "base_object.h" |
---|
9 | |
---|
10 | /* include this file, it contains some default definitions */ |
---|
11 | #include "netdefs.h" |
---|
12 | |
---|
13 | #define HEADER_LENGTH 1 |
---|
14 | |
---|
15 | typedef struct Header |
---|
16 | { |
---|
17 | byte protocol; |
---|
18 | byte version; |
---|
19 | byte senderID; |
---|
20 | byte receiverID; |
---|
21 | byte length; |
---|
22 | }; |
---|
23 | |
---|
24 | class Synchronizeable; |
---|
25 | |
---|
26 | /*! |
---|
27 | |
---|
28 | */ |
---|
29 | class NetworkProtocol : virtual public BaseObject |
---|
30 | { |
---|
31 | public: |
---|
32 | NetworkProtocol(); |
---|
33 | ~NetworkProtocol(); |
---|
34 | |
---|
35 | int createHeader(byte* data, int length, int bufferLength, const Synchronizeable& source, unsigned int remoteID); |
---|
36 | Header extractHeader(byte* data, int length); |
---|
37 | |
---|
38 | private: |
---|
39 | unsigned int headerLength; //The Length of the Header in bytes |
---|
40 | }; |
---|
41 | |
---|
42 | #endif //_NETWORK_PROTOCOL_H |
---|
Note: See
TracBrowser
for help on using the repository browser.