]> ruin.nu Git - ndwebbie.git/blob - scripts/scans.pl
Switched target and sender for Launch news items, and properly set amount as null...
[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 use CGI;
25 use DBI;
26 use DBD::Pg qw(:pg_types);
27 use LWP::Simple;
28 use lib qw{/var/www/ndawn/};
29 use ND::DB;
30
31 our $dbh = ND::DB::DB();
32
33 #$dbh->trace("1","/tmp/scanstest");
34
35 #my $test = $dbh->prepare(q{INSERT INTO scans (tick,scan_id) VALUES(1,3) RETURNING id});
36 #print ;
37 $dbh->do(q{SET CLIENT_ENCODING TO 'LATIN1';});
38
39 my $scangroups = $dbh->prepare(q{SELECT id,scan_id,tick,uid FROM scans WHERE groupscan AND NOT parsed});
40 my $oldscan = $dbh->prepare(q{SELECT scan_id FROM scans WHERE scan_id = ? AND tick >= tick() - 168});
41 my $addScan = $dbh->prepare(q{INSERT INTO scans (scan_id,tick,uid) VALUES (?,?,?)});
42 my $parsedscan = $dbh->prepare(q{UPDATE scans SET tick = ?, type = ?, planet = ?, parsed = TRUE WHERE id = ?});
43 my $addpoints = $dbh->prepare(q{UPDATE users SET scan_points = scan_points + ? WHERE uid = ? });
44 my $delscan = $dbh->prepare(q{DELETE FROM scans WHERE id = ?});
45
46 $scangroups->execute or die $dbh->errstr;
47
48 while (my $group = $scangroups->fetchrow_hashref){
49         $dbh->begin_work;
50         my $file = get("http://game.planetarion.com/showscan.pl?scan_grp=$group->{scan_id}");
51
52         my $points = 0;
53         while ($file =~ m/showscan.pl\?scan_id=(\d+)/g){
54                 unless ($dbh->selectrow_array($oldscan,undef,$1)){
55                         $addScan->execute($1,$group->{tick},$group->{uid});
56                         ++$points;
57                 }
58         }
59         $addpoints->execute($points,$group->{uid});
60         $parsedscan->execute($group->{tick},'GROUP',undef,$group->{id});
61         $dbh->commit;
62 }
63
64 my $newscans = $dbh->prepare(q{SELECT id,scan_id,tick,uid FROM scans WHERE NOT groupscan AND NOT parsed});
65 my $findplanet = $dbh->prepare(q{SELECT planetid(?,?,?,?)});
66 my $findcoords = $dbh->prepare(q{SELECT * FROM planetcoords(?,?)});
67 my $addfleet = $dbh->prepare(q{INSERT INTO fleets (name,mission,sender,target,tick,eta,back,amount,ingal,uid) VALUES(?,?,?,?,?,?,?,?,?,-1) RETURNING id});
68 my $fleetscan = $dbh->prepare(q{INSERT INTO fleet_scans (id,scan) VALUES(?,?)});
69 my $addships = $dbh->prepare(q{INSERT INTO fleet_ships (id,ship,amount) VALUES(?,?,?)});
70 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 = ?), ?)});
71
72 $newscans->execute or die $dbh->errstr;
73 while (my $scan = $newscans->fetchrow_hashref){
74         my $file = get("http://game.planetarion.com/showscan.pl?scan_id=$scan->{scan_id}");
75         next unless defined $file;
76         if ($file =~ /((?:\w| )*) (?:Scan|Probe) on (\d+):(\d+):(\d+) in tick (\d+)/){
77                 $dbh->begin_work;
78                 eval {
79                 my $type = $1;
80                 my $x = $2;
81                 my $y = $3;
82                 my $z = $4;
83                 my $tick = $5;
84
85                 if($dbh->selectrow_array(q{SELECT * FROM scans WHERE scan_id = ? AND tick = ? AND id <> ?},undef,$scan->{scan_id},$tick,$scan->{id})){
86                         $dbh->rollback;
87                         $delscan->execute($scan->{id});
88                         $addpoints->execute(-1,$scan->{uid}) if $scan->{uid} > 0;
89                         die "Duplicate scan: $scan->{id} http://game.planetarion.com/showscan.pl?scan_id=$scan->{scan_id}\n";
90                 }
91                 my ($planet) = $dbh->selectrow_array($findplanet,undef,$x,$y,$z,$tick);
92                 unless ($planet){
93                         $dbh->rollback;
94                         next;
95                 }
96                 my $scantext = "";
97                 if ($file =~ /(Note: [^<]*)/){
98                         #TODO: something about planet being closed?
99                 }
100                 if ($type eq 'Planet'){
101                         $file =~ s/(\d),(\d)/$1$2/g;
102                         while($file =~ m/(Metal|Crystal|Eonium)\D+(\d+)\D+(\d+)/g){
103                                 $addpdata->execute($planet,$tick,$scan->{id}
104                                         ,'roid',$1, $2) or die $dbh->errstr;
105                                 $addpdata->execute($planet,$tick,$scan->{id}
106                                         ,'resource',$1, $3) or die $dbh->errstr;
107                         }
108                 }elsif ($type eq 'Jumpgate'){
109                         while ($file =~ m/(\d+):(\d+):(\d+)\D+"left"\>(Attack|Defend|Return)<\/td><td>([^<]*)<\/td><td>(\d+)\D+(\d+)/g){
110                                 
111                                 my ($sender) = $dbh->selectrow_array($findplanet,undef,$1,$2,$3,$tick) or die $dbh->errstr;
112                                 my $id = addfleet($5,$4,undef,$sender,$planet,$tick+$6,$6
113                                         ,undef,$7, $x == $1 && $y == $2);
114                                 $fleetscan->execute($id,$scan->{id}) or die $dbh->errstr;
115                         }
116                 }elsif ($type eq 'News'){
117                         while( $file =~ m{top">((?:\w| )+)\D+(\d+)</td><td class="left" valign="top">(.+?)</td></tr>}g){
118                                 my $news = $1;
119                                 my $t = $2;
120                                 my $text = $3;
121                                 my ($x,$y,$z) = $dbh->selectrow_array($findcoords,undef,$planet,$t);
122                                 die "No coords for: $planet tick $t" unless defined $x;
123                                 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){
124                                         my $eta = $6 - $t;
125                                         my $mission = $5;
126                                         my $back = $6 + $eta;
127                                         $mission = 'AllyDef' if $eta == 6 && $x != $2;
128                                         my ($target) = $dbh->selectrow_array($findplanet,undef
129                                                 ,$2,$3,$4,$t) or die $dbh->errstr;
130                                         die "No target: $2:$3:$4" unless defined $target;
131                                         my $id = addfleet($1,$mission,undef,$target,$planet,$6
132                                                 ,$eta,$back,undef, ($x == $2 && $y == $3));
133                                         $fleetscan->execute($id,$scan->{id}) or die $dbh->errstr;
134                                 }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){
135                                         my $eta = $5 - $t;
136                                         my $mission = '';
137                                         my $back = $5 + $eta;
138                                         $mission = 'Defend' if $eta <= 6;
139                                         $mission = 'AllyDef' if $eta == 6 && $x != $2;
140                                         my ($target) = $dbh->selectrow_array($findplanet,undef
141                                                 ,$2,$3,$4,$t) or die $dbh->errstr;
142                                         die "No target: $2:$3:$4" unless defined $target;
143                                         my $id = addfleet($1,$mission,undef,$planet,$target,$5
144                                                 ,$eta,$back,$6, ($x == $2 && $y == $3));
145                                         $fleetscan->execute($id,$scan->{id}) or die $dbh->errstr;
146                                 }
147                         }
148                 } elsif($type eq 'Surface Analysis' || $type eq 'Technology Analysis'){
149                         my $cat = ($type eq 'Surface Analysis' ? 'struc' : 'tech');
150                         while($file =~ m{((?:[a-zA-Z]| )+)</t[dh]><td(?: class="right")?>(\d+)}sg){
151                                 $addpdata->execute($planet,$tick,$scan->{id}
152                                         ,$cat,$1, $2) or die $dbh->errstr;
153                         }
154
155                 } elsif($type eq 'Unit' || $type eq 'Advanced Unit'){
156                         my $id = addfleet($type,'Full fleet',$file,$planet,undef,$tick,undef,undef,undef);
157                         $fleetscan->execute($id,$scan->{id}) or die $dbh->errstr;
158                 } elsif($type eq 'Incoming'){
159                         while($file =~ m{class="left">Fleet: (.*?)</td><td class="left">Mission: (\w+)</td></tr>(.*?)Total Ships: (\d+)}sg){
160                                 my $id = addfleet($1,$2,$3,$planet,undef,$tick,undef,undef,$4);
161                                 $fleetscan->execute($id,$scan->{id}) or die $dbh->errstr;
162                         }
163                 } else {
164                         print "Something wrong with scan $scan->{id} type $type at tick $tick http://game.planetarion.com/showscan.pl?scan_id=$scan->{scan_id}";
165                 }
166                 $parsedscan->execute($tick,$type,$planet,$scan->{id}) or die $dbh->errstr;
167                 $dbh->commit;
168                 #$dbh->rollback;
169                 };
170                 if ($@) {
171                         warn $@;
172                         $dbh->rollback;
173                 }
174         }else{
175                 warn "Nothing useful in scan: $scan->{id} http://game.planetarion.com/showscan.pl?scan_id=$scan->{scan_id}\n";
176                 $delscan->execute($scan->{id});
177                 $addpoints->execute(-1,$scan->{uid}) if $scan->{uid} > 0;
178         }
179 }
180
181 sub addfleet {
182         my ($name,$mission,$ships,$sender,$target,$tick,$eta,$back,$amount,$ingal) = @_;
183
184         $ingal = 0 unless $ingal;
185         $back = $tick + 4 if $ingal && $eta <= 4;
186
187         if ($mission eq 'Return'){
188                 ($sender,$target) = ($target,$sender);
189                 $back = $tick + $eta if $eta;
190         }
191
192         my @ships;
193         my $total = 0;
194         while(defined $ships && $ships =~ m{((?:[a-zA-Z]| )+)</td><td>(\d+)}sg){
195                 $total += $2;
196                 push @ships, [$1,$2];
197         }
198         $amount = $total if (!defined $amount) && defined $ships;
199         my $id = $dbh->selectrow_array($addfleet,undef,$name,$mission,$sender
200                 ,$target,$tick, $eta, $back, $amount,$ingal) or die $dbh->errstr;
201         for my $s (@ships){
202                 unshift @{$s},$id;
203                 $addships->execute(@{$s}) or die $dbh->errstr;
204         }
205         return $id;
206 };