2019-02-01 15:53:39 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2019-06-19 21:54:19 +02:00
|
|
|
* Class Tournament
|
|
|
|
*
|
|
|
|
* Class for the tournament from the pairing file
|
|
|
|
*
|
|
|
|
* @author Jeroen De Meerleer <schaak@jeroened.be>
|
|
|
|
* @category Main
|
|
|
|
* @package Libpairtwo
|
|
|
|
* @copyright Copyright (c) 2018-2019 Jeroen De Meerleer <schaak@jeroened.be>
|
2019-02-01 15:53:39 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace JeroenED\Libpairtwo;
|
|
|
|
|
2019-06-20 15:32:26 +02:00
|
|
|
use Closure;
|
2019-06-19 21:54:19 +02:00
|
|
|
use DateTime;
|
2019-06-01 16:39:58 +02:00
|
|
|
use JeroenED\Libpairtwo\Enums\Tiebreak;
|
2019-02-11 22:41:44 +01:00
|
|
|
use JeroenED\Libpairtwo\Enums\Color;
|
2019-06-19 21:54:19 +02:00
|
|
|
use JeroenED\Libpairtwo\Enums\TournamentSystem;
|
2019-02-01 15:53:39 +01:00
|
|
|
|
2019-06-19 21:54:19 +02:00
|
|
|
/**
|
|
|
|
* Class Tournament
|
|
|
|
*
|
|
|
|
* Class for the tournament from the pairing file
|
|
|
|
*
|
|
|
|
* @author Jeroen De Meerleer <schaak@jeroened.be>
|
|
|
|
* @category Main
|
|
|
|
* @package Libpairtwo
|
|
|
|
* @copyright Copyright (c) 2018-2019 Jeroen De Meerleer <schaak@jeroened.be>
|
|
|
|
*/
|
|
|
|
class Tournament
|
2019-02-01 15:53:39 +01:00
|
|
|
{
|
2019-06-19 21:54:19 +02:00
|
|
|
/** @var string */
|
|
|
|
private $Name;
|
|
|
|
|
|
|
|
/** @var string */
|
|
|
|
private $Organiser;
|
|
|
|
|
|
|
|
/** @var int */
|
|
|
|
private $OrganiserClubNo;
|
|
|
|
|
|
|
|
/** @var string */
|
|
|
|
private $OrganiserClub;
|
|
|
|
|
|
|
|
/** @var string */
|
|
|
|
private $OrganiserPlace;
|
|
|
|
|
|
|
|
/** @var string */
|
|
|
|
private $OrganiserCountry;
|
|
|
|
|
|
|
|
/** @var int */
|
|
|
|
private $FideHomol;
|
|
|
|
|
|
|
|
/** @var DateTime */
|
|
|
|
private $StartDate;
|
|
|
|
|
|
|
|
/** @var DateTime */
|
|
|
|
private $EndDate;
|
|
|
|
|
2019-09-26 14:32:51 +02:00
|
|
|
/** @var string[] */
|
|
|
|
private $Arbiters;
|
2019-06-19 21:54:19 +02:00
|
|
|
|
|
|
|
/** @var int */
|
|
|
|
private $NoOfRounds;
|
|
|
|
|
|
|
|
/** @var Round[] */
|
|
|
|
private $Rounds = [];
|
|
|
|
|
|
|
|
/** @var string */
|
|
|
|
private $Tempo;
|
|
|
|
|
|
|
|
/** @var int */
|
|
|
|
private $NonRatedElo;
|
|
|
|
|
|
|
|
/** @var TournamentSystem */
|
|
|
|
private $System;
|
|
|
|
|
|
|
|
/** @var string */
|
|
|
|
private $FirstPeriod;
|
|
|
|
|
|
|
|
/** @var string */
|
|
|
|
private $SecondPeriod;
|
|
|
|
|
|
|
|
/** @var string */
|
|
|
|
private $Federation;
|
|
|
|
|
|
|
|
/** @var Player[] */
|
|
|
|
private $Players = [];
|
|
|
|
|
|
|
|
/** @var int */
|
|
|
|
private $Year;
|
|
|
|
|
|
|
|
/** @var Pairing[] */
|
|
|
|
private $Pairings = [];
|
|
|
|
|
|
|
|
/** @var Tiebreak[] */
|
|
|
|
private $Tiebreaks = [];
|
|
|
|
|
|
|
|
/** @var string */
|
|
|
|
private $PriorityElo = 'Fide';
|
|
|
|
|
|
|
|
/** @var string */
|
|
|
|
private $PriorityId = 'Nation';
|
|
|
|
|
2019-09-25 18:46:33 +02:00
|
|
|
/** @var bool|DateTime|int|string[] */
|
|
|
|
private $binaryData = [];
|
|
|
|
|
2019-02-01 15:53:39 +01:00
|
|
|
/**
|
2019-03-20 17:33:09 +01:00
|
|
|
* Gets a player by its ID
|
|
|
|
*
|
2019-02-11 17:54:50 +01:00
|
|
|
* @param integer $id
|
2019-02-01 15:53:39 +01:00
|
|
|
* @return Player
|
|
|
|
*/
|
2019-06-20 15:32:26 +02:00
|
|
|
public function getPlayerById(int $id): Player
|
2019-02-01 15:53:39 +01:00
|
|
|
{
|
|
|
|
return $this->GetPlayers()[$id];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-03-20 17:33:09 +01:00
|
|
|
* Adds a player
|
|
|
|
*
|
2019-02-01 15:53:39 +01:00
|
|
|
* @param Player $Player
|
2019-06-20 15:32:26 +02:00
|
|
|
* @return Tournament
|
2019-02-01 15:53:39 +01:00
|
|
|
*/
|
2019-06-20 15:32:26 +02:00
|
|
|
public function addPlayer(Player $Player): Tournament
|
2019-02-01 15:53:39 +01:00
|
|
|
{
|
|
|
|
$newArray = $this->GetPlayers();
|
|
|
|
$newArray[] = $Player;
|
|
|
|
$this->setPlayers($newArray);
|
2019-06-20 15:32:26 +02:00
|
|
|
return $this;
|
2019-02-01 15:53:39 +01:00
|
|
|
}
|
2019-02-01 17:02:33 +01:00
|
|
|
|
|
|
|
/**
|
2019-03-20 17:33:09 +01:00
|
|
|
* Updates player on id to the given Player object
|
|
|
|
*
|
2019-02-11 17:54:50 +01:00
|
|
|
* @param int $id
|
2019-02-01 17:02:33 +01:00
|
|
|
* @param Player $player
|
2019-06-20 15:32:26 +02:00
|
|
|
* @return Tournament
|
2019-02-01 17:02:33 +01:00
|
|
|
*/
|
2019-06-20 15:32:26 +02:00
|
|
|
public function updatePlayer(int $id, Player $player): Tournament
|
2019-02-01 17:02:33 +01:00
|
|
|
{
|
|
|
|
$newArray = $this->GetPlayers();
|
|
|
|
$newArray[$id] = $player;
|
|
|
|
$this->setPlayers($newArray);
|
2019-06-20 15:32:26 +02:00
|
|
|
return $this;
|
2019-02-01 17:02:33 +01:00
|
|
|
}
|
2019-02-06 17:23:37 +01:00
|
|
|
|
2019-06-01 16:39:58 +02:00
|
|
|
/**
|
|
|
|
* Adds a Tiebreak
|
|
|
|
*
|
|
|
|
* @param Tiebreak $tiebreak
|
2019-06-20 15:32:26 +02:00
|
|
|
* @return Tournament
|
2019-06-01 16:39:58 +02:00
|
|
|
*/
|
2019-06-20 15:32:26 +02:00
|
|
|
public function addTiebreak(Tiebreak $tiebreak): Tournament
|
2019-06-01 16:39:58 +02:00
|
|
|
{
|
|
|
|
$newArray = $this->getTiebreaks();
|
|
|
|
$newArray[] = $tiebreak;
|
|
|
|
$this->setTiebreaks($newArray);
|
2019-06-20 15:32:26 +02:00
|
|
|
return $this;
|
2019-06-01 16:39:58 +02:00
|
|
|
}
|
|
|
|
|
2019-02-06 17:23:37 +01:00
|
|
|
/**
|
2019-03-20 17:33:09 +01:00
|
|
|
* Adds a round with given Round object
|
|
|
|
*
|
2019-02-06 17:23:37 +01:00
|
|
|
* @param Round $round
|
2019-06-20 15:32:26 +02:00
|
|
|
* @return Tournament
|
2019-02-06 17:23:37 +01:00
|
|
|
*/
|
2019-06-20 15:32:26 +02:00
|
|
|
public function addRound(Round $round): Tournament
|
2019-02-06 17:23:37 +01:00
|
|
|
{
|
2019-02-11 22:41:44 +01:00
|
|
|
$newArray = $this->getRounds();
|
|
|
|
$newArray[$round->getRoundNo()] = $round;
|
2019-02-06 17:23:37 +01:00
|
|
|
$this->setRounds($newArray);
|
2019-06-20 15:32:26 +02:00
|
|
|
return $this;
|
2019-02-06 17:23:37 +01:00
|
|
|
}
|
|
|
|
|
2019-02-11 22:41:44 +01:00
|
|
|
/**
|
2019-03-20 17:33:09 +01:00
|
|
|
* Gets a round by its number.
|
|
|
|
*
|
2019-02-11 22:41:44 +01:00
|
|
|
* @param int $roundNo
|
|
|
|
* @return Round
|
|
|
|
*/
|
|
|
|
public function getRoundByNo(int $roundNo): Round
|
|
|
|
{
|
|
|
|
return $this->getRounds()[$roundNo];
|
|
|
|
}
|
|
|
|
|
2019-02-11 16:43:36 +01:00
|
|
|
/**
|
2019-03-20 17:33:09 +01:00
|
|
|
* Adds a pairing to the tournament
|
|
|
|
*
|
2019-02-11 16:43:36 +01:00
|
|
|
* @param Pairing $pairing
|
2019-06-20 15:32:26 +02:00
|
|
|
* @return Tournament
|
2019-02-11 16:43:36 +01:00
|
|
|
*/
|
2019-06-20 15:32:26 +02:00
|
|
|
public function addPairing(Pairing $pairing): Tournament
|
2019-02-11 16:43:36 +01:00
|
|
|
{
|
|
|
|
$newArray = $this->GetPairings();
|
|
|
|
$newArray[] = $pairing;
|
|
|
|
$this->setPairings($newArray);
|
2019-06-20 15:32:26 +02:00
|
|
|
return $this;
|
2019-02-11 16:43:36 +01:00
|
|
|
}
|
|
|
|
|
2019-09-26 14:32:51 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds an arbiter to the tournament
|
|
|
|
*
|
|
|
|
* @param string $Arbiter
|
|
|
|
* @return Tournament
|
|
|
|
*/
|
|
|
|
public function addArbiter(string $Arbiter): Tournament
|
|
|
|
{
|
|
|
|
$newArray = $this->getArbiters();
|
|
|
|
$newArray[] = $Arbiter;
|
|
|
|
$this->setArbiters($newArray);
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2019-02-11 22:41:44 +01:00
|
|
|
/**
|
2019-03-20 17:33:09 +01:00
|
|
|
* Converts pairings into games with a black and white player
|
2019-06-20 15:32:26 +02:00
|
|
|
*
|
|
|
|
* @return Tournament
|
2019-02-11 22:41:44 +01:00
|
|
|
*/
|
2019-06-20 15:32:26 +02:00
|
|
|
public function pairingsToRounds(): Tournament
|
2019-02-11 22:41:44 +01:00
|
|
|
{
|
2019-04-20 16:55:39 +02:00
|
|
|
/** @var Pairing[] $pairings */
|
2019-02-11 22:41:44 +01:00
|
|
|
$pairings = $this->getPairings();
|
2019-03-20 12:46:46 +01:00
|
|
|
|
|
|
|
/** @var Pairing[] */
|
|
|
|
$cache = array();
|
|
|
|
|
2019-02-11 22:41:44 +01:00
|
|
|
foreach ($pairings as $pairing) {
|
2019-04-20 16:55:39 +02:00
|
|
|
// Add pairing to player
|
|
|
|
$pairing->getPlayer()->addPairing($pairing);
|
2019-02-11 22:41:44 +01:00
|
|
|
$round = $pairing->getRound();
|
|
|
|
$color = $pairing->getColor();
|
2019-05-01 15:50:44 +02:00
|
|
|
|
|
|
|
$this->getRoundByNo($round)->addPairing($pairing);
|
2019-03-20 12:46:46 +01:00
|
|
|
$opponent = null;
|
2019-03-20 17:33:09 +01:00
|
|
|
foreach ($cache as $key=>$cached) {
|
2019-03-20 12:46:46 +01:00
|
|
|
if (!is_null($cached)) {
|
2019-04-20 16:55:39 +02:00
|
|
|
if (($cached->getOpponent() == $pairing->getPlayer()) && ($cached->getRound() == $pairing->getRound())) {
|
2019-03-20 12:46:46 +01:00
|
|
|
$opponent = $cached;
|
2019-04-20 16:55:39 +02:00
|
|
|
$cache[$key] = null;
|
2019-03-20 12:46:46 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-02-11 22:41:44 +01:00
|
|
|
$game = new Game();
|
2019-03-19 15:58:41 +01:00
|
|
|
if ($color->getValue() == Color::white) {
|
2019-03-20 12:46:46 +01:00
|
|
|
$game->setWhite($pairing);
|
|
|
|
$game->setBlack($opponent);
|
2019-03-19 15:58:41 +01:00
|
|
|
} elseif ($color->getValue() == Color::black) {
|
2019-03-20 12:46:46 +01:00
|
|
|
$game->setWhite($opponent);
|
|
|
|
$game->setBlack($pairing);
|
2019-02-11 22:41:44 +01:00
|
|
|
}
|
|
|
|
|
2019-03-20 12:46:46 +01:00
|
|
|
if (is_null($game->getWhite()) || is_null($game->getBlack())) {
|
|
|
|
$cache[] = $pairing;
|
|
|
|
} else {
|
|
|
|
// Check if game already exists
|
2019-06-20 15:32:26 +02:00
|
|
|
if (!$this->gameExists($game, $round)) {
|
2019-03-20 12:46:46 +01:00
|
|
|
$this->AddGame($game, $round);
|
|
|
|
}
|
2019-02-11 22:41:44 +01:00
|
|
|
}
|
|
|
|
}
|
2019-06-20 15:32:26 +02:00
|
|
|
return $this;
|
2019-02-11 22:41:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if a game already is already registered
|
|
|
|
*
|
|
|
|
* @param Game $game
|
|
|
|
* @param int $round
|
|
|
|
* @return bool
|
|
|
|
*/
|
2019-06-20 15:32:26 +02:00
|
|
|
public function gameExists(Game $game, int $round = -1): bool
|
2019-02-11 22:41:44 +01:00
|
|
|
{
|
|
|
|
$search = [ $round ];
|
|
|
|
if ($round == -1) {
|
|
|
|
$search = [];
|
|
|
|
for ($i = 0; $i < $this->getNoOfRounds(); $i++) {
|
|
|
|
$search[] = $i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($search as $round) {
|
|
|
|
if (!isset($this->getRounds()[$round])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$games = $this->getRounds()[$round]->getGames();
|
2019-03-20 12:46:46 +01:00
|
|
|
if (is_null($games)) {
|
|
|
|
return false;
|
|
|
|
}
|
2019-02-11 22:41:44 +01:00
|
|
|
foreach ($games as $roundgame) {
|
|
|
|
if ($roundgame->getWhite() == $game->getWhite() &&
|
|
|
|
$roundgame->getBlack() == $game->getBlack() &&
|
|
|
|
$roundgame->getResult() == $game->getResult()
|
|
|
|
) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-03-20 17:33:09 +01:00
|
|
|
* Adds a game to the tournament
|
|
|
|
*
|
2019-02-11 22:41:44 +01:00
|
|
|
* @param Game $game
|
|
|
|
* @param int $round
|
2019-06-20 15:32:26 +02:00
|
|
|
* @return Tournament
|
2019-02-11 22:41:44 +01:00
|
|
|
*/
|
2019-06-20 15:32:26 +02:00
|
|
|
public function addGame(Game $game, int $round): Tournament
|
2019-02-11 22:41:44 +01:00
|
|
|
{
|
|
|
|
if (!isset($this->getRounds()[$round])) {
|
|
|
|
$roundObj = new Round();
|
|
|
|
$roundObj->setRoundNo($round);
|
|
|
|
$this->addRound($roundObj);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->getRoundByNo($round)->addGame($game);
|
2019-06-20 15:32:26 +02:00
|
|
|
return $this;
|
2019-02-11 22:41:44 +01:00
|
|
|
}
|
|
|
|
|
2019-02-06 17:24:10 +01:00
|
|
|
/**
|
2019-03-20 17:33:09 +01:00
|
|
|
* Gets the ranking of the tournament
|
|
|
|
*
|
2019-02-11 17:54:50 +01:00
|
|
|
* @return Player[]
|
2019-02-06 17:24:10 +01:00
|
|
|
*/
|
2019-06-20 15:32:26 +02:00
|
|
|
public function getRanking(): array
|
2019-02-06 17:24:10 +01:00
|
|
|
{
|
|
|
|
$players = $this->getPlayers();
|
2019-06-01 16:39:58 +02:00
|
|
|
foreach ($this->getTiebreaks() as $tbkey=>$tiebreak) {
|
|
|
|
foreach ($players as $pkey => $player) {
|
|
|
|
$break = $this->calculateTiebreak($tiebreak, $player, $tbkey);
|
|
|
|
$tiebreaks = $player->getTiebreaks();
|
|
|
|
$tiebreaks[$tbkey] = $break;
|
|
|
|
$player->setTiebreaks($tiebreaks);
|
|
|
|
$this->updatePlayer($pkey, $player);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$sortedplayers[0] = $players;
|
|
|
|
foreach ($this->getTiebreaks() as $tbkey=>$tiebreak) {
|
|
|
|
$newgroupkey = 0;
|
|
|
|
$tosortplayers = $sortedplayers;
|
|
|
|
$sortedplayers = [];
|
|
|
|
foreach ($tosortplayers as $groupkey=>$sortedplayerselem) {
|
|
|
|
usort($tosortplayers[$groupkey], $this->SortTiebreak($tbkey));
|
|
|
|
foreach ($tosortplayers[$groupkey] as $playerkey => $player) {
|
|
|
|
if (!is_null($player->getTiebreaks()[$tbkey])) {
|
|
|
|
if ($playerkey != 0) {
|
|
|
|
$newgroupkey++;
|
|
|
|
if ($player->getTiebreaks()[$tbkey] == $tosortplayers[$groupkey][$playerkey - 1]->getTiebreaks()[$tbkey]) {
|
|
|
|
$newgroupkey--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$sortedplayers[$newgroupkey][] = $player;
|
|
|
|
}
|
|
|
|
$newgroupkey++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$finalarray = [];
|
|
|
|
foreach ($sortedplayers as $sort1) {
|
|
|
|
foreach ($sort1 as $player) {
|
|
|
|
$finalarray[] = $player;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $finalarray;
|
2019-02-06 18:22:25 +01:00
|
|
|
}
|
|
|
|
|
2019-02-06 20:10:52 +01:00
|
|
|
/**
|
2019-06-20 15:34:47 +02:00
|
|
|
* Sort by tiebreak
|
|
|
|
*
|
2019-02-11 17:54:50 +01:00
|
|
|
* @param Player $a
|
|
|
|
* @param Player $b
|
2019-06-20 15:32:26 +02:00
|
|
|
* @return Closure
|
2019-02-06 20:10:52 +01:00
|
|
|
*/
|
2019-06-20 15:32:26 +02:00
|
|
|
private function sortTiebreak(int $key): Closure
|
2019-02-06 18:22:25 +01:00
|
|
|
{
|
2019-06-01 16:39:58 +02:00
|
|
|
return function (Player $a, Player $b) use ($key) {
|
|
|
|
if (($b->getTiebreaks()[$key] == $a->getTiebreaks()[$key]) || ($a->getTiebreaks()[$key] === false) || ($b->getTiebreaks()[$key] === false)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return ($b->getTiebreaks()[$key] > $a->getTiebreaks()[$key]) ? +1 : -1;
|
|
|
|
};
|
2019-02-06 17:24:10 +01:00
|
|
|
}
|
2019-02-06 20:10:52 +01:00
|
|
|
|
2019-06-01 16:39:58 +02:00
|
|
|
|
2019-02-06 20:10:52 +01:00
|
|
|
/**
|
2019-06-20 15:34:47 +02:00
|
|
|
* Calculates a specific tiebreak for $player
|
|
|
|
*
|
|
|
|
* @param Tiebreak $tiebreak
|
|
|
|
* @param Player $player
|
|
|
|
* @param int $tbkey
|
2019-06-20 15:32:26 +02:00
|
|
|
* @return float | null
|
2019-06-01 16:39:58 +02:00
|
|
|
*/
|
|
|
|
private function calculateTiebreak(Tiebreak $tiebreak, Player $player, int $tbkey = 0): ?float
|
|
|
|
{
|
|
|
|
switch ($tiebreak) {
|
|
|
|
case Tiebreak::Keizer:
|
|
|
|
return $this->calculateKeizer($player);
|
|
|
|
break;
|
|
|
|
case Tiebreak::American:
|
|
|
|
return $this->calculateAmerican($player);
|
|
|
|
break;
|
|
|
|
case Tiebreak::Points:
|
|
|
|
return $this->calculatePoints($player);
|
|
|
|
break;
|
|
|
|
case Tiebreak::Baumbach:
|
|
|
|
return $this->calculateBaumbach($player);
|
|
|
|
break;
|
|
|
|
case Tiebreak::BlackPlayed:
|
|
|
|
return $this->calculateBlackPlayed($player);
|
|
|
|
break;
|
|
|
|
case Tiebreak::BlackWin:
|
|
|
|
return $this->calculateBlackWin($player);
|
|
|
|
break;
|
|
|
|
case Tiebreak::Between:
|
|
|
|
return $this->calculateMutualResult($player, $this->getPlayers(), $tbkey);
|
|
|
|
break;
|
|
|
|
case Tiebreak::Aro:
|
|
|
|
return $this->calculateAverageRating($player, $this->getPriorityElo());
|
|
|
|
break;
|
|
|
|
case Tiebreak::AroCut:
|
|
|
|
return $this->calculateAverageRating($player, $this->getPriorityElo(), 1);
|
|
|
|
break;
|
|
|
|
case Tiebreak::Koya:
|
|
|
|
return $this->calculateKoya($player);
|
|
|
|
break;
|
|
|
|
case Tiebreak::Buchholz:
|
|
|
|
return $this->calculateBuchholz($player);
|
|
|
|
break;
|
|
|
|
case Tiebreak::BuchholzCut:
|
|
|
|
return $this->calculateBuchholz($player, 1);
|
|
|
|
break;
|
|
|
|
case Tiebreak::BuchholzMed:
|
|
|
|
return $this->calculateBuchholz($player, 1, 1);
|
|
|
|
break;
|
2019-09-25 19:52:45 +02:00
|
|
|
case Tiebreak::BuchholzCut2:
|
|
|
|
return $this->calculateBuchholz($player, 2);
|
|
|
|
break;
|
|
|
|
case Tiebreak::BuchholzMed2:
|
|
|
|
return $this->calculateBuchholz($player, 2, 2);
|
|
|
|
break;
|
2019-06-01 16:39:58 +02:00
|
|
|
case Tiebreak::Sonneborn:
|
|
|
|
return $this->calculateSonneborn($player);
|
|
|
|
break;
|
|
|
|
case Tiebreak::Kashdan:
|
2019-06-20 15:34:47 +02:00
|
|
|
return $this->calculateKashdan($player, ["Won" => 4, "Draw" => 2, "Lost" => 1, "NotPlayed" => 0]);
|
2019-06-01 16:39:58 +02:00
|
|
|
break;
|
2019-06-05 15:03:52 +02:00
|
|
|
case Tiebreak::SoccerKashdan:
|
2019-09-25 19:52:45 +02:00
|
|
|
return $this->calculateKashdan($player, ["Won" => 3, "Draw" => 1, "Lost" => 0, "NotPlayed" => -1]);
|
2019-06-05 15:03:52 +02:00
|
|
|
break;
|
2019-06-01 16:39:58 +02:00
|
|
|
case Tiebreak::Cumulative:
|
|
|
|
return $this->calculateCumulative($player);
|
|
|
|
break;
|
|
|
|
case Tiebreak::AveragePerformance:
|
|
|
|
return $this->calculateAveragePerformance($player, $this->getPriorityElo());
|
|
|
|
break;
|
|
|
|
case Tiebreak::Performance:
|
|
|
|
return $player->getPerformance($this->getPriorityElo(), $this->getNonRatedElo());
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the average rating for tournament
|
|
|
|
*
|
2019-02-11 17:54:50 +01:00
|
|
|
* @return int
|
2019-02-06 20:10:52 +01:00
|
|
|
*/
|
2019-06-01 16:39:58 +02:00
|
|
|
public function getAverageElo(): int
|
2019-02-06 20:10:52 +01:00
|
|
|
{
|
2019-06-01 16:39:58 +02:00
|
|
|
$totalrating = 0;
|
|
|
|
$players = 0;
|
|
|
|
foreach ($this->getPlayers() as $player) {
|
|
|
|
$toadd = $player->getElo($this->getPriorityElo());
|
|
|
|
if ($toadd == 0) {
|
|
|
|
$toadd = $this->getNonRatedElo();
|
|
|
|
}
|
|
|
|
|
|
|
|
$totalrating += $toadd;
|
|
|
|
$players++;
|
|
|
|
}
|
|
|
|
return intdiv($totalrating, $players);
|
2019-02-06 20:10:52 +01:00
|
|
|
}
|
2019-06-18 16:01:15 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the number of participants
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
2019-06-19 21:54:19 +02:00
|
|
|
public function getParticipants(): int
|
|
|
|
{
|
2019-06-18 16:01:15 +02:00
|
|
|
return count($this->getPlayers());
|
|
|
|
}
|
2019-06-19 21:54:19 +02:00
|
|
|
|
|
|
|
/**
|
2019-06-20 15:34:47 +02:00
|
|
|
* Points following keizer system
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param Player $player
|
2019-06-20 15:32:26 +02:00
|
|
|
* @return float | null
|
2019-06-19 21:54:19 +02:00
|
|
|
*/
|
|
|
|
private function calculateKeizer(Player $player): ?float
|
|
|
|
{
|
|
|
|
return $player->getBinaryData('ScoreAmerican');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:34:47 +02:00
|
|
|
* Points following american system
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param Player $player
|
2019-06-20 15:32:26 +02:00
|
|
|
* @return float | null
|
2019-06-19 21:54:19 +02:00
|
|
|
*/
|
|
|
|
private function calculateAmerican(Player $player): ?float
|
|
|
|
{
|
|
|
|
return $player->getBinaryData('ScoreAmerican');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:34:47 +02:00
|
|
|
* Number of points
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param Player $player
|
2019-06-20 15:32:26 +02:00
|
|
|
* @return float | null
|
2019-06-19 21:54:19 +02:00
|
|
|
*/
|
|
|
|
private function calculatePoints(Player $player): ?float
|
|
|
|
{
|
|
|
|
return $player->getPoints();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:34:47 +02:00
|
|
|
* Number of won games
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param Player $player
|
2019-06-20 15:32:26 +02:00
|
|
|
* @return float | null
|
2019-06-19 21:54:19 +02:00
|
|
|
*/
|
|
|
|
private function calculateBaumbach(Player $player): ?float
|
|
|
|
{
|
|
|
|
$totalwins = 0;
|
|
|
|
foreach ($player->getPairings() as $pairing) {
|
|
|
|
if (array_search($pairing->getResult(), Constants::Won) !== false) {
|
|
|
|
$totalwins++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $totalwins;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:34:47 +02:00
|
|
|
* Number of played games with black
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param Player $player
|
2019-06-20 15:32:26 +02:00
|
|
|
* @return float | null
|
2019-06-19 21:54:19 +02:00
|
|
|
*/
|
|
|
|
private function calculateBlackPlayed(Player $player): ?float
|
|
|
|
{
|
|
|
|
$totalwins = 0;
|
|
|
|
foreach ($player->getPairings() as $pairing) {
|
|
|
|
if (array_search($pairing->getColor(), Constants::Black) !== false) {
|
|
|
|
$totalwins++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $totalwins;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:34:47 +02:00
|
|
|
* Number of won games with black
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param Player $player
|
2019-06-20 15:32:26 +02:00
|
|
|
* @return float | null
|
2019-06-19 21:54:19 +02:00
|
|
|
*/
|
|
|
|
private function calculateBlackWin(Player $player): ?float
|
|
|
|
{
|
|
|
|
$totalwins = 0;
|
|
|
|
foreach ($player->getPairings() as $pairing) {
|
|
|
|
if (array_search($pairing->getColor(), Constants::Black) !== false && array_search($pairing->getResult(), Constants::Won) !== false) {
|
|
|
|
$totalwins++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $totalwins;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Result between the tied players
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param Player $player
|
|
|
|
* @param array $opponents
|
|
|
|
* @param int $key
|
2019-06-20 15:32:26 +02:00
|
|
|
* @return float | null
|
2019-06-19 21:54:19 +02:00
|
|
|
*/
|
|
|
|
private function calculateMutualResult(Player $player, array $opponents, int $key): ?float
|
|
|
|
{
|
|
|
|
$interestingplayers = $opponents;
|
|
|
|
if ($key != 0) {
|
|
|
|
$interestingplayers = [];
|
|
|
|
$playerstiebreaks = $player->getTiebreaks();
|
|
|
|
array_splice($playerstiebreaks, $key);
|
|
|
|
foreach ($opponents as $opponent) {
|
|
|
|
$opponenttiebreaks = $opponent->getTiebreaks();
|
|
|
|
array_splice($opponenttiebreaks, $key);
|
|
|
|
if (($playerstiebreaks == $opponenttiebreaks) && ($player != $opponent)) {
|
|
|
|
$interestingplayers[] = $opponent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$points = 0;
|
|
|
|
$totalmatches = 0;
|
|
|
|
foreach ($player->getPairings() as $pairing) {
|
|
|
|
if (array_search($pairing->getOpponent(), $interestingplayers) !== false) {
|
|
|
|
if (array_search($pairing->getResult(), Constants::Won) !== false) {
|
|
|
|
$points = $points + 1;
|
|
|
|
} elseif (array_search($pairing->getResult(), Constants::Draw) !== false) {
|
|
|
|
$points = $points + 0.5;
|
|
|
|
}
|
|
|
|
$totalmatches++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($totalmatches != count($interestingplayers)) {
|
|
|
|
$points = null;
|
|
|
|
}
|
|
|
|
return $points;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* The average rating of the opponents
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param Player $player
|
|
|
|
* @param int $cut
|
|
|
|
* @return float
|
|
|
|
*/
|
|
|
|
private function calculateAverageRating(Player $player, string $type, int $cut = 0): ?float
|
|
|
|
{
|
|
|
|
$pairings = $player->getPairings();
|
|
|
|
$allratings = [];
|
|
|
|
foreach ($pairings as $pairing) {
|
|
|
|
if (array_search($pairing->getResult(), Constants::NotPlayed) === false) {
|
|
|
|
$toadd = $pairing->getOpponent()->getElo($type);
|
|
|
|
if ($toadd != 0) {
|
|
|
|
$allratings[] = $toadd;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sort($allratings);
|
|
|
|
$allratings = array_slice($allratings, $cut);
|
|
|
|
return round(array_sum($allratings) / count($allratings));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* The average performance of the opponents
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param Player $player
|
|
|
|
* @param int $cut
|
2019-06-20 15:32:26 +02:00
|
|
|
* @return float | null
|
2019-06-19 21:54:19 +02:00
|
|
|
*/
|
|
|
|
private function calculateAveragePerformance(Player $player, string $type, int $cut = 0): ?float
|
|
|
|
{
|
|
|
|
$pairings = $player->getPairings();
|
|
|
|
$allratings = [];
|
|
|
|
foreach ($pairings as $pairing) {
|
|
|
|
if (array_search($pairing->getResult(), Constants::NotPlayed) === false) {
|
|
|
|
$toadd = $pairing->getOpponent()->getPerformance($type, $this->getNonRatedElo());
|
|
|
|
if ($toadd != 0) {
|
|
|
|
$allratings[] = $toadd;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sort($allratings);
|
|
|
|
$allratings = array_slice($allratings, $cut);
|
|
|
|
return round(array_sum($allratings) / count($allratings));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Points against players who have more than $cut % points
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param Player $player
|
|
|
|
* @param int $cut
|
2019-06-20 15:32:26 +02:00
|
|
|
* @return float | null
|
2019-06-19 21:54:19 +02:00
|
|
|
*/
|
|
|
|
private function calculateKoya(Player $player, int $cut = 50): ?float
|
|
|
|
{
|
|
|
|
$tiebreak = 0;
|
|
|
|
foreach ($player->getPairings() as $plkey => $plpairing) {
|
|
|
|
if (($plpairing->getOpponent()->getPoints() / count($plpairing->getOpponent()->getPairings()) * 100) >= $cut) {
|
|
|
|
if (array_search($plpairing->getResult(), Constants::Won) !== false) {
|
|
|
|
$tiebreak += 1;
|
|
|
|
} elseif (array_search($plpairing->getResult(), Constants::Draw) !== false) {
|
|
|
|
$tiebreak += 0.5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $tiebreak;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* The combined points of the opponents
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param Player $player
|
|
|
|
* @param int $cutlowest
|
|
|
|
* @param int $cuthighest
|
2019-06-20 15:32:26 +02:00
|
|
|
* @return float | null
|
2019-06-19 21:54:19 +02:00
|
|
|
*/
|
|
|
|
private function calculateBuchholz(Player $player, int $cutlowest = 0, int $cuthighest = 0): ?float
|
|
|
|
{
|
|
|
|
$tiebreak = 0;
|
|
|
|
$intpairings = $player->getPairings();
|
|
|
|
|
|
|
|
usort($intpairings, function ($a, $b) {
|
|
|
|
if (is_null($a->getOpponent())) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (is_null($b->getOpponent())) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($b->getOpponent()->getPoints() == $a->getOpponent()->getPoints()) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return ($a->getOpponent()->getPoints() > $b->getOpponent()->getPoints()) ? 1 : -1;
|
|
|
|
});
|
|
|
|
|
|
|
|
$intpairings = array_slice($intpairings, $cutlowest);
|
|
|
|
$intpairings = array_slice($intpairings, 0 - $cuthighest);
|
|
|
|
|
|
|
|
foreach ($intpairings as $intkey => $intpairing) {
|
|
|
|
if (!is_null($intpairing->getOpponent())) {
|
|
|
|
$tiebreak += $intpairing->getOpponent()->getPoints();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $tiebreak;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* The points of $player's opponents who $player won against, plus half of the points of $player's opponents who $player drew against
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param Player $player
|
2019-06-20 15:32:26 +02:00
|
|
|
* @return float | null
|
2019-06-19 21:54:19 +02:00
|
|
|
*/
|
|
|
|
private function calculateSonneborn(Player $player): ?float
|
|
|
|
{
|
|
|
|
$tiebreak = 0;
|
|
|
|
foreach ($player->getPairings() as $key => $pairing) {
|
|
|
|
if ($pairing->getOpponent()) {
|
|
|
|
if (array_search($pairing->getResult(), Constants::Won) !== false) {
|
|
|
|
$tiebreak += $pairing->getOpponent()->getPoints();
|
|
|
|
} elseif (array_search($pairing->getResult(), Constants::Draw) !== false) {
|
|
|
|
$tiebreak += $pairing->getOpponent()->getPoints() / 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $tiebreak;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:34:47 +02:00
|
|
|
* $points["Won"] points for each win, $points["Draw"] for each draw and $points["Lost"] point for losing. $points["NotPlayed"] points for not played games
|
2019-06-20 15:32:26 +02:00
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param Player $player
|
2019-06-20 15:34:47 +02:00
|
|
|
* @param int[] $points
|
2019-06-20 15:32:26 +02:00
|
|
|
* @return float | null
|
2019-06-19 21:54:19 +02:00
|
|
|
*/
|
2019-06-20 15:34:47 +02:00
|
|
|
private function calculateKashdan(Player $player, array $points): ?float
|
2019-06-19 21:54:19 +02:00
|
|
|
{
|
|
|
|
$tiebreak = 0;
|
|
|
|
foreach ($player->getPairings() as $pairing) {
|
|
|
|
$toadd = 0;
|
|
|
|
if (array_search($pairing->getResult(), Constants::Won) !== false) {
|
2019-06-20 15:34:47 +02:00
|
|
|
$toadd = $points["Won"];
|
2019-06-19 21:54:19 +02:00
|
|
|
} elseif (array_search($pairing->getResult(), Constants::Draw) !== false) {
|
2019-06-20 15:34:47 +02:00
|
|
|
$toadd = $points["Draw"];
|
2019-06-19 21:54:19 +02:00
|
|
|
} elseif (array_search($pairing->getResult(), Constants::Lost) !== false) {
|
2019-06-20 15:34:47 +02:00
|
|
|
$toadd = $points["Lost"];
|
2019-06-19 21:54:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (array_search($pairing->getResult(), Constants::NotPlayed) !== false) {
|
2019-06-20 15:34:47 +02:00
|
|
|
$toadd = $points["NotPlayed"];
|
2019-06-19 21:54:19 +02:00
|
|
|
}
|
|
|
|
$tiebreak += $toadd;
|
|
|
|
}
|
|
|
|
return $tiebreak; // - $player->getNoOfWins();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Combined score of $player after each round
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param Player $player
|
2019-06-20 15:32:26 +02:00
|
|
|
* @return float | null
|
2019-06-19 21:54:19 +02:00
|
|
|
*/
|
|
|
|
private function calculateCumulative(Player $player): ?float
|
|
|
|
{
|
|
|
|
$tiebreak = 0;
|
|
|
|
$score = [];
|
|
|
|
foreach ($player->getPairings() as $pairing) {
|
|
|
|
$toadd = 0;
|
|
|
|
if (array_search($pairing->getResult(), Constants::Won) !== false) {
|
|
|
|
$toadd = 1;
|
|
|
|
} elseif (array_search($pairing->getResult(), Constants::Draw) !== false) {
|
|
|
|
$toadd = 0.5;
|
|
|
|
}
|
|
|
|
$tiebreak += $toadd;
|
|
|
|
$score[] = $tiebreak;
|
|
|
|
}
|
|
|
|
return array_sum($score);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Returns the name of the tournament
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getName(): string
|
|
|
|
{
|
|
|
|
return $this->Name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Sets the name of the tournament
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param string $Name
|
2019-06-20 15:32:26 +02:00
|
|
|
* @return Tournament
|
2019-06-19 21:54:19 +02:00
|
|
|
*/
|
|
|
|
public function setName(string $Name): Tournament
|
|
|
|
{
|
|
|
|
$this->Name = $Name;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Returns the organiser of the tournament
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getOrganiser(): string
|
|
|
|
{
|
|
|
|
return $this->Organiser;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Sets the organiser of the tournament
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param string $Organiser
|
|
|
|
* @return Tournament
|
|
|
|
*/
|
|
|
|
public function setOrganiser(string $Organiser): Tournament
|
|
|
|
{
|
|
|
|
$this->Organiser = $Organiser;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Returns the clubidentifier of the tournament
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getOrganiserClubNo(): int
|
|
|
|
{
|
|
|
|
return $this->OrganiserClubNo;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Sets the clubidentifier of the tournament
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param int $OrganiserClubNo
|
|
|
|
* @return Tournament
|
|
|
|
*/
|
|
|
|
public function setOrganiserClubNo(int $OrganiserClubNo): Tournament
|
|
|
|
{
|
|
|
|
$this->OrganiserClubNo = $OrganiserClubNo;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Returns the club of the organiser
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getOrganiserClub(): string
|
|
|
|
{
|
|
|
|
return $this->OrganiserClub;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Sets the club of the organiser
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param string $OrganiserClub
|
|
|
|
* @return Tournament
|
|
|
|
*/
|
|
|
|
public function setOrganiserClub(string $OrganiserClub): Tournament
|
|
|
|
{
|
|
|
|
$this->OrganiserClub = $OrganiserClub;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Returns the location of the tournament
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getOrganiserPlace(): string
|
|
|
|
{
|
|
|
|
return $this->OrganiserPlace;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Sets the location of the tournament
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param string $OrganiserPlace
|
|
|
|
* @return Tournament
|
|
|
|
*/
|
|
|
|
public function setOrganiserPlace(string $OrganiserPlace): Tournament
|
|
|
|
{
|
|
|
|
$this->OrganiserPlace = $OrganiserPlace;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Returns the country where the tournament is held
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getOrganiserCountry(): string
|
|
|
|
{
|
|
|
|
return $this->OrganiserCountry;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Sets the country where the tournament is held
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param string $OrganiserCountry
|
|
|
|
* @return Tournament
|
|
|
|
*/
|
|
|
|
public function setOrganiserCountry(string $OrganiserCountry): Tournament
|
|
|
|
{
|
|
|
|
$this->OrganiserCountry = $OrganiserCountry;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Returns the fide homologation
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getFideHomol(): int
|
|
|
|
{
|
|
|
|
return $this->FideHomol;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Sets the fide homologation
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param int $FideHomol
|
|
|
|
* @return Tournament
|
|
|
|
*/
|
|
|
|
public function setFideHomol(int $FideHomol): Tournament
|
|
|
|
{
|
|
|
|
$this->FideHomol = $FideHomol;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Returns the start date of the tournament
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @return DateTime
|
|
|
|
*/
|
|
|
|
public function getStartDate(): DateTime
|
|
|
|
{
|
|
|
|
return $this->StartDate;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Sets the start date of the tournament
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param DateTime $StartDate
|
|
|
|
* @return Tournament
|
|
|
|
*/
|
|
|
|
public function setStartDate(DateTime $StartDate): Tournament
|
|
|
|
{
|
|
|
|
$this->StartDate = $StartDate;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Returns the end date of the tournament
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @return DateTime
|
|
|
|
*/
|
|
|
|
public function getEndDate(): DateTime
|
|
|
|
{
|
|
|
|
return $this->EndDate;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Sets the end date of the tournament
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param DateTime $EndDate
|
|
|
|
* @return Tournament
|
|
|
|
*/
|
|
|
|
public function setEndDate(DateTime $EndDate): Tournament
|
|
|
|
{
|
|
|
|
$this->EndDate = $EndDate;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Returns the arbiter of the tournament
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @return string
|
|
|
|
*/
|
2019-09-26 14:32:51 +02:00
|
|
|
public function getArbiter(int $order = 0): string
|
|
|
|
{
|
|
|
|
return $this->Arbiters[$order];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the arbiters of the tournament
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getArbiters(): array
|
2019-06-19 21:54:19 +02:00
|
|
|
{
|
2019-09-26 14:32:51 +02:00
|
|
|
return $this->Arbiters;
|
2019-06-19 21:54:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Sets the arbiter of the tournament
|
|
|
|
*
|
2019-09-26 14:32:51 +02:00
|
|
|
* @param string[] $Arbiter
|
|
|
|
* @return Tournament
|
|
|
|
*/
|
|
|
|
public function setArbiter(string $Arbiter, int $order = 0): Tournament
|
|
|
|
{
|
|
|
|
$this->Arbiters[$order] = $Arbiter;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the arbiters of the tournament
|
|
|
|
*
|
|
|
|
* @param string[] $Arbiters
|
2019-06-19 21:54:19 +02:00
|
|
|
* @return Tournament
|
|
|
|
*/
|
2019-09-26 14:32:51 +02:00
|
|
|
public function setArbiters(array $Arbiters): Tournament
|
2019-06-19 21:54:19 +02:00
|
|
|
{
|
2019-09-26 14:32:51 +02:00
|
|
|
$this->Arbiters = $Arbiters;
|
2019-06-19 21:54:19 +02:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Returns the number of round
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getNoOfRounds(): int
|
|
|
|
{
|
|
|
|
return $this->NoOfRounds;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Sets the number of rounds
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param int $NoOfRounds
|
|
|
|
* @return Tournament
|
|
|
|
*/
|
|
|
|
public function setNoOfRounds(int $NoOfRounds): Tournament
|
|
|
|
{
|
|
|
|
$this->NoOfRounds = $NoOfRounds;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Returns an array containing all rounds of the tournament
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @return Round[]
|
|
|
|
*/
|
|
|
|
public function getRounds(): array
|
|
|
|
{
|
|
|
|
return $this->Rounds;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Sets an array containing all rounds of the tournament
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param Round[] $Rounds
|
|
|
|
* @return Tournament
|
|
|
|
*/
|
|
|
|
public function setRounds(array $Rounds): Tournament
|
|
|
|
{
|
|
|
|
$this->Rounds = $Rounds;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Returns the tempo of the tournament
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getTempo(): string
|
|
|
|
{
|
|
|
|
return $this->Tempo;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Sets the tempo of the tournament
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param string $Tempo
|
|
|
|
* @return Tournament
|
|
|
|
*/
|
|
|
|
public function setTempo(string $Tempo): Tournament
|
|
|
|
{
|
|
|
|
$this->Tempo = $Tempo;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Returns the elo of a player if the player does not have one
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getNonRatedElo(): int
|
|
|
|
{
|
|
|
|
return $this->NonRatedElo;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Sets the elo of a player if the player does not have one
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param int $NonRatedElo
|
|
|
|
* @return Tournament
|
|
|
|
*/
|
|
|
|
public function setNonRatedElo(int $NonRatedElo): Tournament
|
|
|
|
{
|
|
|
|
$this->NonRatedElo = $NonRatedElo;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Returns the tournament system
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @return TournamentSystem
|
|
|
|
*/
|
|
|
|
public function getSystem(): TournamentSystem
|
|
|
|
{
|
|
|
|
return $this->System;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Sets the tournament system
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param TournamentSystem $System
|
|
|
|
* @return Tournament
|
|
|
|
*/
|
|
|
|
public function setSystem(TournamentSystem $System): Tournament
|
|
|
|
{
|
|
|
|
$this->System = $System;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Returns the first period of the tempo
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getFirstPeriod(): string
|
|
|
|
{
|
|
|
|
return $this->FirstPeriod;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Sets the first period of the tempo
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param string $FirstPeriod
|
|
|
|
* @return Tournament
|
|
|
|
*/
|
|
|
|
public function setFirstPeriod(string $FirstPeriod): Tournament
|
|
|
|
{
|
|
|
|
$this->FirstPeriod = $FirstPeriod;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Returns the second period of the tempo
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getSecondPeriod(): string
|
|
|
|
{
|
|
|
|
return $this->SecondPeriod;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Sets the second period of the tempo
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param string $SecondPeriod
|
|
|
|
* @return Tournament
|
|
|
|
*/
|
|
|
|
public function setSecondPeriod(string $SecondPeriod): Tournament
|
|
|
|
{
|
|
|
|
$this->SecondPeriod = $SecondPeriod;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Returns the federation the tournament belongs to
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getFederation(): string
|
|
|
|
{
|
|
|
|
return $this->Federation;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Sets the federation the tournament belongs to
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param string $Federation
|
|
|
|
* @return Tournament
|
|
|
|
*/
|
|
|
|
public function setFederation(string $Federation): Tournament
|
|
|
|
{
|
|
|
|
$this->Federation = $Federation;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Returns an array of all players of the tournament
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @return Player[]
|
|
|
|
*/
|
|
|
|
public function getPlayers(): array
|
|
|
|
{
|
|
|
|
return $this->Players;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Sets an array of all players of the tournament
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param Player[] $Players
|
|
|
|
* @return Tournament
|
|
|
|
*/
|
|
|
|
public function setPlayers(array $Players): Tournament
|
|
|
|
{
|
|
|
|
$this->Players = $Players;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Returns the year the tournament is held in
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getYear(): int
|
|
|
|
{
|
|
|
|
return $this->Year;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Sets the year the tournament is held in
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param int $Year
|
|
|
|
* @return Tournament
|
|
|
|
*/
|
|
|
|
public function setYear(int $Year): Tournament
|
|
|
|
{
|
|
|
|
$this->Year = $Year;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Returns an array of all pairings of the tournament
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @return Pairing[]
|
|
|
|
*/
|
|
|
|
public function getPairings(): array
|
|
|
|
{
|
|
|
|
return $this->Pairings;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Sets an array of all pairings of the tournament
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param Pairing[] $Pairings
|
|
|
|
* @return Tournament
|
|
|
|
*/
|
|
|
|
public function setPairings(array $Pairings): Tournament
|
|
|
|
{
|
|
|
|
$this->Pairings = $Pairings;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Returns an array of all tiebreaks of the tournament
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @return Tiebreak[]
|
|
|
|
*/
|
|
|
|
public function getTiebreaks(): array
|
|
|
|
{
|
|
|
|
return $this->Tiebreaks;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Sets an array of all tiebreaks of the tournament
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param Tiebreak[] $Tiebreaks
|
|
|
|
* @return Tournament
|
|
|
|
*/
|
|
|
|
public function setTiebreaks(array $Tiebreaks): Tournament
|
|
|
|
{
|
|
|
|
$this->Tiebreaks = $Tiebreaks;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Returns the elo that has priority
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getPriorityElo(): string
|
|
|
|
{
|
|
|
|
return $this->PriorityElo;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Sets the elo that has priority
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param string $PriorityElo
|
|
|
|
* @return Tournament
|
|
|
|
*/
|
|
|
|
public function setPriorityElo(string $PriorityElo): Tournament
|
|
|
|
{
|
|
|
|
$this->PriorityElo = $PriorityElo;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Returns the identifier that has priority
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getPriorityId(): string
|
|
|
|
{
|
|
|
|
return $this->PriorityId;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-20 15:32:26 +02:00
|
|
|
* Sets the identifier that has priority
|
|
|
|
*
|
2019-06-19 21:54:19 +02:00
|
|
|
* @param string $PriorityId
|
|
|
|
* @return Tournament
|
|
|
|
*/
|
|
|
|
public function setPriorityId(string $PriorityId): Tournament
|
|
|
|
{
|
|
|
|
$this->PriorityId = $PriorityId;
|
|
|
|
return $this;
|
|
|
|
}
|
2019-09-25 18:46:33 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns binary data that was read out the pairing file but was not needed immediately
|
|
|
|
*
|
|
|
|
* @param string $Key
|
|
|
|
* @return bool|DateTime|int|string
|
|
|
|
*/
|
|
|
|
public function getBinaryData(string $Key)
|
|
|
|
{
|
|
|
|
if (isset($this->BinaryData[$Key])) {
|
|
|
|
return $this->BinaryData[$Key];
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets binary data that is read out the pairing file but is not needed immediately
|
|
|
|
*
|
|
|
|
* @param string $Key
|
|
|
|
* @param bool|int|DateTime|string $Value
|
|
|
|
* @return Pairtwo6
|
|
|
|
*/
|
|
|
|
public function setBinaryData(string $Key, $Value): Tournament
|
|
|
|
{
|
|
|
|
$this->BinaryData[$Key] = $Value;
|
|
|
|
return $this;
|
|
|
|
}
|
2019-02-01 15:53:39 +01:00
|
|
|
}
|