X-Git-Url: https://git.sesse.net/?p=ccbs;a=blobdiff_plain;f=parse%2Fparse-ddreurope-tournament.pl;h=592a8e78b3656fb1169625285151440d4a5dbf5d;hp=9338ad29b418e8975ee80bb0ed52b0b1fce90f4b;hb=bd55f6835567a11e5a490d4a872bc778c96d1e83;hpb=905e6c9f072de56b750e1aa2a34f64a528e205e9 diff --git a/parse/parse-ddreurope-tournament.pl b/parse/parse-ddreurope-tournament.pl index 9338ad2..592a8e7 100644 --- a/parse/parse-ddreurope-tournament.pl +++ b/parse/parse-ddreurope-tournament.pl @@ -24,16 +24,18 @@ while (<>) { /x) { my ($country, $location, $date, $mix, $system) = ($1, $2, $3, $4, $5); $mix =~ s/Euromix/EuroMix/; + $mix =~ s/Dance Dance Revolution 8th mix - Extreme/DDR Extreme/; + $system = '10K Machine score' if ($system =~ /^\s*$/); print "INSERT INTO tournaments \n"; - print " (season, name, country, location, \"date\", machine, scoringsystem) VALUES (\n"; - print " (SELECT season FROM seasons WHERE name='$season'),\n"; + print " (season, tournamentname, country, location, \"date\", machine, scoringsystem) VALUES (\n"; + print " (SELECT season FROM seasons WHERE seasonname='$season' AND season=( SELECT season FROM seasons WHERE seasonname='$season' )),\n"; print " '$name',\n"; - print " (SELECT country FROM countries WHERE name='$country'),\n"; + print " (SELECT country FROM countries WHERE countryname='$country'),\n"; print " '$location',\n"; printf " '%s',\n", Date::Manip::UnixDate($date, '%Y-%m-%d'); - print " (SELECT machine FROM machines WHERE name='$mix'),\n"; - print " (SELECT scoringsystem FROM scoringsystems WHERE name='$system')\n"; + print " (SELECT machine FROM machines WHERE machinename='$mix'),\n"; + print " (SELECT scoringsystem FROM scoringsystems WHERE scoringsystemname='$system')\n"; print ");\n"; } @@ -41,11 +43,8 @@ while (<>) { if (/^ .*? class="link"> (.*?) <\/a> $/x) { $player = $1; - # Woot, evil - printf "INSERT INTO players SELECT nextval('players_player_seq') AS player, '%s' AS nick WHERE '%s' NOT IN ( SELECT nick FROM players );\n", $player, $player; - printf "INSERT INTO roundparticipation (tournament, round, parallel, player, position) VALUES (\n"; - print " (SELECT tournament FROM tournaments WHERE name='$name'),\n"; + print " (SELECT tournament FROM tournaments WHERE tournamentname='$name' AND season=( SELECT season FROM seasons WHERE seasonname='$season' )),\n"; print " $round, $group,\n"; print " (SELECT player FROM players WHERE nick='$player'),\n"; print " $position\n"; @@ -54,15 +53,16 @@ while (<>) { } # Player's results (score) - if (//x) { + 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"; + printf "INSERT INTO scores (tournament, round, parallel, player, songnumber, song, chosen, score) VALUES (\n"; + print " (SELECT tournament FROM tournaments WHERE tournamentname='$name' AND season=( SELECT season FROM seasons WHERE seasonname='$season' )),\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 +75,15 @@ while (<>) { my $score = $2; $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"; + printf "INSERT INTO scores (tournament, round, parallel, player, songnumber, song, chosen, score) VALUES (\n"; + print " (SELECT tournament FROM tournaments WHERE tournamentname='$name' AND season=( SELECT season FROM seasons WHERE seasonname='$season' )),\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; } } @@ -91,7 +93,7 @@ while (<>) { print "INSERT INTO rounds (tournament, round, randomsongs, chosensongs) \n"; print " VALUES (\n"; - print " (SELECT tournament FROM tournaments WHERE name='$name'),\n"; + print " (SELECT tournament FROM tournaments WHERE tournamentname='$name' AND season=( SELECT season FROM seasons WHERE seasonname='$season' )),\n"; print " $round,\n"; print " 0, 0);\n"; # Don't worry, we'll fix it later :-P } @@ -105,7 +107,7 @@ while (<>) { $position = 1; print "INSERT INTO groups (tournament, round, parallel) VALUES (\n"; - print " (SELECT tournament FROM tournaments WHERE name='$name'),\n"; + print " (SELECT tournament FROM tournaments WHERE tournamentname='$name' AND season=( SELECT season FROM seasons WHERE seasonname='$season' )),\n"; print " $round, $group);\n"; # Find the random songs, if any @@ -118,7 +120,7 @@ while (<>) { push @rsongs, $song; print "INSERT INTO roundrandomsongs (tournament, round, parallel, song) VALUES (\n"; - print " (SELECT tournament FROM tournaments WHERE name='$name'),\n"; + print " (SELECT tournament FROM tournaments WHERE tournamentname='$name' AND season=( SELECT season FROM seasons WHERE seasonname='$season' )),\n"; print " $round, $group,\n"; print " (SELECT song FROM songs WHERE lower(title)=lower('$song'))\n"; print ");\n"; @@ -126,17 +128,70 @@ while (<>) { # 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 " tournament=(SELECT tournament FROM tournaments WHERE tournamentname='$name' AND season=( SELECT season FROM seasons WHERE seasonname='$season' )) 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 " tournament=(SELECT tournament FROM tournaments WHERE tournamentname='$name' AND season=( SELECT season FROM seasons WHERE seasonname='$season' )) AND \n"; print " round=$round;\n"; } + # First place + if (/A \s* well-earned \s* victory \s* for .*? class="link"> (.*?) <\/a> (?: , \s* who \s* got \s* (\d+) \s* point )?/x) { + my $nick = $1; + my $points = $2; + + # Whoa :-) + $points = 'NULL' unless defined($points); + + # Woot, evil + printf "INSERT INTO players SELECT nextval('players_player_seq') AS player, '%s' AS nick, ( SELECT country FROM countries WHERE countryname='Norway' ) AS country WHERE '%s' NOT IN ( SELECT nick FROM players );\n", $nick, $nick; + + print "INSERT INTO tournamentrankings (tournament, ranking, player, points) VALUES (\n"; + print " (SELECT tournament FROM tournaments WHERE tournamentname='$name' AND season=( SELECT season FROM seasons WHERE seasonname='$season' )),\n"; + print " 1,\n"; + print " (SELECT player FROM players WHERE nick='$nick'),\n"; + print " $points);\n"; + } + + # Odd split first places and stuff + if (/^ \s+ ( .*? \s+ and \s+ .*? <\/a>) \s+ won/x) { + my $winners = $1; + while ($winners =~ s/ (.*?) <\/a>//x) { + my $nick = $1; + my $points = 'NULL'; + + printf "INSERT INTO players SELECT nextval('players_player_seq') AS player, '%s' AS nick, ( SELECT country FROM countries WHERE countryname='Norway' ) AS country WHERE '%s' NOT IN ( SELECT nick FROM players );\n", $nick, $nick; + + print "INSERT INTO tournamentrankings (tournament, ranking, player, points) VALUES (\n"; + print " (SELECT tournament FROM tournaments WHERE tournamentname='$name' AND season=( SELECT season FROM seasons WHERE seasonname='$season' )),\n"; + print " 1,\n"; + print " (SELECT player FROM players WHERE nick='$nick'),\n"; + print " $points);\n"; + } + } + + # All other places + while (s/(\d+) (?: st | nd | rd | th ) \s* place: .*? class="link"> (.*?) <\/a> \s* (?: got \s* (\d+) \s* point )?//x) { + my $ranking = $1; + my $nick = $2; + my $points = $3; + + # Whoa :-) + $points = 'NULL' unless defined($points); + + # Woot, evil + printf "INSERT INTO players SELECT nextval('players_player_seq') AS player, '%s' AS nick, ( SELECT country FROM countries WHERE countryname='Norway' ) AS country WHERE '%s' NOT IN ( SELECT nick FROM players );\n", $nick, $nick; + + print "INSERT INTO tournamentrankings (tournament, ranking, player, points) VALUES (\n"; + print " (SELECT tournament FROM tournaments WHERE tournamentname='$name' AND season=( SELECT season FROM seasons WHERE seasonname='$season' )),\n"; + print " $ranking,\n"; + print " (SELECT player FROM players WHERE nick='$nick'),\n"; + print " $points);\n"; + } } printf "commit;\n"; @@ -157,7 +212,7 @@ sub song_map { $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/Candy \*/Candy/; + $song =~ s/Candy \*/Candy\xe2\x98\x86/; $song =~ s/www\.blondie girl/www.blonde girl (MOMO Mix)/; $song =~ s/DXY/DXY!/; $song =~ s/Burning the floor/Burnin' the Floor/; @@ -174,5 +229,20 @@ sub song_map { $song =~ s/Luv To Me/Luv to Me (AMD Mix)/; $song =~ s/20 November/20th November/; + $song =~ s/Love Shine/LOVE \xe2\x9d\xa4 SHINE/; + $song =~ s/Long Train Running/LONG TRAIN RUNNIN'/; + $song =~ s/Door of Magic/Mahou no Tobira (Theme Of Space Maco) [Door of Magic]/; + $song =~ s/True -trance sunrise mix-/true... ~trance sunrise mix~/; + $song =~ s/Rhythm and Police/RHYTHM AND POLICE (K.O.G G3 Mix)/; + $song =~ s/Burnin the floor -momo mix-/BURNIN' THE FLOOR (MOMO MIX)/; + $song =~ s/Senorita -speedy mix-/SENORITA (Speedy Mix)/; + $song =~ s/Drop out -remix-/DROP OUT (FROM NONSTOP MEGAMIX)/; + $song =~ s/57 metallic gray/Heaven is a '57 metallic gray (gimmix)/; + $song =~ s/Brilliant 2 U/BRILLIANT 2U/; + $song =~ s/Blue Impulse/Aoi Shoudou (for EXTREME) [Blue Impulse]/; + $song =~ s/Sobakasu \(Freckles\)/SOBAKASU FRECKLES/; + $song =~ s/Synchronized Love/SYNCHRONIZED LOVE (Red Monster Hyper Mix)/; + $song =~ s/Orion\.78 -civ mix-/ORION .78 (civilization mix)/; + return $song; }