X-Git-Url: https://git.sesse.net/?p=ccbs;a=blobdiff_plain;f=parse%2Fparse-ddreurope-tournament.pl;h=6c42f5794eab8b366ca452ac38fdefaf38201b0e;hp=ccee272c6d4f414827c925eb97b6f4fc30c7b5cc;hb=c8ced6134e4cea84de6f8da5e6611a9ccce2b2dd;hpb=64bb65f65e37dbc157d3dd09b47de8a5da7d3690 diff --git a/parse/parse-ddreurope-tournament.pl b/parse/parse-ddreurope-tournament.pl index ccee272..6c42f57 100644 --- a/parse/parse-ddreurope-tournament.pl +++ b/parse/parse-ddreurope-tournament.pl @@ -6,7 +6,7 @@ use Date::Manip; # Parses tournament results from the DDR Europe result list my $season = shift; -my $name; +my ($name, $round, @rsongs); die "Missing season (give on command line)." if (!defined($season)); print "begin;\n"; @@ -36,6 +36,59 @@ while (<>) { print " (SELECT scoringsystem FROM scoringsystems WHERE name='$system')\n"; print ");\n"; } + + # New round + if (/

Round \s* (\d+) \s* <\/h3>/x) { + $round = $1; + + print "INSERT INTO rounds (tournament, round, randomsongs, chosensongs) \n"; + print " VALUES (\n"; + print " (SELECT tournament FROM tournaments WHERE name='$name'),\n"; + print " $round,\n"; + print " 0, 0);\n"; # Don't worry, we'll fix it later :-P + } + + # New group, and the random songs for it + if (/ ( Players | Group (\d+) )<\/th>/x) { + # bit of an evil hack here + my $group = $2; + $group = 0 if ($1 eq 'Players'); + + print "INSERT INTO groups (tournament, round, parallel) VALUES (\n"; + print " (SELECT tournament FROM tournaments WHERE name='$name'),\n"; + print " $round, $group);\n"; + + # Find the random songs, if any + @rsongs = (); + + while (s/ .*? "color:white"> (.*?) <\/a><\/th>//x) { + my $song = $1; + + # different names for songs + $song =~ s/Paranoia -Rebirth-/PARANOiA Rebirth/; + $song =~ s/The Center of the heart/The Centre of the Heart (Stonebridge Club Mix)/; + + push @rsongs, $song; + + print "INSERT INTO roundrandomsongs (tournament, round, parallel, song) VALUES (\n"; + print " (SELECT tournament FROM tournaments WHERE name='$name'),\n"; + print " $round, $group,\n"; + print " (SELECT song FROM songs WHERE lower(title)=lower('$song'))\n"; + print ");\n"; + } + + # Correct the random songs in the table + printf "UPDATE rounds SET randomsongs=%u WHERE \n", scalar @rsongs; + print " tournament=(SELECT tournament FROM tournaments WHERE name='$name') AND \n"; + print " round=$round;\n"; + } + + # Header for chosen song + if (/ <\/th>/x) { + printf "UPDATE rounds SET chosensongs=chosensongs+1 WHERE \n"; + print " tournament=(SELECT tournament FROM tournaments WHERE name='$name') AND \n"; + print " round=$round;\n"; + } } printf "commit;\n";