/* * PlanetPenguin Racer * Copyright (C) 2004-2005 Volker Stroebel * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _GAME_MGR_H_ #define _GAME_MGR_H_ #include "course_mgr.h" #include "player.h" #include "ppogl/base/singleton.h" class GameMgr : public ppogl::Singleton { std::list::iterator mi_currentRace; bool m_raceAborted; bool m_raceWon; bool m_cupWon; bool m_eventWon; double m_lastTicks; public: GameMgr(); // should be private // needs some love in event_select.cpp std::list::iterator currentEvent; std::list::iterator currentCup; DifficultyLevel difficulty; double time; double timeStep; int numPlayers; void setupEventAndCup( std::list::iterator event, std::list::iterator cup); void setCurrentRace(std::list::iterator race); inline EventData& getCurrentEvent(){return *currentEvent;}; inline CupData& getCurrentCup(){return *currentCup;}; inline CourseData& getCurrentRace(){return *mi_currentRace;}; enum GameType{ PRACTICING, EVENT }; GameType gametype; void reset(GameType type); inline bool wasRaceAborted(){return m_raceAborted;}; inline void abortRace(bool abort=true){m_raceAborted=abort;}; void updatePlayersScores(); unsigned int calculateScore(double time, int herring, int health); bool updateCurrentRaceData(); bool wasRaceWon(); bool wasCupWon(); bool wasEventWon(); void resetTimeStep(); void updateTimeStep(); inline double getTimeStep(){return timeStep;}; }; #endif // _GAME_MGR_H_