Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/network/GamestateManager.h @ 3214

Last change on this file since 3214 was 3214, checked in by scheusso, 15 years ago

merged netp5 back to trunk

  • Property svn:eol-style set to native
File size: 2.6 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
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29//
30// C++ Interface: GamestateManager
31//
32// Description:
33//
34//
35// Author:  Oliver Scheuss, (C) 2007
36//
37// Copyright: See COPYING file that comes with this distribution
38//
39//
40#ifndef _GamestateManager_H__
41#define _GamestateManager_H__
42
43#include "NetworkPrereqs.h"
44
45#include <map>
46#include "GamestateHandler.h"
47
48namespace orxonox
49{
50
51  const int KEEP_GAMESTATES = 10;
52
53  /**
54  * This Class implements a manager for gamestates:
55  * - creating snapshots of gamestates
56  * - writing gamestates to universe
57  * - diffing gamestates
58  * EN/DECODATION:
59  * a: last Gamestate a client has received
60  * b: new Gamestate
61  * x: diffed and compressed gamestate
62  * x=(a^b)
63  * b=(a^x)
64  * diff(a,diff(a,x))=x (hope this is correct)
65  * @author Oliver Scheuss
66  */
67  class _NetworkExport GamestateManager: public GamestateHandler{
68  public:
69    GamestateManager();
70    ~GamestateManager();
71
72    bool add(packet::Gamestate *gs, unsigned int clientID);
73    bool processGamestates();
74    bool update();
75    packet::Gamestate *popGameState(unsigned int clientID);
76
77    bool getSnapshot();
78
79    bool ack(unsigned int gamestateID, unsigned int clientID);
80    void removeClient(ClientInformation *client);
81    private:
82    bool processGamestate(packet::Gamestate *gs);
83
84    std::map<unsigned int, std::map<unsigned int, packet::Gamestate*> > gamestateMap_;
85    //std::map<int, packet::Gamestate*> gamestateMap; //map gsID to gamestate*
86    //std::map<int, int> gamestateUsed; // save the number of clients, that use the specific gamestate
87    std::map<unsigned int, packet::Gamestate*> gamestateQueue;
88    packet::Gamestate *reference;
89    TrafficControl *trafficControl_;
90    unsigned int id_;
91  };
92
93}
94
95#endif /* _GameStateManager_H__ */
Note: See TracBrowser for help on using the repository browser.