f39ded0e8ca31f756b911f2b57f15b2c82365480
[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   tux_life.reset(sprite_manager->create("images/creatures/tux_small/tux-life.sprite"));
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   context.push_transform();
136   context.set_translation(Vector(0, 0));
137
138   char str[60];
139  
140   int displayCoins = std::max(player_status->coins, 0);
141   snprintf(str, sizeof(str), "%d", displayCoins);
142   const char* coinstext = _("COINS");
143   context.draw_text(white_text, coinstext, Vector(SCREEN_WIDTH - white_text->get_text_width(coinstext) - gold_text->get_text_width(" 99999") - BORDER_X, BORDER_Y), LEFT_ALLIGN, LAYER_FOREGROUND1);
144   context.draw_text(gold_text, str, Vector(SCREEN_WIDTH - BORDER_X, BORDER_Y), RIGHT_ALLIGN, LAYER_FOREGROUND1);
145
146   context.pop_transform();
147 }
148
149 void
150 PlayerStatus::operator= (const PlayerStatus& other)
151 {
152   coins = other.coins;
153   bonus = other.bonus;
154   score_multiplier = other.score_multiplier;
155   max_score_multiplier = other.max_score_multiplier;
156 }
157
158 bool
159 PlayerStatus::consoleCommand(std::string command, std::vector<std::string> arguments)
160 {
161   if (command == "coins") {
162     if ((arguments.size() < 1) || (!Console::string_is<int>(arguments[0]))) {
163       log_info << "Usage: coins <number>" << std::endl;
164     } else {
165       coins = Console::string_to<int>(arguments[0]);
166     }
167     return true;
168   }
169   return false;
170 }
171