[1701] | 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 <scheusso [at] ee.ethz.ch>, (C) 2008 |
---|
| 24 | * Co-authors: |
---|
| 25 | * ... |
---|
| 26 | * |
---|
| 27 | */ |
---|
[3214] | 28 | #ifndef _NETWORK_Packet_H__ |
---|
| 29 | #define _NETWORK_Packet_H__ |
---|
[1701] | 30 | |
---|
[2171] | 31 | #include "network/NetworkPrereqs.h" |
---|
[1711] | 32 | #include <map> |
---|
[1701] | 33 | |
---|
[8327] | 34 | namespace orxonox |
---|
| 35 | { |
---|
[1701] | 36 | |
---|
[8327] | 37 | namespace packet |
---|
| 38 | { |
---|
[2087] | 39 | |
---|
[11071] | 40 | enum class Direction |
---|
[8327] | 41 | { |
---|
[11071] | 42 | Incoming, |
---|
| 43 | Outgoing, |
---|
| 44 | Bidirectional |
---|
| 45 | }; |
---|
| 46 | enum class Type : uint8_t |
---|
[8327] | 47 | { |
---|
[11071] | 48 | Acknowledgement, |
---|
| 49 | Chat, |
---|
| 50 | ClassID, |
---|
| 51 | DeleteObjects, |
---|
| 52 | FunctionIDs, |
---|
| 53 | FunctionCalls, |
---|
| 54 | Gamestate, |
---|
| 55 | Welcome |
---|
| 56 | }; |
---|
[2087] | 57 | |
---|
[1701] | 58 | /** |
---|
[6073] | 59 | @author Oliver Scheuss <scheusso [at] ee.ethz.ch> |
---|
[1701] | 60 | */ |
---|
[8327] | 61 | class _NetworkExport Packet |
---|
| 62 | { |
---|
[1701] | 63 | public: |
---|
[1711] | 64 | Packet(const Packet &p); |
---|
[1709] | 65 | virtual ~Packet(); |
---|
[8327] | 66 | static Packet* createPacket(ENetPacket* packet, uint32_t peerID); |
---|
| 67 | static void deletePacket(ENetPacket* packet); |
---|
[2087] | 68 | |
---|
[8327] | 69 | virtual unsigned char* getData(){ return data_; }; |
---|
[12027] | 70 | virtual unsigned int getSize() const = 0; |
---|
| 71 | |
---|
| 72 | // Invoke some sort of action associated with the packet |
---|
| 73 | virtual bool process(orxonox::Host* host) = 0; |
---|
| 74 | |
---|
[3084] | 75 | inline uint32_t getFlags() |
---|
[1711] | 76 | { return flags_; } |
---|
[7801] | 77 | inline int getPeerID() |
---|
| 78 | { return peerID_; } |
---|
| 79 | inline void setPeerID( int id ) |
---|
| 80 | { peerID_ = id; } |
---|
| 81 | inline bool isReliable() |
---|
| 82 | { return this->flags_ & PacketFlag::Reliable; } |
---|
| 83 | inline uint32_t getRequiredGamestateID() |
---|
| 84 | { return this->requiredGamestateID_; } |
---|
[2087] | 85 | |
---|
[7801] | 86 | virtual bool send(orxonox::Host* host); |
---|
[12027] | 87 | |
---|
[1701] | 88 | protected: |
---|
[1711] | 89 | Packet(); |
---|
[7801] | 90 | Packet(uint8_t *data, unsigned int peerID); |
---|
[3084] | 91 | inline bool isDataENetAllocated() const |
---|
| 92 | { return bDataENetAllocated_; } |
---|
| 93 | |
---|
[2773] | 94 | uint32_t flags_; |
---|
[7801] | 95 | unsigned int peerID_; |
---|
| 96 | uint32_t requiredGamestateID_; |
---|
[11071] | 97 | Direction packetDirection_; |
---|
[2087] | 98 | /** Pointer to the data. Be careful when deleting it because it might |
---|
| 99 | point to a location that was allocated by ENet. |
---|
| 100 | See bDataENetAllocated_ */ |
---|
[1907] | 101 | uint8_t *data_; |
---|
[2087] | 102 | /** Tells whether data_ was allocated by ENet or ourselves. |
---|
| 103 | data_ might no correlate with enetPacket_->data. */ |
---|
| 104 | bool bDataENetAllocated_; |
---|
[12027] | 105 | |
---|
[1701] | 106 | private: |
---|
[12027] | 107 | // All Packets are contained in this map |
---|
[2171] | 108 | static std::map<size_t, Packet *> packetMap_; |
---|
[7801] | 109 | static boost::mutex packetMapMutex_; |
---|
[1701] | 110 | ENetPacket *enetPacket_; |
---|
| 111 | }; |
---|
| 112 | |
---|
| 113 | } //namespace packet |
---|
| 114 | |
---|
[2171] | 115 | } //namespace orxonox |
---|
[1701] | 116 | |
---|
[3214] | 117 | #endif /* _NETWORK_Packet_H__ */ |
---|