secondbest
secondbest
is a Rust library for implementing the "Second Best" strategy game. This library
provides a complete implementation of the game rules, board representation, and game state management.
Game Overview
"Second Best" is a strategic board game played on 8 positions arranged in a circle. Players take turns placing pieces of their color (Black or White) or moving pieces already on the board. The game features a unique mechanic where a player can declare "second best" after their opponent's move, forcing the opponent to choose a different action.
Game Setup
- The game starts with an empty board of 8 positions arranged in a circle (N, NE, E, SE, S, SW, W, NW)
- Each position can hold up to 3 stacked pieces
- Black plays first, then players alternate turns
- On each turn, a player must either place a new piece or move an existing one of their color
"Second Best" Mechanic
The unique feature of this game is the "second best" declaration:
- After an opponent makes their move (their first action in the turn), a player can declare "second best"
- This forces the opponent to choose a different action (their "second best" choice)
- A player can only declare "second best" after the opponent's first action in a turn, not after their second action
- The "second best" declaration can only be used once per turn
Winning Conditions
A player wins when they achieve one of the following:
- Vertical Line-up: Stack 3 of their pieces in a single position
- Horizontal Line-up: Have their pieces at the top of 4 consecutive positions
- Priority Win: If both players achieve a winning condition simultaneously, the player who made the last move wins
- No Moves: If a player has no legal moves available, they lose
Note: Winning conditions are only checked after all "second best" declarations have been used.
Architecture
The library is organized into several modules:
-
board
: Core board representation and operationsBitBoard
: Low-level bit manipulation for efficient board state representationBoard
: High-level API for board manipulationPosition
: Enumeration of the 8 board positions (N, NE, E, SE, S, SW, W, NW)Color
: Player colors (B for Black, W for White)Action
: Game actions (Put or Move)
-
game
: Game state managementGame
: Main game state controllerGameResult
: Game outcome representation
-
error
: Error handling- Various error types for different operations
Basic Usage
use *;
// Create a new game
let mut game = new;
// Apply actions (place pieces and move them)
game.apply_action.unwrap;
game.apply_action.unwrap;
// Check game state
if game.can_declare_second_best
// Check for a winner
match game.result
Advanced Usage
For lower-level control, you can work directly with the Board
API:
use *;
let mut board = default;
// Place pieces
board.put.unwrap;
// Check board state
let pieces_at_north = board.get_pieces_at;
let black_piece_count = board.count_pieces;
// Check for winning conditions
if board.lines_up
Error Handling
The library provides detailed error types for various operations:
use *;
use GameError;
let mut game = new;
let result = game.apply_action;
match result
License: MIT OR Apache-2.0