]> iEval git - gruntmaster-page.git/blob - lib/Gruntmaster/Page/St.pm
Fix and update standings
[gruntmaster-page.git] / lib / Gruntmaster / Page / St.pm
1 package Gruntmaster::Page::St;
2
3 use 5.014000;
4 use strict;
5 use warnings;
6 use Gruntmaster::Page::Base st => 'Standings';
7 our @ISA = qw/Gruntmaster::Page::Base/;
8 our $VERSION = '0.001';
9
10 use constant TEMPLATES => {
11 en => <<'HTML',
12 <table border>
13 <thead>
14 <tr><th>Username<tmpl_loop problems><th><tmpl_var _></tmpl_loop><th>Total
15 <tbody>
16 <tmpl_loop st><tr><td><tmpl_var user>
17 <tmpl_loop scores><td><tmpl_var _>
18 </tmpl_loop><td><tmpl_var score>
19 </tmpl_loop>
20 </table>
21 HTML
22 };
23
24 sub _generate{
25 my ($self, $htc, $path, $lang) = @_;
26
27 $path =~ m,^(?:ct/([^/]+)/)?,;
28 local $Gruntmaster::Data::contest = $1;
29
30 my @problems = problems;
31 @problems = sort @problems;
32 my %scores;
33 for (1 .. jobcard) {
34 if (job_result_text =~ m/^(\d+)/) {
35 $scores{job_user()}{job_problem()} = $1;
36 } else {
37 $scores{job_user()}{job_problem()} = job_result() ? 0 : 100;
38 }
39 }
40
41 my @st = sort { $b->{score} <=> $a->{score} } map {
42 my $user = $_;
43 +{
44 user => $user,
45 score => sum (values $scores{$user}),
46 scores => [map { $scores{$user}{$_} // '-'} @problems],
47 }
48 } keys %scores;
49 $htc->param(problems => [map { problem_name } @problems ]);
50 $htc->param(st => \@st);
51 }
52
53 1
This page took 0.046582 seconds and 5 git commands to generate.