Reading tiebreak and exclusion

This commit is contained in:
Jeroen De Meerleer 2019-08-28 20:49:01 +02:00
parent f925e08c29
commit 455d737ed7
Signed by: JeroenED
GPG Key ID: 28CCCB8F62BFADD6
1 changed files with 12 additions and 0 deletions

View File

@ -117,6 +117,18 @@ class Swar4 implements ReaderInterface
for ($i = 0; $i < $this->getTournament()->getNoOfRounds(); $i++) {
$this->getTournament()->setBinaryData('Round_' . $i . '_date', $this->readData('Date', $swshandle));
}
$this->getTournament()->setBinaryData('[TIE_BREAK]', $this->readData('String', $swshandle));
for ($i = 0; $i < 5; $i++) {
$this->getTournament()->setBinaryData('Tiebreak_' . $i, $this->readData('String', $swshandle));
}
$this->getTournament()->setBinaryData('[EXCLUSION]', $this->readData('String', $swshandle));
$this->getTournament()->setBinaryData('ExclusionType', $this->readData('Int', $swshandle));
$this->getTournament()->setBinaryData('ExclusionValue', $this->readData('String', $swshandle));
fclose($swshandle);
return $this;