X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fplayer_status.hpp;h=1840ab8ead55d4c58db0f6f3d516bcbc9a0691f0;hb=657fc40723665c04b3150946f5bd66b6b0af9230;hp=3df230be339378460761adb6a5f05c06e2e991ee;hpb=13c6f377301f91c8d79ab768ba97b5eb771ed624;p=supertux.git diff --git a/src/player_status.hpp b/src/player_status.hpp index 3df230be3..1840ab8ea 100644 --- a/src/player_status.hpp +++ b/src/player_status.hpp @@ -20,13 +20,13 @@ #ifndef SUPERTUX_PLAYERSTATUS_H #define SUPERTUX_PLAYERSTATUS_H -#include #include -#include "lisp/lisp.hpp" -#include "timer.hpp" #include "serializable.hpp" -#include "sprite/sprite.hpp" -#include "console.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; @@ -36,40 +36,36 @@ enum BonusType { }; class DrawingContext; -/** +/** * This class memorizes player status between different game sessions (for * example when switching maps in the worldmap) */ -class PlayerStatus : public Serializable, public ConsoleCommandReceiver +class PlayerStatus : public Serializable { + static Color text_color; public: PlayerStatus(); ~PlayerStatus(); - void reset(); - void add_coins(int count); + void reset(); + void add_coins(int count, bool play_sound = true); void write(lisp::Writer& writer); void read(const lisp::Lisp& lisp); void draw(DrawingContext& context); - bool consoleCommand(std::string command, std::vector arguments); /**< callback from Console; return false if command was unknown, true otherwise */ - int coins; BonusType bonus; int max_fire_bullets; /**< maximum number of fire bullets in play */ int max_ice_bullets; /**< maximum number of ice bullets in play */ - int score_multiplier; - int max_score_multiplier; - void operator= (const PlayerStatus& other); - + private: // don't use this PlayerStatus(const PlayerStatus& other); - - std::auto_ptr tux_life; + + std::auto_ptr coin_surface; }; // global player state