From 662008b9ac4dff24044f7e406e1c79217d67367b Mon Sep 17 00:00:00 2001 From: Michael Andreen Date: Sat, 14 Jan 2017 11:13:23 +0100 Subject: [PATCH] Stats format change --- scripts/stats.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/stats.pl b/scripts/stats.pl index ccf9f6c..321db5b 100755 --- a/scripts/stats.pl +++ b/scripts/stats.pl @@ -42,12 +42,12 @@ my %classes = (Fighter => 'Fi', Corvette => 'Co', Frigate => 'Fr', Destroyer => my $file = get("http://game.planetarion.com/manual.pl?page=stats"); $dbh->begin_work; my $st = $dbh->prepare(q{INSERT INTO ship_stats (ship,"class",t1,t2,t3,"type",init,guns,armor,damage,eres,metal,crystal,eonium,race) VALUES(?,?,NULLIF(?,'-'),NULLIF(?,'-'),NULLIF(?,'-'),?,?,?,?,?,?,?,?,?,?)}); -while ($file =~ /((?:\w| )+)<\/td>(\w+)<\/td>(\w+|-)<\/td>(\w+|-)<\/td>(\w+|-)<\/td>(\w+)\D+(\d+)\D+(\d+)\D+(\d+)\D+?(\d+|-)\D+(\d+)\D+(\d+)\D+(\d+)\D+(\d+)\D+\d+\D+\d+.+?(\w+)<\/td>/g){ +while ($file =~ /((?:\w| )+)<\/td>(\w+)<\/td>(\w+|-)<\/td>(\w+|-)(<\/td>)(\w+)\D+(\d+)\D+(\d+)\D+(\d+)\D+?(\d+|-)\D+(\d+)\D+(\d+)\D+(\d+)\D+(\d+)\D+\d+\D+\d+.+?(\w+)<\/td>/g){ my $dmg = $10; $dmg = 0 if $dmg eq '-'; my $class = $classes{$2}; - $st->execute($1,$class,$3,$4,$5,$6,$7,$8,$9,$dmg,$11,$12,$13,$14,$15) or die $dbh->errstr; - #print "$1,$class,$3,$4,$5,$6,$7,$dmg,$9,$10,$11,$12,$13,$14,$15\n"; + $st->execute($1,$class,$3,$4,'-',$6,$7,$8,$9,$dmg,$11,$12,$13,$14,$15) or die $dbh->errstr; + print "$1,$class,$3,$4,'-',$6,$7,$dmg,$9,$10,$11,$12,$13,$14,$15\n"; } $dbh->commit; -- 2.39.2