Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/network/src/lib/network/network_stream.h @ 5811

Last change on this file since 5811 was 5811, checked in by patrick, 18 years ago

network: again some changes in the functino arguments order, more test abilities in the network subproject

File size: 1.3 KB
Line 
1/*!
2 * @file network_stream.h
3 *  implementation of a network pipe
4 */
5
6#ifndef _NETWORK_STREAM
7#define _NETWORK_STREAM
8
9#include "data_stream.h"
10#include "network_protocol.h"
11
12class Synchronizeable;
13class NetworkSocket;
14class ConnectionMonitor;
15class NetworkProtocol;
16
17
18//<! The state of the NetworkStream
19typedef enum NetStat {
20  NET_REC_HEADER = 0,                          //!< Waiting for header
21  NET_REC_DATA,                                //!< Waiting for data
22
23  NUM_STATES                                   //!< Number of states
24};
25
26
27class NetworkStream : public DataStream
28{
29
30public:
31  NetworkStream();
32  NetworkStream(IPaddress& address, Synchronizeable& sync, NodeType type);
33  NetworkStream(unsigned int port, Synchronizeable& sync, NodeType type);
34  ~NetworkStream();
35
36  void init();
37
38  inline bool isServer() { return (this->type == NET_SERVER)? true:false; }
39  virtual void processData();
40
41private:
42   NetworkProtocol* networkProtocol;
43   //NetworkSocket*       networkSockets;
44   ConnectionMonitor*      connectionMonitor;
45   // tList<Synchronizeable>* synchronizeables;
46   Synchronizeable*         synchronizeables;
47   NetworkSocket* networkSocket;
48   int                    type;
49   int                    state;
50   Header                 packetHeader;
51};
52#endif /* _NETWORK_STREAM */
53
Note: See TracBrowser for help on using the repository browser.