X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Flevel.hpp;h=1ab7448903a0c878bc53c88b628d781218ceedc2;hb=339968d0eb222f5cad1397580631ab44acf40b10;hp=1f988c84fce6359ddccffdbcf79e17c404147592;hpb=07ddaed2a657e4d2a3d038fed223fc5827159caf;p=supertux.git diff --git a/src/level.hpp b/src/level.hpp index 1f988c84f..1ab744890 100644 --- a/src/level.hpp +++ b/src/level.hpp @@ -23,8 +23,8 @@ #include #include - -class Sector; +#include "statistics.hpp" +#include "sector.hpp" namespace lisp { class Lisp; @@ -35,8 +35,10 @@ class Level public: std::string name; std::string author; + std::string on_menukey_script; typedef std::vector Sectors; Sectors sectors; + Statistics stats; public: Level(); @@ -59,8 +61,18 @@ public: size_t get_sector_count(); Sector* get_sector(size_t num); - int get_total_badguys(); int get_total_coins(); + int get_total_badguys(); + + /** Get total number of GameObjects of given type */ + template int get_total_count() + { + int total = 0; + for(Sectors::iterator i = sectors.begin(); i != sectors.end(); ++i) { + total += (*i)->get_total_count(); + } + return total; + } private: void load_old_format(const lisp::Lisp& reader);