]> ruin.nu Git - ndwebbie.git/blobdiff - raids.pl
working on raids
[ndwebbie.git] / raids.pl
diff --git a/raids.pl b/raids.pl
new file mode 100644 (file)
index 0000000..6c43f9e
--- /dev/null
+++ b/raids.pl
@@ -0,0 +1,108 @@
+#**************************************************************************
+#   Copyright (C) 2006 by Michael Andreen <harvATruinDOTnu>               *
+#                                                                         *
+#   This program is free software; you can redistribute it and/or modify  *
+#   it under the terms of the GNU General Public License as published by  *
+#   the Free Software Foundation; either version 2 of the License, or     *
+#   (at your option) any later version.                                   *
+#                                                                         *
+#   This program is distributed in the hope that it will be useful,       *
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+#   GNU General Public License for more details.                          *
+#                                                                         *
+#   You should have received a copy of the GNU General Public License     *
+#   along with this program; if not, write to the                         *
+#   Free Software Foundation, Inc.,                                       *
+#   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
+#**************************************************************************/
+
+use strict;
+use POSIX;
+our $BODY;
+our $DBH;
+our $LOG;
+our $XML;
+
+my $raid;
+if (param('raid') =~ /^(\d+)$/){
+       my $query = $DBH->prepare(q{SELECT id,tick,waves,message,released_coords FROM raids WHERE id = ? AND open AND not removed AND id IN (SELECT raid FROM raid_access NATURAL JOIN groupmembers WHERE uid = ?)});
+       $raid = $DBH->selectrow_hashref($query,undef,$1,$ND::UID);
+}
+
+unless ($XML){
+       $ND::TEMPLATE->param(TITLE => 'Raids');
+       $ND::TEMPLATE->param(HEADER => '<script type="text/javascript" src="raid.js"></script>');
+       if ($raid){#We have a raid, so list all targets
+               $BODY->param(Raid => $raid->{id});
+               my $noingal = '';
+               my $planet;
+               if ($ND::PLANET){
+                       my $query = $DBH->prepare("SELECT value, score,x,y FROM current_planet_stats WHERE id = ?");
+                       $planet = $DBH->selectrow_hashref($query,undef,$ND::PLANET);
+                       $noingal = "AND NOT (x = $planet->{x} AND y = $planet->{y})";
+               }
+               $BODY->param(Message => parseMarkup($raid->{message}));
+               $BODY->param(LandingTick => parseMarkup($raid->{tick}));
+               my $targetquery = $DBH->prepare(qq{SELECT r.id, r.planet, size, score, value, coords(p.x,p.y,p.z), race, p.value - p.size*200 -coalesce(c.metal+c.crystal+c.eonium,0)/150 - coalesce(c.structures,(SELECT avg(structures) FROM covop_targets)::int)*1500 AS fleetvalue,(c.metal+c.crystal+c.eonium)/100 AS resvalue, comment
+FROM current_planet_stats p 
+       JOIN raid_targets r ON p.id = r.planet 
+       LEFT OUTER JOIN covop_targets c ON p.id = c.planet
+WHERE r.raid = ?
+       $noingal
+ORDER BY size});
+               $targetquery->execute($raid->{id});
+               my @targets;
+               while (my $target = $targetquery->fetchrow_hashref){
+                       my %target;
+                       $target{Id} = $target->{id};
+                       my $num = pow(10,length($target->{score})-2);
+                       $target{Score} = ceil($target->{score}/$num)*$num;
+                       $num = pow(10,length($target->{value})-2);
+                       $target{Value} = ceil($target->{value}/$num)*$num;
+                       $num = pow(10,length($target->{size})-2);
+                       $target{Size} = floor($target->{size}/$num)*$num;
+                       $num = pow(10,length($target->{fleetvalue})-2);
+                       $target{FleetValue} = floor($target->{fleetvalue}/$num)*$num;
+                       $num = pow(10,length($target->{resvalue})-2);
+                       $target{ResValue} = floor($target->{resvalue}/$num)*$num;
+                       $target{comment} = parseMarkup($target->{comment}) if ($target->{comment});
+                       my @roids;
+                       my $size = $target{Size};
+                       for (my $i = 1; $i <= $raid->{waves}; $i++){
+                               my $roids = floor(0.25*$size);
+                               $size -= $roids;
+                               my $xp;
+                               if ($planet){
+                                       $xp = max(0,floor($roids * 10 * (min(2,$target{Score}/$planet->{score}) + min(2,$target{Value}/$planet->{value})-1)));
+                               }
+                               push @roids,{Wave => $i, Roids => $roids, XP => $xp};
+                       }
+                       $target{Roids} = \@roids;
+
+                       push @targets,\%target;
+               }
+               $BODY->param(Targets => \@targets);
+       }else{#list raids if we haven't chosen one yet
+               my $query = $DBH->prepare(q{SELECT id,released_coords FROM raids WHERE open AND not removed AND
+id IN (SELECT raid FROM raid_access NATURAL JOIN groupmembers WHERE uid = ?)});
+               $query->execute($ND::UID);
+               my @raids;
+               while (my $raid = $query->fetchrow_hashref){
+                       push @raids,{Raid => $raid->{id}, ReleasedCoords => $raid->{released_coords}, isBC => isBC()};
+               }
+               $BODY->param(Raids => \@raids);
+
+               if (isBC()){
+                       my $query = $DBH->prepare(q{SELECT id,open FROM raids WHERE not removed AND (not open 
+OR id NOT IN (SELECT raid FROM raid_access NATURAL JOIN groupmembers WHERE uid = ?))});
+                       $query->execute($ND::UID);
+                       my @raids;
+                       while (my $raid = $query->fetchrow_hashref){
+                               push @raids,{Raid => $raid->{id}, Open => $raid->{open}};
+                       }
+                       $BODY->param(ClosedRaids => \@raids);
+               }
+       }
+}
+1;