diff --git a/index.php b/index.php index 414c9b5..2f65958 100755 --- a/index.php +++ b/index.php @@ -276,6 +276,68 @@ function send_hupl_config() : void EOT); } +function graph($func, int $width, int $height, int $min_x, int $max_x, int $min_y, int $max_y, int $steps, float $smooth) : string +{ + $path = ''; + $points = array(); + for ($i = 0; $i<$steps; ++$i) + { + $x = (($max_x-$min_x)/$steps)*$i; + $y = $func($x + $min_x) - $min_y; + $points[] = [$x/($max_x-$min_x)*$width, $height - $y/($max_y-$min_y)*$height]; + } + $len = fn($p) => sqrt(pow($p[0],2)+pow($p[1],2)); + $norm = function($p) use($len) {$l=$len($p); return [$p[0]/$l, $p[1]/$l];}; + $inv = fn($p) => [-$p[0],-$p[1]]; + $add = fn($p1, $p2) => [$p1[0]+$p2[0], $p1[1]+$p2[1]]; + $sub = fn($p1, $p2) => $add($p1, $inv($p2)); + $mul = fn($p, $n) => [$p[0]*$n, $p[1]*$n]; + $control_vec = fn($p1, $p2, $l) => $mul($norm($sub($p2,$p1)), $l); + $f = fn($n) => number_format($n, 1); + $debug = ''; + for ($i = 0; $i"; + } + } + + $font_size = 12; + $padding = $font_size+2; + $text_style = "style=\"font: {$font_size}px monospace;\""; + $func_path = ""; + $padded_width = $width+$padding; $padded_height = $height+$padding; + $mid_x = $padding + $width/2; $mid_y = $height/2; + return << + + $func_path + $debug + + + + + $min_x + days + $max_x + + + MiB + $max_y + + +EOT; +} + // print a plaintext info page, explaining what this script does and how to // use it, how to upload, etc. function print_index() : void @@ -289,6 +351,7 @@ function print_index() : void $max_age = CONFIG::MAX_FILEAGE; $mail = CONFIG::ADMIN_EMAIL; + $g = graph(fn($x) => 50+cos($x/10)*50, 400, 200, 0, 300, 0, 100, 20, 10); echo << @@ -320,6 +383,7 @@ selection input.) +
 
 
@@ -336,6 +400,7 @@ The exact formula for determining the maximum age for a file is:
 
 MIN_AGE + (MAX_AGE - MIN_AGE) * (1-(FILE_SIZE/MAX_SIZE))^$decay
 
+$g
 
  === Source ===
 The PHP script used to provide this service is open source and available on