Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/network/src/network/packet/Packet.h @ 1709

Last change on this file since 1709 was 1709, checked in by scheusso, 16 years ago

fixed messing up with enet

File size: 2.0 KB
Line 
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 */
28#ifndef NETWORKPACKET_H
29#define NETWORKPACKET_H
30
31#include "PacketContent.h"
32
33#include <enet/enet.h>
34
35namespace network {
36
37namespace packet{
38 
39namespace ENUM{
40  enum Direction{
41    Incoming,
42    Outgoing,
43    Bidirectional
44  };
45  enum Type{
46    Acknowledgement,
47    Gamestate,
48    ClassID,
49    Chat,
50    Welcome
51  };
52}
53 
54/**
55        @author Oliver Scheuss <scheusso [at] ee.ethz.ch>
56*/
57class Packet{
58  public:
59    Packet();
60    Packet(PacketContent *content);
61    Packet(ENetPacket *packet, ENetPeer *peer);
62    virtual ~Packet();
63   
64    int getClientID(){ return clientID_; }
65    PacketContent *getPacketContent(){ return packetContent_; }
66   
67    void setClientID( int id ){ clientID_ = id; }
68    void setPacketContent(PacketContent *content);
69   
70    bool send();
71  protected:
72  private:
73    PacketContent *createPacketContent(ENetPacket *packet);
74   
75    int clientID_;
76    PacketContent *packetContent_;
77    ENetPacket *enetPacket_;
78    ENUM::Direction packetDirection_;
79};
80
81} //namespace packet
82
83} //namespace network
84
85#endif
Note: See TracBrowser for help on using the repository browser.