Removed unused files.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@12595 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk 2013-04-04 00:42:26 +00:00
parent 8fe1875db1
commit cc6446cd1c
3 changed files with 0 additions and 131 deletions

View File

@ -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

View File

@ -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
*/

View File

@ -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