8 my $id = $cgi->param('id');
10 my $dbh = ccbs::db_connect();
12 my $tournament = $dbh->selectrow_hashref('SELECT * FROM tournaments NATURAL JOIN seasons NATURAL JOIN countries NATURAL JOIN machines NATURAL JOIN scoringsystems WHERE tournament=?', undef, $id);
15 if ($tournament->{'country'} == 1) {
16 $rankings = ccbs::db_fetch_all($dbh, 'SELECT ranking,player,nick || \' (\' || countrycode::varchar || \')\' AS nick,COALESCE(points,-1) AS points FROM tournamentrankings NATURAL JOIN players NATURAL JOIN countries WHERE tournament=? ORDER BY ranking', $id);
18 $rankings = ccbs::db_fetch_all($dbh, 'SELECT ranking,player,COALESCE(nick || \' (\' || clubcode::varchar || \')\', nick) AS nick,COALESCE(points,-1) AS points FROM tournamentrankings NATURAL JOIN players NATURAL LEFT JOIN clubs WHERE tournament=? ORDER BY ranking', $id);
21 my $songs = ccbs::db_fetch_all($dbh, 'SELECT song,title FROM machinesongs NATURAL JOIN songs WHERE machine=? ORDER BY LOWER(title)', $tournament->{'machine'});
23 # Check if the last round is valid for closing (by checking if all scores
25 my $ref = $dbh->selectrow_hashref('SELECT COUNT(*) AS num_incomplete FROM scores WHERE tournament=? AND (song IS NULL OR playmode IS NULL OR difficulty IS NULL OR chosen IS NULL or score IS NULL)', undef, $tournament->{'tournament'});
26 my ($closing_valid,$finishing_valid);
28 if ($ref->{'num_incomplete'} == 0) {
34 # Check if this tournament is on the bigscreen or not.
35 my $ref = $dbh->selectrow_hashref('SELECT * FROM bigscreen.active_tournament');
36 my $bigscreen = ($ref->{'tournament'} == $id) ? 1 : 0;
40 # Find all groups currently shown on the bigscreen.
41 $active_groups = ccbs::db_fetch_all($dbh, 'SELECT * FROM bigscreen.active_groups WHERE tournament=?', $id);
44 # Swoop all the data in in a big join, then order it over to quasi-sane Perl objects.
45 # (round -> parallel -> player -> songs -> title,chosen,score)
47 if ($tournament->{'country'} == 1) {
48 $scores = ccbs::db_fetch_all($dbh,
49 'SELECT round,parallel,position,playmode,difficulty,songnumber,player,nick || \' (\' || countrycode::varchar || \')\' AS nick,song,title,chosen,score,best_rank,worst_rank FROM roundparticipation NATURAL JOIN players NATURAL JOIN countries NATURAL JOIN scores NATURAL LEFT JOIN songs NATURAL JOIN get_minmax_rank_for_players(?,\'single\') WHERE tournament=? ORDER BY round,parallel,position,songnumber',
52 $scores = ccbs::db_fetch_all($dbh,
53 'SELECT round,parallel,position,playmode,difficulty,songnumber,player,COALESCE(nick || \' (\' || clubcode::varchar || \')\', nick) AS nick,song,title,chosen,score,best_rank,worst_rank FROM roundparticipation NATURAL JOIN players NATURAL JOIN scores NATURAL LEFT JOIN songs NATURAL LEFT JOIN clubs NATURAL JOIN get_minmax_rank_for_players(?,\'single\') WHERE tournament=? ORDER BY round,parallel,position,songnumber',
59 my ($round, $parallel, $player) = (-1,-1,'');
60 for my $score (@$scores) {
61 if ($score->{'round'} != $round) {
62 $round = $score->{'round'};
63 push @rounds, { round => $round, parallels => [], locked => 0 };
66 my $p = $rounds[$#rounds]->{'parallels'};
67 if ($score->{'parallel'} != $parallel) {
68 $parallel = $score->{'parallel'};
69 push @$p, { parallel => $parallel, players => [], songs => [], num_songs => 0 };
73 # suboptimal, but heck :-)
74 $p->[$#$p]->{'bigscreen'} = 0;
75 for my $ag (@$active_groups) {
76 if ($ag->{'round'} == $round && $ag->{'parallel'} == $parallel) {
77 $p->[$#$p]->{'bigscreen'} = 1;
83 # Information on songs is not selected from roundrandomsongs etc.,
84 # but is filled in the first time the song is seen for this round
87 if ($score->{'position'} == 1) {
88 if ($score->{'chosen'}) {
89 push @{$p->[$#$p]->{'songs'}}, { song => -1, title => '' };
91 push @{$p->[$#$p]->{'songs'}}, $score;
93 $p->[$#$p]->{'num_songs'}++;
96 my $pl = $p->[$#$p]->{'players'};
97 if ($score->{'nick'} ne $player) {
98 $player = $score->{'nick'};
99 push @$pl, { player => $score->{'player'}, nick => $player, songs => [], total => 0, best_rank => $score->{'best_rank'},
100 worst_rank => $score->{'worst_rank'} };
103 push @{$pl->[$#$pl]->{'songs'}}, $score;
105 if (defined($score->{'score'})) {
106 $pl->[$#$pl]->{'total'} += $score->{'score'};
110 # FIXME: In some odd cases, there _might_ be an empty group right at the end. Fix this when
111 # we are able to add/delete people in groups.
113 my $num_rounds = scalar @rounds;
114 my $num_rankings = scalar @$rankings;
116 # Lock all rounds but the last (active?) one
117 for my $r (0..$#rounds-1) {
118 $rounds[$r]->{'locked'} = 1;
121 # If there's only one group left and it's valid for closing, we can also finish
122 # the entire tournament if we'd like
123 if ($closing_valid && (scalar @rounds > 0 && scalar @{$rounds[$#rounds]->{'parallels'}}) == 1) {
124 $finishing_valid = 1;
127 # If there have been no rounds, check out the number of participants; if not, check the
128 # number of qualified from the last round
130 if ($num_rounds == 0) {
131 my $ref = $dbh->selectrow_hashref('SELECT COUNT(*) AS num_participants FROM tournamentparticipation WHERE tournament=?', undef, $id);
132 $num_qualified = $ref->{'num_participants'};
134 my $ref = $dbh->selectrow_hashref('SELECT SUM(numqualifying) AS numqualifying FROM rounds NATURAL JOIN groups WHERE tournament=? AND round=?', undef, $id, $num_rounds);
135 $num_qualified = $ref->{'numqualifying'};
138 # And last: If there is a ranking list, the tournament is closed and we really can't
140 if ($num_rankings > 0) {
142 $finishing_valid = 0;
144 $rounds[$#rounds]->{'locked'} = 1;
148 ccbs::print_header();
149 ccbs::process_template('show-tournament.tmpl', $tournament->{'tournamentname'}, {
150 tournament => $tournament,
151 rankings => $rankings,
152 num_rankings => $num_rankings,
154 num_rounds => $num_rounds,
155 num_qualified => $num_qualified,
157 closing_valid => $closing_valid,
158 finishing_valid => $finishing_valid,
159 bigscreen => $bigscreen