[1705] | 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: |
---|
[3084] | 23 | * Oliver Scheuss |
---|
[1705] | 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" |
---|
[3214] | 44 | |
---|
| 45 | #include <map> |
---|
[1705] | 46 | #include "GamestateHandler.h" |
---|
[3304] | 47 | #include "core/CorePrereqs.h" |
---|
[1705] | 48 | |
---|
[2171] | 49 | namespace orxonox |
---|
[1705] | 50 | { |
---|
| 51 | |
---|
[3214] | 52 | const int KEEP_GAMESTATES = 10; |
---|
[1705] | 53 | |
---|
| 54 | /** |
---|
| 55 | * This Class implements a manager for gamestates: |
---|
| 56 | * - creating snapshots of gamestates |
---|
| 57 | * - writing gamestates to universe |
---|
| 58 | * - diffing gamestates |
---|
| 59 | * EN/DECODATION: |
---|
| 60 | * a: last Gamestate a client has received |
---|
| 61 | * b: new Gamestate |
---|
| 62 | * x: diffed and compressed gamestate |
---|
| 63 | * x=(a^b) |
---|
| 64 | * b=(a^x) |
---|
| 65 | * diff(a,diff(a,x))=x (hope this is correct) |
---|
| 66 | * @author Oliver Scheuss |
---|
| 67 | */ |
---|
[2087] | 68 | class _NetworkExport GamestateManager: public GamestateHandler{ |
---|
[1705] | 69 | public: |
---|
| 70 | GamestateManager(); |
---|
| 71 | ~GamestateManager(); |
---|
[1740] | 72 | |
---|
[2087] | 73 | bool add(packet::Gamestate *gs, unsigned int clientID); |
---|
[1705] | 74 | bool processGamestates(); |
---|
| 75 | bool update(); |
---|
[3304] | 76 | void sendGamestates(); |
---|
| 77 | // packet::Gamestate *popGameState(unsigned int clientID); |
---|
| 78 | void finishGamestate( unsigned int clientID, packet::Gamestate** destgamestate, packet::Gamestate* base, packet::Gamestate* gamestate ); |
---|
[1705] | 79 | |
---|
| 80 | bool getSnapshot(); |
---|
[1740] | 81 | |
---|
[2087] | 82 | bool ack(unsigned int gamestateID, unsigned int clientID); |
---|
[1705] | 83 | void removeClient(ClientInformation *client); |
---|
[3304] | 84 | private: |
---|
[1712] | 85 | bool processGamestate(packet::Gamestate *gs); |
---|
[1740] | 86 | |
---|
[2087] | 87 | std::map<unsigned int, std::map<unsigned int, packet::Gamestate*> > gamestateMap_; |
---|
| 88 | std::map<unsigned int, packet::Gamestate*> gamestateQueue; |
---|
[1705] | 89 | packet::Gamestate *reference; |
---|
[2662] | 90 | TrafficControl *trafficControl_; |
---|
[2087] | 91 | unsigned int id_; |
---|
[3304] | 92 | // boost::mutex* threadMutex_; |
---|
| 93 | ThreadPool* /*thread*/Pool_; |
---|
[1705] | 94 | }; |
---|
| 95 | |
---|
| 96 | } |
---|
| 97 | |
---|
| 98 | #endif /* _GameStateManager_H__ */ |
---|