mirror of
https://github.com/sigmasternchen/php-chess
synced 2025-03-15 16:08:54 +00:00
27 lines
No EOL
642 B
PHP
27 lines
No EOL
642 B
PHP
<?php
|
|
|
|
namespace Game;
|
|
|
|
class Position {
|
|
public int $file;
|
|
public int $rank;
|
|
|
|
public function __construct($file, $rank) {
|
|
$this->rank = $rank;
|
|
$this->file = $file;
|
|
}
|
|
|
|
public function isValid(): bool {
|
|
return
|
|
$this->file >= 0 && $this->file < 8 &&
|
|
$this->rank >= 0 && $this->rank < 8;
|
|
}
|
|
|
|
public function __toString(): string {
|
|
return ["a", "b", "c", "d", "e", "f", "g", "h"][$this->file] . ($this->rank + 1);
|
|
}
|
|
|
|
public function equals(Position $position): bool {
|
|
return $this->file == $position->file && $this->rank == $position->rank;
|
|
}
|
|
} |