Lagde en løperklasse
This commit is contained in:
parent
acd4823dac
commit
5fba83a829
@ -1,32 +1,77 @@
|
||||
<?php
|
||||
//TODO: les fra config istedet:
|
||||
$start_time = DateTime::createFromFormat(DateTime::ISO8601, "2024-02-12T15:07:32+01");
|
||||
echo(date_timestamp_get($start_time));
|
||||
date_default_timezone_set('UTC');
|
||||
$GLOBALS['start_time'] = DateTime::createFromFormat(DateTime::ISO8601, "2024-02-12T15:07:32+01");
|
||||
$GLOBALS['number_of_controls'] = 3;
|
||||
|
||||
//declare(strict_types=1);
|
||||
class Runner {
|
||||
public int $id;
|
||||
public string $name;
|
||||
public array $splits;
|
||||
|
||||
function __construct($id, $name) {
|
||||
echo($id);
|
||||
echo($name);
|
||||
if ($id == null) {$id = 0; $name = "";}
|
||||
$this->id = $id;
|
||||
$this->name = $name;
|
||||
for($i = 0; $i<$$GLOBALS['number_of_controls']; $i++) {
|
||||
array_push($this->splits, 0);
|
||||
}
|
||||
}
|
||||
|
||||
function set_split($control, $timestamp) {
|
||||
$this->splits[$control] = $timestamp;
|
||||
}
|
||||
}
|
||||
|
||||
//find runner by id in list of Runner objects
|
||||
function get_runner($runnner_list, int $id) {
|
||||
for ($i = 0; $i < count($runnner_list); $i++) {
|
||||
if ($runnner_list[$i] == $id) {
|
||||
return $runnner_list[$i];
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
$runners = [];
|
||||
$csv_runners = file_get_contents("db.csv");
|
||||
$csv_runners = str_getcsv($csv_runners, "\n");
|
||||
print_r($csv_runners);
|
||||
for ($i=0; $i < count($csv_runners); $i++) {
|
||||
$line = str_getcsv($csv_runners[$i]);
|
||||
array_push($runners, new Runner($line[0], $line[1]));
|
||||
}
|
||||
|
||||
$db = file_get_contents("db.csv");
|
||||
$db = str_getcsv($db, "\n");
|
||||
|
||||
$timings = file_get_contents("passering.csv");
|
||||
$timings = str_getcsv($timings, "\n");
|
||||
|
||||
//add the time diff to each runner
|
||||
for ($i=0; $i < count($timings); $i++) {
|
||||
$line = str_getcsv($timings[$i]);
|
||||
$control = $line[0];
|
||||
$id = $line[1];
|
||||
$time = DateTime::createFromFormat(DateTime::ISO8601, $line[2]);
|
||||
|
||||
if (!in_array($id, $db)) {
|
||||
$time = DateTime::createFromFormat("Y-m-d\TH:i:sp", $line[2]);
|
||||
if (!$time) {
|
||||
//error
|
||||
continue;
|
||||
//TODO: Burde logge dette ellerno
|
||||
}
|
||||
arra
|
||||
|
||||
array_search($id, $db);
|
||||
}
|
||||
|
||||
|
||||
for ($i=0; $i < count($db); $i++) {
|
||||
$runner = str_getcsv($db[$i]);
|
||||
echo("<tr><td>$runner[0]</td><td>$runner[1]</td></tr>");
|
||||
$runner = get_runner($runners, (int)$line[1]);
|
||||
if (!$runner) {
|
||||
//error
|
||||
continue;
|
||||
}
|
||||
|
||||
$runner->set_split($line[0], $time);
|
||||
}
|
||||
|
||||
print_r($runners);
|
||||
for ($i=0; $i < count($runners); $i++) {
|
||||
$runner = $runners[$i];
|
||||
$times = "";
|
||||
//for ($i= 0; $i < count($runner[2]); $i++) {
|
||||
//echo("". $runner[2][$i][1] ."\n");
|
||||
//}
|
||||
|
||||
echo("<tr><td>$runner->id</td><td>$runner->name</td></tr>");
|
||||
}
|
Loading…
Reference in New Issue
Block a user