5c57313584cab360c9aad5d1a340ddabf89ca5a1
[supertux.git] / src / statistics.cpp
1 //
2 //  SuperTux -  A Jump'n Run
3 //  Copyright (C) 2004 Ricardo Cruz <rick2@aeiou.pt>
4 //
5 //  This program is free software; you can redistribute it and/or
6 //  modify it under the terms of the GNU General Public License
7 //  as published by the Free Software Foundation; either version 2
8 //  of the License, or (at your option) any later version.
9 //
10 //  This program is distributed in the hope that it will be useful,
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 //  GNU General Public License for more details.
14 // 
15 //  You should have received a copy of the GNU General Public License
16 //  along with this program; if not, write to the Free Software
17 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18 //  02111-1307, USA.
19
20 #include "utils/lispreader.h"
21 #include "utils/lispwriter.h"
22 #include "video/drawing_context.h"
23 #include "app/gettext.h"
24 #include "app/globals.h"
25 #include "resources.h"
26 #include "statistics.h"
27
28 Statistics global_stats;
29
30 std::string
31 stat_name_to_string(int stat_enum)
32 {
33   switch(stat_enum)
34     {
35     case SCORE_STAT:
36       return "score";
37     case COINS_COLLECTED_STAT:
38       return "coins-collected";
39     case BADGUYS_KILLED_STAT:
40       return "badguys-killed";
41     case TIME_NEEDED_STAT:
42       return "time-needed";;
43     }
44   return "";
45 }
46
47 int
48 my_min(int a, int b)
49 {
50 if(a == -1)
51   return b;
52 if(b == -1)
53   return a;
54 return std::min(a, b);
55 }
56
57 Statistics::Statistics()
58 {
59   timer.init(true);
60   display_stat = 1;
61
62   for(int i = 0; i < NUM_STATS; i++)
63     for(int j = 0; j < 2; j++)
64       stats[i][j] = -1;
65 }
66
67 Statistics::~Statistics()
68 {
69 }
70
71 void
72 Statistics::parse(LispReader& reader)
73 {
74   for(int i = 0; i < NUM_STATS; i++)
75     {
76     reader.read_int(stat_name_to_string(i).c_str(), stats[i][SPLAYER]);
77     reader.read_int((stat_name_to_string(i) + "-total").c_str(), stats[i][STOTAL]);
78     }
79 }
80
81 void
82 Statistics::write(LispWriter& writer)
83 {
84   for(int i = 0; i < NUM_STATS; i++)
85     {
86     writer.write_int(stat_name_to_string(i), stats[i][SPLAYER]);
87     writer.write_int(stat_name_to_string(i) + "-total", stats[i][STOTAL]);
88     }
89 }
90
91 #define TOTAL_DISPLAY_TIME 3400
92 #define FADING_TIME         600
93
94 #define WMAP_INFO_LEFT_X  520
95 #define WMAP_INFO_RIGHT_X 740
96
97 void
98 Statistics::draw_worldmap_info(DrawingContext& context)
99 {
100   if(stats[SCORE_STAT][SPLAYER] == -1)  // not initialized yet
101     return;
102
103   if(!timer.check())
104     {
105     timer.start(TOTAL_DISPLAY_TIME);
106     display_stat++;
107     if(display_stat >= NUM_STATS)
108       display_stat = 1;
109     }
110
111   int alpha;
112   if(timer.get_gone() < FADING_TIME)
113     alpha = timer.get_gone() * 255 / FADING_TIME;
114   else if(timer.get_left() < FADING_TIME)
115     alpha = timer.get_left() * 255 / FADING_TIME;
116   else
117     alpha = 255;
118
119   char str[128];
120
121   context.draw_text(white_small_text, _("- Best Level Statistics -"),
122                     Vector((WMAP_INFO_LEFT_X + WMAP_INFO_RIGHT_X) / 2, 470),
123                     CENTER_ALLIGN, LAYER_GUI);
124
125   sprintf(str, _("Max score:"));
126   context.draw_text(white_small_text, str, Vector(WMAP_INFO_LEFT_X, 490), LEFT_ALLIGN, LAYER_GUI);
127
128   sprintf(str, "%d", stats[SCORE_STAT][SPLAYER]);
129   context.draw_text(white_small_text, str, Vector(WMAP_INFO_RIGHT_X, 490), RIGHT_ALLIGN, LAYER_GUI);
130
131   // draw other small info
132
133   if(display_stat == COINS_COLLECTED_STAT)
134     sprintf(str, _("Max coins collected:"));
135   else if(display_stat == BADGUYS_KILLED_STAT)
136     sprintf(str, _("Max fragging:"));
137   else// if(display_stat == TIME_NEEDED_STAT)
138     sprintf(str, _("Min time needed:"));
139
140   context.draw_text(white_small_text, str, Vector(WMAP_INFO_LEFT_X, 508), LEFT_ALLIGN, LAYER_GUI, NONE_EFFECT, alpha);
141
142   if(display_stat == COINS_COLLECTED_STAT)
143     sprintf(str, "%d/%d", stats[COINS_COLLECTED_STAT][SPLAYER],
144                           stats[COINS_COLLECTED_STAT][STOTAL]);
145   else if(display_stat == BADGUYS_KILLED_STAT)
146     sprintf(str, "%d/%d", stats[BADGUYS_KILLED_STAT][SPLAYER],
147                           stats[BADGUYS_KILLED_STAT][STOTAL]);
148   else// if(display_stat == TIME_NEEDED_STAT)
149     sprintf(str, "%d/%d", stats[TIME_NEEDED_STAT][SPLAYER],
150                           stats[TIME_NEEDED_STAT][STOTAL]);
151
152   context.draw_text(white_small_text, str, Vector(WMAP_INFO_RIGHT_X, 508), RIGHT_ALLIGN, LAYER_GUI, NONE_EFFECT, alpha);
153 }
154
155 void
156 Statistics::draw_message_info(DrawingContext& context, std::string title)
157 {
158   if(stats[SCORE_STAT][SPLAYER] == -1)  // not initialized yet
159     return;
160
161   context.draw_text(gold_text, title, Vector(screen->w/2, 410), CENTER_ALLIGN, LAYER_GUI);
162
163   char str[128];
164
165   sprintf(str, _(    "Max score:             %d"), stats[SCORE_STAT][SPLAYER]);
166   context.draw_text(white_text, str, Vector(screen->w/2, 450), CENTER_ALLIGN, LAYER_GUI);
167
168   for(int i = 1; i < NUM_STATS; i++)
169     {
170     if(i == COINS_COLLECTED_STAT)
171       sprintf(str, _("Max coins collected:   %d / %d"),
172               stats[COINS_COLLECTED_STAT][SPLAYER],
173               stats[COINS_COLLECTED_STAT][STOTAL]);
174     else if(i == BADGUYS_KILLED_STAT)
175       sprintf(str, _("Max fragging:          %d / %d"),
176               stats[BADGUYS_KILLED_STAT][SPLAYER],
177               stats[BADGUYS_KILLED_STAT][STOTAL]);
178     else// if(i == TIME_NEEDED_STAT)
179       sprintf(str, _("Min time needed:       %d / %d"),
180               stats[TIME_NEEDED_STAT][SPLAYER],
181               stats[TIME_NEEDED_STAT][STOTAL]);
182
183
184     context.draw_text(white_small_text, str, Vector(screen->w/2, 462 + i*18), CENTER_ALLIGN, LAYER_GUI);
185     }
186 }
187
188 void
189 Statistics::add_points(int stat, int points)
190 {
191   stats[stat][SPLAYER] += points;
192 }
193
194 int
195 Statistics::get_points(int stat)
196 {
197   return stats[stat][SPLAYER];
198 }
199
200 void
201 Statistics::set_points(int stat, int points)
202 {
203   stats[stat][SPLAYER] = points;
204 }
205
206 void
207 Statistics::set_total_points(int stat, int points)
208 {
209   stats[stat][STOTAL] = points;
210 }
211
212 void
213 Statistics::reset()
214 {
215   for(int i = 0; i < NUM_STATS; i++)
216     stats[i][SPLAYER] = 0;
217 }
218
219 void
220 Statistics::merge(Statistics& stats_)
221 {
222   stats[SCORE_STAT][SPLAYER] = std::max(stats[SCORE_STAT][SPLAYER], stats_.stats[SCORE_STAT][SPLAYER]);
223   stats[COINS_COLLECTED_STAT][SPLAYER] = std::max(stats[COINS_COLLECTED_STAT][SPLAYER], stats_.stats[COINS_COLLECTED_STAT][SPLAYER]);
224   stats[BADGUYS_KILLED_STAT][SPLAYER] =
225     std::max(stats[BADGUYS_KILLED_STAT][SPLAYER], stats_.stats[BADGUYS_KILLED_STAT][SPLAYER]);
226   stats[TIME_NEEDED_STAT][SPLAYER] =
227     my_min(stats[TIME_NEEDED_STAT][SPLAYER], stats_.stats[TIME_NEEDED_STAT][SPLAYER]);
228
229   stats[COINS_COLLECTED_STAT][STOTAL] = stats_.stats[COINS_COLLECTED_STAT][STOTAL];
230   stats[BADGUYS_KILLED_STAT][STOTAL] = stats_.stats[BADGUYS_KILLED_STAT][STOTAL];
231   stats[TIME_NEEDED_STAT][STOTAL] = stats_.stats[TIME_NEEDED_STAT][STOTAL];
232 }
233
234 void
235 Statistics::operator+=(const Statistics& stats_)
236 {
237   for(int i = 0; i < NUM_STATS; i++)
238     {
239     if(stats_.stats[i][SPLAYER] == -1)
240       continue;
241     stats[i][SPLAYER] += stats_.stats[i][SPLAYER];
242     if(stats_.stats[i][STOTAL] != -1)
243       stats[i][STOTAL] += stats_.stats[i][STOTAL];
244     }
245 }