[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 | |
---|
[2171] | 34 | namespace orxonox { |
---|
[1701] | 35 | |
---|
| 36 | namespace packet{ |
---|
[2087] | 37 | |
---|
[3280] | 38 | namespace Direction{ |
---|
| 39 | enum Value{ |
---|
[1701] | 40 | Incoming, |
---|
| 41 | Outgoing, |
---|
| 42 | Bidirectional |
---|
| 43 | }; |
---|
[3280] | 44 | } |
---|
| 45 | namespace Type{ |
---|
| 46 | enum Value{ |
---|
[1701] | 47 | Acknowledgement, |
---|
[3084] | 48 | Chat, |
---|
| 49 | ClassID, |
---|
| 50 | DeleteObjects, |
---|
| 51 | FunctionIDs, |
---|
| 52 | FunctionCalls, |
---|
[1701] | 53 | Gamestate, |
---|
[3084] | 54 | Welcome |
---|
[1701] | 55 | }; |
---|
| 56 | } |
---|
[2087] | 57 | |
---|
[1701] | 58 | /** |
---|
| 59 | @author Oliver Scheuss <scheusso [at] ee.ethz.ch> |
---|
| 60 | */ |
---|
[2087] | 61 | class _NetworkExport Packet{ |
---|
[1701] | 62 | public: |
---|
[1711] | 63 | Packet(const Packet &p); |
---|
[1709] | 64 | virtual ~Packet(); |
---|
[1711] | 65 | static Packet *createPacket(ENetPacket *packet, ENetPeer *peer); |
---|
| 66 | static void deletePacket(ENetPacket *packet); |
---|
[2087] | 67 | |
---|
[1711] | 68 | virtual unsigned char *getData(){ return data_; }; |
---|
| 69 | virtual unsigned int getSize() const =0; |
---|
| 70 | virtual bool process()=0; |
---|
[3084] | 71 | inline uint32_t getFlags() |
---|
[1711] | 72 | { return flags_; } |
---|
[3084] | 73 | inline int getClientID() |
---|
[1711] | 74 | { return clientID_; } |
---|
[3084] | 75 | inline void setClientID( int id ) |
---|
[1711] | 76 | { clientID_ = id; } |
---|
[2087] | 77 | |
---|
[1701] | 78 | bool send(); |
---|
| 79 | protected: |
---|
[1711] | 80 | Packet(); |
---|
[1907] | 81 | Packet(uint8_t *data, unsigned int clientID); |
---|
[1713] | 82 | // Packet(ENetPacket *packet, ENetPeer *peer); |
---|
[3084] | 83 | inline bool isDataENetAllocated() const |
---|
| 84 | { return bDataENetAllocated_; } |
---|
| 85 | |
---|
[2773] | 86 | uint32_t flags_; |
---|
[1907] | 87 | unsigned int clientID_; |
---|
[3280] | 88 | Direction::Value packetDirection_; |
---|
[2087] | 89 | /** Pointer to the data. Be careful when deleting it because it might |
---|
| 90 | point to a location that was allocated by ENet. |
---|
| 91 | See bDataENetAllocated_ */ |
---|
[1907] | 92 | uint8_t *data_; |
---|
[2087] | 93 | /** Tells whether data_ was allocated by ENet or ourselves. |
---|
| 94 | data_ might no correlate with enetPacket_->data. */ |
---|
| 95 | bool bDataENetAllocated_; |
---|
[1701] | 96 | private: |
---|
[2171] | 97 | static std::map<size_t, Packet *> packetMap_; |
---|
[1701] | 98 | ENetPacket *enetPacket_; |
---|
| 99 | }; |
---|
| 100 | |
---|
| 101 | } //namespace packet |
---|
| 102 | |
---|
[2171] | 103 | } //namespace orxonox |
---|
[1701] | 104 | |
---|
[3214] | 105 | #endif /* _NETWORK_Packet_H__ */ |
---|