430e2161efb18182231bf61ef0005af4ecf22dca
[supertux.git] / src / statistics.h
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 #ifndef SUPERTUX_STATISTICS_H
21 #define SUPERTUX_STATISTICS_H
22
23 #include "timer.h"
24 #include "lisp/lisp.h"
25 #include "lisp/writer.h"
26
27 class DrawingContext;
28
29 #define SPLAYER 0
30 #define STOTAL  1
31
32 enum {
33   SCORE_STAT,
34   COINS_COLLECTED_STAT,
35   BADGUYS_KILLED_STAT,
36   TIME_NEEDED_STAT,
37   NUM_STATS
38 };
39
40 /** This class is a layer between level and worldmap to keep
41  *  track of stuff like scores, and minor, but funny things, like
42  *  number of jumps and stuff */
43
44 class Statistics
45 {
46 public:
47   // don't forget to call reset() to init stat
48   Statistics();
49   ~Statistics();
50
51   /// read statistics from lisp file
52   void parse(const lisp::Lisp& lisp);
53   /// write statistics to lisp file
54   void write(lisp::Writer& writer);
55
56   /* Draw to the worldmap or a game message */
57   // TODO: make this functions working
58   void draw_worldmap_info(DrawingContext& context);
59   void draw_message_info(DrawingContext& context, std::string title);
60
61   /* Add / Set / Get points to/from one of the stats this can keep track of */
62   void add_points(int stat, int points);
63   void set_points(int stat, int points);
64   int get_points(int stat);
65
66   void set_total_points(int stat, int points);
67
68   /* Reset statistics */
69   void reset();
70
71   /* Give another Statistics object, find the best of each one */
72   void merge(Statistics& stats);
73
74   /* Add two statistic objects */
75   void operator+=(const Statistics& o);
76
77 private:
78   int stats[NUM_STATS][2];
79
80   Timer timer;
81   int display_stat;
82 };
83
84 extern Statistics global_stats;
85
86 #endif /*SUPERTUX_STATISTICS_H*/