]> iEval git - gruntmaster-page.git/blobdiff - lib/Gruntmaster/Page/St.pm
Add full names to standings
[gruntmaster-page.git] / lib / Gruntmaster / Page / St.pm
index 02e377da57baad96bdaf98932da3f3501c007c55..22d6e30ca323697feabf8ee7e8d769a9994a7566 100644 (file)
@@ -1,11 +1,6 @@
 package Gruntmaster::Page::St;
 
-use 5.014000;
-use strict;
-use warnings;
 use Gruntmaster::Page::Base st => 'Standings';
-our @ISA = qw/Gruntmaster::Page::Base/;
-our $VERSION = '0.001';
 
 use constant LEVEL_VALUES => {
        beginner => 100,
@@ -24,7 +19,7 @@ sub calc_score{
        $score = ($totaltime - $timetaken) / $totaltime * $score;
        $score -= $tries / 10 * $mxscore;
        $score = $mxscore * 3 / 10 if $score < $mxscore * 3 / 10;
-       int $score
+       int $score + 0.5
 }
 
 sub _generate{
@@ -59,6 +54,7 @@ sub _generate{
                my $user = $_;
                +{
                        user => $user,
+                       name => do {local $Gruntmaster::Data::contest; user_name $user},
                        score => sum (values $scores{$user}),
                        scores => [map { $scores{$user}{$_} // '-'} @problems],
                        problems => $Gruntmaster::Data::contest,
This page took 0.017021 seconds and 4 git commands to generate.