]> ruin.nu Git - ND.git/blob - Include.pm
Use new more intelligent default for pg_enable_utf8
[ND.git] / Include.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
20 package ND::Include;
21 use strict;
22 use warnings;
23 use CGI qw{:standard};
24 require Exporter;
25
26 our @ISA = qw/Exporter/;
27
28 our @EXPORT = qw/min max parseValue prettyValue pa_xp/;
29
30 sub min {
31     my ($x,$y) = @_;
32     return ($x > $y ? $y : $x);
33 }
34
35 sub max {
36     my ($x,$y) = @_;
37     return ($x < $y ? $y : $x);
38 }
39
40 sub parseValue {
41         if (defined $_[0] && $_[0] =~ /^(-?\d+(?:\.\d+)?)([khMG])?$/){
42                 return $1 unless defined $2;
43                 return $1*100 if $2 eq 'h';
44                 return $1*1000 if $2 eq 'k';
45                 return $1*1000000 if $2 eq 'M';
46                 return $1*1000000000 if $2 eq 'G';
47         }
48         return $_[0];
49 }
50
51 sub prettyValue {
52         my ($value,$decimals) = @_;
53         return sprintf('%.3e',$value) if $value > 1000000000000000;
54         my $unit = '';
55         my @units = ('k','M','G','T');
56         for (my $i = 0; $value >= 1000 && $i < 4;$i++){
57                 $value /= 1000;
58                 $unit = $units[$i];
59         }
60         unless (defined $decimals){
61                 $decimals = '.0';
62                 $decimals = '.1' if $value < 100 && $unit;
63                 $decimals = '.2' if $value < 10 && $unit;
64         }
65
66         return sprintf('%'.$decimals.'f%s', $value,$unit);
67 }
68
69 sub pa_xp {
70         my ($roids,$ascore,$avalue,$tscore,$tvalue) = @_;
71         my $bravery = (max(0,min(2,$tscore/$ascore)-0.2)) * (min(2,$tvalue/$avalue)-0.1);
72         return int(max($roids * 10 * $bravery,0))
73
74 }
75
76 1;