|
@@ -11,17 +11,27 @@ pub struct Square {
|
|
|
pub y: u8,
|
|
|
}
|
|
|
|
|
|
-impl Square {
|
|
|
- fn is_white(&self) -> bool {
|
|
|
- (self.x + self.y + 1) % 2 == 0
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
|
|
|
-struct PlayerTurn(PieceColor);
|
|
|
+pub struct PlayerTurn {
|
|
|
+ pub color: PieceColor,
|
|
|
+ turncount: u8
|
|
|
+}
|
|
|
impl Default for PlayerTurn {
|
|
|
fn default() -> Self {
|
|
|
- Self(PieceColor::White)
|
|
|
+ Self {
|
|
|
+ color: PieceColor::White,
|
|
|
+ turncount: 1
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+impl PlayerTurn {
|
|
|
+ fn change(&mut self) {
|
|
|
+ self.color = match self.color {
|
|
|
+ PieceColor::White => PieceColor::Black,
|
|
|
+ PieceColor::Black => PieceColor::White,
|
|
|
+ };
|
|
|
+ self.turncount += 1;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -135,7 +145,7 @@ fn select_square(
|
|
|
if other_piece.piece_type == PieceType::King {
|
|
|
println!(
|
|
|
"{} won! Thanks for playing!",
|
|
|
- match turn.0 {
|
|
|
+ match turn.color {
|
|
|
PieceColor::White => "White",
|
|
|
PieceColor::Black => "Black",
|
|
|
}
|
|
@@ -155,10 +165,7 @@ fn select_square(
|
|
|
piece.x = square.x;
|
|
|
piece.y = square.y;
|
|
|
|
|
|
- turn.0 = match turn.0 {
|
|
|
- PieceColor::White => PieceColor::Black,
|
|
|
- PieceColor::Black => PieceColor::White,
|
|
|
- }
|
|
|
+ turn.change();
|
|
|
}
|
|
|
}
|
|
|
selected_square.entity = None;
|
|
@@ -168,7 +175,7 @@ fn select_square(
|
|
|
for (piece_entity, piece, _) in pieces_query.iter_mut() {
|
|
|
if piece.x == square.x
|
|
|
&& piece.y == square.y
|
|
|
- && piece.color == turn.0
|
|
|
+ && piece.color == turn.color
|
|
|
{
|
|
|
selected_piece.entity = Some(piece_entity);
|
|
|
break;
|