From cc6446cd1c575a624623f996aff8e3a96b90d068 Mon Sep 17 00:00:00 2001 From: hikerstk Date: Thu, 4 Apr 2013 00:42:26 +0000 Subject: [PATCH] Removed unused files. git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@12595 178a84e3-b1eb-0310-8ba1-8eac791a3b58 --- sources.cmake | 2 -- src/modes/game_tutorial.cpp | 72 ------------------------------------- src/modes/game_tutorial.hpp | 57 ----------------------------- 3 files changed, 131 deletions(-) delete mode 100644 src/modes/game_tutorial.cpp delete mode 100644 src/modes/game_tutorial.hpp diff --git a/sources.cmake b/sources.cmake index 869e8e19e..b6e7fca0b 100644 --- a/sources.cmake +++ b/sources.cmake @@ -123,7 +123,6 @@ src/modes/cutscene_world.cpp src/modes/demo_world.cpp src/modes/easter_egg_hunt.cpp src/modes/follow_the_leader.cpp -src/modes/game_tutorial.cpp src/modes/linear_world.cpp src/modes/overworld.cpp src/modes/profile_world.cpp @@ -369,7 +368,6 @@ src/modes/cutscene_world.hpp src/modes/demo_world.hpp src/modes/easter_egg_hunt.hpp src/modes/follow_the_leader.hpp -src/modes/game_tutorial.hpp src/modes/linear_world.hpp src/modes/overworld.hpp src/modes/profile_world.hpp diff --git a/src/modes/game_tutorial.cpp b/src/modes/game_tutorial.cpp deleted file mode 100644 index ce2e83038..000000000 --- a/src/modes/game_tutorial.cpp +++ /dev/null @@ -1,72 +0,0 @@ -// SuperTuxKart - a fun racing game with go-kart -// Copyright (C) 2006 SuperTuxKart-Team -// -// 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 3 -// 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. - -#include "modes/game_tutorial.hpp" - -//#include "challenges/unlock_manager.hpp" -//#include "config/user_config.hpp" - -//----------------------------------------------------------------------------- -GameTutorial::GameTutorial() : LinearWorld() -{ - WorldStatus::setClockMode(CLOCK_CHRONO); -} // GameTutorial - -//----------------------------------------------------------------------------- -/** Returns true if the race is finished, i.e. all player karts are finished. - */ -bool GameTutorial::isRaceOver() -{ - // The race is over if all players have finished the race. Remaining - // times for AI opponents will be estimated in enterRaceOverState - return race_manager->allPlayerFinished(); -} // isRaceOver -/* -//----------------------------------------------------------------------------- -void GameTutorial::getDefaultCollectibles(int& collectible_type, int& amount) -{ - // in time trial mode, give zippers - if(race_manager->getMinorMode() == RaceManager::MINOR_MODE_TIME_TRIAL) - { - collectible_type = PowerupManager::POWERUP_ZIPPER; - amount = race_manager->getNumLaps(); - } - else World::getDefaultCollectibles(collectible_type, amount); -} // getDefaultCollectibles -*/ -//----------------------------------------------------------------------------- -/** Returns if this mode supports bonus boxes or not. - */ -/* -bool GameTutorial::haveBonusBoxes() -{ - // in time trial mode, don't use bonus boxes - return race_manager->getMinorMode() != RaceManager::MINOR_MODE_TIME_TRIAL; -} // haveBonusBoxes -*/ -//----------------------------------------------------------------------------- -/** Returns an identifier for this race. - */ -/* -std::string GameTutorial::getIdent() const -{ - if(race_manager->getMinorMode() == RaceManager::MINOR_MODE_TIME_TRIAL) - return IDENT_TTRIAL; - else - return IDENT_STD; -} // getIdent -*/ diff --git a/src/modes/game_tutorial.hpp b/src/modes/game_tutorial.hpp deleted file mode 100644 index 71a5812d6..000000000 --- a/src/modes/game_tutorial.hpp +++ /dev/null @@ -1,57 +0,0 @@ -// SuperTuxKart - a fun racing game with go-kart -// Copyright (C) 2004 SuperTuxKart-Team -// -// 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 3 -// 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_tutorial_hpp_ -#define _game_tutorial_hpp_ - -#include "modes/linear_world.hpp" -//#include "states_screens/race_gui_base.hpp" - -/** - * \brief An implementation of World, based on LinearWorld, to provide the tutorial game mode - * \ingroup modes - */ -class GameTutorial : public LinearWorld -{ -protected: - // clock events - virtual bool isRaceOver(); - -private: - -public: - - GameTutorial(); - virtual ~GameTutorial() {}; - - // clock events - /*virtual void countdownReachedZero(); - - // overriding World methods - - virtual void restartRace(); - virtual std::string getIdent() const; - float getClockStartTime(); - virtual bool useFastMusicNearEnd() const { return false; } - virtual RaceGUIBase::KartIconDisplayInfo* getKartsDisplayInfo(); - - virtual bool isRaceOver(); - virtual bool raceHasLaps(){ return false; } - */ -}; - -#endif