X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fscene.h;h=23bbb28d889c05cb106f137eef696ced279bf20b;hb=b524515944583916655a9f2cf1a667e55e7ed4ce;hp=76c5c892965fe1d77d9a2c70a131117ce91c8634;hpb=997685a947eaa0b269873e5956908b734cde1d76;p=supertux.git diff --git a/src/scene.h b/src/scene.h index 76c5c8929..23bbb28d8 100644 --- a/src/scene.h +++ b/src/scene.h @@ -1,39 +1,51 @@ +// $Id$ // -// C Interface: scene +// SuperTux - A Jump'n Run +// Copyright (C) 2003 Tobias Glaesser // -// Description: -// -// -// Author: Tobias Glaesser , (C) 2004 -// -// Copyright: See COPYING file that comes with this distribution +// 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 SUPERTUX_SCENE_H #define SUPERTUX_SCENE_H -#include "texture.h" -#include "timer.h" +#include "video/surface.h" +#include "special/timer.h" #define FRAME_RATE 10 // 100 Frames per second (10ms) // Player stats struct PlayerStatus { - int score; int distros; int lives; + enum BonusType { NO_BONUS, GROWUP_BONUS, FLOWER_BONUS }; + BonusType bonus; - int next_level; int score_multiplier; + int max_score_multiplier; PlayerStatus(); + + void reset(); }; +std::string bonus_to_string(PlayerStatus::BonusType b); +PlayerStatus::BonusType string_to_bonus(const std::string& str); + extern PlayerStatus player_status; -extern float scroll_x; extern unsigned int global_frame_counter; #endif /*SUPERTUX_SCENE_H*/