2019-01-10 20:05:23 +01:00
|
|
|
<?php
|
|
|
|
|
2019-02-01 15:55:58 +01:00
|
|
|
/*
|
2019-01-10 20:05:23 +01:00
|
|
|
* The MIT License
|
|
|
|
*
|
|
|
|
* Copyright 2019 Jeroen De Meerleer <schaak@jeroened.be>.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
2019-02-01 15:55:58 +01:00
|
|
|
use JeroenED\Libpairtwo\Sws;
|
2019-01-10 20:05:23 +01:00
|
|
|
|
2019-01-16 18:03:07 +01:00
|
|
|
require_once '../vendor/autoload.php';
|
2019-01-10 20:05:23 +01:00
|
|
|
|
2019-01-16 18:03:07 +01:00
|
|
|
$sws = Sws::readSws('../res/testsws.sws');
|
2019-01-31 18:37:06 +01:00
|
|
|
echo "Release: " . $sws->getRelease() . PHP_EOL;
|
2019-01-19 14:14:01 +01:00
|
|
|
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()->getRounds() . PHP_EOL;
|
|
|
|
echo "Participants: " . $sws->getTournament()->getRounds() . 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 "Federatiop: " . $sws->getTournament()->getFederation() . PHP_EOL;
|
|
|
|
echo "Organiser: " . $sws->getTournament()->getOrganiserClubNo() . PHP_EOL;
|
2019-02-01 15:55:58 +01:00
|
|
|
echo "Fide Elo P1: " . $sws->getTournament()->getPlayerById(0)->getFideElo() . PHP_EOL;
|
|
|
|
echo "Fide Elo P2: " . $sws->getTournament()->getPlayerById(1)->getFideElo() . PHP_EOL;
|
|
|
|
echo "Fide Elo P3: " . $sws->getTournament()->getPlayerById(2)->getFideElo() . PHP_EOL;
|
|
|
|
echo "KBSB Elo P1: " . $sws->getTournament()->getPlayerById(0)->getKbsbElo() . PHP_EOL;
|
|
|
|
echo "KBSB Elo P2: " . $sws->getTournament()->getPlayerById(1)->getKbsbElo() . PHP_EOL;
|
|
|
|
echo "KBSB Elo P3: " . $sws->getTournament()->getPlayerById(2)->getKbsbElo() . PHP_EOL;
|
2019-02-01 17:02:33 +01:00
|
|
|
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;
|
2019-01-18 14:19:12 +01:00
|
|
|
//echo $sws->getBinaryData("Tournament");
|
2019-02-01 15:55:58 +01:00
|
|
|
//echo $sws->getBinaryData("Players");*/
|