]> ruin.nu Git - ndwebbie.git/blob - resources.pl
alliance resources
[ndwebbie.git] / resources.pl
1 #**************************************************************************
2 #   Copyright (C) 2006 by Michael Andreen <harvATruinDOTnu>               *
3 #                                                                         *
4 #   This program is free software; you can redistribute it and/or modify  *
5 #   it under the terms of the GNU General Public License as published by  *
6 #   the Free Software Foundation; either version 2 of the License, or     *
7 #   (at your option) any later version.                                   *
8 #                                                                         *
9 #   This program is distributed in the hope that it will be useful,       *
10 #   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12 #   GNU General Public License for more details.                          *
13 #                                                                         *
14 #   You should have received a copy of the GNU General Public License     *
15 #   along with this program; if not, write to the                         *
16 #   Free Software Foundation, Inc.,                                       *
17 #   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
18 #**************************************************************************/
19
20 use strict;
21 use POSIX;
22 our $BODY;
23 our $DBH;
24 our $LOG;
25 my $error;
26
27 $ND::TEMPLATE->param(TITLE => 'Alliance Resources');
28
29 die "You don't have access" unless isHC();
30
31 my $order = "respplanet DESC";
32 if (param('order') =~ /^(score|resources|respplanet|nscore|nscore2|nscore3)$/){
33         $order = "$1 DESC";
34 }
35
36
37 my $query = $DBH->prepare(qq{
38 SELECT a.id,a.name,a.relationship,s.members,s.score,s.size,r.resources,r.planets, resources/planets AS respplanet, 
39         resources / 300 AS scoregain, score + (resources / 300) AS nscore, 
40         (resources/planets*LEAST(members,60))/300 AS scoregain2, score + (resources/planets*LEAST(members,60))/300 AS nscore2,
41         (s.size::int8*(1464-tick())*250)/100 + score + (resources/planets*LEAST(members,60))/300 AS nscore3,
42         (s.size::int8*(1464-tick())*250)/100 AS scoregain3
43 FROM (SELECT alliance_id AS id,sum(metal+crystal+eonium) AS resources, count(*) AS planets 
44                 FROM planets p join covop_targets c ON p.id = c.planet GROUP by alliance_id) r 
45         NATURAL JOIN alliances a 
46         LEFT OUTER JOIN (SELECT * FROM alliance_stats WHERE tick = (SELECT max(tick) FROM alliance_stats)) s ON a.id = s.id
47 ORDER BY $order
48         });
49 $query->execute;
50 my @alliances;
51 my $i = 0;
52 while (my $alliance = $query->fetchrow_hashref){
53         $alliance->{ODD} = $i % 2;
54         push @alliances,$alliance;
55         $i++
56 }
57 $BODY->param(Alliances => \@alliances);
58
59 $BODY->param(Error => $error);
60 1;