X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fplayer_status.hpp;h=1840ab8ead55d4c58db0f6f3d516bcbc9a0691f0;hb=657fc40723665c04b3150946f5bd66b6b0af9230;hp=4ad7a680039918d6f76b3616d586bb64eb256a9e;hpb=5b7f9214cb929399f1a855ef5807018a9447d510;p=supertux.git diff --git a/src/player_status.hpp b/src/player_status.hpp index 4ad7a6800..1840ab8ea 100644 --- a/src/player_status.hpp +++ b/src/player_status.hpp @@ -1,7 +1,8 @@ // $Id$ // -// SuperTux - A Jump'n Run +// SuperTux // Copyright (C) 2003 Tobias Glaesser +// Copyright (C) 2006 Matthias Braun // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -19,26 +20,34 @@ #ifndef SUPERTUX_PLAYERSTATUS_H #define SUPERTUX_PLAYERSTATUS_H -#include "lisp/lisp.hpp" -#include "timer.hpp" +#include #include "serializable.hpp" +#include "video/color.hpp" + +namespace lisp{ class Writer; } +namespace lisp{ class Lisp; } +class Surface; + +static const float BORDER_X = 10; +static const float BORDER_Y = 10; enum BonusType { NO_BONUS, GROWUP_BONUS, FIRE_BONUS, ICE_BONUS }; class DrawingContext; -/** +/** * This class memorizes player status between different game sessions (for * example when switching maps in the worldmap) */ class PlayerStatus : public Serializable { + static Color text_color; public: PlayerStatus(); - void reset(); - void incLives(); - void incCoins(); + ~PlayerStatus(); + void reset(); + void add_coins(int count, bool play_sound = true); void write(lisp::Writer& writer); void read(const lisp::Lisp& lisp); @@ -46,14 +55,20 @@ public: void draw(DrawingContext& context); int coins; - int lives; BonusType bonus; + int max_fire_bullets; /**< maximum number of fire bullets in play */ + int max_ice_bullets; /**< maximum number of ice bullets in play */ + + void operator= (const PlayerStatus& other); + +private: + // don't use this + PlayerStatus(const PlayerStatus& other); - int score_multiplier; - int max_score_multiplier; + std::auto_ptr coin_surface; }; // global player state -extern PlayerStatus player_status; +extern PlayerStatus* player_status; #endif