]> git.sesse.net Git - ccbs/blobdiff - parse/parse-ddreurope-tournament.pl
Update the DDR Europe parser to add song ordering information. Update the CC SQL...
[ccbs] / parse / parse-ddreurope-tournament.pl
index 9338ad29b418e8975ee80bb0ed52b0b1fce90f4b..1a55afb42abbcd3bf53c7108de8bfd1729de5a23 100644 (file)
@@ -59,10 +59,11 @@ while (<>) {
 
                # random songs
                while (s/<td \s* class=dtdm> (\d+) <\/td>//x) {
-                       printf "INSERT INTO scores (tournament, round, parallel, player, song, chosen, score) VALUES (\n";
+                       printf "INSERT INTO scores (tournament, round, parallel, player, songnumber, 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 "   $i,\n";
                        print "   (SELECT song FROM songs WHERE lower(title)=lower('$rsongs[$i]')),\n";
                        print "   'f',\n";
                        print "   $1);\n";
@@ -75,13 +76,15 @@ while (<>) {
                        my $score = $2;
                        $song =~ s/'/\\'/g;
                
-                       printf "INSERT INTO scores (tournament, round, parallel, player, song, chosen, score) VALUES (\n";
+                       printf "INSERT INTO scores (tournament, round, parallel, player, songnumber, 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 "   $i,\n";
                        print "   (SELECT song FROM songs WHERE lower(title)=lower('$song')),\n";
                        print "   't',\n";
                        print "   $score);\n";
+                       ++$i;
                }
        }