X-Git-Url: https://git.sesse.net/?p=ccbs;a=blobdiff_plain;f=parse%2Fparse-ddreurope-tournament.pl;h=d5ec424b3794610b7831bff6c61e352b883e3970;hp=ccee272c6d4f414827c925eb97b6f4fc30c7b5cc;hb=da2ada5227ee7dd92b5d117a1decc0a95379aa6b;hpb=64bb65f65e37dbc157d3dd09b47de8a5da7d3690 diff --git a/parse/parse-ddreurope-tournament.pl b/parse/parse-ddreurope-tournament.pl index ccee272..d5ec424 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,71 @@ 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 \s* (\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)/; + $song =~ s/Can't stop falling in love/Can't Stop Fallin' in Love/; + $song =~ s/B4U -B4 ZA Beat Mix-/B4U (B4 Za Beat Mix)/; + $song =~ s/Jam Jam Reggae/Jam Jam Reggae (AM Swing Mix)/; + $song =~ s/Trip Machine -Climax-/Trip Machine Climax/; + $song =~ s/Dont try to stop it/Don't Try to Stop It/; + $song =~ s/Healing Vision -AM-/Healing Vision (Angelic Mix)/; + $song =~ s/5,6,7,8/5, 6, 7, 8/; + $song =~ s/Keep On Movin/Keep On Movin'/; + $song =~ s/So Deep/So Deep (Perfect Sphere Mix)/; + $song =~ s/Aarons Party/Aaron's Party (Come Get It)/; + + $song =~ s/'/\\'/g; + + 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 (evil) + if (/ <\/th>/x) { + printf "UPDATE rounds SET chosensongs=1 WHERE \n"; + print " tournament=(SELECT tournament FROM tournaments WHERE name='$name') AND \n"; + print " round=$round;\n"; + } } printf "commit;\n";