]> ruin.nu Git - ndwebbie.git/blob - scripts/scans.pl
parse new scans
[ndwebbie.git] / scripts / scans.pl
1 #!/usr/bin/perl
2 #**************************************************************************
3 #   Copyright (C) 2006,2007 by Michael Andreen <harvATruinDOTnu>          *
4 #                                                                         *
5 #   This program is free software; you can redistribute it and/or modify  *
6 #   it under the terms of the GNU General Public License as published by  *
7 #   the Free Software Foundation; either version 2 of the License, or     *
8 #   (at your option) any later version.                                   *
9 #                                                                         *
10 #   This program is distributed in the hope that it will be useful,       *
11 #   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13 #   GNU General Public License for more details.                          *
14 #                                                                         *
15 #   You should have received a copy of the GNU General Public License     *
16 #   along with this program; if not, write to the                         *
17 #   Free Software Foundation, Inc.,                                       *
18 #   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19 #**************************************************************************/
20
21
22 use strict;
23 use warnings;
24 no warnings 'exiting';
25 use CGI;
26 use DBI;
27 use DBD::Pg qw(:pg_types);
28 use LWP::Simple;
29 use lib qw{/var/www/ndawn/};
30 use ND::DB;
31
32 our $dbh = ND::DB::DB();
33
34 #$dbh->trace("1","/tmp/scanstest");
35
36 #my $test = $dbh->prepare(q{INSERT INTO scans (tick,scan_id) VALUES(1,3) RETURNING id});
37 #print ;
38 $dbh->do(q{SET CLIENT_ENCODING TO 'LATIN1';});
39
40 my $scangroups = $dbh->prepare(q{SELECT id,scan_id,tick,uid FROM scans
41         WHERE groupscan AND NOT parsed FOR UPDATE
42 });
43 my $oldscan = $dbh->prepare(q{SELECT scan_id FROM scans WHERE scan_id = ? AND tick >= tick() - 168});
44 my $addScan = $dbh->prepare(q{INSERT INTO scans (scan_id,tick,uid) VALUES (?,?,?)});
45 my $parsedscan = $dbh->prepare(q{UPDATE scans SET tick = ?, type = ?, planet = ?, parsed = TRUE WHERE id = ?});
46 my $addpoints = $dbh->prepare(q{UPDATE users SET scan_points = scan_points + ? WHERE uid = ? });
47 my $delscan = $dbh->prepare(q{DELETE FROM scans WHERE id = ?});
48
49 $scangroups->execute or die $dbh->errstr;
50
51 while (my $group = $scangroups->fetchrow_hashref){
52         $dbh->begin_work;
53         my $file = get("http://game.planetarion.com/showscan.pl?scan_grp=$group->{scan_id}");
54
55         my $points = 0;
56         while ($file =~ m/showscan.pl\?scan_id=(\d+)/g){
57                 unless ($dbh->selectrow_array($oldscan,undef,$1)){
58                         $addScan->execute($1,$group->{tick},$group->{uid});
59                         ++$points;
60                 }
61         }
62         $addpoints->execute($points,$group->{uid});
63         $parsedscan->execute($group->{tick},'GROUP',undef,$group->{id});
64         $dbh->commit;
65 }
66
67 my $newscans = $dbh->prepare(q{SELECT id,scan_id,tick,uid FROM scans
68         WHERE NOT groupscan AND NOT parsed FOR UPDATE
69 });
70 my $findplanet = $dbh->prepare(q{SELECT planetid(?,?,?,?)});
71 my $findoldplanet = $dbh->prepare(q{SELECT id FROM planet_stats WHERE x = $1 AND y = $2 AND z = $3 AND tick <= $4 ORDER BY tick DESC LIMIT 1});
72 my $findcoords = $dbh->prepare(q{SELECT * FROM planetcoords(?,?)});
73 my $addfleet = $dbh->prepare(q{INSERT INTO fleets (name,mission,sender,target,tick,eta,back,amount,ingal,uid) VALUES(?,?,?,?,?,?,?,?,?,-1) RETURNING id});
74 my $fleetscan = $dbh->prepare(q{INSERT INTO fleet_scans (id,scan) VALUES(?,?)});
75 my $addships = $dbh->prepare(q{INSERT INTO fleet_ships (id,ship,amount) VALUES(?,?,?)});
76 my $addpdata = $dbh->prepare(q{INSERT INTO planet_data (id,tick,scan,rid,amount) VALUES(?,?,?,(SELECT id FROM planet_data_types WHERE category = ? AND name = ?), ?)});
77
78 $dbh->begin_work or die 'No transaction';
79 $newscans->execute or die $dbh->errstr;
80 $dbh->pg_savepoint('scans') or die "No savepoint";
81 while (my $scan = $newscans->fetchrow_hashref){
82         my $file = get("http://game.planetarion.com/showscan.pl?scan_id=$scan->{scan_id}");
83         next unless defined $file;
84         if ($file =~ /((?:\w| )*) (?:Scan|Probe) on (\d+):(\d+):(\d+) in tick (\d+)/){
85                 eval {
86                 my $type = $1;
87                 my $x = $2;
88                 my $y = $3;
89                 my $z = $4;
90                 my $tick = $5;
91
92                 if($dbh->selectrow_array(q{SELECT * FROM scans WHERE scan_id = ? AND tick = ? AND id <> ?},undef,$scan->{scan_id},$tick,$scan->{id})){
93                         $dbh->pg_rollback_to('scans') or die "rollback didn't work";
94                         $delscan->execute($scan->{id});
95                         $addpoints->execute(-1,$scan->{uid}) if $scan->{uid} > 0;
96                         die "Duplicate scan: $scan->{id} http://game.planetarion.com/showscan.pl?scan_id=$scan->{scan_id}\n";
97                 }
98                 my ($planet) = $dbh->selectrow_array($findplanet,undef,$x,$y,$z,$tick);
99                 unless ($planet){
100                         $dbh->pg_rollback_to('scans') or die "rollback didn't work";
101                         next;
102                 }
103                 my $scantext = "";
104                 if ($file =~ /(Note: [^<]*)/){
105                         #TODO: something about planet being closed?
106                 }
107                 if ($type eq 'Planet'){
108                         $file =~ s/(\d),(\d)/$1$2/g;
109                         while($file =~ m/"center">(Metal|Crystal|Eonium)\D+(\d+)\D+([\d,]+)/g){
110                                 my ($roids,$res) = ($2,$3);
111                                 $roids =~ s/,//g;
112                                 $addpdata->execute($planet,$tick,$scan->{id}
113                                         ,'roid',$1, $roids) or die $dbh->errstr;
114                                 $res =~ s/,//g;
115                                 $addpdata->execute($planet,$tick,$scan->{id}
116                                         ,'resource',$1, $res) or die $dbh->errstr;
117                         }
118                         #if($file =~ m{"center">([^<]+)</td><td class="center">([^<]+)</td><td class="center">([^<]+)</td>}){
119                         #       $addpdata->execute($planet,$tick,$scan->{id}
120                         #               ,'planet','Light Usage', $1) or die $dbh->errstr;
121                         #       $addpdata->execute($planet,$tick,$scan->{id}
122                         #               ,'planet','Medium Usage', $2) or die $dbh->errstr;
123                         #       $addpdata->execute($planet,$tick,$scan->{id}
124                         #               ,'planet','Heavy Usage', $3) or die $dbh->errstr;
125                         #}
126                         if($file =~ m{<span class="superhighlight">([\d,]+)</span>}){
127                                 my $res = $1;
128                                 $res =~ s/,//g;
129                                 $addpdata->execute($planet,$tick,$scan->{id}
130                                         ,'planet','Production', $res) or die $dbh->errstr;
131                         }
132                 }elsif ($type eq 'Jumpgate'){
133                         while ($file =~ m/(\d+):(\d+):(\d+)\D+"left"\>(Attack|Defend|Return)<\/td><td>([^<]*)<\/td><td>(\d+)\D+(\d+)/g){
134                                 
135                                 my ($sender) = $dbh->selectrow_array($findplanet,undef,$1,$2,$3,$tick) or die $dbh->errstr;
136                                 ($sender) = $dbh->selectrow_array($findoldplanet,undef,$1,$2,$3,$tick) if ((not defined $sender) && $4 eq 'Return');
137                                 my $id = addfleet($5,$4,undef,$sender,$planet,$tick+$6,$6
138                                         ,undef,$7, $x == $1 && $y == $2);
139                                 $fleetscan->execute($id,$scan->{id}) or die $dbh->errstr;
140                         }
141                 }elsif ($type eq 'News'){
142                         while( $file =~ m{top">((?:\w| )+)\D+(\d+)</td><td class="left" valign="top">(.+?)</td></tr>}g){
143                                 my $news = $1;
144                                 my $t = $2;
145                                 my $text = $3;
146                                 my ($x,$y,$z) = $dbh->selectrow_array($findcoords,undef,$planet,$t);
147                                 die "No coords for: $planet tick $t" unless defined $x;
148                                 if($news eq 'Launch' && $text =~ m/The (.*?) fleet has been launched, heading for (\d+):(\d+):(\d+), on a mission to (Attack|Defend). Arrival tick: (\d+)/g){
149                                         my $eta = $6 - $t;
150                                         my $mission = $5;
151                                         my $back = $6 + $eta;
152                                         $mission = 'AllyDef' if $eta == 6 && $x != $2;
153                                         my ($target) = $dbh->selectrow_array($findplanet,undef
154                                                 ,$2,$3,$4,$t) or die $dbh->errstr;
155                                         die "No target: $2:$3:$4" unless defined $target;
156                                         my $id = addfleet($1,$mission,undef,$planet,$target,$6
157                                                 ,$eta,$back,undef, ($x == $2 && $y == $3));
158                                         $fleetscan->execute($id,$scan->{id}) or die $dbh->errstr;
159                                 }elsif($news eq 'Incoming' && $text =~ m/We have detected an open jumpgate from (.*?), located at (\d+):(\d+):(\d+). The fleet will approach our system in tick (\d+) and appears to have roughly (\d+) ships/g){
160                                         my $eta = $5 - $t;
161                                         my $mission = '';
162                                         my $back = $5 + $eta;
163                                         $mission = 'Defend' if $eta <= 6;
164                                         $mission = 'AllyDef' if $eta == 6 && $x != $2;
165                                         my ($target) = $dbh->selectrow_array($findplanet,undef
166                                                 ,$2,$3,$4,$t) or die $dbh->errstr;
167                                         die "No target: $2:$3:$4" unless defined $target;
168                                         my $id = addfleet($1,$mission,undef,$target,$planet,$5
169                                                 ,$eta,$back,$6, ($x == $2 && $y == $3));
170                                         $fleetscan->execute($id,$scan->{id}) or die $dbh->errstr;
171                                 }
172                         }
173                 } elsif($type eq 'Surface Analysis' || $type eq 'Technology Analysis'){
174                         my $cat = ($type eq 'Surface Analysis' ? 'struc' : 'tech');
175                         while($file =~ m{((?:[a-zA-Z]| )+)</t[dh]><td(?: class="right")?>(\d+)}sg){
176                                 $addpdata->execute($planet,$tick,$scan->{id}
177                                         ,$cat,$1, $2) or die $dbh->errstr;
178                         }
179
180                 } elsif($type eq 'Unit' || $type eq 'Advanced Unit'){
181                         my $id = addfleet($type,'Full fleet',$file,$planet,undef,$tick,undef,undef,undef);
182                         $fleetscan->execute($id,$scan->{id}) or die $dbh->errstr;
183                 } elsif($type eq 'Incoming'){
184                         while($file =~ m{class="left">Fleet: (.*?)</td><td class="left">Mission: (\w+)</td></tr>(.*?)Total Ships: (\d+)}sg){
185                                 my $id = addfleet($1,$2,$3,$planet,undef,$tick,undef,undef,$4);
186                                 $fleetscan->execute($id,$scan->{id}) or die $dbh->errstr;
187                         }
188                 } else {
189                         print "Something wrong with scan $scan->{id} type $type at tick $tick http://game.planetarion.com/showscan.pl?scan_id=$scan->{scan_id}";
190                 }
191                 $parsedscan->execute($tick,$type,$planet,$scan->{id}) or die $dbh->errstr;
192                 $dbh->pg_release('scans') or die "Couldn't save";
193                 $dbh->pg_savepoint('scans') or die "Couldn't save";
194                 #$dbh->rollback;
195                 };
196                 if ($@) {
197                         warn $@;
198                         $dbh->pg_rollback_to('scans') or die "rollback didn't work";
199                 }
200         }else{
201                 warn "Nothing useful in scan: $scan->{id} http://game.planetarion.com/showscan.pl?scan_id=$scan->{scan_id}\n";
202                 $delscan->execute($scan->{id});
203                 $addpoints->execute(-1,$scan->{uid}) if $scan->{uid} > 0;
204         }
205 }
206 #$dbh->rollback;
207 $dbh->commit;
208
209 sub addfleet {
210         my ($name,$mission,$ships,$sender,$target,$tick,$eta,$back,$amount,$ingal) = @_;
211
212         die "no sender" unless defined $sender;
213
214         $ingal = 0 unless $ingal;
215         $back = $tick + 4 if $ingal && $eta <= 4;
216
217         if ($mission eq 'Return'){
218                 ($sender,$target) = ($target,$sender);
219                 $back = $tick + $eta if $eta;
220         }
221
222         my @ships;
223         my $total = 0;
224         while(defined $ships && $ships =~ m{((?:[a-zA-Z]| )+)</td><td(?: class="right")?>(\d+)}sg){
225                 $total += $2;
226                 push @ships, [$1,$2];
227         }
228         $amount = $total if (!defined $amount) && defined $ships;
229         my $id = $dbh->selectrow_array($addfleet,undef,$name,$mission,$sender
230                 ,$target,$tick, $eta, $back, $amount,$ingal) or die $dbh->errstr;
231         for my $s (@ships){
232                 unshift @{$s},$id;
233                 $addships->execute(@{$s}) or die $dbh->errstr;
234         }
235         return $id;
236 };