Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/presentation/src/network/packet/Gamestate.h @ 2743

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

fixed a problem with gamestate caching and diffing

  • Property svn:eol-style set to native
File size: 4.3 KB
RevLine 
[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, (C) 2008
24 *   Co-authors:
25 *      ...
26 *
27 */
28
[2087]29
30#ifndef NETWORK_PACKETGAMESTATE_H
31#define NETWORK_PACKETGAMESTATE_H
32
[2371]33#include "network/NetworkPrereqs.h"
[2087]34
[1710]35#include "Packet.h"
[2371]36#include "network/TrafficControl.h"
37#include "core/CoreIncludes.h"
[1907]38#include <map>
[2371]39#include <list>
[1751]40#ifndef NDEBUG
41#include "util/CRC32.h"
42#endif
[1701]43
[2171]44namespace orxonox {
[1701]45
46namespace packet {
[1747]47
[2655]48class _NetworkExport GamestateHeader{
49  public:
[2660]50    GamestateHeader(uint8_t *data){ assert(data); data_ = data; *(uint32_t*)data_ = ENUM::Gamestate; }
[2655]51    GamestateHeader(uint8_t *data, GamestateHeader* h)
[2660]52    { assert(data); data_=data; memcpy(data_, h->data_, getSize()); }
[2655]53    static inline uint32_t getSize()
[2660]54    { return 21; }
[2575]55
[2655]56    inline int32_t getID() const
[2660]57    { assert(data_); return *(int32_t*)(data_+4); }
[2655]58    inline void setID(int32_t id)
[2660]59    { assert(data_); *(int32_t*)(data_+4) = id; }
[2655]60
61    inline int32_t getBaseID() const
[2660]62    { assert(data_); return *(int32_t*)(data_+8); }
[2655]63    inline void setBaseID(int32_t id)
[2660]64    { assert(data_); *(int32_t*)(data_+8) = id; }
[2655]65
66    inline uint32_t getDataSize() const
[2660]67    { assert(data_); return *(uint32_t*)(data_+12); }
[2655]68    inline void setDataSize(uint32_t size)
[2660]69    { assert(data_); *(uint32_t*)(data_+12) = size; }
[2655]70
71    inline uint32_t getCompSize() const
[2660]72    { assert(data_); return *(uint32_t*)(data_+16); }
[2655]73    inline void setCompSize(uint32_t size)
[2660]74    { assert(data_); *(uint32_t*)(data_+16) = size; }
[2655]75
76    inline bool isDiffed() const
[2660]77    { assert(data_); return *(int8_t*)(data_+20) & 0x1; }
[2655]78    inline void setDiffed(bool b)
[2660]79    { assert(data_); *(int8_t*)(data_+20) = (b<<0) | (*(int8_t*)(data_+20) & 0x6 ); }
[2655]80
81    inline bool isComplete() const
[2660]82    { assert(data_); return *(int8_t*)(data_+20) & 0x2; }
[2655]83    inline void setComplete(bool b)
[2660]84    { assert(data_); *(int8_t*)(data_+20) = (b<<1) | (*(int8_t*)(data_+20) & 0x5 ); }
[2655]85
86    inline bool isCompressed() const
[2660]87    { assert(data_); return *(int8_t*)(data_+20) & 0x4; }
[2655]88    inline void setCompressed(bool b)
[2660]89    { assert(data_); *(int8_t*)(data_+20) = (b<<2) | (*(int8_t*)(data_+20) & 0x3 ); }
[2655]90
91    inline void operator=(GamestateHeader& h)
[2660]92    { assert(data_); assert(h.data_); memcpy( data_, h.data_, getSize()); }
[2655]93  private:
94    uint8_t *data_;
95//#define GAMESTATE_START(data) (data + sizeof(GamestateHeader))
96//#define GAMESTATE_HEADER(data) ((GamestateHeader *)data)
97//#define HEADER GAMESTATE_HEADER(data_)
98
[1701]99};
100
101/**
[1907]102        @author Oliver Scheuss
[1701]103*/
[2087]104class _NetworkExport Gamestate: public Packet{
[1701]105  public:
106    Gamestate();
[1907]107    Gamestate(uint8_t *data, unsigned int clientID);
108    Gamestate(uint8_t *data);
[2660]109    Gamestate(const Gamestate& g);
[1747]110
[1701]111    ~Gamestate();
[1747]112
[2171]113    bool collectData(int id, uint8_t mode=0x0);
114    bool spreadData( uint8_t mode=0x0);
[2655]115    inline int32_t getID() const { return header_->getID(); }
116    inline bool isDiffed() const { return header_->isDiffed(); }
117    inline bool isCompressed() const { return header_->isCompressed(); }
118    inline int32_t getBaseID() const { return header_->getBaseID(); }
[1705]119    Gamestate *diff(Gamestate *base);
120    Gamestate *undiff(Gamestate *base);
[2371]121    Gamestate* doSelection(unsigned int clientID, unsigned int targetSize);
[1705]122    bool compressData();
123    bool decompressData();
[1747]124
[1711]125    // Packet functions
[1907]126  private:
[2371]127    virtual uint32_t getSize() const;
[2575]128    virtual inline bool process();
[1701]129
[1751]130    bool operator ==(packet::Gamestate gs);
[1701]131  private:
[2371]132    uint32_t calcGamestateSize(int32_t id, uint8_t mode=0x0);
133    std::list<obj> dataMap_;
[2655]134    GamestateHeader* header_;
[1701]135};
136
137}
138
139}
140
141#endif
Note: See TracBrowser for help on using the repository browser.