87 lines
2.4 KiB
PHP
87 lines
2.4 KiB
PHP
<?php
|
|
require "libraries/osu_library.php";
|
|
|
|
$format = "html";
|
|
if (!empty($_GET["format"])) $format = $_GET["format"];
|
|
|
|
$page = $_GET["page"];
|
|
$page = intval($page);
|
|
if ($page < 1) $page = 1;
|
|
$pagesize = 10;
|
|
|
|
$lib = new osu_library();
|
|
$library = $lib->get_library();
|
|
$library_size = count($library);
|
|
|
|
$maxpage = ceil($library_size/$pagesize);
|
|
if ($page > $maxpage) $page = $maxpage;
|
|
|
|
$startindex = ($page - 1) * $pagesize;
|
|
|
|
$partial_library = array_slice($library, $startindex, $pagesize);
|
|
|
|
|
|
if ($format == "html")
|
|
{
|
|
$previous = $page - 1;
|
|
if ($previous < 1) $previous = 1;
|
|
$next = $page + 1;
|
|
if ($next > $maxpage) $next = $maxpage;
|
|
|
|
$start = file_get_contents("resources/start.html");
|
|
$start = str_replace("{{ STYLE }}", file_get_contents("resources/style.css"), $start);
|
|
echo $start;
|
|
|
|
echo '<h2>Page ' . $page . '/' . $maxpage . ' of osu! songs</h2>';
|
|
echo '<a href="./splitter.php?page=' . $previous . '">[Previous]</a> ';
|
|
echo '<a href="./splitter.php?page=' . $next . '">[Next]</a> ';
|
|
echo "<pre>";
|
|
// print_r($partial_library);
|
|
foreach ($partial_library as $key => $value)
|
|
{
|
|
$firstdiff = $value["difficulties"][array_key_first($value["difficulties"])];
|
|
$diffcount = 0;
|
|
foreach ($value["difficulties"] as $diff)
|
|
{
|
|
if ($diff["format"] != "storyboard")
|
|
{
|
|
$diffcount++;
|
|
}
|
|
}
|
|
if ($diffcount == 1) $difftext = "difficulty";
|
|
else $difftext = "difficulties";
|
|
echo $value["id"] . ": " . $firstdiff["Metadata"]["Artist"] . " - " . $firstdiff["Metadata"]["Title"] . " (" . $diffcount . " {$difftext})\n";
|
|
}
|
|
// $proc_times = array();
|
|
// foreach ($library as $key => $set)
|
|
// {
|
|
// $tiempo = 0;
|
|
// foreach ($set["difficulties"] as $map)
|
|
// {
|
|
// $tiempo += $map["parsing_time"];
|
|
// }
|
|
// $proc_times[$key] = $tiempo;
|
|
// }
|
|
|
|
// arsort($proc_times);
|
|
|
|
// foreach ($proc_times as $key => $tiempo)
|
|
// {
|
|
// $value = $library[$key];
|
|
// $firstdiff = $value["difficulties"][array_key_first($value["difficulties"])];
|
|
// $diffcount = 0;
|
|
// foreach ($value["difficulties"] as $diff)
|
|
// {
|
|
// if ($diff["format"] != "storyboard")
|
|
// {
|
|
// $diffcount++;
|
|
// }
|
|
// }
|
|
// echo str_pad(round($tiempo, 5), 7, "0") . "s " . $value["id"] . ": " . $firstdiff["Metadata"]["Artist"] . " - " . $firstdiff["Metadata"]["Title"] . " (" . $diffcount . " difficulties)\n";
|
|
// }
|
|
}
|
|
else // default to json in every other case
|
|
{
|
|
header('Content-Type: application/json');
|
|
echo json_encode($partial_library);
|
|
} |