libpairtwo/src/Tiebreaks.php

326 lines
9.6 KiB
PHP
Raw Normal View History

2019-05-28 17:04:53 +02:00
<?php
namespace JeroenED\Libpairtwo;
2019-05-28 18:07:43 +02:00
use JeroenED\Libpairtwo\Enums\Color;
2019-05-28 17:04:53 +02:00
use JeroenED\Libpairtwo\Models\Tournament;
2019-05-28 18:07:43 +02:00
use JeroenED\Libpairtwo\Enums\Result;
2019-05-28 17:04:53 +02:00
abstract class Tiebreaks extends Tournament
{
2019-05-28 17:04:53 +02:00
/**
2019-05-28 18:07:43 +02:00
* @param Player $player
* @return float|null
2019-05-28 17:04:53 +02:00
*/
protected function calculateKeizer(Player $player): ?float
2019-05-28 17:04:53 +02:00
{
return $player->getBinaryData('ScoreAmerican');
2019-05-28 18:07:43 +02:00
}
2019-05-28 18:07:43 +02:00
/**
* @param Player $player
* @return float|null
2019-05-28 18:07:43 +02:00
*/
protected function calculateAmerican(Player $player): ?float
2019-05-28 18:07:43 +02:00
{
return $player->getBinaryData('ScoreAmerican');
2019-05-28 18:07:43 +02:00
}
/**
* @param Player $player
* @return float|null
2019-05-28 18:07:43 +02:00
*/
protected function calculatePoints(Player $player): ?float
2019-05-28 18:07:43 +02:00
{
2019-05-30 21:13:14 +02:00
return $player->getPoints();
2019-05-28 17:04:53 +02:00
}
2019-05-28 18:07:43 +02:00
2019-05-28 17:04:53 +02:00
/**
2019-05-28 18:07:43 +02:00
* @param Player $player
* @return float|null
2019-05-28 17:04:53 +02:00
*/
protected function calculateBaumbach(Player $player): ?float
2019-05-28 17:04:53 +02:00
{
2019-05-28 18:07:43 +02:00
$totalwins = 0;
foreach ($player->getPairings() as $pairing) {
if (array_search($pairing->getResult(), Constants::Won) !== false) {
2019-05-28 18:07:43 +02:00
$totalwins++;
}
2019-05-28 17:04:53 +02:00
}
return $totalwins;
2019-05-28 17:04:53 +02:00
}
2019-05-28 17:04:53 +02:00
/**
2019-05-28 18:07:43 +02:00
* @param Player $player
* @return float|null
2019-05-28 18:07:43 +02:00
*/
protected function calculateBlackPlayed(Player $player): ?float
2019-05-28 18:07:43 +02:00
{
$totalwins = 0;
foreach ($player->getPairings() as $pairing) {
if (array_search($pairing->getColor(), Constants::Black) !== false) {
2019-05-28 18:07:43 +02:00
$totalwins++;
}
}
return $totalwins;
2019-05-28 18:07:43 +02:00
}
2019-05-28 18:07:43 +02:00
/**
* @param Player $player
* @return float|null
2019-05-28 17:04:53 +02:00
*/
protected function calculateBlackWin(Player $player): ?float
2019-05-28 17:04:53 +02:00
{
2019-05-28 18:07:43 +02:00
$totalwins = 0;
foreach ($player->getPairings() as $pairing) {
if (array_search($pairing->getColor(), Constants::Black) !== false && array_search($pairing->getResult(), Constants::Won) !== false) {
2019-05-28 18:07:43 +02:00
$totalwins++;
}
2019-05-28 17:04:53 +02:00
}
return $totalwins;
}
/**
* @param Player $player
* @param array $opponents
* @param int $key
* @return float|null
*/
protected 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-05-30 21:30:28 +02:00
2019-05-29 17:56:30 +02:00
/**
* @param Player $player
2019-05-30 21:30:28 +02:00
* @param int $cut
2019-05-29 17:56:30 +02:00
* @return float
*/
protected function calculateAverageRating(Player $player, string $type, int $cut = 0): ?float
2019-05-29 17:56:30 +02:00
{
$pairings = $player->getPairings();
2019-05-30 08:33:52 +02:00
$allratings = [];
foreach ($pairings as $pairing) {
if (array_search($pairing->getResult(), Constants::NotPlayed) === false) {
$toadd = $pairing->getOpponent()->getElo($type);
2019-05-29 17:56:30 +02:00
if ($toadd != 0) {
2019-05-30 08:33:52 +02:00
$allratings[] = $toadd;
2019-05-29 17:56:30 +02:00
}
}
}
2019-05-30 08:33:52 +02:00
sort($allratings);
$allratings = array_slice($allratings, $cut);
return round(array_sum($allratings) / count($allratings));
2019-05-28 17:04:53 +02:00
}
2019-05-30 21:07:05 +02:00
2019-05-30 21:30:28 +02:00
/**
* @param Player $player
* @param int $cut
2019-05-30 21:33:27 +02:00
* @return float|null
2019-05-30 21:30:28 +02:00
*/
protected function calculateAveragePerformance(Player $player, string $type, int $cut = 0): ?float
2019-05-30 21:30:28 +02:00
{
$pairings = $player->getPairings();
$allratings = [];
foreach ($pairings as $pairing) {
if (array_search($pairing->getResult(), Constants::NotPlayed) === false) {
2019-06-01 13:37:50 +02:00
$toadd = $pairing->getOpponent()->getPerformance($type, $this->getNonRatedElo());
2019-05-30 21:30:28 +02:00
if ($toadd != 0) {
$allratings[] = $toadd;
}
}
}
sort($allratings);
$allratings = array_slice($allratings, $cut);
return round(array_sum($allratings) / count($allratings));
}
2019-05-30 21:33:27 +02:00
2019-05-30 21:07:05 +02:00
/**
* @param Player $player
* @param int $cut
2019-05-30 21:33:27 +02:00
* @return float|null
2019-05-30 21:07:05 +02:00
*/
2019-05-30 21:33:27 +02:00
protected function calculateKoya(Player $player, int $cut = 50): ?float
2019-05-30 21:07:05 +02:00
{
$tiebreak = 0;
2019-05-30 21:16:12 +02:00
foreach ($player->getPairings() as $plkey => $plpairing) {
2019-06-01 15:25:01 +02:00
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;
}
2019-05-30 21:07:05 +02:00
}
}
return $tiebreak;
}
2019-05-30 21:13:14 +02:00
/**
* @param Player $player
* @param int $cutlowest
* @param int $cuthighest
2019-05-30 21:33:27 +02:00
* @return float|null
2019-05-30 21:13:14 +02:00
*/
2019-05-30 21:33:27 +02:00
protected function calculateBuchholz(Player $player, int $cutlowest = 0, int $cuthighest = 0): ?float
2019-05-30 21:13:14 +02:00
{
$tiebreak = 0;
$intpairings = $player->getPairings();
usort($intpairings, function ($a, $b) {
if (is_null($a->getOpponent())) {
return -1;
}
if (is_null($b->getOpponent())) {
return 1;
}
2019-06-01 14:27:50 +02:00
if ($b->getOpponent()->getPoints() == $a->getOpponent()->getPoints()) {
2019-05-30 21:13:14 +02:00
return 0;
}
2019-06-01 14:27:50 +02:00
return ($a->getOpponent()->getPoints() > $b->getOpponent()->getPoints()) ? 1 : -1;
2019-05-30 21:13:14 +02:00
});
2019-06-01 14:27:50 +02:00
$intpairings = array_slice($intpairings, $cutlowest);
2019-06-05 13:15:00 +02:00
$intpairings = array_slice($intpairings, 0 - $cuthighest);
2019-05-30 21:13:14 +02:00
2019-06-01 15:25:01 +02:00
foreach ($intpairings as $intkey => $intpairing) {
2019-06-01 13:37:50 +02:00
if (!is_null($intpairing->getOpponent())) {
$tiebreak += $intpairing->getOpponent()->getPoints();
}
}
2019-05-30 21:13:14 +02:00
return $tiebreak;
}
2019-05-30 21:16:12 +02:00
/**
* @param Player $player
2019-05-30 21:33:27 +02:00
* @return float|null
2019-05-30 21:16:12 +02:00
*/
2019-05-30 21:33:27 +02:00
protected function calculateSonneborn(Player $player): ?float
2019-05-30 21:16:12 +02:00
{
$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;
}
2019-05-30 21:16:12 +02:00
}
}
return $tiebreak;
}
2019-05-30 21:20:14 +02:00
/**
* @param Player $player
2019-05-30 21:33:27 +02:00
* @return float|null
2019-05-30 21:20:14 +02:00
*/
protected function calculateSoccerKashdan(Player $player): ?float
2019-05-30 21:20:14 +02:00
{
$tiebreak = 0;
foreach ($player->getPairings() as $pairing) {
$toadd = 0;
if (array_search($pairing->getResult(), Constants::Won) !== false) {
$toadd = 3;
} elseif (array_search($pairing->getResult(), Constants::Draw) !== false) {
$toadd = 1;
2019-06-01 16:19:57 +02:00
} elseif (array_search($pairing->getResult(), Constants::Lost) !== false) {
$toadd = 0;
2019-05-30 21:20:14 +02:00
}
2019-06-01 16:19:57 +02:00
if (array_search($pairing->getResult(), Constants::NotPlayed) !== false) {
$toadd = -1;
2019-05-30 21:20:14 +02:00
}
$tiebreak += $toadd;
}
2019-06-01 16:19:57 +02:00
return $tiebreak; // - $player->getNoOfWins();
2019-05-30 21:20:14 +02:00
}
2019-05-30 21:25:37 +02:00
/**
* @param Player $player
* @return float|null
*/
protected function calculateKashdan(Player $player): ?float
{
$tiebreak = 0;
foreach ($player->getPairings() as $pairing) {
$toadd = 0;
if (array_search($pairing->getResult(), Constants::Won) !== false) {
$toadd = 4;
} elseif (array_search($pairing->getResult(), Constants::Draw) !== false) {
$toadd = 2;
} elseif (array_search($pairing->getResult(), Constants::Lost) !== false) {
$toadd = 1;
}
if (array_search($pairing->getResult(), Constants::NotPlayed) !== false) {
$toadd = 0;
}
$tiebreak += $toadd;
}
return $tiebreak; // - $player->getNoOfWins();
}
2019-05-30 21:25:37 +02:00
/**
* @param Player $player
2019-05-30 21:33:27 +02:00
* @return float|null
2019-05-30 21:25:37 +02:00
*/
2019-05-30 21:33:27 +02:00
protected function calculateCumulative(Player $player): ?float
2019-05-30 21:25:37 +02:00
{
$tiebreak = 0;
2019-06-01 15:43:22 +02:00
$score = [];
2019-05-30 21:25:37 +02:00
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;
}
2019-06-01 15:43:22 +02:00
$tiebreak += $toadd;
$score[] = $tiebreak;
2019-05-30 21:25:37 +02:00
}
2019-06-01 15:43:22 +02:00
return array_sum($score);
2019-05-30 21:25:37 +02:00
}
2019-05-28 17:04:53 +02:00
}