libpairtwo/src/Game.php

124 lines
2.8 KiB
PHP
Raw Normal View History

<?php
/**
* Class Games
*
* Class for a game of the tournament
*
* @author Jeroen De Meerleer <schaak@jeroened.be>
* @category Main
* @package Libpairtwo
* @copyright Copyright (c) 2018-2019 Jeroen De Meerleer <schaak@jeroened.be>
*/
namespace JeroenED\Libpairtwo;
2019-03-20 12:46:46 +01:00
use JeroenED\Libpairtwo\Enums\Gameresult;
use JeroenED\Libpairtwo\Pairing;
2019-09-28 10:34:43 +02:00
use DateTime;
/**
* Class Games
*
* Class for a game of the tournament
*
* @author Jeroen De Meerleer <schaak@jeroened.be>
* @category Main
* @package Libpairtwo
* @copyright Copyright (c) 2018-2019 Jeroen De Meerleer <schaak@jeroened.be>
*/
class Game
{
/**
* The pairing for this games as seen from white's side
*
* @var Pairing | null
*/
public $White;
/**
* The pairing for this games as seen from blacks's side
*
* @var Pairing | null
*/
public $Black;
/**
* The calculated game result
*
* @var GameResult | null
*/
private $CalculatedResult;
/**
* The board where this game is held
*
* @var int
*/
public $Board;
/**
* Returns fields that were not directly assigned.
* Class Game contains the special field Result containing the result of the game
* @param string $key
* @return Gameresult
*/
public function __get(string $key)
{
if ($key == 'Result') {
return $this->calculateResult();
}
return null;
}
2019-03-20 12:46:46 +01:00
/**
* Returns the result for the game.
* This method needs to be called from $Game->Result
*
* @return Gameresult
2019-03-20 12:46:46 +01:00
*/
private function calculateResult(): Gameresult
2019-03-20 12:46:46 +01:00
{
if (!is_null($this->CalculatedResult)) {
return $this->CalculatedResult;
2019-03-20 12:46:46 +01:00
}
$whiteResult = $this->White->Result;
$blackResult = $this->Black->Result;
2019-03-20 12:46:46 +01:00
$whitesplit = explode(" ", $whiteResult);
$blacksplit = explode(" ", $blackResult);
$special='';
if (isset($whitesplit[1]) && $whitesplit[1] != 'Bye') {
$special = ' ' . $whitesplit[1];
}
if (isset($blacksplit[1]) && $blacksplit[1] != 'Bye') {
$special = ' ' . $blacksplit[1];
}
if ($whitesplit[0] == '*') {
$whitesplit[0] = '';
}
if ($blacksplit[0] == '*') {
$blacksplit[0] = '';
}
2019-03-20 17:33:09 +01:00
$result = new Gameresult($whitesplit[0] . '-' . $blacksplit[0] . $special);
$this->CalculatedResult = $result;
2019-03-20 12:46:46 +01:00
2019-03-20 17:33:09 +01:00
return $result;
2019-03-20 12:46:46 +01:00
}
/**
* Checks if 2 games are equal
*
* @param Game $game
* @return bool
*/
public function equals(Game $game): bool
{
return (
$this->White->Player === $game->White->Player &&
$this->Black->Player === $game->Black->Player &&
$this->Result == $game->Result);
}
2019-02-11 17:37:30 +01:00
}