[1505] | 1 | /* |
---|
| 2 | * ORXONOX - the hottest 3D action shooter ever to exist |
---|
| 3 | * > www.orxonox.net < |
---|
| 4 | * |
---|
| 5 | * |
---|
| 6 | * License notice: |
---|
| 7 | * |
---|
| 8 | * This program is free software; you can redistribute it and/or |
---|
| 9 | * modify it under the terms of the GNU General Public License |
---|
| 10 | * as published by the Free Software Foundation; either version 2 |
---|
| 11 | * of the License, or (at your option) any later version. |
---|
| 12 | * |
---|
| 13 | * This program is distributed in the hope that it will be useful, |
---|
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 16 | * GNU General Public License for more details. |
---|
| 17 | * |
---|
| 18 | * You should have received a copy of the GNU General Public License |
---|
| 19 | * along with this program; if not, write to the Free Software |
---|
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
| 21 | * |
---|
| 22 | * Author: |
---|
| 23 | * Oliver Scheuss, (C) 2007 |
---|
| 24 | * Co-authors: |
---|
| 25 | * ... |
---|
| 26 | * |
---|
| 27 | */ |
---|
| 28 | |
---|
| 29 | #ifndef _Synchronisable_H__ |
---|
| 30 | #define _Synchronisable_H__ |
---|
| 31 | |
---|
[2211] | 32 | #include "network/NetworkPrereqs.h" |
---|
[1505] | 33 | |
---|
| 34 | #include <list> |
---|
[1907] | 35 | #include <map> |
---|
| 36 | #include <queue> |
---|
[2245] | 37 | #include <cassert> |
---|
| 38 | #include "util/Math.h" |
---|
| 39 | #include "util/mbool.h" |
---|
[1505] | 40 | #include "core/OrxonoxClass.h" |
---|
[2245] | 41 | // TODO: this has to be removed |
---|
| 42 | // #include <OgreLight.h> |
---|
| 43 | // #include "OrxonoxPrereqs.h" |
---|
| 44 | // ============================ |
---|
[1534] | 45 | #include "NetworkCallback.h" |
---|
[2245] | 46 | #include "SynchronisableVariable.h" |
---|
[1505] | 47 | |
---|
[2245] | 48 | /*#define REGISTERDATA(varname, ...) \ |
---|
[2171] | 49 | registerVariable((void*)&varname, sizeof(varname), DATA, __VA_ARGS__) |
---|
[2087] | 50 | #define REGISTERSTRING(stringname, ...) \ |
---|
[2245] | 51 | registerVariable(&stringname, stringname.length()+1, STRING, __VA_ARGS__)*/ |
---|
[1907] | 52 | |
---|
[2171] | 53 | namespace orxonox |
---|
[1505] | 54 | { |
---|
[2087] | 55 | |
---|
[2245] | 56 | namespace objectDirection{ |
---|
| 57 | enum objectdirection{ |
---|
[1907] | 58 | toclient=0x1, |
---|
| 59 | toserver=0x2, |
---|
[2245] | 60 | bidirectional=0x3 |
---|
[1907] | 61 | }; |
---|
| 62 | } |
---|
[2485] | 63 | |
---|
[2415] | 64 | namespace priority{ |
---|
| 65 | enum prio{ |
---|
[2419] | 66 | very_high = -100, |
---|
[2415] | 67 | high = -15, |
---|
| 68 | normal = 0, |
---|
| 69 | low = 15, |
---|
[2419] | 70 | very_low = 100 |
---|
[2415] | 71 | }; |
---|
| 72 | } |
---|
[2087] | 73 | |
---|
| 74 | struct _NetworkExport synchronisableHeader{ |
---|
[1907] | 75 | uint32_t size:31; |
---|
| 76 | bool dataAvailable:1; |
---|
| 77 | uint32_t objectID; |
---|
[2087] | 78 | uint32_t creatorID; |
---|
[1907] | 79 | uint32_t classID; |
---|
[1505] | 80 | }; |
---|
| 81 | |
---|
| 82 | |
---|
| 83 | /** |
---|
| 84 | * This class is the base class of all the Objects in the universe that need to be synchronised over the network |
---|
[1907] | 85 | * Every class, that inherits from this class has to link the DATA THAT NEEDS TO BE SYNCHRONISED into the linked list. |
---|
[1505] | 86 | * @author Oliver Scheuss |
---|
| 87 | */ |
---|
[2171] | 88 | class _NetworkExport Synchronisable : virtual public OrxonoxClass{ |
---|
[1505] | 89 | public: |
---|
[1907] | 90 | friend class packet::Gamestate; |
---|
[2171] | 91 | // friend class Server; |
---|
[1505] | 92 | virtual ~Synchronisable(); |
---|
| 93 | |
---|
| 94 | static void setClient(bool b); |
---|
[2087] | 95 | |
---|
[2171] | 96 | static Synchronisable *fabricate(uint8_t*& mem, uint8_t mode=0x0); |
---|
[2309] | 97 | static bool deleteObject(uint32_t objectID); |
---|
| 98 | static Synchronisable *getSynchronisable(uint32_t objectID); |
---|
[1907] | 99 | static unsigned int getNumberOfDeletedObject(){ return deletedObjects_.size(); } |
---|
[2309] | 100 | static uint32_t popDeletedObject(){ uint32_t i = deletedObjects_.front(); deletedObjects_.pop(); return i; } |
---|
[2087] | 101 | |
---|
[2485] | 102 | inline uint32_t getObjectID() const {return objectID;} |
---|
| 103 | inline unsigned int getCreatorID() const {return creatorID;} |
---|
| 104 | inline uint32_t getClassID() const {return classID;} |
---|
| 105 | inline unsigned int getPriority() const { return objectFrequency_;} |
---|
[2355] | 106 | |
---|
[1505] | 107 | protected: |
---|
[2171] | 108 | Synchronisable(BaseObject* creator); |
---|
[2245] | 109 | // void registerVariable(void *var, int size, variableType t, uint8_t mode=0x1, NetworkCallbackBase *cb=0); |
---|
| 110 | template <class T> void registerVariable(T& variable, uint8_t mode=0x1, NetworkCallbackBase *cb=0, bool bidirectional=false); |
---|
| 111 | template <class T> void unregisterVariable(T& var); |
---|
[2171] | 112 | void setObjectMode(uint8_t mode); |
---|
[2415] | 113 | void setPriority(unsigned int freq){ objectFrequency_ = freq; } |
---|
[2087] | 114 | |
---|
| 115 | |
---|
[1505] | 116 | private: |
---|
[2309] | 117 | bool getData(uint8_t*& men, int32_t id, uint8_t mode=0x0); |
---|
| 118 | uint32_t getSize(int32_t id, uint8_t mode=0x0); |
---|
[2171] | 119 | bool updateData(uint8_t*& mem, uint8_t mode=0x0, bool forceCallback=false); |
---|
[1907] | 120 | bool isMyData(uint8_t* mem); |
---|
[2309] | 121 | bool doSelection(int32_t id); |
---|
| 122 | bool doSync(int32_t id, uint8_t mode=0x0); |
---|
[2087] | 123 | |
---|
[2309] | 124 | uint32_t objectID; |
---|
| 125 | uint32_t creatorID; |
---|
| 126 | uint32_t classID; |
---|
[2087] | 127 | |
---|
[2245] | 128 | std::list<SynchronisableVariableBase*> syncList; |
---|
[2171] | 129 | static uint8_t state_; // detemines wheter we are server (default) or client |
---|
[1505] | 130 | bool backsync_; // if true the variables with mode > 1 will be synchronised to server (client -> server) |
---|
[1751] | 131 | unsigned int objectFrequency_; |
---|
| 132 | int objectMode_; |
---|
[2309] | 133 | static std::map<uint32_t, Synchronisable *> objectMap_; |
---|
| 134 | static std::queue<uint32_t> deletedObjects_; |
---|
[1505] | 135 | }; |
---|
[2485] | 136 | |
---|
[2245] | 137 | template <class T> void Synchronisable::registerVariable(T& variable, uint8_t mode, NetworkCallbackBase *cb, bool bidirectional) |
---|
| 138 | { |
---|
| 139 | if (bidirectional) |
---|
| 140 | syncList.push_back(new SynchronisableVariableBidirectional<const T>(variable, mode, cb)); |
---|
| 141 | else |
---|
| 142 | syncList.push_back(new SynchronisableVariable<const T>(variable, mode, cb)); |
---|
| 143 | } |
---|
| 144 | |
---|
| 145 | template <class T> void Synchronisable::unregisterVariable(T& var){ |
---|
| 146 | std::list<SynchronisableVariableBase*>::iterator it = syncList.begin(); |
---|
| 147 | while(it!=syncList.end()){ |
---|
| 148 | if( ((*it)->getReference()) == &var ){ |
---|
| 149 | delete (*it); |
---|
| 150 | syncList.erase(it); |
---|
| 151 | return; |
---|
| 152 | } |
---|
| 153 | else |
---|
| 154 | it++; |
---|
| 155 | } |
---|
| 156 | bool unregistered_nonexistent_variable = false; |
---|
| 157 | assert(unregistered_nonexistent_variable); //if we reach this point something went wrong: |
---|
| 158 | // the variable has not been registered before |
---|
| 159 | } |
---|
[2485] | 160 | |
---|
[2245] | 161 | // ================= Specialisation declarations |
---|
[2307] | 162 | template <> _NetworkExport void Synchronisable::registerVariable( const ColourValue& variable, uint8_t mode, NetworkCallbackBase* cb, bool bidirectional); |
---|
| 163 | template <> _NetworkExport void Synchronisable::registerVariable( ColourValue& variable, uint8_t mode, NetworkCallbackBase* cb, bool bidirectional); |
---|
| 164 | template <> _NetworkExport void Synchronisable::registerVariable( const Vector2& variable, uint8_t mode, NetworkCallbackBase* cb, bool bidirectional); |
---|
| 165 | template <> _NetworkExport void Synchronisable::registerVariable( Vector2& variable, uint8_t mode, NetworkCallbackBase* cb, bool bidirectional); |
---|
| 166 | template <> _NetworkExport void Synchronisable::registerVariable( const Vector3& variable, uint8_t mode, NetworkCallbackBase* cb, bool bidirectional); |
---|
| 167 | template <> _NetworkExport void Synchronisable::registerVariable( Vector3& variable, uint8_t mode, NetworkCallbackBase* cb, bool bidirectional); |
---|
| 168 | template <> _NetworkExport void Synchronisable::registerVariable( const Vector4& variable, uint8_t mode, NetworkCallbackBase* cb, bool bidirectional); |
---|
| 169 | template <> _NetworkExport void Synchronisable::registerVariable( Vector4& variable, uint8_t mode, NetworkCallbackBase* cb, bool bidirectional); |
---|
| 170 | template <> _NetworkExport void Synchronisable::registerVariable( mbool& variable, uint8_t mode, NetworkCallbackBase* cb, bool bidirectional); |
---|
| 171 | template <> _NetworkExport void Synchronisable::registerVariable( const Quaternion& variable, uint8_t mode, NetworkCallbackBase* cb, bool bidirectional); |
---|
| 172 | template <> _NetworkExport void Synchronisable::registerVariable( Quaternion& variable, uint8_t mode, NetworkCallbackBase* cb, bool bidirectional); |
---|
| 173 | // template <> _NetworkExport void Synchronisable::registerVariable( LODParticle::LOD& variable, uint8_t mode, NetworkCallbackBase* cb, bool bidirectional); |
---|
| 174 | // template <> _NetworkExport void Synchronisable::registerVariable( Ogre::Light::LightTypes& variable, uint8_t mode, NetworkCallbackBase* cb, bool bidirectional); |
---|
[1505] | 175 | } |
---|
| 176 | |
---|
| 177 | #endif /* _Synchronisable_H__ */ |
---|