X-Git-Url: https://git.sesse.net/?p=ccbs;a=blobdiff_plain;f=parse%2Fparse-ddreurope-tournament.pl;h=9338ad29b418e8975ee80bb0ed52b0b1fce90f4b;hp=09f428ab35a1d8adcb2efad160f12e3cfdb6ab77;hb=905e6c9f072de56b750e1aa2a34f64a528e205e9;hpb=147774d67c3932c9ee5e42b93f348c5023d74f4b diff --git a/parse/parse-ddreurope-tournament.pl b/parse/parse-ddreurope-tournament.pl index 09f428a..9338ad2 100644 --- a/parse/parse-ddreurope-tournament.pl +++ b/parse/parse-ddreurope-tournament.pl @@ -70,8 +70,9 @@ while (<>) { } # chosen songs - while (s/ .*? class="link"> (.*?) <\/a> .*? (\d+) <\/td>//x) { + while (s/ .*? class="link"> (.*?) <\/a> .*? (\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; }