mirror of
https://github.com/JeroenED/libpairtwo.git
synced 2024-10-31 20:56:08 +01:00
Merge branch 'task/make-dist-great-again' into develop
This commit is contained in:
commit
82858a89fe
6
.gitignore
vendored
6
.gitignore
vendored
@ -8,6 +8,8 @@ composer.lock
|
|||||||
/.idea
|
/.idea
|
||||||
doc/api/*
|
doc/api/*
|
||||||
|
|
||||||
libpairtwo-distro\.zip
|
libpairtwo-dist.zip
|
||||||
|
|
||||||
distro/
|
dist/*
|
||||||
|
!dist/boilerplate.php
|
||||||
|
!dist/composer-*.json
|
||||||
|
27
Makefile
27
Makefile
@ -1,4 +1,4 @@
|
|||||||
.PHONY: help tests
|
.PHONY: help tests dist
|
||||||
.DEFAULT_GOAL := help
|
.DEFAULT_GOAL := help
|
||||||
|
|
||||||
help:
|
help:
|
||||||
@ -18,23 +18,24 @@ api: ## Generates api-docs
|
|||||||
chmod +x vendor/bin/phpdoc
|
chmod +x vendor/bin/phpdoc
|
||||||
vendor/bin/phpdoc
|
vendor/bin/phpdoc
|
||||||
|
|
||||||
distro: ## Generates distribution
|
dist: ## Generates distribution
|
||||||
mkdir distro
|
touch .libpairtwo-dist
|
||||||
touch .libpairtwo-distro
|
|
||||||
git add -A
|
git add -A
|
||||||
git commit -m "Commit before release"
|
git commit -m "Commit before release"
|
||||||
cp res/composer-dist.json distro/composer.json
|
cp dist/composer* res/
|
||||||
cd distro && composer install
|
mv dist/composer-dist.json dist/composer.json
|
||||||
rm distro/composer.json
|
cd dist && composer install
|
||||||
cp res/composer-dist-installed.json distro/composer.json
|
rm dist/composer.json
|
||||||
git reset --soft HEAD^
|
rm dist/composer.lock
|
||||||
|
mv dist/composer-dist-installed.json dist/composer.json
|
||||||
|
git reset --hard HEAD^
|
||||||
wget -O vendor/bin/phpdoc http://www.phpdoc.org/phpDocumentor.phar
|
wget -O vendor/bin/phpdoc http://www.phpdoc.org/phpDocumentor.phar
|
||||||
chmod +x vendor/bin/phpdoc
|
chmod +x vendor/bin/phpdoc
|
||||||
vendor/bin/phpdoc
|
vendor/bin/phpdoc
|
||||||
mkdir -p distro/doc
|
mkdir -p dist/doc
|
||||||
cp -r doc/api distro/doc
|
cp -r doc/api dist/doc
|
||||||
cp -r res/boilerplate.php distro/libpairtwo.php
|
cd dist && zip -r ../libpairtwo-dist *
|
||||||
cd distro && zip -r ../libpairtwo-distro *
|
mv res/composer* res/
|
||||||
|
|
||||||
cs: ## Fixes coding standard problems
|
cs: ## Fixes coding standard problems
|
||||||
vendor/bin/php-cs-fixer fix || true
|
vendor/bin/php-cs-fixer fix || true
|
||||||
|
86
dist/boilerplate.php
vendored
Normal file
86
dist/boilerplate.php
vendored
Normal file
@ -0,0 +1,86 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
|
||||||
|
use JeroenED\Libpairtwo\IOFactory;
|
||||||
|
|
||||||
|
require_once 'vendor/autoload.php';
|
||||||
|
|
||||||
|
|
||||||
|
// EDIT ME!
|
||||||
|
$pairingfile = 'your pairing-file.sws';
|
||||||
|
|
||||||
|
|
||||||
|
if(!file_exists($pairingfile)) {
|
||||||
|
trigger_error('Your file is not set or doesn\'t exist! Edit the file: ' . __FILE__ . ' and try again', E_USER_ERROR);
|
||||||
|
}
|
||||||
|
|
||||||
|
$reader = IOFactory::createReader('Pairtwo-6');
|
||||||
|
$reader->read($pairingfile);
|
||||||
|
|
||||||
|
// From here on you can start. Please use the examples on https://github.com/jeroened/libpairtwo/wiki
|
||||||
|
// You can also use the doc/api folder to get all possible methods and fields
|
||||||
|
|
||||||
|
// Below is an example of what can be used. Feel free to modify this.
|
||||||
|
echo "<pre>";
|
||||||
|
echo "Name: " . $sws->getTournament()->getName() . PHP_EOL;
|
||||||
|
echo "Organiser: " . $sws->getTournament()->getOrganiser(). PHP_EOL;
|
||||||
|
echo "Tempo: " . $sws->getTournament()->getTempo() . PHP_EOL;
|
||||||
|
echo "Country: " . $sws->getTournament()->getOrganiserCountry() . PHP_EOL;
|
||||||
|
echo "Arbiter: " . $sws->getTournament()->getArbiter() . PHP_EOL;
|
||||||
|
echo "Rounds: " . $sws->getTournament()->getNoOfRounds() . PHP_EOL;
|
||||||
|
echo "Participants: " . $sws->getTournament()->getNoOfRounds() . PHP_EOL;
|
||||||
|
echo "Fidehomol: " . $sws->getTournament()->getFideHomol() . PHP_EOL;
|
||||||
|
echo "Start-Date: " . $sws->getTournament()->getStartDate()->format('d/m/Y') . PHP_EOL;
|
||||||
|
echo "End-Date: " . $sws->getTournament()->getEndDate()->format('d/m/Y') . PHP_EOL;
|
||||||
|
echo "System: " . $sws->getTournament()->getSystem()->getKey() . PHP_EOL;
|
||||||
|
echo "Place: " . $sws->getTournament()->getOrganiserPlace() . PHP_EOL;
|
||||||
|
echo "Unrated-Elo: " . $sws->getTournament()->getNonRatedElo() . PHP_EOL;
|
||||||
|
echo "Federation: " . $sws->getTournament()->getFederation() . PHP_EOL;
|
||||||
|
echo "Organiser: " . $sws->getTournament()->getOrganiserClubNo() . PHP_EOL;
|
||||||
|
echo "Fide Elo P1: " . $sws->getTournament()->getPlayerById(0)->getElo('Fide') . PHP_EOL;
|
||||||
|
echo "Fide Elo P2: " . $sws->getTournament()->getPlayerById(1)->getElo('Fide') . PHP_EOL;
|
||||||
|
echo "Fide Elo P3: " . $sws->getTournament()->getPlayerById(2)->getElo('Fide') . PHP_EOL;
|
||||||
|
echo "KBSB Elo P1: " . $sws->getTournament()->getPlayerById(0)->getElo('Nation') . PHP_EOL;
|
||||||
|
echo "KBSB Elo P2: " . $sws->getTournament()->getPlayerById(1)->getElo('Nation') . PHP_EOL;
|
||||||
|
echo "KBSB Elo P3: " . $sws->getTournament()->getPlayerById(2)->getElo('Nation') . PHP_EOL;
|
||||||
|
echo "Name P1: " . $sws->getTournament()->getPlayerById(0)->getName() . PHP_EOL;
|
||||||
|
echo "Name P2: " . $sws->getTournament()->getPlayerById(1)->getName() . PHP_EOL;
|
||||||
|
echo "Name P3: " . $sws->getTournament()->getPlayerById(2)->getName() . PHP_EOL;
|
||||||
|
echo "Gender P1: " . $sws->getTournament()->getPlayerById(0)->getGender()->getKey() . PHP_EOL;
|
||||||
|
echo "Gender P2: " . $sws->getTournament()->getPlayerById(1)->getGender()->getKey() . PHP_EOL;
|
||||||
|
echo "Gender P3: " . $sws->getTournament()->getPlayerById(2)->getGender()->getKey() . PHP_EOL;
|
||||||
|
echo "Absent P1: " . $sws->getTournament()->getPlayerById(0)->getBinaryData("Absent") . PHP_EOL;
|
||||||
|
echo "Absent P2: " . $sws->getTournament()->getPlayerById(1)->getBinaryData("Absent") . PHP_EOL;
|
||||||
|
echo "Absent P3: " . $sws->getTournament()->getPlayerById(2)->getBinaryData("Absent") . PHP_EOL;
|
||||||
|
echo "Date Round 1: " . $sws->getTournament()->getRoundByNo(0)->getDate()->format('d/m/Y') . PHP_EOL;
|
||||||
|
echo "Date Round 2: " . $sws->getTournament()->getRoundByNo(1)->getDate()->format('d/m/Y') . PHP_EOL;
|
||||||
|
echo "Date Round 3: " . $sws->getTournament()->getRoundByNo(2)->getDate()->format('d/m/Y') . PHP_EOL;
|
||||||
|
echo "Color Pairing 1: " . $sws->getTournament()->getPairings()[1]->getColor()->getKey() . PHP_EOL;
|
||||||
|
echo "Color Pairing 2: " . $sws->getTournament()->getPairings()[2]->getColor()->getKey() . PHP_EOL;
|
||||||
|
echo "Color Pairing 3: " . $sws->getTournament()->getPairings()[3]->getColor()->getKey() . PHP_EOL;
|
||||||
|
echo "Player Pairing 1: " . $sws->getTournament()->getPairings()[0]->getPlayer()->getName() . PHP_EOL;
|
||||||
|
echo "Player Pairing 2: " . $sws->getTournament()->getPairings()[1]->getPlayer()->getName() . PHP_EOL;
|
||||||
|
echo "Player Pairing 3: " . $sws->getTournament()->getPairings()[2]->getPlayer()->getName() . PHP_EOL;
|
||||||
|
echo "Bye Round 1: " . $sws->getTournament()->getRoundByNo(2)->getBye()[0]->getPlayer()->getName() . PHP_EOL;
|
||||||
|
echo "Absent Round 1: " . $sws->getTournament()->getRoundByNo(2)->getAbsent()[0]->getPlayer()->getName() . PHP_EOL;
|
||||||
|
echo "Tiebreak 1: " . $sws->getTournament()->getTiebreaks()[0]->getValue() . PHP_EOL;
|
||||||
|
echo "Tiebreak 2: " . $sws->getTournament()->getTiebreaks()[1]->getValue() . PHP_EOL;
|
||||||
|
echo "Tiebreak 3: " . $sws->getTournament()->getTiebreaks()[2]->getValue() . PHP_EOL;
|
||||||
|
echo "Tiebreak 4: " . $sws->getTournament()->getTiebreaks()[3]->getValue() . PHP_EOL;
|
||||||
|
echo "Tiebreak 5: " . $sws->getTournament()->getTiebreaks()[4]->getValue() . PHP_EOL;
|
||||||
|
echo "Tiebreak 6: " . $sws->getTournament()->getTiebreaks()[5]->getValue() . PHP_EOL;
|
||||||
|
echo "Average Elo: " . $sws->getTournament()->getAverageElo() . PHP_EOL;
|
||||||
|
foreach ($sws->getTournament()->getRanking() as $player) {
|
||||||
|
echo str_pad($player->getName() . '(' . $player->getElo($sws->getTournament()->getPriorityElo()) . ') ', 35) . implode_pad(' ', $player->getTiebreaks(), 5, ' ') . PHP_EOL;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
echo "</pre>";
|
||||||
|
function implode_pad($glue, $collection, $padlength, $padstring): string
|
||||||
|
{
|
||||||
|
$newarray = [];
|
||||||
|
foreach ($collection as $elem) {
|
||||||
|
$newarray[] = str_pad($elem, $padlength, $padstring);
|
||||||
|
}
|
||||||
|
return implode($glue, $newarray);
|
||||||
|
}
|
@ -1,12 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
|
|
||||||
use JeroenED\Libpairtwo\IOFactory;
|
|
||||||
|
|
||||||
require_once 'vendor/autoload.php';
|
|
||||||
|
|
||||||
$reader = IOFactory::createReader('Pairtwo-6');
|
|
||||||
$reader->read('your pairing-file.sws');
|
|
||||||
|
|
||||||
// From here on you can start. Please use the examples on https://github.com/jeroened/libpairtwo/wiki
|
|
||||||
// You can also use the doc/api folder to get all possible methods and fields
|
|
Loading…
Reference in New Issue
Block a user