]> git.sesse.net Git - wloh/blobdiff - www/index.pl
Train one model (with its own aux parms) per locale.
[wloh] / www / index.pl
index 50bf05156cef452763d5933aba615a19835fba18..7546d658ac8a4b5bf14bf8a30b8e46d408c4092b 100755 (executable)
@@ -39,19 +39,13 @@ sub color {
        return int(255.0 * ($x ** (1.80)));
 }
 
-sub get_max_season {
-       my $dbh = shift;
-       my $ref = $dbh->selectrow_hashref('SELECT MAX(sesong) AS max_sesong FROM fotballserier');
-       return $ref->{'max_sesong'};
-}
-
 sub get_divisions {
-       my ($dbh, $season) = @_;
+       my ($dbh, $locale, $season) = @_;
 
        my @divisions = ();
 
-       my $q = $dbh->prepare('SELECT DISTINCT(divisjon) FROM fotballserier WHERE sesong=? ORDER BY divisjon');
-       $q->execute($season);
+       my $q = $dbh->prepare('SELECT DISTINCT(divisjon) FROM fotballserier se JOIN fotballspraak sp ON se.spraak=sp.id WHERE kultur=? AND sesong=? ORDER BY divisjon');
+       $q->execute($locale, $season);
 
        while (my $ref = $q->fetchrow_hashref) {
                push @divisions, $ref->{'divisjon'};
@@ -61,12 +55,12 @@ sub get_divisions {
 }
 
 sub get_subdivisions {
-       my ($dbh, $season, $division) = @_;
+       my ($dbh, $locale, $season, $division) = @_;
 
        my @subdivisions = ();
 
-       my $q = $dbh->prepare('SELECT DISTINCT(avdeling) FROM fotballserier WHERE sesong=? AND divisjon=? ORDER BY avdeling');
-       $q->execute($season, $division);
+       my $q = $dbh->prepare('SELECT DISTINCT(avdeling) FROM fotballserier se JOIN fotballspraak sp ON se.spraak=sp.id WHERE kultur=? AND sesong=? AND divisjon=? ORDER BY avdeling');
+       $q->execute($locale, $season, $division);
 
        while (my $ref = $q->fetchrow_hashref) {
                push @subdivisions, $ref->{'avdeling'};
@@ -76,10 +70,10 @@ sub get_subdivisions {
 }
 
 sub print_division_selector {
-       my ($dbh, $divisions, $subdivisions, $division, $subdivision) = @_;
+       my ($dbh, $locale, $divisions, $subdivisions, $division, $subdivision) = @_;
 
        print <<"EOF";
-    <form method="get" action="/">
+    <form method="get" action="/$locale/">
 EOF
 
        my $max_division = $divisions->[(scalar @$divisions) - 1];
@@ -120,10 +114,10 @@ EOF
 }
 
 sub get_players_and_ratings {
-       my ($dbh, $season, $division, $subdivision) = @_;
+       my ($dbh, $locale, $season, $division, $subdivision) = @_;
 
-       my $q = $dbh->prepare('SELECT fotballdeltagere.id,fotballdeltagere.navn,rating,rating_stddev FROM fotballdeltagere JOIN fotballserier ON fotballdeltagere.serie=fotballserier.nr LEFT JOIN ratings ON fotballdeltagere.id=ratings.id WHERE sesong=? AND divisjon=? AND avdeling=?');
-       $q->execute($season, $division, $subdivision);
+       my $q = $dbh->prepare('SELECT fotballdeltagere.id,fotballdeltagere.navn,rating,rating_stddev FROM fotballdeltagere JOIN fotballserier ON fotballdeltagere.serie=fotballserier.nr NATURAL JOIN spiller_kultur LEFT JOIN ratings ON fotballdeltagere.id=ratings.id WHERE kultur=? AND sesong=? AND divisjon=? AND avdeling=?');
+       $q->execute($locale, $season, $division, $subdivision);
 
        while (my $ref = $q->fetchrow_hashref) {
                my $id = $ref->{'id'};
@@ -135,7 +129,7 @@ sub get_players_and_ratings {
 }
 
 sub get_matches {
-       my ($dbh, $season, $division, $subdivision) = @_;
+       my ($dbh, $locale, $season, $division, $subdivision) = @_;
 
        my @matches = ();
        my $q = $dbh->prepare('
@@ -143,13 +137,14 @@ sub get_matches {
          d1.id AS p1, d2.id AS p2, maalfor AS score1, maalmot AS score2
        FROM fotballresultater r
          JOIN fotballserier s ON r.serie=s.nr
+          JOIN fotballspraak sp ON s.spraak=sp.id
          JOIN fotballdeltagere d1 ON r.lagrecno=d1.nr AND r.serie=d1.serie
          JOIN fotballdeltagere d2 ON r.motstander=d2.nr AND r.serie=d2.serie
        WHERE
-         sesong=? AND divisjon=? AND avdeling=?
+         kultur=? AND sesong=? AND divisjon=? AND avdeling=?
          AND lagrecno > motstander
        ');
-       $q->execute($season, $division, $subdivision);
+       $q->execute($locale, $season, $division, $subdivision);
 
        while (my $ref = $q->fetchrow_hashref) {
                push @matches, [ $ref->{'p1'}, $ref->{'p2'}, $ref->{'score1'}, $ref->{'score2'} ];
@@ -199,7 +194,7 @@ sub write_parms_to_file {
        for my $id1 (keys %players) {
                for my $id2 (keys %players) {
                        if ($id1 == $id2) {
-                               printf MCCALC "%f ", ($used_cov->{$id1}{$id2} // $aux_parms->{-3});
+                               printf MCCALC "%f ", ($used_cov->{$id1}{$id2} // $aux_parms->{'rating_prior_stddev'});
                        } else {
                                printf MCCALC "%f ", ($used_cov->{$id1}{$id2} // 0.0);
                        }
@@ -220,11 +215,22 @@ sub write_parms_to_file {
 my $num_tables = 0;
 
 sub make_table {
-       my ($aux_parms, $match_stddev, $lowest_division, $used_ratings, $used_cov, $division, $subdivision) = @_;
+       my ($locale, $aux_parms, $match_stddev, $lowest_division, $used_ratings, $used_cov, $division, $subdivision) = @_;
        ++$num_tables;
 
        print <<"EOF";
-
+    <script type="text/javascript">
+    <!--
+function showScenario(element_id, url) {
+    var obj = document.getElementById(element_id);
+    var parent = obj.parentElement;
+    parent.removeChild(obj);
+    obj = obj.cloneNode(false);
+    obj.data = url;
+    parent.appendChild(obj);
+}
+    //-->
+    </script>
     <table class="probmatrix">
       <tr>
         <th></th>
@@ -239,11 +245,11 @@ EOF
                chomp;
                my @x = split /\s+/;
                my $id = $x[0];
-               my $player = sprintf "%s (%.0f ± %.0f)", $players{$id}, ($ratings{$id} // 500.0), ($ratings_stddev{$id} // $aux_parms->{-3});
+               my $player = sprintf "%s (%.0f ± %.0f)", $players{$id}, ($ratings{$id} // 500.0), ($ratings_stddev{$id} // $aux_parms->{'rating_prior_stddev'});
                $prob{$player} = [ @x[1..$#x] ];
        }
        close MCCALC;
-       #unlink $tmpnam;
+       unlink $tmpnam;
 
        my $num_games = scalar keys %prob;
        for my $i (1..$num_games) {
@@ -271,7 +277,12 @@ EOF
                                ($r, $b) = ($b, $r);
                        }
 
-                       printf "        <td style=\"background-color: rgb($r, $g, $b)\" class=\"num\"><a class=\"unmarkedlink\" href=\"javascript:var obj=document.getElementById('scenario$num_tables');var parent=obj.parentElement;parent.removeChild(obj);obj=obj.cloneNode();obj.data = '/?divisjon=$division;avdeling=$subdivision;spiller=$pnum;posisjon=$i';parent.appendChild(obj);\">%.1f%%</a></td>\n", $pn * 100.0;
+                       my $num_total_games = ($num_games * ($num_games - 1)) / 2;
+                       if (scalar @matches == $num_total_games || $prob{$player}->[$i - 1] == $trials) {
+                               printf "        <td style=\"background-color: rgb($r, $g, $b)\" class=\"num\">%.1f%%</td>\n", $pn * 100.0;
+                       } else {
+                               printf "        <td style=\"background-color: rgb($r, $g, $b)\" class=\"num\"><a class=\"unmarkedlink\" href=\"javascript:showScenario('scenario$num_tables', '/$locale/?divisjon=$division;avdeling=$subdivision;spiller=$pnum;posisjon=$i');\">%.1f%%</a></td>\n", $pn * 100.0;
+                       }
                }
 
                unless ($lowest_division) {
@@ -297,20 +308,9 @@ sub find_avg_rating {
 
        my $sum_rating = 0.0;
        for my $r (values %$ratings) {
-               $sum_rating += $r;
-       }
-       return $sum_rating / scalar keys %ratings;
-}
-
-sub get_auxillary_parameters {
-       my $q = $dbh->prepare('SELECT * FROM ratings WHERE id < 0');
-       $q->execute;
-
-       my $aux_parms = {};
-       while (my $ref = $q->fetchrow_hashref) {
-               $aux_parms->{$ref->{'id'}} = $ref->{'rating'};
+               $sum_rating += ($r // 500.0);
        }
-       return $aux_parms;
+       return $sum_rating / scalar keys %$ratings;
 }
 
 sub print_header {
@@ -324,7 +324,7 @@ sub print_header {
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="no">
   <head>
     <title>$title</title>
-    <link rel="stylesheet" href="/style" type="text/css" />
+    <link rel="stylesheet" href="style" type="text/css" />
   </head>
   <body>
 EOF
@@ -337,22 +337,25 @@ sub print_footer {
 EOF
 }
 
-my $aux_parms = get_auxillary_parameters($dbh);
-my $match_stddev = $aux_parms->{-2} * sqrt(2.0);
+my $locale = wloh_common::get_locale($cgi);
+my $aux_parms = wloh_common::get_auxillary_parameters($dbh, $locale);
+my $match_stddev = $aux_parms->{'score_stddev'} * sqrt(2.0);
 
 my $division = $cgi->param('divisjon') // -1;
 my $subdivision = $cgi->param('avdeling') // -1;
 my $match_player = $cgi->param('spiller');
 my $match_position = $cgi->param('posisjon');
 
-my $season = get_max_season($dbh);
-my @divisions = get_divisions($dbh, $season);
-$division = 1 if (!grep { $_ == $division } @divisions);
-my @subdivisions = get_subdivisions($dbh, $season, $division);
-$subdivision = 1 if (!grep { $_ == $subdivision } @subdivisions);
+my $season = wloh_common::get_max_season($dbh, $locale);
+die "Nonexistent locale!" if (!defined($season));
 
-get_players_and_ratings($dbh, $season, $division, $subdivision);
-@matches = get_matches($dbh, $season, $division, $subdivision);
+my @divisions = get_divisions($dbh, $locale, $season);
+$division = $divisions[0] if (!grep { $_ == $division } @divisions);
+my @subdivisions = get_subdivisions($dbh, $locale, $season, $division);
+$subdivision = $subdivisions[0] if (!grep { $_ == $subdivision } @subdivisions);
+
+get_players_and_ratings($dbh, $locale, $season, $division, $subdivision);
+@matches = get_matches($dbh, $locale, $season, $division, $subdivision);
 my $cov = get_covariance_matrix($dbh, keys %players);
 
 print_header($cgi, 'WLoH-plasseringsannsynlighetsberegning');
@@ -372,12 +375,17 @@ if (defined($match_player) && defined($match_position)) {
                push @scenario, [ $1, $2, $3 ];
        }
        close MCCALC;
-       #unlink $tmpnam;
+       unlink $tmpnam;
+
+       my @sorted_players = sort { $players{$a} cmp $players{$b} } keys %players;
+       my $player_name = $players{$sorted_players[$match_player]};
 
        if (scalar @scenario == 0) {
-               # FIXME: distinguish between "all played" and "none found"
-               print "    <p>Fant ingen m&aring;te dette kunne skje p&aring.</p>\n";
+               printf "    <p>Fant ingen m&aring;te <strong>%s</strong> kan ende p&aring; <strong>%d.</strong> plass p&aring;.</p>\n",
+                       $player_name, ($match_position + 1);
        } else {
+               printf "    <p>Scenario der <strong>%s</strong> ender p&aring; <strong>%d.</strong> plass:</p>\n",
+                       $player_name, ($match_position + 1);
                print "    <ul>\n";
                for my $m (@scenario) {
                        printf "    <li>%s &ndash; %s: %+d</li>\n", $players{$m->[0]}, $players{$m->[1]}, $m->[2];
@@ -401,18 +409,18 @@ if (defined($match_player) && defined($match_position)) {
     <p>Spillerne er sortert etter nick.</p>
 EOF
 
-       print_division_selector($dbh, \@divisions, \@subdivisions, $division, $subdivision);
+       print_division_selector($dbh, $locale, \@divisions, \@subdivisions, $division, $subdivision);
 
        my $max_division = $divisions[$#divisions];
        my $lowest_division = ($division == $max_division);
-       make_table($aux_parms, $match_stddev, $lowest_division, {}, {}, $division, $subdivision);
+       make_table($locale, $aux_parms, $match_stddev, $lowest_division, {}, {}, $division, $subdivision);
 
        print <<"EOF";
     <p style="clear: both; padding-top: 1em;">Under er en variant som tar relativ spillestyrke med i beregningen;
-      se <a href="/rating">ratingsiden</a>.</p>
+      se <a href="rating">ratingsiden</a>.</p>
 EOF
 
-       make_table($aux_parms, $match_stddev, $lowest_division, \%ratings, $cov, $division, $subdivision);
+       make_table($locale, $aux_parms, $match_stddev, $lowest_division, \%ratings, $cov, $division, $subdivision);
 
        my $avg_rating = find_avg_rating(\%ratings);
        printf "    <p style=\"clear: both; padding-top: 1em;\">Gjennomsnittlig rating i denne avdelingen er <strong>%.1f</strong>.</p>\n", $avg_rating;