Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/network/src/lib/network/network_game_manager.h @ 6219

Last change on this file since 6219 was 6219, checked in by rennerc, 18 years ago

network_game_manager: implemented some functions

File size: 3.3 KB
Line 
1/*!
2 * @file entity_manager.h
3 *  Manages creation and destruction of entities
4 */
5
6#ifndef _NETWORK_GAME_MANGER
7#define _NETWORK_GAME_MANAGER
8
9/* include this file, it contains some default definitions */
10#include "netdefs.h"
11
12/* include base_object.h since all classes are derived from this one */
13#include "synchronizeable.h"
14
15
16
17/**
18 * protocol definition
19 *
20 *  CREATE_ENTITY:       CLASS_ID, UNIQUE_ID, OWNER
21 *  REMOVE_ENTITY:       UNIQUE_ID
22 *
23 *  CREATE_ENTITY_LIST:  NUMBER, [CLASS_ID, UNIQUE_ID, OWNER][0..NUMBER]
24 *  REMOVE_ENTITY_LIST:  NUMBER, [UNIQUE_ID][0..NUMBER]
25 *
26 *  REQUEST_CREATE:      CLASS_ID
27 *  REQUEST_REMOVE:      UNIQUE_ID
28 *
29 *  //REQUEST_CREATE_LIST: NUMBER, [CLASS_ID][0..NUMBER]
30 *  //REQUEST_CREATE_LIST: NUMBER, [UNIQUE_ID][0..NUMBER]
31 *
32 *  REQUEST_SYNC:        UNIQUE_ID
33 *  //REQUEST_SYNC_LIST:   NUMBER, [UNIQUE_ID][0..NUMBER]
34 *
35 *  YOU_ARE_ENTITY:      UNIQUE_ID
36 *
37 */
38
39typedef enum NetworkGameManagerProtocol{
40  CREATE_ENTITY = 0,
41  REMOVE_ENTITY,
42  CREATE_ENTITY_LIST,
43  REMOVE_ENTITY_LIST,
44  REQUEST_CREATE,
45  REQUEST_REMOVE,
46  REQUEST_SYNC,
47  YOU_ARE_ENTITY
48};
49
50struct clientBuffer
51{
52  int length;
53  int maxLength;
54  byte * buffer;
55};
56
57/*!
58 * a class that can create and remove entities
59 */
60class NetworkGameManager: public Synchronizeable
61{
62  public:
63    NetworkGameManager();
64    ~NetworkGameManager();
65
66    virtual void writeBytes(const byte* data, int length, int sender);
67    virtual int readBytes(byte* data, int maxLength, int * reciever);
68    virtual void writeDebug() const;
69    virtual void readDebug() const;
70
71    void createEntity( ClassID classID, int owner = 0 );
72    void removeEntity( int uniqueID );
73    void sendYouAre( int uniqueID, int userID );
74
75    void sync(int uniqueID);
76
77    void sendEntityList(int userID);
78
79  private:
80    void requestCreateEntity(ClassID classID);
81    void executeCreateEntity(ClassID classID, int uniqueID = 0, int owner = 0);
82
83    void requestRemoveEntity(int uniqueID);
84    void executeRemoveEntity(int uniqueID);
85
86    void doCreateEntity(ClassID classID, int uniqueID, int owner);
87    void doRemoveEntity(int uniqueID);
88    void doRequestSync(int uniqueID, int userID);
89    void doYouAre( int uniqueID );
90
91    bool canCreateEntity(ClassID classID);
92
93    void resizeBufferVector(int n);
94
95    inline bool writeToClientBuffer( clientBuffer &cb, byte*data, int length );
96    inline bool readFromClientBuffer( clientBuffer &cb, byte*data, int length );
97
98    //helper functions for writeBytes
99    inline bool handleRequestCreate( int& i, const byte* data, int length, int sender );
100    inline bool handleRequestRemove( int& i, const byte* data, int length, int sender );
101    inline bool handleCreateEntity( int& i, const byte* data, int length, int sender );
102    inline bool handleRemoveEntity( int& i, const byte* data, int length, int sender );
103    inline bool handleCreateEntityList( int& i, const byte* data, int length, int sender );
104    inline bool handleRemoveEntityList( int& i, const byte* data, int length, int sender );
105    inline bool handleYouAreEntity( int& i, const byte* data, int length, int sender );
106    inline bool handleRequestSync( int& i, const byte* data, int length, int sender );
107
108  private:
109    std::vector<clientBuffer>     outBuffer;
110    clientBuffer                  allOutBuffer;
111
112    int                           newUniqueID;
113};
114
115#endif /*_ENTITY_MANGER*/
Note: See TracBrowser for help on using the repository browser.