]> ruin.nu Git - NDIRC.git/blobdiff - Commands/PA.pm
Converted the .xp command
[NDIRC.git] / Commands / PA.pm
index 633d2fee5d9a41ea94a584843be521f56fe8df82..a71e897b3d6eb81239aaf4e861fa0d27c1d6ae80 100644 (file)
@@ -27,6 +27,7 @@ use Moose;
 use MooseX::MethodAttributes;
 
 use NDIRC::Misc;
+use ND::Include;
 
 sub p
        : Help(usage: .p X:Y:Z | or .p nick with high enough access)
@@ -105,4 +106,44 @@ SELECT date_trunc('seconds',now() + (($1 - tick()) || ' hr')::interval) AT TIME
                die $@ if $@;
        }
 }
+
+sub xp
+       : Help(syntax: .xp X:Y:Z [roids] [cap] | if roids < 10 then it's taken as the wave, cap is a floating point number, defaults to 0.25)
+{
+       my ($self, $c, $msg) = @_;
+
+       my ($x,$y,$z,$roids,$cap) = $msg =~ /^(\d+)\D+(\d+)\D+(\d+)(?:[^\.\d]+(\d+))?(?:[^\.\d]+(\d*\.\d+))?$/
+               or die 'ARGS';
+
+       my ($avalue,$ascore) = $c->model->selectrow_array(q{
+SELECT value,score FROM current_planet_stats
+WHERE id = (SELECT planet FROM users WHERE hostmask ILIKE ?)
+               }, undef, $c->host);
+       my ($tvalue,$tscore,$tsize) = $c->model->selectrow_array(q{
+SELECT value,score,size FROM current_planet_stats
+WHERE x = ? AND y = ? and z = ?
+               }, undef, $x,$y,$z);
+       $cap //= 0.25;
+       unless($roids){
+               $roids = int($tsize*$cap);
+       }elsif ($roids < 10){
+               $tsize = ceil($tsize*.75**($roids-1));
+               $roids = int($cap*$tsize);
+       }
+       $tsize -= $roids;
+       unless (defined $avalue && defined $ascore){
+               $c->reply("You don't have a planet specified");
+               return;
+       }
+       unless (defined $tvalue && defined $tscore){
+               $c->reply("No planet found at $x:$y:$z");
+               return;
+       }
+       my $xp = pa_xp($roids,$ascore,$avalue,$tscore,$tvalue);
+       my $score = 60 * $xp;
+       my $value = $roids*200;
+       my $totscore = prettyValue($score + $value);
+       $c->reply("You will gain <b>$xp</b> XP, <b>$score</b> score, if you steal $roids roids (<b>$value</b> value), from <b>$x:$y:$z</b>, who will have <b>$tsize</b> roids left, total score gain will be: <b>$totscore</b> in total,");
+}
+
 1;