Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FICN/src/network/GameStateClient.h @ 505

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

gamestateclient completet

File size: 889 bytes
Line 
1//
2// C++ Interface: GameStateClient
3//
4// Description:
5//
6//
7// Author:  <>, (C) 2007
8//
9// Copyright: See COPYING file that comes with this distribution
10//
11//
12#ifndef NETWORK_GAMESTATECLIENT_H
13#define NETWORK_GAMESTATECLIENT_H
14
15#include "zlib.h"
16#include "Synchronisable.h"
17#include "orxonox/core/CoreIncludes.h"
18#include "orxonox/objects/BaseObject.h"
19#include "GameStateManager.h"
20
21namespace network {
22
23/**
24        @author
25*/
26class GameStateClient{
27public:
28  GameStateClient();
29  ~GameStateClient();
30  bool pushGameState(GameStateCompressed compstate);
31private:
32  bool loadSnapshot(GameState state);
33  GameState diff(GameState a, GameState b);
34  GameState decompress(GameStateCompressed a);
35  GameState decode(GameState a, GameStateCompressed x);
36  GameState decode(GameStateCompressed x);
37  void removeObject(orxonox::Iterator<Synchronisable> &it);
38 
39  GameState reference;
40};
41
42}
43
44#endif
Note: See TracBrowser for help on using the repository browser.