2019-01-10 20:05:23 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace JeroenED\Libpairtwo;
|
|
|
|
|
2019-02-01 15:51:35 +01:00
|
|
|
use JeroenED\Libpairtwo\Enums\Title;
|
2019-03-04 11:51:06 +01:00
|
|
|
use JeroenED\Libpairtwo\Enums\Gender;
|
2019-02-11 16:43:36 +01:00
|
|
|
use JeroenED\Libpairtwo\Enums\Color;
|
|
|
|
use JeroenED\Libpairtwo\Enums\Result;
|
2019-02-01 15:53:39 +01:00
|
|
|
use JeroenED\Libpairtwo\Models\Sws as SwsModel;
|
2019-01-25 17:31:23 +01:00
|
|
|
use JeroenED\Libpairtwo\Enums\TournamentSystem;
|
2019-02-11 17:27:26 +01:00
|
|
|
use DateTime;
|
2019-01-16 18:03:07 +01:00
|
|
|
|
2019-02-12 14:11:58 +01:00
|
|
|
|
2019-01-10 20:05:23 +01:00
|
|
|
/**
|
|
|
|
* This class reads a SWS file
|
|
|
|
*
|
|
|
|
* @author Jeroen De Meerleer
|
|
|
|
*/
|
2019-02-01 15:53:39 +01:00
|
|
|
class Sws extends SwsModel
|
2019-01-18 14:17:43 +01:00
|
|
|
{
|
2019-01-18 18:11:53 +01:00
|
|
|
private const PT_DAYFACTOR = 32;
|
|
|
|
private const PT_MONTHFACTOR = 16;
|
|
|
|
private const PT_YEARFACTOR = 512;
|
|
|
|
private const PT_PASTOFFSET = 117;
|
|
|
|
|
|
|
|
|
2019-01-18 14:17:43 +01:00
|
|
|
/**
|
2019-02-11 17:27:26 +01:00
|
|
|
*
|
|
|
|
* This function reads the sws-file
|
|
|
|
*
|
2019-01-18 14:17:43 +01:00
|
|
|
* @param string $swsfile
|
2019-02-01 15:53:39 +01:00
|
|
|
* @return SwsModel
|
2019-01-18 14:17:43 +01:00
|
|
|
*/
|
2019-01-10 20:05:23 +01:00
|
|
|
public static function ReadSws(string $swsfile)
|
|
|
|
{
|
|
|
|
$swshandle = fopen($swsfile, 'rb');
|
2019-01-18 14:17:43 +01:00
|
|
|
$swscontents = fread($swshandle, filesize($swsfile));
|
|
|
|
fclose($swshandle);
|
2019-01-16 18:03:07 +01:00
|
|
|
|
2019-02-01 15:53:39 +01:00
|
|
|
$sws = new SwsModel();
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset = 0;
|
|
|
|
|
|
|
|
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setRelease(self::ReadData('String', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
2019-01-16 18:03:07 +01:00
|
|
|
$sws->setTournament(new Tournament());
|
|
|
|
|
2019-01-18 14:17:43 +01:00
|
|
|
// UserCountry
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("UserCountry", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// SavedOffset
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("SavedOffset", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// NewPlayer
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("NewPlayer", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// AmericanHandicap
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("AmericanHandicap", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// LowOrder
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("LowOrder", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// PairingMethod
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("PairingMethod", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// AmericanPresence
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("AmericanPresence", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// CheckSameClub
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("CheckSameClub", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// NoColorCheck
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("NoColorCheck", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// SeparateCategories
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("SeparateCategories", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// EloUsed
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("EloUsed", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// AlternateColors
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("AlternateColors", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// MaxMeetings
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("MaxMeetings", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// MaxDistance
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("MaxDistance", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// MinimizeKeizer
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("MinimizeKeizer", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// MinRoundsMeetings
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("MinRoundsMeetings", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// MaxRoundsAbsent
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("MaxRoundsAbsent", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// SpecialPoints
|
|
|
|
$length = 4 * 6;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("SpecialPoints", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// NewNamePos
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("NewNamePos", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// CurrentRound
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("CurrentRound", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// CreatedRounds
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("CreatedRounds", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// CreatedPlayers
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("CreatedPlayers", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// MaxSelection
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("MaxSelection", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// NumberOfRounds
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("NumberOfRounds", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// NumberOfPairings
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("NumberOfPairings", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// CreatedPairings
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("CreatedPairings", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// PairingElems
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("PairingElems", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// RandomSeed
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("RandomSeed", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// TieOrder
|
|
|
|
$length = 4 * 5;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("TieOrder", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// Categorie
|
|
|
|
$length = 4 * 10;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("Categorie", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// ExtraPoints
|
|
|
|
$length = 4 * 20;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("ExtraPoints", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// SelectP
|
|
|
|
$length = 4 * 20;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData("SelectP", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// Players
|
2019-02-01 15:55:34 +01:00
|
|
|
for ($i = 0; $i < $sws->getBinaryData("NewPlayer"); $i++) {
|
|
|
|
$player = new Player();
|
|
|
|
|
|
|
|
$length = 4;
|
|
|
|
$player->SetRank(self::ReadData('Int', substr($swscontents, $offset, $length)));
|
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$length = 4;
|
|
|
|
$sws->setBinaryData("Players($i)_NamePos", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$length = 4;
|
|
|
|
$player->SetFideId(self::ReadData('Int', substr($swscontents, $offset, $length)));
|
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$length = 4;
|
|
|
|
$player->SetExtraPts(self::ReadData('Int', substr($swscontents, $offset, $length)));
|
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$length = 4;
|
|
|
|
$player->SetKbsbElo(self::ReadData('Int', substr($swscontents, $offset, $length)));
|
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$length = 4;
|
|
|
|
$player->SetDateOfBirth(self::ReadData('Date', substr($swscontents, $offset, $length)));
|
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$length = 4;
|
|
|
|
$player->setKbsbID(self::ReadData('Int', substr($swscontents, $offset, $length)));
|
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$length = 4;
|
2019-02-06 20:47:46 +01:00
|
|
|
$player->setPoints(self::ReadData('Int', substr($swscontents, $offset, $length)) / 2);
|
2019-02-01 15:55:34 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$length = 4;
|
|
|
|
$player->setClubNr(self::ReadData('Int', substr($swscontents, $offset, $length)));
|
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$length = 4;
|
2019-02-06 20:47:46 +01:00
|
|
|
$player->setScoreBucholtz(self::ReadData('Int', substr($swscontents, $offset, $length)) / 2);
|
2019-02-01 15:55:34 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$length = 4;
|
2019-02-06 20:47:46 +01:00
|
|
|
$player->setScoreAmerican(self::ReadData('Int', substr($swscontents, $offset, $length)) / 2);
|
2019-02-01 15:55:34 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$length = 4;
|
|
|
|
$sws->setBinaryData("Players($i)_HelpValue", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$length = 4;
|
|
|
|
$player->setFideElo(self::ReadData('Int', substr($swscontents, $offset, $length)));
|
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$length = 1;
|
|
|
|
$sws->setBinaryData("Players($i)_NameLength", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$length = 3;
|
|
|
|
$player->setNation(self::ReadData('String', substr($swscontents, $offset, $length)));
|
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$length = 1;
|
|
|
|
$player->setCategory(self::ReadData('String', substr($swscontents, $offset, $length)));
|
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$length = 1;
|
|
|
|
$player->setTitle(new Title(self::ReadData('Int', substr($swscontents, $offset, $length))));
|
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$length = 1;
|
2019-03-04 11:51:06 +01:00
|
|
|
switch (self::ReadData('Int', substr($swscontents, $offset, $length))) {
|
|
|
|
case 1:
|
|
|
|
$gender = 'M';
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
$gender = "F";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$gender = "X";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
$player->setGender(new Gender($gender));
|
2019-02-01 15:55:34 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$length = 1;
|
|
|
|
$player->setNumberOfTies(self::ReadData('Int', substr($swscontents, $offset, $length)));
|
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$length = 1;
|
2019-02-11 17:27:26 +01:00
|
|
|
$player->setAbsent(self::ReadData('Bool', substr($swscontents, $offset, $length)));
|
2019-02-01 15:55:34 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$length = 1;
|
|
|
|
$sws->setBinaryData("Players($i)_ColorDiff", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$length = 1;
|
|
|
|
$sws->setBinaryData("Players($i)_ColorPref", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$length = 1;
|
|
|
|
$sws->setBinaryData("Players($i)_Paired", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$length = 1;
|
|
|
|
$sws->setBinaryData("Players($i)_Float", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$length = 1;
|
|
|
|
$sws->setBinaryData("Players($i)_FloatPrev", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$length = 1;
|
|
|
|
$sws->setBinaryData("Players($i)_FloatBefore", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$length = 1;
|
|
|
|
$sws->setBinaryData("Players($i)_TieMatch", self::ReadData('Int', substr($swscontents, $offset, $length)));
|
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$sws->getTournament()->addPlayer($player);
|
|
|
|
}
|
2019-01-18 14:17:43 +01:00
|
|
|
// PlayerNames
|
2019-02-01 15:55:34 +01:00
|
|
|
$length = (Integer)$sws->getBinaryData("NewNamePos") + 0;
|
2019-02-12 15:37:53 +01:00
|
|
|
$sws->setBinaryData("PlayerNames", substr($swscontents, $offset, $length));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
2019-02-01 17:02:33 +01:00
|
|
|
for ($i = 0; $i < $sws->getBinaryData("NewPlayer"); $i++) {
|
|
|
|
$namelength = $sws->getBinaryData("Players($i)_NameLength");
|
|
|
|
$nameoffset = $sws->getBinaryData("Players($i)_NamePos");
|
|
|
|
$player = $sws->getTournament()->getPlayerById($i);
|
|
|
|
$player->setName(self::ReadData("String", substr($sws->getBinaryData("PlayerNames"), $nameoffset, $namelength)));
|
|
|
|
|
|
|
|
$sws->getTournament()->updatePlayer($i, $player);
|
|
|
|
}
|
|
|
|
|
2019-01-18 14:17:43 +01:00
|
|
|
// TournamentName
|
|
|
|
$length = 80;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->getTournament()->setName(self::ReadData('String', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// TournamentOrganiser
|
|
|
|
$length = 50;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->getTournament()->setOrganiser(self::ReadData('String', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// TournamentTempo
|
|
|
|
$length = 50;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->getTournament()->setTempo(self::ReadData('String', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// TournamentCountry
|
|
|
|
$length = 32;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->getTournament()->setOrganiserCountry(self::ReadData('String', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// Arbiters
|
|
|
|
$length = 128;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->getTournament()->setArbiter(self::ReadData('String', substr($swscontents, $offset, $length)));
|
2019-01-18 14:17:43 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
2019-01-18 18:11:53 +01:00
|
|
|
// Rounds
|
|
|
|
$length = 4;
|
2019-02-11 22:41:44 +01:00
|
|
|
$sws->getTournament()->setNoOfRounds(self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 18:11:53 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// Participants
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->getTournament()->setParticipants(self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 18:11:53 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// Fidehomol
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->getTournament()->setFideHomol(self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-18 18:11:53 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// StartDate
|
|
|
|
$length = 4;
|
2019-02-01 15:55:13 +01:00
|
|
|
$sws->getTournament()->setStartDate(self::ReadData('Date', substr($swscontents, $offset, $length)));
|
2019-01-18 18:11:53 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// EndDate
|
|
|
|
$length = 4;
|
2019-02-01 15:55:13 +01:00
|
|
|
$sws->getTournament()->setEndDate(self::ReadData('Date', substr($swscontents, $offset, $length)));
|
2019-01-18 18:11:53 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
2019-01-19 14:14:01 +01:00
|
|
|
// Place
|
|
|
|
$length = 36;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->getTournament()->setOrganiserPlace(self::ReadData('String', substr($swscontents, $offset, $length)));
|
2019-01-19 14:14:01 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// First period
|
|
|
|
$length = 32;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->getTournament()->setFirstPeriod(self::ReadData('String', substr($swscontents, $offset, $length)));
|
2019-01-19 14:14:01 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// Second period
|
|
|
|
$length = 32;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->getTournament()->setSecondPeriod(self::ReadData('String', substr($swscontents, $offset, $length)));
|
2019-01-19 14:14:01 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// Unrated Elo
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->getTournament()->setNonRatedElo(self::ReadData('Int', substr($swscontents, $offset, $length)));
|
2019-01-19 14:14:01 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// Type
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->getTournament()->setSystem(new TournamentSystem(self::ReadData('Int', substr($swscontents, $offset, $length))));
|
2019-01-19 14:14:01 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// Federation
|
|
|
|
$length = 12;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->getTournament()->setFederation(self::ReadData('String', substr($swscontents, $offset, $length)));
|
2019-01-19 14:14:01 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// Soustype
|
|
|
|
/*
|
|
|
|
* 32 Bits:
|
|
|
|
* 1 bit = Libre?
|
|
|
|
* 6 bits = First round sent to FIDE
|
|
|
|
* 6 bits = First round sent to FRBE-KBSB
|
|
|
|
* 6 bits = Last round sent to FIDE
|
|
|
|
* 6 bits = Last round sent to FRBE-KBSB
|
|
|
|
* 6 bits = Number of the First board
|
|
|
|
* 1 bit = Double round robin
|
|
|
|
*/
|
|
|
|
$length = 4;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->setBinaryData('SousType', self::ReadData('Hex', substr($swscontents, $offset, $length)));
|
2019-01-19 14:14:01 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// Organising club no
|
|
|
|
$length = 4;
|
2019-02-12 14:10:50 +01:00
|
|
|
$sws->getTournament()->setOrganiserClubNo(self::ReadData('String', substr($swscontents, $offset, $length), 0));
|
2019-01-19 14:14:01 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// Organising club
|
2019-02-12 18:04:12 +01:00
|
|
|
$length = 8;
|
2019-01-31 18:37:06 +01:00
|
|
|
$sws->getTournament()->setOrganiserClub(self::ReadData('String', substr($swscontents, $offset, $length)));
|
2019-01-19 14:14:01 +01:00
|
|
|
$offset += $length;
|
|
|
|
|
2019-02-11 16:42:20 +01:00
|
|
|
// Tournament year
|
|
|
|
$length = 4;
|
|
|
|
$sws->getTournament()->setYear(self::ReadData('Int', substr($swscontents, $offset, $length)));
|
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
// Round dates
|
2019-02-12 18:04:12 +01:00
|
|
|
for ($i = 0; $i < $sws->getTournament()->getNoOfRounds(); $i++) {
|
2019-02-11 16:42:20 +01:00
|
|
|
$length = 4;
|
2019-02-12 18:05:19 +01:00
|
|
|
$round = new Round();
|
|
|
|
$round->setRoundNo($i);
|
|
|
|
$round->setDate(self::ReadData('Date', substr($swscontents, $offset, $length)));
|
|
|
|
$sws->getTournament()->addRound($round);
|
2019-02-11 16:42:20 +01:00
|
|
|
$offset += $length;
|
|
|
|
}
|
|
|
|
|
2019-02-06 17:23:37 +01:00
|
|
|
if ($sws->getBinaryData("CurrentRound") > 0) {
|
2019-02-11 16:43:36 +01:00
|
|
|
for ($i = 0; $i < $sws->getBinaryData("NewPlayer"); $i++) {
|
|
|
|
for ($x = 0; $x < $sws->getBinaryData("CreatedRounds"); $x++) {
|
|
|
|
$pairing = new Pairing();
|
2019-02-06 17:23:37 +01:00
|
|
|
|
2019-02-11 16:43:36 +01:00
|
|
|
$pairing->setPlayer($sws->getTournament()->getPlayerById($i));
|
2019-02-06 17:23:37 +01:00
|
|
|
|
2019-02-11 16:43:36 +01:00
|
|
|
$length = 4;
|
|
|
|
$opponent = self::ReadData('Int', substr($swscontents, $offset, $length));
|
|
|
|
if ($opponent != 4294967295) {
|
|
|
|
$pairing->setOpponent($sws->getTournament()->getPlayerById($opponent));
|
|
|
|
}
|
|
|
|
$offset += $length;
|
2019-02-06 17:23:37 +01:00
|
|
|
|
2019-02-11 16:43:36 +01:00
|
|
|
$length = 1;
|
|
|
|
$pairing->setColor(new Color(self::ReadData('Int', substr($swscontents, $offset, $length))));
|
|
|
|
$offset += $length;
|
|
|
|
|
|
|
|
$length = 1;
|
|
|
|
$pairing->setResult(new Result(self::ReadData('Int', substr($swscontents, $offset, $length))));
|
|
|
|
$offset += $length;
|
2019-02-06 17:23:37 +01:00
|
|
|
|
2019-02-11 16:43:36 +01:00
|
|
|
$pairing->setRound($x);
|
|
|
|
$offset += 2;
|
|
|
|
|
|
|
|
$sws->getTournament()->addPairing($pairing);
|
|
|
|
}
|
|
|
|
}
|
2019-02-06 17:23:37 +01:00
|
|
|
}
|
2019-01-19 14:14:01 +01:00
|
|
|
|
2019-02-11 22:41:44 +01:00
|
|
|
$sws->getTournament()->pairingsToRounds();
|
2019-01-10 20:05:23 +01:00
|
|
|
return $sws;
|
|
|
|
}
|
|
|
|
|
2019-02-01 15:55:34 +01:00
|
|
|
/**
|
2019-02-11 17:27:26 +01:00
|
|
|
* @param string $type
|
|
|
|
* @param string $data
|
2019-02-12 14:10:50 +01:00
|
|
|
* @param mixed $default
|
2019-02-11 17:27:26 +01:00
|
|
|
* @return bool|DateTime|int|string
|
2019-02-01 15:55:34 +01:00
|
|
|
*/
|
2019-02-12 14:10:50 +01:00
|
|
|
private static function ReadData(string $type, string $data, $default = null)
|
2019-01-18 14:17:43 +01:00
|
|
|
{
|
2019-01-31 18:37:06 +01:00
|
|
|
switch ($type) {
|
|
|
|
case 'String':
|
2019-02-12 14:11:58 +01:00
|
|
|
$data = trim($data);
|
|
|
|
if ($data == '') {
|
2019-02-12 14:10:50 +01:00
|
|
|
return (is_null($default)) ? '' : $default;
|
|
|
|
}
|
2019-02-12 15:37:53 +01:00
|
|
|
return iconv('windows-1252', 'utf-8', $data);
|
2019-01-31 18:37:06 +01:00
|
|
|
break;
|
|
|
|
case 'Hex':
|
|
|
|
case 'Int':
|
2019-02-11 17:27:26 +01:00
|
|
|
case 'Bool':
|
2019-02-01 15:55:13 +01:00
|
|
|
case 'Date':
|
2019-01-31 18:37:06 +01:00
|
|
|
$hex = implode(unpack("H*", $data));
|
|
|
|
$hex = array_reverse(str_split($hex, 2));
|
|
|
|
|
|
|
|
foreach ($hex as $key => $item) {
|
|
|
|
if ($item == "00") {
|
|
|
|
$hex[$key] = "";
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$hex = implode($hex);
|
2019-02-11 16:43:36 +01:00
|
|
|
$hex = ($hex == "") ? "00" : $hex;
|
2019-01-31 18:37:06 +01:00
|
|
|
if ($type == 'Hex') {
|
2019-02-12 14:10:50 +01:00
|
|
|
if ($hex == '00') {
|
|
|
|
return (is_null($default)) ? '00' : $default;
|
|
|
|
}
|
2019-01-31 18:37:06 +01:00
|
|
|
return $hex;
|
|
|
|
} elseif ($type == 'Int') {
|
2019-02-12 14:10:50 +01:00
|
|
|
if ($hex == '00') {
|
|
|
|
return (is_null($default)) ? 0 : $default;
|
|
|
|
}
|
2019-01-31 18:37:06 +01:00
|
|
|
return hexdec($hex);
|
2019-02-01 15:55:13 +01:00
|
|
|
} elseif ($type == 'Date') {
|
2019-02-12 14:10:50 +01:00
|
|
|
if ($hex == '00') {
|
|
|
|
return (is_null($default)) ? self::UIntToTimestamp(0) : $default;
|
|
|
|
}
|
2019-02-01 15:55:13 +01:00
|
|
|
return self::UIntToTimestamp(hexdec($hex));
|
2019-02-11 17:27:26 +01:00
|
|
|
} elseif ($type == 'Bool') {
|
|
|
|
return ($hex == "01") ? true : false;
|
2019-01-31 18:37:06 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw new \InvalidArgumentException("Datatype not known");
|
2019-01-18 22:28:03 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-02-01 15:55:34 +01:00
|
|
|
return false;
|
2019-01-18 14:17:43 +01:00
|
|
|
}
|
2019-01-18 18:11:53 +01:00
|
|
|
|
2019-02-01 15:55:34 +01:00
|
|
|
/**
|
2019-02-11 17:27:26 +01:00
|
|
|
* @param int $date
|
|
|
|
* @return bool|DateTime
|
2019-02-01 15:55:34 +01:00
|
|
|
*/
|
2019-02-11 17:27:26 +01:00
|
|
|
private static function UIntToTimestamp(int $date)
|
2019-01-18 18:11:53 +01:00
|
|
|
{
|
|
|
|
$curyear = date('Y');
|
|
|
|
$yearoffset = $curyear - self::PT_PASTOFFSET;
|
|
|
|
|
|
|
|
// Day
|
|
|
|
$day = $date % self::PT_DAYFACTOR;
|
|
|
|
if ($day < 1) {
|
|
|
|
$day = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Month
|
|
|
|
$month = ($date / self::PT_DAYFACTOR) % self::PT_MONTHFACTOR;
|
|
|
|
if ($month < 1) {
|
|
|
|
$month = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Year
|
|
|
|
$year = ($date / self::PT_YEARFACTOR) + $yearoffset;
|
|
|
|
|
|
|
|
$concat = $month . '/' . $day . '/' . intval($year);
|
|
|
|
$format = 'm/d/Y';
|
|
|
|
|
|
|
|
|
2019-02-11 17:27:26 +01:00
|
|
|
return DateTime::createFromFormat($format, $concat);
|
2019-01-18 18:11:53 +01:00
|
|
|
}
|
2019-01-10 20:05:23 +01:00
|
|
|
}
|