pbot/modules/math.pl

68 lines
1.6 KiB
Perl
Raw Normal View History

2007-05-20 22:44:44 +02:00
#!/usr/bin/perl -w
# Quick and dirty by :pragma
use Math::Units qw(convert);
my ($arguments, $response, $invalid, @conversion);
2007-05-20 22:44:44 +02:00
my @valid_keywords = (
'sin', 'cos', 'tan', 'atan', 'exp', 'int', 'hex', 'oct', 'log', 'sqrt',
'floor', 'ceil', 'asin', 'acos', 'log10', 'sinh', 'cosh', 'tanh', 'abs',
'pi', 'deg2rad', 'rad2deg', 'atan2', 'cbrt'
);
2007-05-20 22:44:44 +02:00
if ($#ARGV < 0)
{
print "Dumbass.\n";
exit 0;
2007-05-20 22:44:44 +02:00
}
$arguments = join(' ', @ARGV);
2014-08-13 18:55:04 +02:00
my $orig_arguments = $arguments;
$arguments =~ s/(the )*answer.*question of life(,? the universe and everything)?\s?/42/gi;
2014-08-13 18:55:04 +02:00
$arguments =~ s/meaning of (life|existence|everything)?/42/gi;
2007-05-20 22:44:44 +02:00
if ($arguments =~ s/([^ ]+)\s+to\s+([^ ]+)\s*$//) {
@conversion = ($1, $2);
}
2014-08-31 22:27:40 +02:00
if($arguments =~ m/([\$`\|{}"'#@=?\[\]])/ or $arguments =~ m/(~~)/) {
$invalid = $1;
} else {
2014-03-24 04:05:48 +01:00
while($arguments =~ /([a-zA-Z0-9]+)/g) {
my $keyword = $1;
2014-03-24 04:10:08 +01:00
next if $keyword =~ m/^[0-9]+$/;
$invalid = $keyword and last if not grep { /^$keyword$/ } @valid_keywords;
}
}
if($invalid) {
print "Illegal symbol '$invalid' in equation\n";
exit 1;
}
2014-03-24 04:05:48 +01:00
$response = eval("use POSIX qw/ceil floor/; use Math::Trig; use Math::Complex;" . $arguments);
if($@) {
my $error = $@;
$error =~ s/[\n\r]+//g;
2014-04-26 17:22:46 +02:00
$error =~ s/ at \(eval \d+\) line \d+.//;
$error =~ s/ at EOF$//;
2014-03-24 04:05:48 +01:00
$error =~ s/Died at .*//;
print $error;
exit 1;
2007-05-20 22:44:44 +02:00
}
if (@conversion) {
my $result = eval { convert($response, $conversion[0], $conversion[1]); };
if ($@) {
print "Unknown conversion from $conversion[0] to $conversion[1]. Units are case-sensitive (Hz, not hz).\n";
exit 1;
}
$response = "$result $conversion[1]";
}
2014-08-13 18:55:04 +02:00
print "$orig_arguments = $response\n";