]> ruin.nu Git - NDIRC.git/blob - PA.pm
eff and stop using new command parsing
[NDIRC.git] / PA.pm
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 package NDIRC::PA;
20 use strict;
21 use warnings;
22 use ND::DB;
23 use ND::Include;
24 use NDIRC::Access;
25 use NDIRC::Misc;
26 use POSIX;
27 require Exporter;
28
29 our @ISA = qw/Exporter/;
30
31 our @EXPORT = qw/checkPlanet checkGal shipEff shipStop parseValue prettyValue calcXp/;
32
33 sub checkPlanet {
34         my ($msg) = @_;
35
36         DB();
37         my ($x,$y,$z,$nick);
38         if ($msg =~ /(\d+)\D+(\d+)\D+(\d+)/){
39                 $x = $1;
40                 $y = $2;
41                 $z = $3;
42         }elsif (officer()){
43                 $nick = $msg;
44         }else{
45                 $ND::server->command("notice $ND::target usage .p X:Y:Z".(officer() ? ' or .p nick' : ''));
46         }
47         my $f = $ND::DBH->prepare(q{SELECT coords(x,y,z),ruler,planet,race,score,size,value,scorerank,sizerank,
48                 valuerank, xp, xprank, alliance, relationship, nick, planet_status, hit_us, channel
49                 FROM current_planet_stats WHERE (x = $1 AND y = $2 and z = $3) OR nick ILIKE $4 LIMIT 1
50         });
51         $f->execute($x,$y,$z,$nick);
52         if (my $planet = $f->fetchrow_hashref()){
53                 for (keys %{$planet}){
54                         $planet->{$_} = valuecolor(1,$planet->{$_});
55                 }
56                 my $ally = "";
57                 if (officer() || dc()){
58                         $ally = "Alliance=$planet->{alliance} ($planet->{relationship}), Nick=$planet->{nick} ($planet->{planet_status}), Channel: $planet->{channel}, Hostile Count: $planet->{hit_us},";
59                 }
60                 $ND::server->command("notice $ND::target $planet->{coords} $planet->{ruler} OF $planet->{planet},$ally Race=$planet->{race}, Score=$planet->{score} ($planet->{scorerank}), Size=$planet->{size} ($planet->{sizerank}), Value=$planet->{value} ($planet->{valuerank}), XP=$planet->{xp} ($planet->{xprank})");
61         }else{
62                 $ND::server->command("notice $ND::target Couldn't find planet: $msg");
63         }
64 }
65 sub checkGal {
66         my ($x,$y) = @_;
67         DB();
68         my $f = $ND::DBH->prepare("SELECT name,score,size,value FROM galaxies WHERE x = ? AND y = ? and tick = (SELECT max(tick) from galaxies)");
69         $f->execute($x,$y);
70         while (my @row = $f->fetchrow()){
71                 @row = map (valuecolor(1),@row);
72                 $ND::server->command("notice $ND::target $x:$y $row[0], Score=$row[1], Size=$row[2], Value=$row[3]");
73         }
74 }
75
76 sub shipEff {
77         my ($msg,$value) = @_;
78         my ($amount,$ship);
79         if($msg =~ /^(-?\d+(?:\.\d+)?[hkMG]?) (\w+)$/){
80                 if (defined $value){
81                         $value = parseValue($1);
82                         $value *= -1.5 if $value < 0;
83                         my $feud = '';
84                 }else{
85                         $amount = parseValue($1);
86                 }
87                 $ship = "\%$2\%";
88         }else{
89                 my $command = (defined $value ? "veff" : "eff");
90                 $ND::server->command("notice $ND::nick syntax: .$command amount ship");
91                 return;
92         }
93         my $feud = '';
94
95         my @ship = $ND::DBH->selectrow_array(q{
96 SELECT name,target,"type",damage,metal+crystal+eonium,init,"class",guns,race
97 FROM ship_stats WHERE name ILIKE ?
98                 }, undef, $ship);
99         if (@ship){
100                 my $type = "kill";
101                 $type = "stun" if $ship[2] eq 'Emp';
102                 $type = "steal" if ($ship[2] eq 'Steal') or ($ship[2] eq 'Pod');
103
104                 if (defined $value){
105                         $amount = int(($value*100/$ship[4]));
106                         $feud = '(FEUD: '.prettyValue(int($amount/0.80)).') ';
107                 }
108                 $value = prettyValue(($amount*$ship[4]/100));
109                 my $text = prettyValue($amount)." $feud $ship[0] ($ship[5]:$value) will $type:";
110                 my $st = $ND::DBH->prepare(q{
111                         SELECT name,"class","type",armor,metal+crystal+eonium,init,target,eres,race
112                         FROM ship_stats WHERE "class" = ?
113                         });
114                 $st->execute($ship[1]);
115                 while (my @target = $st->fetchrow()){
116                         my $dead = $ship[2] eq 'Emp' ? int($amount*$ship[7]*(100-$target[7])/100) : int($amount*$ship[3]/$target[3]);
117                         $value = prettyValue($dead*$target[4]/100);
118                         if (($target[6] eq $ship[6]) and ($target[5] <= $ship[5])){
119                                 $target[5] = "${ND::C}04$target[5]$ND::C";
120                         }elsif(($target[6] eq $ship[6]) and ($target[5] > $ship[5])){
121                                 $target[5] = "${ND::C}12$target[5]$ND::C";
122                         }
123                         $target[0] = "${ND::C}04$target[0]$ND::C" if $target[2] eq 'Norm' || $target[2] eq 'Cloak';
124                         $target[0] = "${ND::C}12$target[0]$ND::C" if $target[2] eq 'Emp';
125                         $target[0] = "${ND::C}13$target[0]$ND::C" if $target[2] eq 'Steal';
126                         $text .= " $ND::B$dead$ND::B $target[0] ($target[5]:$value),";
127                 }
128                 chop $text;
129                 $ND::server->command("notice $ND::target $text");
130         }
131         #print $text;
132 }
133
134 sub shipStop {
135         my ($msg,$value) = @_;
136         my ($amount,$ship);
137         if($msg =~ /^(-?\d+(?:\.\d+)?[hkMG]?) (\w+)$/){
138                 if (defined $value){
139                         $value = parseValue($1);
140                         $value *= -1.5 if $value < 0;
141                         my $feud = '';
142                 }else{
143                         $amount = parseValue($1);
144                 }
145                 $ship = "\%$2\%";
146         }else{
147                 my $command = (defined $value ? "vstop" : "stop");
148                 $ND::server->command("notice $ND::nick syntax: .$command amount ship");
149                 return;
150         }
151         my $feud = '';
152
153         my @ship = $ND::DBH->selectrow_array(q{
154 SELECT name,target,"type",armor,metal+crystal+eonium,init,"class",eres,race
155 FROM ship_stats WHERE name ILIKE ?
156                 }, undef, $ship);
157         if (@ship){
158                 $ship[0] = "${ND::C}04$ship[0]$ND::C" if $ship[2] eq 'Norm';
159                 $ship[0] = "${ND::C}12$ship[0]$ND::C" if $ship[2] eq 'Emp';
160                 $ship[0] = "${ND::C}13$ship[0]$ND::C" if $ship[2] eq 'Steal';
161
162                 if (defined $value){
163                         $amount = int(($value*100/$ship[4]));
164                         $feud = '(FEUD: '.prettyValue(int($amount/0.80)).') ';
165                 }
166                 $value = prettyValue(($amount*$ship[4]/100));
167                 my $text = "To stop $amount $feud $ship[0] ($ship[5]:$value) you need:";
168                 my $st = $ND::DBH->prepare(q{
169                         SELECT name,"class","type",damage,metal+crystal+eonium,init,target,guns,race
170                         FROM ship_stats WHERE "target" = ?
171                         });
172                 $st->execute($ship[6]);
173                 while (my @stopper = $st->fetchrow()){
174                         my $needed = $stopper[2] eq 'Emp' ? ceil($amount*100/(100-$ship[7])/$stopper[7]) : ceil($amount*$ship[3]/$stopper[3]);
175                         $value = prettyValue($needed*$stopper[4]/100);
176                         if (($stopper[1] eq $ship[1]) and ($ship[5] <= $stopper[5])){
177                                 $stopper[5] = "${ND::C}04$stopper[5]$ND::C";
178                         }elsif(($stopper[1] eq $ship[1]) and ($ship[5] > $stopper[5])){
179                                 $stopper[5] = "${ND::C}12$stopper[5]$ND::C";
180                         }
181                         $stopper[0] = "${ND::C}04$stopper[0]$ND::C" if $stopper[2] eq 'Norm' || $stopper[2] eq 'Cloak';
182                         $stopper[0] = "${ND::C}12$stopper[0]$ND::C" if $stopper[2] eq 'Emp';
183                         $stopper[0] = "${ND::C}13$stopper[0]$ND::C" if $stopper[2] eq 'Steal';
184                         $text .= " $ND::B$needed$ND::B $stopper[0] ($stopper[5]:$value),";
185                 }
186                 chop $text;
187                 $ND::server->command("notice $ND::target $text");
188         }
189         #print $text;
190 }
191
192 sub calcXp {
193         my ($x,$y,$z,$roids,$cap) = @_;
194
195         my ($avalue,$ascore) = $ND::DBH->selectrow_array(q{
196                 SELECT value,score FROM current_planet_stats WHERE 
197                         id = (SELECT planet FROM users WHERE hostmask ILIKE ?);
198                 }, undef, $ND::address);
199         my ($tvalue,$tscore,$tsize) = $ND::DBH->selectrow_array(q{
200                 SELECT value,score,size FROM current_planet_stats WHERE 
201                 x = ? AND y = ? and z = ?;
202                 }, undef, $x,$y,$z);
203         $cap = 0.25 unless $cap;
204         unless($roids){
205                 $roids = int($tsize*$cap);
206         }elsif ($roids < 10){
207                 $tsize = ceil($tsize*.75**($roids-1));
208                 $roids = int($cap*$tsize);
209         }
210         $tsize -= $roids;
211         unless (defined $avalue && defined $ascore){
212                 $ND::server->command("notice $ND::target You don't have a planet specified");
213                 return;
214         }
215         unless (defined $tvalue && defined $tscore){
216                 $ND::server->command("notice $ND::target Doesn't seem to be a planet at $x:$y:$z");
217                 return;
218         }
219         my $xp = pa_xp($roids,$ascore,$avalue,$tscore,$tvalue);
220         my $score = 60 * $xp;
221         my $value = $roids*200;
222         my $totscore = prettyValue($score + $value);
223         $ND::server->command("notice $ND::target You will gain $ND::B$xp$ND::B XP, $ND::B$score$ND::B score, if you steal $roids roids ($ND::B$value$ND::B value), from $ND::B$x:$y:$z$ND::B, who will have $ND::B$tsize$ND::B roids left, total score gain will be: $ND::B$totscore$ND::B in total,");
224 }
225
226 sub findCovOpper {
227         my ($stolen) = @_;
228
229         my $tick = $ND::tick;
230         my $agents;
231
232         if ($stolen =~ /(\d+) (\d+) (\d+)/){
233                 $tick = $1;
234                 $agents = $2;
235                 $stolen = $3;
236         }elsif ($stolen =~ /(\d+) (\d+)/){
237                 $tick = $1;
238                 $stolen = $3;
239         }
240
241         my ($value,$score) = $ND::DBH->selectrow_array(q{
242                 SELECT value,score FROM planet_stats WHERE 
243                         id = (SELECT planet FROM users WHERE hostmask ILIKE ?) AND tick = ?;
244                 }, undef, $ND::address,$tick);
245         my ($coords) = $ND::DBH->selectrow_array(q{
246                 SELECT coords(p.x,p.y,p.z) FROM current_planet_stats p JOIN planet_stats ps using (id) WHERE 
247                 ps.tick = ? AND (2000*?*?/ps.value)::int = $stolen ;
248                 }, undef, $tick,$agents,$value,$stolen);
249         $ND::server->command("notice $ND::target The planet that cov opped you is: $coords");
250 }
251
252 1;