]> ruin.nu Git - ndwebbie.git/commitdiff
Updated stats script, t2
authorMichael Andreen <harv@ruin.nu>
Wed, 3 Jan 2018 16:35:50 +0000 (17:35 +0100)
committerMichael Andreen <harv@ruin.nu>
Wed, 3 Jan 2018 16:35:50 +0000 (17:35 +0100)
scripts/stats.pl

index b0cde0b6c3c8f2cc773a7cab1a72b6673421b043..6e9c8508e2332ca393162e366cc6b0392f781c5b 100755 (executable)
@@ -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 =~ /class="(\w+)"><td>((?:\w| )+)<\/td><td>(\w+)<\/td><td>(\w+|-)(<\/td>)<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 =~ /class="(\w+)"><td>((?:\w| )+)<\/td><td>(\w+)<\/td><td>(\w+|-)<\/td><td>(\w+|-)<\/td><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{$3};
-       $st->execute($2,$class,$4,'-','-',$6,$7,$8,$9,$dmg,$11,$12,$13,$14,$1) or die $dbh->errstr;
-       print "$2,$class,$4,-,'-',$6,$7,$dmg,$9,$10,$11,$12,$13,$14,$1\n";
+       $st->execute($2,$class,$4,$5,'-',$6,$7,$8,$9,$dmg,$11,$12,$13,$14,$1) or die $dbh->errstr;
+       print "$2,$class,$4,$5,'-',$6,$7,$dmg,$9,$10,$11,$12,$13,$14,$1\n";
 }
 
 $dbh->commit;