]> git.sesse.net Git - ccbs/blob - parse/parse-ddreurope-tournament.pl
Sync with --pgweb.
[ccbs] / parse / parse-ddreurope-tournament.pl
1 #! /usr/bin/perl
2 use strict;
3 use warnings;
4 use Date::Manip;
5
6 # Parses tournament results from the DDR Europe result list
7
8 my $season = shift;
9 my ($name, $round, $group, $player, $position, @rsongs);
10 die "Missing season (give on command line)." if (!defined($season));
11
12 print "begin;\n";
13
14 while (<>) {
15         if (/<h2> \s* (.*?) \s* <\/h2>/x) {
16                 $name = $1;
17                 next;
18         }
19         if (/<br>Country: \s* (.*?) \s*
20              <br>Location: \s* (.*?) \s*
21              <br>Date: \s* (.*?) \s*
22              <br>Mix: \s* (.*?) \s*
23              <br>ScoringSystem: \s* (.*?) \s* <br>
24             /x) {
25                 my ($country, $location, $date, $mix, $system) = ($1, $2, $3, $4, $5);
26                 $mix =~ s/Euromix/EuroMix/;
27                 $mix =~ s/Dance Dance Revolution 8th mix - Extreme/DDR Extreme/;
28                 $system = '10K Machine score' if ($system =~ /^\s*$/);
29
30                 print "INSERT INTO tournaments \n";
31                 print "  (season, tournamentname, country, location, \"date\", machine, scoringsystem) VALUES (\n";
32                 print "    (SELECT season FROM seasons WHERE seasonname='$season' AND season=( SELECT season FROM seasons WHERE seasonname='$season' )),\n";
33                 print "    '$name',\n";
34                 print "    (SELECT country FROM countries WHERE countryname='$country'),\n";
35                 print "    '$location',\n";
36                 printf "    '%s',\n", Date::Manip::UnixDate($date, '%Y-%m-%d');
37                 print "    (SELECT machine FROM machines WHERE machinename='$mix'),\n";
38                 print "    (SELECT scoringsystem FROM scoringsystems WHERE scoringsystemname='$system')\n";
39                 print ");\n";
40         }
41         
42         # Player's results (header)
43         if (/^ <tr><td \s* class=dtd> .*? class="link"> (.*?) <\/a> $/x) {
44                 $player = $1;
45
46                 printf "INSERT INTO roundparticipation (tournament, round, parallel, player, position) VALUES (\n";
47                 print "   (SELECT tournament FROM tournaments WHERE tournamentname='$name' AND season=( SELECT season FROM seasons WHERE seasonname='$season' )),\n";
48                 print "   $round, $group,\n";
49                 print "   (SELECT player FROM players WHERE nick='$player'),\n";
50                 print "   $position\n";
51                 print ");\n";
52                 ++$position;
53         }
54
55         # Player's results (score)
56         if (/<td \s* class=dtd (?: m | song ) >/x) {
57                 my $i = 0;
58
59                 # random songs
60                 while (s/<td \s* class=dtdm> (\d+) <\/td>//x) {
61                         printf "INSERT INTO scores (tournament, round, parallel, player, songnumber, song, chosen, score) VALUES (\n";
62                         print "   (SELECT tournament FROM tournaments WHERE tournamentname='$name' AND season=( SELECT season FROM seasons WHERE seasonname='$season' )),\n";
63                         print "   $round, $group,\n";
64                         print "   (SELECT player FROM players WHERE nick='$player'),\n";
65                         print "   $i,\n";
66                         print "   (SELECT song FROM songs WHERE lower(title)=lower('$rsongs[$i]')),\n";
67                         print "   'f',\n";
68                         print "   $1);\n";
69                         ++$i;
70                 }
71
72                 # chosen songs
73                 while (s/<td \s* class=dtdsong> .*? class="link"> (.*?) <\/a> .*? <td \s* class=dtdscore> (\d+) <\/td>//x) {
74                         my $song = song_map($1);
75                         my $score = $2;
76                         $song =~ s/'/\\'/g;
77                 
78                         printf "INSERT INTO scores (tournament, round, parallel, player, songnumber, song, chosen, score) VALUES (\n";
79                         print "   (SELECT tournament FROM tournaments WHERE tournamentname='$name' AND season=( SELECT season FROM seasons WHERE seasonname='$season' )),\n";
80                         print "   $round, $group,\n";
81                         print "   (SELECT player FROM players WHERE nick='$player'),\n";
82                         print "   $i,\n";
83                         print "   (SELECT song FROM songs WHERE lower(title)=lower('$song')),\n";
84                         print "   't',\n";
85                         print "   $score);\n";
86                         ++$i;
87                 }
88         }
89
90         # New round
91         if (/<h3 \s* class=dthr> Round \s* (\d+) \s* <\/h3>/x) {
92                 $round = $1;
93
94                 print "INSERT INTO rounds (tournament, round, randomsongs, chosensongs) \n";
95                 print "  VALUES (\n";
96                 print "   (SELECT tournament FROM tournaments WHERE tournamentname='$name' AND season=( SELECT season FROM seasons WHERE seasonname='$season' )),\n";
97                 print "   $round,\n";
98                 print "   0, 0);\n";  # Don't worry, we'll fix it later :-P
99         }
100         
101         # New group, and the random songs for it
102         if (/<th \s* class=dthp> ( Players | Group \s* (\d+) )<\/th>/x) {
103                 # bit of an evil hack here
104                 $group = $2;
105                 $group = 0 if ($1 eq 'Players');
106
107                 $position = 1;
108
109                 print "INSERT INTO groups (tournament, round, parallel) VALUES (\n";
110                 print "   (SELECT tournament FROM tournaments WHERE tournamentname='$name' AND season=( SELECT season FROM seasons WHERE seasonname='$season' )),\n";
111                 print "   $round, $group);\n";
112
113                 # Find the random songs, if any
114                 @rsongs = ();
115
116                 while (s/<th \s* class=dthpsong> .*? "color:white"> (.*?) <\/a><\/th>//x) {
117                         my $song = song_map($1);
118                         $song =~ s/'/\\'/g;
119                 
120                         push @rsongs, $song;
121
122                         print "INSERT INTO roundrandomsongs (tournament, round, parallel, song) VALUES (\n";
123                         print "   (SELECT tournament FROM tournaments WHERE tournamentname='$name' AND season=( SELECT season FROM seasons WHERE seasonname='$season' )),\n";
124                         print "   $round, $group,\n";
125                         print "   (SELECT song FROM songs WHERE lower(title)=lower('$song'))\n";
126                         print ");\n";
127                 }
128
129                 # Correct the random songs in the table
130                 printf "UPDATE rounds SET randomsongs=%u WHERE \n", scalar @rsongs;
131                 print "  tournament=(SELECT tournament FROM tournaments WHERE tournamentname='$name' AND season=( SELECT season FROM seasons WHERE seasonname='$season' )) AND \n";
132                 print "  round=$round;\n";
133         }
134
135         # Header for chosen song (evil)
136         if (/<th \s* class=dthp \s* colspan=2>&nbsp<\/th>/x) {
137                 printf "UPDATE rounds SET chosensongs=1 WHERE \n";
138                 print "  tournament=(SELECT tournament FROM tournaments WHERE tournamentname='$name' AND season=( SELECT season FROM seasons WHERE seasonname='$season' )) AND \n";
139                 print "  round=$round;\n";
140         }
141
142         # First place
143         if (/A \s* well-earned \s* victory \s* for .*? class="link"> (.*?) <\/a> (?: , \s* who \s* got \s* (\d+) \s* point )?/x) {
144                 my $nick = $1;
145                 my $points = $2;
146
147                 # Whoa :-)
148                 $points = 'NULL' unless defined($points);
149
150                 # Woot, evil
151                 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;
152                 
153                 print "INSERT INTO tournamentrankings (tournament, ranking, player, points) VALUES (\n";
154                 print "   (SELECT tournament FROM tournaments WHERE tournamentname='$name' AND season=( SELECT season FROM seasons WHERE seasonname='$season' )),\n";
155                 print "   1,\n";
156                 print "   (SELECT player FROM players WHERE nick='$nick'),\n";
157                 print "   $points);\n";
158         }
159
160         # Odd split first places and stuff
161         if (/^ \s+ ( .*? \s+ and \s+ .*? <\/a>) \s+ won/x) {
162                 my $winners = $1;
163                 while ($winners =~ s/<a \s+ href= .*? class="link"> (.*?) <\/a>//x) {
164                         my $nick = $1;
165                         my $points = 'NULL';
166
167                         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;
168                         
169                         print "INSERT INTO tournamentrankings (tournament, ranking, player, points) VALUES (\n";
170                         print "   (SELECT tournament FROM tournaments WHERE tournamentname='$name' AND season=( SELECT season FROM seasons WHERE seasonname='$season' )),\n";
171                         print "   1,\n";
172                         print "   (SELECT player FROM players WHERE nick='$nick'),\n";
173                         print "   $points);\n";
174                 }
175         }
176
177         # All other places
178         while (s/(\d+) (?: st | nd | rd | th ) \s* place: .*? class="link"> (.*?) <\/a> \s* (?: got \s* (\d+) \s* point )?//x) {
179                 my $ranking = $1;       
180                 my $nick = $2;
181                 my $points = $3;
182
183                 # Whoa :-)
184                 $points = 'NULL' unless defined($points);
185
186                 # Woot, evil
187                 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;
188                 
189                 print "INSERT INTO tournamentrankings (tournament, ranking, player, points) VALUES (\n";
190                 print "   (SELECT tournament FROM tournaments WHERE tournamentname='$name' AND season=( SELECT season FROM seasons WHERE seasonname='$season' )),\n";
191                 print "   $ranking,\n";
192                 print "   (SELECT player FROM players WHERE nick='$nick'),\n";
193                 print "   $points);\n";
194         }       
195 }
196
197 printf "commit;\n";
198
199 # different names for songs
200 sub song_map {
201         my $song = shift;
202
203         $song =~ s/Paranoia -Rebirth-/PARANOiA Rebirth/;
204         $song =~ s/The Center of the heart/The Centre of the Heart (Stonebridge Club Mix)/;
205         $song =~ s/Can't stop falling in love/Can't Stop Fallin' in Love/;
206         $song =~ s/B4U -B4 ZA Beat Mix-/B4U (B4 Za Beat Mix)/;
207         $song =~ s/Jam Jam Reggae/Jam Jam Reggae (AM Swing Mix)/;
208         $song =~ s/Trip Machine -Climax-/Trip Machine Climax/;
209         $song =~ s/Dont try to stop it/Don't Try to Stop It/;
210         $song =~ s/Healing Vision -AM-/Healing Vision (Angelic Mix)/;
211         $song =~ s/5,6,7,8/5, 6, 7, 8/;
212         $song =~ s/Keep On Movin/Keep On Movin'/;
213         $song =~ s/So Deep/So Deep (Perfect Sphere Mix)/;
214         $song =~ s/Aarons Party/Aaron's Party (Come Get It)/;
215         $song =~ s/Candy \*/Candy\xe2\x98\x86/;
216         $song =~ s/www\.blondie girl/www.blonde girl (MOMO Mix)/;
217         $song =~ s/DXY/DXY!/;
218         $song =~ s/Burning the floor/Burnin' the Floor/;
219         $song =~ s/Never Gonna Make/Never Gonna Make (Factory Team Mix)/;
220         $song =~ s/Max300/Max 300/;
221         $song =~ s/Era/era (nostalmix)/;
222         $song =~ s/Electro Tuned/Electro Tuned (the SubS Mix)/;
223         $song =~ s/Make a Jam/Make A Jam!/;
224         $song =~ s/Paranoia KCET -clean mix-/Paranoia KCET (Clean Mix)/;
225         $song =~ s/Cant Stop -Speed Mix-/Can't Stop Fallin' in Love (SPEED MIX)/;
226         $song =~ s/Love This Feelin/Love This Feelin'/;
227         $song =~ s/Trip Machine -Luv mix-/Trip Machine (Luv Mix)/;
228         $song =~ s/Let The Beat Hit Them/Let the Beat Hit 'em!/;
229         $song =~ s/Luv To Me/Luv to Me (AMD Mix)/;
230         $song =~ s/20 November/20th November/;
231
232         $song =~ s/Love Shine/LOVE \xe2\x9d\xa4 SHINE/;
233         $song =~ s/Long Train Running/LONG TRAIN RUNNIN'/;
234         $song =~ s/Door of Magic/Mahou no Tobira (Theme Of Space Maco) [Door of Magic]/;
235         $song =~ s/True -trance sunrise mix-/true... ~trance sunrise mix~/;
236         $song =~ s/Rhythm and Police/RHYTHM AND POLICE (K.O.G G3 Mix)/;
237         $song =~ s/Burnin the floor -momo mix-/BURNIN' THE FLOOR (MOMO MIX)/;
238         $song =~ s/Senorita -speedy mix-/SENORITA (Speedy Mix)/;
239         $song =~ s/Drop out -remix-/DROP OUT (FROM NONSTOP MEGAMIX)/;
240         $song =~ s/57 metallic gray/Heaven is a '57 metallic gray (gimmix)/;
241         $song =~ s/Brilliant 2 U/BRILLIANT 2U/;
242         $song =~ s/Blue Impulse/Aoi Shoudou (for EXTREME) [Blue Impulse]/;
243         $song =~ s/Sobakasu \(Freckles\)/SOBAKASU FRECKLES/;
244         $song =~ s/Synchronized Love/SYNCHRONIZED LOVE (Red Monster Hyper Mix)/;
245         $song =~ s/Orion\.78 -civ mix-/ORION .78 (civilization mix)/;
246
247         return $song;
248 }