libpairtwo/src/Game.php

133 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;
use DateTime;
2019-03-20 12:46:46 +01:00
use JeroenED\Libpairtwo\Enums\Gameresult;
use JeroenED\Libpairtwo\Models\Round;
use JeroenED\Libpairtwo\Pairing;
/**
* 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
{
2019-06-20 14:53:26 +02:00
/** @var Pairing | null */
private $white;
2019-06-20 14:53:26 +02:00
/** @var Pairing | null */
private $black;
2019-06-20 14:53:26 +02:00
/** @var GameResult | null */
private $result;
2019-03-20 12:46:46 +01:00
/**
* Returns the result for the game
*
* @return Gameresult
2019-03-20 12:46:46 +01:00
*/
public function getResult(): Gameresult
{
if (!is_null($this->result)) {
return $this->result;
2019-03-20 12:46:46 +01:00
}
$whiteResult = $this->getWhite()->getResult();
$blackResult = $this->getBlack()->getResult();
$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];
}
2019-05-28 10:07:40 +02:00
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->setResult($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
}
/**
2019-06-20 23:54:50 +02:00
* Returns the pairing for white player
*
2019-06-20 14:53:26 +02:00
* @return Pairing | null
*/
public function getWhite(): ?Pairing
{
return $this->white;
}
/**
* Sets pairing for white player
*
2019-06-20 14:53:26 +02:00
* @param Pairing | null $white
* @return Game
*/
public function setWhite(?Pairing $white): Game
{
$this->white = $white;
return $this;
}
/**
2019-06-20 23:54:50 +02:00
* Returns the pairing for black player
*
2019-06-20 14:53:26 +02:00
* @return Pairing | null
*/
public function getBlack(): ?Pairing
{
return $this->black;
}
/**
* Sets pairing for black player
*
2019-06-20 14:53:26 +02:00
* @param Pairing | null $black
* @return Game
*/
public function setBlack(?Pairing $black): Game
{
$this->black = $black;
return $this;
}
/**
* Sets result for game
*
2019-06-20 14:53:26 +02:00
* @param Gameresult | null $result
* @return Game
*/
public function setResult(?Gameresult $result): Game
{
$this->result = $result;
return $this;
}
2019-02-11 17:37:30 +01:00
}