Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FICN/src/network/PacketManager.h @ 489

Last change on this file since 489 was 478, checked in by scheusso, 17 years ago

spagat

File size: 2.2 KB
RevLine 
[199]1#ifndef PACKETMANAGER_H_
2#define PACKETMANAGER_H_
3
[400]4#include <string>
[199]5#include <enet/enet.h>
[415]6#include "PacketTypes.h"
[199]7
[440]8#define CLIENTID_CLIENT -1
9
[223]10//enum netowk generaly used to set the type ID of a packet
[413]11namespace network{
12 
[415]13 
[199]14
[415]15
16
[223]17/*
18 * class to generate packets
19 *
[332]20 * @autor: Dumeni Manatschal
[223]21 *
22*/ 
[199]23class PacketGenerator
24{
25public:
26        PacketGenerator();
[223]27        //call one of this functions out of an instance of PacketGenerator to create a packet
[199]28        ENetPacket* acknowledgement( int state, int reliable = ENET_PACKET_FLAG_RELIABLE );
29        ENetPacket* mousem( double x, double y, int reliable = ENET_PACKET_FLAG_RELIABLE );
30        ENetPacket* keystrike( char press, int reliable = ENET_PACKET_FLAG_RELIABLE );
[440]31  ENetPacket* chatMessage( const char* message, int reliable = ENET_PACKET_FLAG_RELIABLE );
32  ENetPacket* gstate( GameStateCompressed *states, int reliable = ENET_PACKET_FLAG_RELIABLE );
33  ENetPacket* clid( int classid, std::string classname, int reliable = ENET_PACKET_FLAG_RELIABLE );
[199]34private:
35};
36
[223]37/*
38 * class used to decode incoming packets
39 *
[332]40 * @autor: Dumeni Manatschal
[223]41 *
42*/
[199]43class PacketDecoder
44{
45public:
46        PacketDecoder();
[223]47        //call this function to decode, it calls the right decoding function below
[203]48        bool elaborate( ENetPacket* packet, int clientId );
[478]49protected:
50   
51  virtual void processChat( chat *data, int clientId);
[415]52       
[478]53       
[199]54private:
[400]55       
[401]56       
[199]57       
[440]58  void acknowledgement( ENetPacket* packet, int clientId = CLIENTID_CLIENT );
59  void mousem( ENetPacket* packet, int clientId = CLIENTID_CLIENT );
60  void keystrike( ENetPacket* packet, int clientId = CLIENTID_CLIENT );
61  void chatMessage( ENetPacket* packet, int clientId = CLIENTID_CLIENT);
62  void gstate( ENetPacket* packet );
63  void clid( ENetPacket *packet);
[199]64       
[369]65  //process data
[374]66  //two functions are note yet implemented!
67  //virtual void processGamestate(GameState *state);
[475]68  void processClassid( classid *cid);
[374]69  //virtual void processAck( ack *data);
[369]70 
[199]71        //print functions
72        void printAck( ack* data );
73        void printMouse( mouse* data );
74        void printKey( keyboard* data );
[440]75        void printChat( chat* data, int clientId );
[413]76        void printGamestate( GameStateCompressed *data );
[440]77  void printClassid( classid *cid);
[199]78};
79}
80
81#endif /*PACKETMANAGER_H_*/
Note: See TracBrowser for help on using the repository browser.