X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=lib%2FGruntmaster%2FPage%2FSt.pm;h=3857c1ad22f991a6c5e5745b1ee5e6b9ef1a67d8;hb=5c6aea9392c11422abe85788aac0f62ad3a4dd14;hp=fafded1c601dda5d63eda51851a07f568e3844ca;hpb=ca3dffeb7be20e4bf1269d8bb502f80eb533f0ab;p=plack-app-gruntmaster.git diff --git a/lib/Gruntmaster/Page/St.pm b/lib/Gruntmaster/Page/St.pm index fafded1..3857c1a 100644 --- a/lib/Gruntmaster/Page/St.pm +++ b/lib/Gruntmaster/Page/St.pm @@ -1,28 +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 TEMPLATES => { - en => <<'HTML', - - - -
UsernameTotal -
UsernameScore - - -
- - - -
-HTML -}; use constant LEVEL_VALUES => { beginner => 100, @@ -41,37 +19,38 @@ 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{ - my ($self, $htc, $path, $lang) = @_; - my $totaltime; + my ($self, $htc, $lang, $env, $ct) = @_; + debug $env => "language is '$lang' and contest is '$ct'"; + my ($totaltime, $start); - $path =~ m,^(?:ct/([^/]+)/)?,; local $Gruntmaster::Data::contest; - if ($1) { - $totaltime = contest_end ($1) - contest_start ($1); - $Gruntmaster::Data::contest = $1; + if ($ct) { + $start = contest_start ($ct); + $totaltime = contest_end ($ct) - $start; + $Gruntmaster::Data::contest = $ct; } my @problems = problems; @problems = sort @problems; my (%scores, %tries); for (1 .. jobcard) { + next unless defined job_user && defined job_problem && defined job_result; + next if $Gruntmaster::Data::contest && job_date() < $start; + if ($Gruntmaster::Data::contest) { - $tries{job_user()}{job_problem()}++; $scores{job_user()}{job_problem()} = job_result() ? 0 : calc_score (job_user(), job_problem(), job_date(), $tries{job_user()}{job_problem()}, $totaltime); + $tries{job_user()}{job_problem()}++; } else { - if (job_result_text =~ m/^(\d+)/) { - $scores{job_user()}{job_problem()} = $1; - } else { - $scores{job_user()}{job_problem()} = job_result() ? 0 : 100; - } + no warnings 'numeric'; + $scores{job_user()}{job_problem()} = 0 + job_result_text() || (job_result() ? 0 : 100) } } - my @st = sort { $b->{score} <=> $a->{score} } map { + my @st = sort { $b->{score} <=> $a->{score} or $a->{user} cmp $b->{user}} map { my $user = $_; +{ user => $user, @@ -80,6 +59,9 @@ sub _generate{ problems => $Gruntmaster::Data::contest, } } keys %scores; + + $st[0]->{rank} = 1; + $st[$_]->{rank} = $st[$_ - 1]->{rank} + ($st[$_]->{score} < $st[$_ - 1]->{score}) for 1 .. $#st; $htc->param(problems => [map { problem_name } @problems ]) if $Gruntmaster::Data::contest; $htc->param(st => \@st); }