]> git.sesse.net Git - ccbs/blobdiff - parse/parse-ddreurope-tournament.pl
Fix parsing of chosen songs.
[ccbs] / parse / parse-ddreurope-tournament.pl
index 09f428ab35a1d8adcb2efad160f12e3cfdb6ab77..9338ad29b418e8975ee80bb0ed52b0b1fce90f4b 100644 (file)
@@ -70,8 +70,9 @@ while (<>) {
                }
 
                # chosen songs
-               while (s/<td \s* class=dtdsong> .*? class="link"> (.*?) <\/a> .*? <td class=dtdscore> (\d+) <\/td>//x) {
+               while (s/<td \s* class=dtdsong> .*? class="link"> (.*?) <\/a> .*? <td \s* class=dtdscore> (\d+) <\/td>//x) {
                        my $song = song_map($1);
+                       my $score = $2;
                        $song =~ s/'/\\'/g;
                
                        printf "INSERT INTO scores (tournament, round, parallel, player, song, chosen, score) VALUES (\n";
@@ -80,7 +81,7 @@ while (<>) {
                        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";
+                       print "   $score);\n";
                }
        }
 
@@ -162,6 +163,16 @@ sub song_map {
        $song =~ s/Burning the floor/Burnin' the Floor/;
        $song =~ s/Never Gonna Make/Never Gonna Make (Factory Team Mix)/;
        $song =~ s/Max300/Max 300/;
+       $song =~ s/Era/era (nostalmix)/;
+       $song =~ s/Electro Tuned/Electro Tuned (the SubS Mix)/;
+       $song =~ s/Make a Jam/Make A Jam!/;
+       $song =~ s/Paranoia KCET -clean mix-/Paranoia KCET (Clean Mix)/;
+       $song =~ s/Cant Stop -Speed Mix-/Can't Stop Fallin' in Love (SPEED MIX)/;
+       $song =~ s/Love This Feelin/Love This Feelin'/;
+       $song =~ s/Trip Machine -Luv mix-/Trip Machine (Luv Mix)/;
+       $song =~ s/Let The Beat Hit Them/Let the Beat Hit 'em!/;
+       $song =~ s/Luv To Me/Luv to Me (AMD Mix)/;
+       $song =~ s/20 November/20th November/;
 
        return $song;
 }