X-Git-Url: https://git.sesse.net/?p=ccbs;a=blobdiff_plain;f=parse%2Fparse-ddreurope-tournament.pl;h=ad3fe0776b20f38275146f99b547cbbc90f2718b;hp=0aea46768744ca07dd9cf65c7449ccf545069cc8;hb=62731f1052d2a3f21c2aac3511a0114bf6973c74;hpb=d06b81c2a6cd1abb6e0d2b38a148f4daeb0931d2 diff --git a/parse/parse-ddreurope-tournament.pl b/parse/parse-ddreurope-tournament.pl index 0aea467..ad3fe07 100644 --- a/parse/parse-ddreurope-tournament.pl +++ b/parse/parse-ddreurope-tournament.pl @@ -6,10 +6,11 @@ use Date::Manip; # Parses tournament results from the DDR Europe result list my $season = shift; -my ($name, $round, @rsongs); +my ($name, $round, $group, $player, @rsongs); die "Missing season (give on command line)." if (!defined($season)); -print "begin;\n"; +# commented out -- see player below +# print "begin;\n"; while (<>) { if (/

\s* (.*?) \s* <\/h2>/x) { @@ -49,9 +50,9 @@ while (<>) { } # New group, and the random songs for it - if (/ ( Players | Group (\d+) )<\/th>/x) { + if (/ ( Players | Group \s* (\d+) )<\/th>/x) { # bit of an evil hack here - my $group = $2; + $group = $2; $group = 0 if ($1 eq 'Players'); print "INSERT INTO groups (tournament, round, parallel) VALUES (\n"; @@ -62,12 +63,15 @@ while (<>) { @rsongs = (); while (s/ .*? "color:white"> (.*?) <\/a><\/th>//x) { - push @rsongs, $1; + my $song = song_map($1); + $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 title='$1')\n"; + print " (SELECT song FROM songs WHERE lower(title)=lower('$song'))\n"; print ");\n"; } @@ -77,12 +81,74 @@ while (<>) { print " round=$round;\n"; } - # Header for chosen song + # Header for chosen song (evil) if (/ <\/th>/x) { - printf "UPDATE rounds SET chosensongs=chosensongs+1 WHERE \n"; + printf "UPDATE rounds SET chosensongs=1 WHERE \n"; print " tournament=(SELECT tournament FROM tournaments WHERE name='$name') AND \n"; print " round=$round;\n"; } + + # Player's results (header) + if (/^ .*? class="link"> (.*?) <\/a> $/x) { + $player = $1; + printf "INSERT INTO players (nick) VALUES ('%s');\n", $player; + printf "INSERT INTO roundparticipation (tournament, round, parallel, player) VALUES (\n"; + print " (SELECT tournament FROM tournaments WHERE name='$name'),\n"; + print " $round, $group,\n"; + print " (SELECT player FROM players WHERE nick='$player')\n"; + print ");\n"; + } + + # Player's results (score) + if (//x) { + my $i = 0; + + # random songs + while (s/ (\d+) <\/td>//x) { + printf "INSERT INTO scores (tournament, round, parallel, player, song, chosen, score) VALUES (\n"; + print " (SELECT tournament FROM tournaments WHERE name='$name'),\n"; + print " $round, $group,\n"; + print " (SELECT player FROM players WHERE nick='$player'),\n"; + print " (SELECT song FROM songs WHERE lower(title)=lower('$rsongs[$i]')),\n"; + print " 'f',\n"; + print " $1);\n"; + ++$i; + } + + # chosen songs + while (s/ .*? class="link"> (.*?) <\/a> .*? (\d+) <\/td>//x) { + my $song = song_map($1); + $song =~ s/'/\\'/g; + + printf "INSERT INTO scores (tournament, round, parallel, player, song, chosen, score) VALUES (\n"; + print " (SELECT tournament FROM tournaments WHERE name='$name'),\n"; + print " $round, $group,\n"; + print " (SELECT player FROM players WHERE nick='$player'),\n"; + print " (SELECT song FROM songs WHERE lower(title)=lower('$song')),\n"; + print " 't',\n"; + print " $2);\n"; + } + } } printf "commit;\n"; + +# different names for songs +sub song_map { + my $song = shift; + + $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)/; + + return $song; +}