X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fstatistics.cpp;h=515fb111e628fd0aa1cd1650fbdf117ade1d0408;hb=1142f65fdd5ccc3309a3da31fb1a0e7d5d0829fe;hp=52daaa195c432e9a29b75d64bd89d401b5051e9f;hpb=75eb064a6a6ef4d4b38066a50e94a658a6417eb5;p=supertux.git diff --git a/src/statistics.cpp b/src/statistics.cpp index 52daaa195..515fb111e 100644 --- a/src/statistics.cpp +++ b/src/statistics.cpp @@ -1,6 +1,9 @@ +// $Id$ // -// SuperTux - A Jump'n Run +// SuperTux (Statistics module) // Copyright (C) 2004 Ricardo Cruz +// Copyright (C) 2006 Ondrej Hosek +// Copyright (C) 2006 Christoph Sommer // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -11,211 +14,295 @@ // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. -// +// // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -// 02111-1307, USA. - -#include "utils/lispreader.h" -#include "utils/lispwriter.h" -#include "statistics.h" -#include "video/drawing_context.h" -#include "app/gettext.h" -#include "app/globals.h" -#include "resources.h" +// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +#include + +#include +#include +#include +#include +#include +#include "video/drawing_context.hpp" +#include "gettext.hpp" +#include "lisp/writer.hpp" +#include "lisp/lisp.hpp" +#include "resources.hpp" +#include "main.hpp" +#include "statistics.hpp" +#include "log.hpp" +#include "scripting/squirrel_util.hpp" + +namespace { + const int nv_coins = std::numeric_limits::min(); + const int nv_badguys = std::numeric_limits::min(); + const float nv_time = std::numeric_limits::max(); + const int nv_secrets = std::numeric_limits::min(); +} -Statistics global_stats; +float WMAP_INFO_LEFT_X; +float WMAP_INFO_RIGHT_X; +float WMAP_INFO_TOP_Y1; +float WMAP_INFO_TOP_Y2; -std::string -stat_name_to_string(int stat_enum) +Statistics::Statistics() : coins(nv_coins), total_coins(nv_coins), badguys(nv_badguys), total_badguys(nv_badguys), time(nv_time), secrets(nv_secrets), total_secrets(nv_secrets), valid(true) { - switch(stat_enum) - { - case SCORE_STAT: - return "score"; - case BADGUYS_SQUISHED_STAT: - return "badguys-squished"; - case SHOTS_STAT: - return "shots"; - case TIME_NEEDED_STAT: - return "time-needed"; - case JUMPS_STAT: - return "jumps"; - } + WMAP_INFO_LEFT_X = (SCREEN_WIDTH/2 + 80) + 32; + WMAP_INFO_RIGHT_X = SCREEN_WIDTH/2 + 368; + WMAP_INFO_TOP_Y1 = SCREEN_HEIGHT/2 + 172 - 16; + WMAP_INFO_TOP_Y2 = SCREEN_HEIGHT/2 + 172; } -int -my_min(int a, int b) +Statistics::~Statistics() { -if(a == -1) - return b; -if(b == -1) - return a; -return std::min(a, b); } -Statistics::Statistics() +/* +void +Statistics::parse(const lisp::Lisp& reader) { - timer.init(true); - display_stat = 1; - - for(int i = 0; i < NUM_STATS; i++) - stats[i] = -1; + reader.get("coins-collected", coins); + reader.get("coins-collected-total", total_coins); + reader.get("badguys-killed", badguys); + reader.get("badguys-killed-total", total_badguys); + reader.get("time-needed", time); + reader.get("secrets-found", secrets); + reader.get("secrets-found-total", total_secrets); } -Statistics::~Statistics() +void +Statistics::write(lisp::Writer& writer) { + writer.write_int("coins-collected", coins); + writer.write_int("coins-collected-total", total_coins); + writer.write_int("badguys-killed", badguys); + writer.write_int("badguys-killed-total", total_badguys); + writer.write_float("time-needed", time); + writer.write_int("secrets-found", secrets); + writer.write_int("secrets-found-total", total_secrets); } +*/ void -Statistics::parse(LispReader& reader) +Statistics::serialize_to_squirrel(HSQUIRRELVM vm) { - for(int i = 0; i < NUM_STATS; i++) - reader.read_int(stat_name_to_string(i).c_str(), stats[i]); + // TODO: there's some bug in the unserialization routines that breaks stuff when an empty statistics table is written, so -- as a workaround -- let's make sure we will actually write something first + if (!((coins != nv_coins) || (total_coins != nv_coins) || (badguys != nv_badguys) || (total_badguys != nv_badguys) || (time != nv_time) || (secrets != nv_secrets) || (total_secrets != nv_secrets))) return; + + sq_pushstring(vm, "statistics", -1); + sq_newtable(vm); + if (coins != nv_coins) Scripting::store_int(vm, "coins-collected", coins); + if (total_coins != nv_coins) Scripting::store_int(vm, "coins-collected-total", total_coins); + if (badguys != nv_badguys) Scripting::store_int(vm, "badguys-killed", badguys); + if (total_badguys != nv_badguys) Scripting::store_int(vm, "badguys-killed-total", total_badguys); + if (time != nv_time) Scripting::store_float(vm, "time-needed", time); + if (secrets != nv_secrets) Scripting::store_int(vm, "secrets-found", secrets); + if (total_secrets != nv_secrets) Scripting::store_int(vm, "secrets-found-total", total_secrets); + sq_createslot(vm, -3); } void -Statistics::write(LispWriter& writer) +Statistics::unserialize_from_squirrel(HSQUIRRELVM vm) { - for(int i = 0; i < NUM_STATS; i++) - writer.write_int(stat_name_to_string(i), stats[i]); + sq_pushstring(vm, "statistics", -1); + if(SQ_FAILED(sq_get(vm, -2))) { + return; + } + Scripting::get_int(vm, "coins-collected", coins); + Scripting::get_int(vm, "coins-collected-total", total_coins); + Scripting::get_int(vm, "badguys-killed", badguys); + Scripting::get_int(vm, "badguys-killed-total", total_badguys); + Scripting::get_float(vm, "time-needed", time); + Scripting::get_int(vm, "secrets-found", secrets); + Scripting::get_int(vm, "secrets-found-total", total_secrets); + sq_pop(vm, 1); } -#define TOTAL_DISPLAY_TIME 3400 -#define FADING_TIME 600 - -#define WMAP_INFO_LEFT_X 555 -#define WMAP_INFO_RIGHT_X 705 - void Statistics::draw_worldmap_info(DrawingContext& context) { - if(stats[SCORE_STAT] == -1) // not initialized yet - return; - - if(!timer.check()) - { - timer.start(TOTAL_DISPLAY_TIME); - display_stat++; - if(display_stat >= NUM_STATS) - display_stat = 1; - } + // skip draw if level was never played + if (coins == nv_coins) return; - int alpha; - if(timer.get_gone() < FADING_TIME) - alpha = timer.get_gone() * 255 / FADING_TIME; - else if(timer.get_left() < FADING_TIME) - alpha = timer.get_left() * 255 / FADING_TIME; - else - alpha = 255; + // skip draw if stats were declared invalid + if (!valid) return; - char str[128]; + context.draw_text(small_font, std::string("- ") + _("Best Level Statistics") + " -", Vector((WMAP_INFO_LEFT_X + WMAP_INFO_RIGHT_X) / 2, WMAP_INFO_TOP_Y1), ALIGN_CENTER, LAYER_GUI,Statistics::header_color); - context.draw_text(white_small_text, _("Level Statistics"), - Vector((WMAP_INFO_LEFT_X + WMAP_INFO_RIGHT_X) / 2, 490), - CENTER_ALLIGN, LAYER_GUI); - - sprintf(str, _("Max score:")); - context.draw_text(white_small_text, str, Vector(WMAP_INFO_LEFT_X, 506), LEFT_ALLIGN, LAYER_GUI); - - sprintf(str, "%d", stats[SCORE_STAT]); - context.draw_text(white_small_text, str, Vector(WMAP_INFO_RIGHT_X, 506), RIGHT_ALLIGN, LAYER_GUI); - - // draw other small info - - if(display_stat == BADGUYS_SQUISHED_STAT) - sprintf(str, _("Max fragging:")); - else if(display_stat == SHOTS_STAT) - sprintf(str, _("Min shots:")); - else if(display_stat == TIME_NEEDED_STAT) - sprintf(str, _("Min time needed:")); - else// if(display_stat == JUMPS_STAT) - sprintf(str, _("Min jumps:")); - - context.draw_text(white_small_text, str, Vector(WMAP_INFO_LEFT_X, 522), LEFT_ALLIGN, LAYER_GUI, NONE_EFFECT, alpha); + std::string caption_buf; + std::string stat_buf; + float posy = WMAP_INFO_TOP_Y2; + for (int stat_no = 0; stat_no < 4; stat_no++) { + switch (stat_no) + { + case 0: + caption_buf = _("Max coins collected:"); + stat_buf = coins_to_string(coins, total_coins); + break; + case 1: + caption_buf = _("Max fragging:"); + stat_buf = frags_to_string(badguys, total_badguys); + break; + case 2: + caption_buf = _("Min time needed:"); + stat_buf = time_to_string(time); + break; + case 3: + caption_buf = _("Max secrets found:"); + stat_buf = secrets_to_string(secrets, total_secrets); + break; + default: + log_debug << "Invalid stat requested to be drawn" << std::endl; + break; + } - if(display_stat == BADGUYS_SQUISHED_STAT) - sprintf(str, "%d", stats[BADGUYS_SQUISHED_STAT]); - else if(display_stat == SHOTS_STAT) - sprintf(str, "%d", stats[SHOTS_STAT]); - else if(display_stat == TIME_NEEDED_STAT) - sprintf(str, "%d", stats[TIME_NEEDED_STAT]); - else// if(display_stat == JUMPS_STAT) - sprintf(str, "%d", stats[JUMPS_STAT]); + context.draw_text(small_font, caption_buf, Vector(WMAP_INFO_LEFT_X, posy), ALIGN_LEFT, LAYER_GUI, Statistics::header_color); + context.draw_text(small_font, stat_buf, Vector(WMAP_INFO_RIGHT_X, posy), ALIGN_RIGHT, LAYER_GUI, Statistics::header_color); + posy += small_font->get_height() + 2; + } - context.draw_text(white_small_text, str, Vector(WMAP_INFO_RIGHT_X, 522), RIGHT_ALLIGN, LAYER_GUI, NONE_EFFECT, alpha); } void -Statistics::draw_message_info(DrawingContext& context, std::string title) +Statistics::draw_endseq_panel(DrawingContext& context, Statistics* best_stats, Surface* backdrop) { - if(stats[SCORE_STAT] == -1) // not initialized yet - return; - - context.draw_text(gold_text, title, Vector(screen->w/2, 410), CENTER_ALLIGN, LAYER_GUI); - - char str[128]; - - sprintf(str, _( "Max score: %d"), stats[SCORE_STAT]); - context.draw_text(white_text, str, Vector(screen->w/2, 450), CENTER_ALLIGN, LAYER_GUI); - - for(int i = 1; i < NUM_STATS; i++) - { - if(i == BADGUYS_SQUISHED_STAT) - sprintf(str, _("Max fragging: %d"), stats[BADGUYS_SQUISHED_STAT]); - else if(i == SHOTS_STAT) - sprintf(str, _("Min shots: %d"), stats[SHOTS_STAT]); - else if(i == TIME_NEEDED_STAT) - sprintf(str, _("Min time needed: %d"), stats[TIME_NEEDED_STAT]); - else// if(i == JUMPS_STAT) - sprintf(str, _("Min jumps: %d"), stats[JUMPS_STAT]); - - context.draw_text(white_small_text, str, Vector(screen->w/2, 462 + i*18), CENTER_ALLIGN, LAYER_GUI); - } + // skip draw if level was never played + // TODO: do we need this? + if (coins == nv_coins) return; + + // skip draw if stats were declared invalid + if (!valid) return; + + // abort if we have no backdrop + if (!backdrop) return; + + int box_w = 220+110+110; + int box_h = 30+20+20+20; + int box_x = (int)((SCREEN_WIDTH - box_w) / 2); + int box_y = (int)(SCREEN_HEIGHT / 2) - box_h; + + int bd_w = (int)backdrop->get_width(); + int bd_h = (int)backdrop->get_height(); + int bd_x = (int)((SCREEN_WIDTH - bd_w) / 2); + int bd_y = box_y + (box_h / 2) - (bd_h / 2); + + int col1_x = box_x; + int col2_x = col1_x+200; + int col3_x = col2_x+130; + + int row1_y = box_y; + int row2_y = row1_y+30; + int row3_y = row2_y+20; + int row4_y = row3_y+20; + + context.push_transform(); + context.set_alpha(0.5); + context.draw_surface(backdrop, Vector(bd_x, bd_y), LAYER_GUI); + context.pop_transform(); + + context.draw_text(normal_font, _("You"), Vector(col2_x, row1_y), ALIGN_LEFT, LAYER_GUI, Statistics::header_color); + context.draw_text(normal_font, _("Best"), Vector(col3_x, row1_y), ALIGN_LEFT, LAYER_GUI, Statistics::header_color); + + context.draw_text(normal_font, _("Coins"), Vector(col2_x-16, row3_y), ALIGN_RIGHT, LAYER_GUI, Statistics::header_color); + int coins_best = (best_stats && (best_stats->coins > coins)) ? best_stats->coins : coins; + int total_coins_best = (best_stats && (best_stats->total_coins > total_coins)) ? best_stats->total_coins : total_coins; + context.draw_text(normal_font, coins_to_string(coins, total_coins), Vector(col2_x, row3_y), ALIGN_LEFT, LAYER_GUI, Statistics::text_color); + context.draw_text(normal_font, coins_to_string(coins_best, total_coins_best), Vector(col3_x, row3_y), ALIGN_LEFT, LAYER_GUI, Statistics::text_color); + + context.draw_text(normal_font, _("Secrets"), Vector(col2_x-16, row4_y), ALIGN_RIGHT, LAYER_GUI, Statistics::header_color); + int secrets_best = (best_stats && (best_stats->secrets > secrets)) ? best_stats->secrets : secrets; + int total_secrets_best = (best_stats && (best_stats->total_secrets > total_secrets)) ? best_stats->total_secrets : total_secrets; + context.draw_text(normal_font, secrets_to_string(secrets, total_secrets), Vector(col2_x, row4_y), ALIGN_LEFT, LAYER_GUI, Statistics::text_color); + context.draw_text(normal_font, secrets_to_string(secrets_best, total_secrets_best), Vector(col3_x, row4_y), ALIGN_LEFT, LAYER_GUI, Statistics::text_color); + + context.draw_text(normal_font, _("Time"), Vector(col2_x-16, row2_y), ALIGN_RIGHT, LAYER_GUI, Statistics::header_color); + float time_best = (best_stats && (best_stats->time < time)) ? best_stats->time : time; + context.draw_text(normal_font, time_to_string(time), Vector(col2_x, row2_y), ALIGN_LEFT, LAYER_GUI, Statistics::text_color); + context.draw_text(normal_font, time_to_string(time_best), Vector(col3_x, row2_y), ALIGN_LEFT, LAYER_GUI, Statistics::text_color); } void -Statistics::add_points(int stat, int points) +Statistics::zero() { - stats[stat] += points; + reset(); + total_coins = 0; + total_badguys = 0; + total_secrets = 0; } -int -Statistics::get_points(int stat) +void +Statistics::reset() { - return stats[stat]; + coins = 0; + badguys = 0; + time = 0; + secrets = 0; } void -Statistics::set_points(int stat, int points) +Statistics::merge(const Statistics& s2) { - stats[stat] = points; + if (!s2.valid) return; + coins = std::max(coins, s2.coins); + total_coins = s2.total_coins; + badguys = std::max(badguys, s2.badguys); + total_badguys = s2.total_badguys; + time = std::min(time, s2.time); + secrets = std::max(secrets, s2.secrets); + total_secrets = s2.total_secrets; } void -Statistics::reset() +Statistics::operator+=(const Statistics& s2) { - for(int i = 0; i < NUM_STATS; i++) - stats[i] = 0; + if (!s2.valid) return; + if (s2.coins != nv_coins) coins += s2.coins; + if (s2.total_coins != nv_coins) total_coins += s2.total_coins; + if (s2.badguys != nv_badguys) badguys += s2.badguys; + if (s2.total_badguys != nv_badguys) total_badguys += s2.total_badguys; + if (s2.time != nv_time) time += s2.time; + if (s2.secrets != nv_secrets) secrets += s2.secrets; + if (s2.total_secrets != nv_secrets) total_secrets += s2.total_secrets; } void -Statistics::merge(Statistics& stats_) +Statistics::declare_invalid() { - stats[SCORE_STAT] = std::max(stats[SCORE_STAT], stats_.stats[SCORE_STAT]); - if(stats[JUMPS_STAT] != -1) - stats[JUMPS_STAT] = my_min(stats[JUMPS_STAT], stats_.stats[JUMPS_STAT]); - stats[BADGUYS_SQUISHED_STAT] = - std::max(stats[BADGUYS_SQUISHED_STAT], stats_.stats[BADGUYS_SQUISHED_STAT]); - stats[SHOTS_STAT] = my_min(stats[SHOTS_STAT], stats_.stats[SHOTS_STAT]); - stats[TIME_NEEDED_STAT] = - my_min(stats[TIME_NEEDED_STAT], stats_.stats[TIME_NEEDED_STAT]); + valid = false; } -void -Statistics::operator+=(const Statistics& stats_) -{ - for(int i = 0; i < NUM_STATS; i++) - stats[i] += stats_.stats[i]; +std::string +Statistics::coins_to_string(int coins, int total_coins) { + std::ostringstream os; + os << std::min(coins, 999) << "/" << std::min(total_coins, 999); + return os.str(); +} + +std::string +Statistics::frags_to_string(int badguys, int total_badguys) { + std::ostringstream os; + os << std::min(badguys, 999) << "/" << std::min(total_badguys, 999); + return os.str(); +} + +std::string +Statistics::time_to_string(float time) { + int time_csecs = std::min(static_cast(time * 100), 99 * 6000 + 9999); + int mins = (time_csecs / 6000); + int secs = (time_csecs % 6000) / 100; + int cscs = (time_csecs % 6000) % 100; + + std::ostringstream os; + os << std::setw(2) << std::setfill('0') << mins << ":" << std::setw(2) << std::setfill('0') << secs << "." << std::setw(2) << std::setfill('0') << cscs; + return os.str(); +} + +std::string +Statistics::secrets_to_string(int secrets, int total_secrets) { + std::ostringstream os; + os << std::min(secrets, 999) << "/" << std::min(total_secrets, 999); + return os.str(); } +