]> ruin.nu Git - ndwebbie.git/blobdiff - NDWeb/Pages/LaunchConfirmation.pm
Converted launch confirmation
[ndwebbie.git] / NDWeb / Pages / LaunchConfirmation.pm
diff --git a/NDWeb/Pages/LaunchConfirmation.pm b/NDWeb/Pages/LaunchConfirmation.pm
deleted file mode 100644 (file)
index 581ad7b..0000000
+++ /dev/null
@@ -1,157 +0,0 @@
-#**************************************************************************
-#   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.         *
-#**************************************************************************/
-
-package NDWeb::Pages::LaunchCoonfirmation;
-use strict;
-use warnings FATAL => 'all';
-use CGI qw/:standard/;
-use NDWeb::Include;
-use ND::Include;
-
-use base qw/NDWeb::XMLPage/;
-
-$NDWeb::Page::PAGES{launchConfirmation} = __PACKAGE__;
-
-sub render_body {
-       my $self = shift;
-       my ($BODY) = @_;
-       $self->{TITLE} = 'Launch Confirmation';
-       my $DBH = $self->{DBH};
-
-       return $self->noAccess unless $self->isMember;
-
-       my $error;
-
-
-       if (defined param('cmd') && param('cmd') eq 'submit'){
-               my $missions = param('mission');
-               my $findplanet = $DBH->prepare("SELECT planetid(?,?,?,?)");
-               my $findattacktarget = $DBH->prepare(q{SELECT c.target,c.wave,c.launched FROM  raid_claims c
-                       JOIN raid_targets t ON c.target = t.id
-                       JOIN raids r ON t.raid = r.id
-                       WHERE c.uid = ? AND r.tick+c.wave-1 = ? AND t.planet = ?
-                       AND r.open AND not r.removed});
-               my $finddefensetarget = $DBH->prepare(q{SELECT c.id FROM calls c 
-                               JOIN users u ON c.member = u.uid 
-                       WHERE u.planet = $1 AND c.landing_tick = $2
-               });
-               my $informDefChannel = $DBH->prepare(q{INSERT INTO defense_missions 
-                       (fleet,call) VALUES (?,?)});
-               my $addattackpoint = $DBH->prepare(q{UPDATE users SET 
-                       attack_points = attack_points + 1 WHERE uid = ?});
-               my $launchedtarget = $DBH->prepare(q{UPDATE raid_claims SET launched = True
-                       WHERE uid = ? AND target = ? AND wave = ?});
-               my $addfleet = $DBH->prepare(q{INSERT INTO fleets 
-                       (uid,name,mission,sender,target,tick,eta,back,amount)
-                       VALUES (?,?,?,?,?,?,?,?,?) RETURNING id
-               });
-               my $addships = $DBH->prepare(q{INSERT INTO fleet_ships (id,ship,amount)
-                       VALUES (?,?,?)});
-               my @missions;
-               $DBH->begin_work;
-               while ($missions =~ m/([^\n]+)\s+(\d+):(\d+):(\d+)\s+(\d+):(\d+):(\d+)
-                       \s+\((?:(\d+)\+)?(\d+)\).*?(?:\d+hrs\s+)?\d+mins?\s+
-                       (Attack|Defend|Return|Fake\ Attack|Fake\ Defend)
-                       (.*?)
-                       (?:Launching\ in\ tick\ (\d+),\ arrival\ in\ tick\ (\d+)
-                               |ETA:\ \d+,\ Return\ ETA:\ (\d+)
-                               |Return\ ETA:\ (\d+)
-                               )/sgx){
-                       next if $10 eq 'Return';
-                       my %mission;
-                       my $name = $1;
-                       my $tick = $self->{TICK}+$9;
-                       $tick += $8 if defined $8;
-                       my $eta = $9;
-                       my $mission = $10;
-                       my $x = $5;
-                       my $y = $6;
-                       my $z = $7;
-                       my $back = $tick + $eta - 1;
-                       if ($13){
-                               $tick = $13;
-                       }elsif ($14){
-                               $back += $14;
-                       }
-                       $mission{Tick} = $tick;
-                       $mission{Mission} = $mission;
-                       $mission{Target} = "$x:$y:$z";
-                       $mission{Back} = $back;
-
-                       my ($planet_id) = $DBH->selectrow_array($findplanet,undef,$x,$y,$z,$self->{TICK});
-
-                       my $findtarget = $finddefensetarget;
-                       if ($mission eq 'Attack'){
-                               $findtarget = $findattacktarget;
-                               $findtarget->execute($ND::UID,$tick,$planet_id) or warn $DBH->errstr;;
-                       }elsif ($mission eq 'Defend'){
-                               $findtarget = $finddefensetarget;
-                               $findtarget->execute($planet_id,$tick) or warn $DBH->errstr;;
-                       }
-
-                       my $ships = $11;
-                       my @ships;
-                       my $amount = 0;
-                       while ($ships =~ m/((?:\w+ )*\w+)\s+\w+\s+(?:(?:\w+|-)\s+){3}(?:Steal|Normal|Emp|Normal\s+Cloaked|Pod|Structure Killer)\s+(\d+)/g){
-                               $amount += $2;
-                               push @ships,{Ship => $1, Amount => $2};
-                       }
-                       $mission{Ships} = \@ships;
-
-                       if ($amount == 0){
-                               warn "No ships in: $ships";
-                               next;
-                       }
-                       my $fleet = $DBH->selectrow_array($addfleet,undef,$ND::UID,$name,$mission
-                               ,$self->{PLANET},$planet_id,$tick,$eta,$back,$amount);
-                       $mission{Fleet} = $fleet;
-                       for my $ship (@ships){
-                               $addships->execute($fleet,$ship->{Ship},$ship->{Amount})
-                                       or warn $DBH->errstr;
-                       }
-
-                       if ($findtarget->rows == 0){
-                               $mission{Warning} = p b 'No matching target!';
-                       }elsif ($mission eq 'Attack'){
-                               my $claim = $findtarget->fetchrow_hashref;
-                               if ($claim->{launched}){
-                                       $mission{Warning} = "Already launched on this target:$claim->{target},$claim->{wave},$claim->{launched}";
-                               }else{
-                                       $addattackpoint->execute($ND::UID) or warn $DBH->errstr;
-                                       $launchedtarget->execute($ND::UID,$claim->{target},$claim->{wave}) or warn $DBH->errstr;
-                                       $mission{Warning} = "OK:$claim->{target},$claim->{wave},$claim->{launched}";
-                                       log_message $ND::UID,"Gave attack point for confirmation on $mission mission to $x:$y:$z, landing tick $tick";
-                               }
-                       }elsif ($mission eq 'Defend'){
-                               my $call = $findtarget->fetchrow_hashref;
-                               $informDefChannel->execute($fleet,$call->{id}) or warn $DBH->errstr;
-                       }
-
-                       log_message $ND::UID,"Pasted confirmation for $mission mission to $x:$y:$z, landing tick $tick";
-                       push @missions,\%mission;
-               }
-               $DBH->commit or warn $DBH->errstr;
-               $BODY->param(Missions => \@missions);
-       }
-       $BODY->param(Error => $error);
-       return $BODY;
-}
-
-
-1;