chore(web_client): refact

This commit is contained in:
Henri Bourcereau 2026-04-12 21:03:43 +02:00
parent d779f7415a
commit 7e8d0a18c1
2 changed files with 8 additions and 7 deletions

View file

@ -15,7 +15,7 @@ pub fn bot_decide(game: &GameState) -> Option<PlayerAction> {
}
match game.turn_stage {
TurnStage::RollDice => Some(PlayerAction::Roll),
TurnStage::HoldOrGoChoice => Some(PlayerAction::Go),
TurnStage::HoldOrGoChoice => Some(PlayerAction::Mark),
TurnStage::Move => {
let rules = MoveRules::new(&Color::Black, &game.board, game.dice);
let sequences = rules.get_possible_moves_sequences(true, vec![]);

View file

@ -955,15 +955,15 @@ mod tests {
);
state.board.set_positions(
&Color::White,
&Color::Black,
[
6, 0, 0, 0, 0, 0, 2, 2, 1, 2, 0, 2, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
10, 0, 0, 0, -1, 0, 2, 0, 0, 0, 1, 2, 0, -1, -1, 0, 2, 0, 0, 0, 0, 0, 0, -10,
],
);
state.dice.values = (3, 3);
state.dice.values = (4, 1);
let moves = (
CheckerMove::new(14, 11).unwrap(),
CheckerMove::new(14, 11).unwrap(),
CheckerMove::new(15, 14).unwrap().mirror(),
CheckerMove::new(14, 10).unwrap().mirror(),
);
assert_eq!(
Err(MoveError::OpponentCanFillQuarter),
@ -1277,6 +1277,7 @@ mod tests {
);
assert!(!state.moves_possible(&moves));
// Chaned moves: can't rest on a field occupied by one opponent's checker
state.board.set_positions(
&Color::White,
[
@ -1288,7 +1289,7 @@ mod tests {
CheckerMove::new(10, 15).unwrap(),
CheckerMove::new(15, 20).unwrap(),
);
assert!(state.moves_possible(&moves));
assert!(!state.moves_possible(&moves));
// black moves
let state = MoveRules::new(&Color::Black, &Board::default(), Dice::default());