LAYER_HUD and above ignore lightmap
[supertux.git] / src / player_status.cpp
1 //  $Id$
2 //
3 //  SuperTux
4 //  Copyright (C) 2003 Tobias Glaesser <tobi.web@gmx.de>
5 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
6 //
7 //  This program is free software; you can redistribute it and/or
8 //  modify it under the terms of the GNU General Public License
9 //  as published by the Free Software Foundation; either version 2
10 //  of the License, or (at your option) any later version.
11 //
12 //  This program is distributed in the hope that it will be useful,
13 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 //  GNU General Public License for more details.
16 //
17 //  You should have received a copy of the GNU General Public License
18 //  along with this program; if not, write to the Free Software
19 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20 #include <config.h>
21
22 #include "lisp/writer.hpp"
23 #include "lisp/lisp.hpp"
24 #include "player_status.hpp"
25 #include "resources.hpp"
26 #include "gettext.hpp"
27 #include "video/drawing_context.hpp"
28 #include "audio/sound_manager.hpp"
29 #include "sprite/sprite_manager.hpp"
30 #include "math/vector.hpp"
31 #include "main.hpp"
32 #include "log.hpp"
33
34 static const int START_COINS = 100;
35 static const int MAX_COINS = 99999;
36
37 PlayerStatus* player_status = 0;
38
39 PlayerStatus::PlayerStatus()
40   : coins(START_COINS),
41     bonus(NO_BONUS),
42     max_fire_bullets(0),
43     max_ice_bullets(0),
44     score_multiplier(1),
45     max_score_multiplier(1)
46 {
47   reset();
48
49   coin_surface.reset(new Surface("images/engine/hud/coins-0.png"));
50
51   Console::instance->registerCommand("coins", this);
52 }
53
54 PlayerStatus::~PlayerStatus()
55 {
56 }
57
58 void PlayerStatus::reset()
59 {
60   coins = START_COINS;
61   bonus = NO_BONUS;
62   score_multiplier = 1;
63   max_score_multiplier = 1;
64 }
65
66 void
67 PlayerStatus::add_coins(int count, bool play_sound)
68 {
69   coins = std::min(coins + count, MAX_COINS);
70   if(play_sound) {
71     if(count >= 100)
72       sound_manager->play("sounds/lifeup.wav");
73     else
74       sound_manager->play("sounds/coin.wav");
75   }
76 }
77
78 void
79 PlayerStatus::write(lisp::Writer& writer)
80 {
81   switch(bonus) {
82     case NO_BONUS:
83       writer.write_string("bonus", "none");
84       break;
85     case GROWUP_BONUS:
86       writer.write_string("bonus", "growup");
87       break;
88     case FIRE_BONUS:
89       writer.write_string("bonus", "fireflower");
90       break;
91     case ICE_BONUS:
92       writer.write_string("bonus", "iceflower");
93       break;
94     default:
95       log_warning << "Unknown bonus type." << std::endl;
96       writer.write_string("bonus", "none");
97   }
98   writer.write_int("fireflowers", max_fire_bullets);
99   writer.write_int("iceflowers", max_ice_bullets);
100
101   writer.write_int("coins", coins);
102   writer.write_int("max-score-multiplier", max_score_multiplier);
103 }
104
105 void
106 PlayerStatus::read(const lisp::Lisp& lisp)
107 {
108   reset();
109
110   std::string bonusname;
111   if(lisp.get("bonus", bonusname)) {
112     if(bonusname == "none") {
113       bonus = NO_BONUS;
114     } else if(bonusname == "growup") {
115       bonus = GROWUP_BONUS;
116     } else if(bonusname == "fireflower") {
117       bonus = FIRE_BONUS;
118     } else if(bonusname == "iceflower") {
119       bonus = ICE_BONUS;
120     } else {
121       log_warning << "Unknown bonus '" << bonusname << "' in savefile" << std::endl;
122       bonus = NO_BONUS;
123     }
124   }
125   lisp.get("fireflowers", max_fire_bullets);
126   lisp.get("iceflowers", max_ice_bullets);
127
128   lisp.get("coins", coins);
129   lisp.get("max-score-multiplier", max_score_multiplier);
130 }
131
132 void
133 PlayerStatus::draw(DrawingContext& context)
134 {
135   static int displayed_coins = -1;
136   static int next_count = 0;
137
138   if (displayed_coins == -1) displayed_coins = coins;
139   if (++next_count > 2) {
140     next_count = 0;
141     if (displayed_coins < coins) displayed_coins++;
142     if (displayed_coins > coins) displayed_coins--;
143   }
144   displayed_coins = std::min(std::max(displayed_coins, 0), 9999);
145
146   std::stringstream ss;
147   ss << displayed_coins;
148   std::string coins_text = ss.str();
149
150   context.push_transform();
151   context.set_translation(Vector(0, 0));
152
153   Surface* coin_surf = coin_surface.get();
154   if (coin_surf) {
155     context.draw_surface(coin_surf, Vector(SCREEN_WIDTH - BORDER_X - coin_surf->get_width() - gold_text->get_text_width(coins_text), BORDER_Y + 1), LAYER_HUD);
156   }
157   context.draw_text(gold_text, coins_text, Vector(SCREEN_WIDTH - BORDER_X, BORDER_Y), RIGHT_ALLIGN, LAYER_HUD);
158
159   context.pop_transform();
160 }
161
162 void
163 PlayerStatus::operator= (const PlayerStatus& other)
164 {
165   coins = other.coins;
166   bonus = other.bonus;
167   score_multiplier = other.score_multiplier;
168   max_score_multiplier = other.max_score_multiplier;
169 }
170
171 bool
172 PlayerStatus::consoleCommand(std::string command, std::vector<std::string> arguments)
173 {
174   if (command == "coins") {
175     if ((arguments.size() < 1) || (!Console::string_is<int>(arguments[0]))) {
176       log_info << "Usage: coins <number>" << std::endl;
177     } else {
178       coins = Console::string_to<int>(arguments[0]);
179     }
180     return true;
181   }
182   return false;
183 }