Merge branch 'develop'

This commit is contained in:
Jeroen De Meerleer 2022-11-22 16:13:15 +01:00
commit 3108c28725
Signed by: JeroenED
GPG Key ID: 28CCCB8F62BFADD6
1 changed files with 11 additions and 7 deletions

View File

@ -242,7 +242,6 @@ class Swar5 implements ReaderInterface
$this->Tournament->FideHomol = $this->readData('Int', $swshandle);
$location = ftell($swshandle);
if (version_compare($this->Release, '5.24', ">=")) {
$this->Tournament->FideId = $this->readData('Int', $swshandle);
} else {
@ -260,15 +259,19 @@ class Swar5 implements ReaderInterface
$this->Tournament->FideEmail = $this->readData('String', $swshandle);
$this->Tournament->FideRemarques = $this->readData('String', $swshandle);
$applycustompoints = false;
switch ($this->readData('Int', $swshandle)) {
case 0:
case 1:
case 2:
case 3:
case 4:
default:
$system = TournamentSystem::SWISS;
break;
case 4:
$applycustompoints = true;
$system = TournamentSystem::SWISS;
break;
case 5:
case 6:
case 7:
@ -286,11 +289,12 @@ class Swar5 implements ReaderInterface
$this->Tournament->SW_AmerPresence = $this->readData('Int', $swshandle);
$this->Tournament->Plusieurs = $this->readData('Int', $swshandle);
$this->Tournament->FirstTable = $this->readData('Int', $swshandle);
$this->Tournament->CustomPoints['win'] = $this->readData('Int', $swshandle) / 4;
$this->Tournament->CustomPoints['draw'] = $this->readData('Int', $swshandle) / 4;
$this->Tournament->CustomPoints['loss'] = $this->readData('Int', $swshandle) / 4;
$this->Tournament->CustomPoints['bye'] = $this->readData('Int', $swshandle) / 4;
$this->Tournament->CustomPoints['absent'] = $this->readData('Int', $swshandle) / 4;
$custompoints['win'] = $this->readData('Int', $swshandle) / 4;
$custompoints['draw'] = $this->readData('Int', $swshandle) / 4;
$custompoints['loss'] = $this->readData('Int', $swshandle) / 4;
$custompoints['bye'] = $this->readData('Int', $swshandle) / 4;
$custompoints['absent'] = $this->readData('Int', $swshandle) / 4;
if($applycustompoints) $this->Tournament->CustomPoints = $custompoints;
$this->Tournament->EloUsed = $this->readData('Int', $swshandle);
$this->Tournament->TournoiStd = $this->readData('Int', $swshandle);
$this->Tournament->TbPersonel = $this->readData('Int', $swshandle);