X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fsupertux%2Fstatistics.cpp;h=da9ffb1576027d256b332aa049cf1271fdd585cc;hb=10f61ac7431a50d9474f16c40d036fe8b2b6e28c;hp=3dea0f62a967bac22d430a98657ba931b12182ba;hpb=13e56e5b8d9727128667bb42c3aa4850b4a8dd00;p=supertux.git diff --git a/src/supertux/statistics.cpp b/src/supertux/statistics.cpp index 3dea0f62a..da9ffb157 100644 --- a/src/supertux/statistics.cpp +++ b/src/supertux/statistics.cpp @@ -49,42 +49,16 @@ Statistics::Statistics() : total_secrets(nv_secrets), valid(true) { - 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; + WMAP_INFO_LEFT_X = SCREEN_WIDTH - 32 - 256; + WMAP_INFO_RIGHT_X = WMAP_INFO_LEFT_X + 256; + WMAP_INFO_TOP_Y1 = SCREEN_HEIGHT - 100; + WMAP_INFO_TOP_Y2 = WMAP_INFO_TOP_Y1 + 16; } Statistics::~Statistics() { } -/* - void - Statistics::parse(const Reader& reader) - { - 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); - } - - void - Statistics::write(lisp::Writer& writer) - { - writer.write("coins-collected", coins); - writer.write("coins-collected-total", total_coins); - writer.write("badguys-killed", badguys); - writer.write("badguys-killed-total", total_badguys); - writer.write("time-needed", time); - writer.write("secrets-found", secrets); - writer.write("secrets-found-total", total_secrets); - } -*/ - void Statistics::serialize_to_squirrel(HSQUIRRELVM vm) { @@ -129,9 +103,17 @@ Statistics::draw_worldmap_info(DrawingContext& context) // skip draw if stats were declared invalid if (!valid) return; + // check to see if screen size has been changed + if (!(WMAP_INFO_TOP_Y1 == SCREEN_HEIGHT - 100)) { + WMAP_INFO_LEFT_X = SCREEN_WIDTH - 32 - 256; + WMAP_INFO_RIGHT_X = WMAP_INFO_LEFT_X + 256; + WMAP_INFO_TOP_Y1 = SCREEN_HEIGHT - 100; + WMAP_INFO_TOP_Y2 = WMAP_INFO_TOP_Y1 + 16; + } + context.draw_text(Resources::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); + ALIGN_CENTER, LAYER_HUD,Statistics::header_color); std::string caption_buf; std::string stat_buf; @@ -160,20 +142,16 @@ Statistics::draw_worldmap_info(DrawingContext& context) break; } - context.draw_text(Resources::small_font, caption_buf, Vector(WMAP_INFO_LEFT_X, posy), ALIGN_LEFT, LAYER_GUI, Statistics::header_color); - context.draw_text(Resources::small_font, stat_buf, Vector(WMAP_INFO_RIGHT_X, posy), ALIGN_RIGHT, LAYER_GUI, Statistics::header_color); + context.draw_text(Resources::small_font, caption_buf, Vector(WMAP_INFO_LEFT_X, posy), ALIGN_LEFT, LAYER_HUD, Statistics::header_color); + context.draw_text(Resources::small_font, stat_buf, Vector(WMAP_INFO_RIGHT_X, posy), ALIGN_RIGHT, LAYER_HUD, Statistics::header_color); posy += Resources::small_font->get_height() + 2; } } void -Statistics::draw_endseq_panel(DrawingContext& context, Statistics* best_stats, Surface* backdrop) +Statistics::draw_endseq_panel(DrawingContext& context, Statistics* best_stats, SurfacePtr backdrop) { - // 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; @@ -198,31 +176,47 @@ Statistics::draw_endseq_panel(DrawingContext& context, Statistics* best_stats, S int row2_y = row1_y+30; int row3_y = row2_y+20; int row4_y = row3_y+20; + int row5_y = row4_y+20; context.push_transform(); context.set_alpha(0.5); - context.draw_surface(backdrop, Vector(bd_x, bd_y), LAYER_GUI); + context.draw_surface(backdrop, Vector(bd_x, bd_y), LAYER_HUD); context.pop_transform(); - context.draw_text(Resources::normal_font, _("You"), Vector(col2_x, row1_y), ALIGN_LEFT, LAYER_GUI, Statistics::header_color); - context.draw_text(Resources::normal_font, _("Best"), Vector(col3_x, row1_y), ALIGN_LEFT, LAYER_GUI, Statistics::header_color); - - context.draw_text(Resources::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(Resources::normal_font, coins_to_string(coins, total_coins), Vector(col2_x, row3_y), ALIGN_LEFT, LAYER_GUI, Statistics::text_color); - context.draw_text(Resources::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(Resources::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(Resources::normal_font, secrets_to_string(secrets, total_secrets), Vector(col2_x, row4_y), ALIGN_LEFT, LAYER_GUI, Statistics::text_color); - context.draw_text(Resources::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(Resources::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(Resources::normal_font, time_to_string(time), Vector(col2_x, row2_y), ALIGN_LEFT, LAYER_GUI, Statistics::text_color); - context.draw_text(Resources::normal_font, time_to_string(time_best), Vector(col3_x, row2_y), ALIGN_LEFT, LAYER_GUI, Statistics::text_color); + context.draw_text(Resources::normal_font, _("You"), Vector(col2_x, row1_y), ALIGN_LEFT, LAYER_HUD, Statistics::header_color); + if (best_stats) + context.draw_text(Resources::normal_font, _("Best"), Vector(col3_x, row1_y), ALIGN_LEFT, LAYER_HUD, Statistics::header_color); + + context.draw_text(Resources::normal_font, _("Coins"), Vector(col2_x-16, row3_y), ALIGN_RIGHT, LAYER_HUD, Statistics::header_color); + context.draw_text(Resources::normal_font, coins_to_string(coins, total_coins), Vector(col2_x, row3_y), ALIGN_LEFT, LAYER_HUD, Statistics::text_color); + if (best_stats) { + int coins_best = (best_stats->coins > coins) ? best_stats->coins : coins; + int total_coins_best = (best_stats->total_coins > total_coins) ? best_stats->total_coins : total_coins; + context.draw_text(Resources::normal_font, coins_to_string(coins_best, total_coins_best), Vector(col3_x, row3_y), ALIGN_LEFT, LAYER_HUD, Statistics::text_color); + } + + context.draw_text(Resources::normal_font, _("Badguys"), Vector(col2_x-16, row4_y), ALIGN_RIGHT, LAYER_HUD, Statistics::header_color); + context.draw_text(Resources::normal_font, frags_to_string(badguys, total_badguys), Vector(col2_x, row4_y), ALIGN_LEFT, LAYER_HUD, Statistics::text_color); + if (best_stats) { + int badguys_best = (best_stats->badguys > badguys) ? best_stats->badguys : badguys; + int total_badguys_best = (best_stats->total_badguys > total_badguys) ? best_stats->total_badguys : total_badguys; + context.draw_text(Resources::normal_font, frags_to_string(badguys_best, total_badguys_best), Vector(col3_x, row4_y), ALIGN_LEFT, LAYER_HUD, Statistics::text_color); + } + + context.draw_text(Resources::normal_font, _("Secrets"), Vector(col2_x-16, row5_y), ALIGN_RIGHT, LAYER_HUD, Statistics::header_color); + context.draw_text(Resources::normal_font, secrets_to_string(secrets, total_secrets), Vector(col2_x, row5_y), ALIGN_LEFT, LAYER_HUD, Statistics::text_color); + if (best_stats) { + int secrets_best = (best_stats->secrets > secrets) ? best_stats->secrets : secrets; + int total_secrets_best = (best_stats->total_secrets > total_secrets) ? best_stats->total_secrets : total_secrets; + context.draw_text(Resources::normal_font, secrets_to_string(secrets_best, total_secrets_best), Vector(col3_x, row5_y), ALIGN_LEFT, LAYER_HUD, Statistics::text_color); + } + + context.draw_text(Resources::normal_font, _("Time"), Vector(col2_x-16, row2_y), ALIGN_RIGHT, LAYER_HUD, Statistics::header_color); + context.draw_text(Resources::normal_font, time_to_string(time), Vector(col2_x, row2_y), ALIGN_LEFT, LAYER_HUD, Statistics::text_color); + if (best_stats) { + float time_best = (best_stats->time < time) ? best_stats->time : time; + context.draw_text(Resources::normal_font, time_to_string(time_best), Vector(col3_x, row2_y), ALIGN_LEFT, LAYER_HUD, Statistics::text_color); + } } void @@ -249,11 +243,14 @@ Statistics::merge(const Statistics& s2) if (!s2.valid) return; coins = std::max(coins, s2.coins); total_coins = s2.total_coins; + coins = std::min(coins, total_coins); badguys = std::max(badguys, s2.badguys); total_badguys = s2.total_badguys; + badguys = std::min(badguys, total_badguys); time = std::min(time, s2.time); secrets = std::max(secrets, s2.secrets); total_secrets = s2.total_secrets; + secrets = std::min(secrets, total_secrets); } void @@ -269,6 +266,14 @@ Statistics::operator+=(const Statistics& s2) if (s2.total_secrets != nv_secrets) total_secrets += s2.total_secrets; } +bool +Statistics::completed(const Statistics& stats) +{ + return (stats.coins == stats.total_coins && + stats.badguys == stats.total_badguys && + stats.secrets == stats.total_secrets); +} + void Statistics::declare_invalid() {