868edda9d7
Move naive move generation into sub-module
2024-04-01 22:20:39 +01:00
23d01d4d3f
Make all modules at least 'pub(crate)'
2024-04-01 22:20:39 +01:00
bd9238d686
Add 'Color::iter'
2024-04-01 22:20:39 +01:00
066d442823
Add magic bitboard generation
2024-04-01 22:20:39 +01:00
5ef3737b98
Make 'Magic' fields 'pub(crate)'
2024-04-01 22:20:39 +01:00
1951db0720
Add magic mask generation
2024-04-01 22:20:39 +01:00
2601abdc76
Add 'Magic' type
2024-04-01 22:20:39 +01:00
d3a84750f5
Add naive pawn move generation
2024-04-01 22:20:39 +01:00
bf23d0eaae
Add naive rook move generation
2024-04-01 22:20:39 +01:00
8ff47231a0
Add naive bishop move generation
2024-04-01 22:20:39 +01:00
f0847a4e49
Add naive knight move generation
2024-04-01 22:20:39 +01:00
d91f63b5ed
Add naive king move generation
2024-04-01 22:20:39 +01:00
bed7ec3be2
Remove spurious links in 'Square' documentation
2024-04-01 22:20:39 +01:00
4491e5be00
Remove spurious links in 'Bitboard' documentation
2024-04-01 22:20:39 +01:00
8d03242e83
Add 'Bitboard::iter_powerset'
2024-04-01 22:20:39 +01:00
a3a9f64213
Add 'Piece' enum
2024-04-01 22:20:39 +01:00
d919b956ed
Add 'NUM_VARIANTS' constant to all 'board' enums
2024-04-01 22:20:39 +01:00
407f85c19b
Consistently use 'Self' type in 'impl' blocks
2024-04-01 22:20:39 +01:00
b68dd132e8
Fix typo in 'board::Color' documentation
2024-04-01 22:20:39 +01:00
2c1142324c
Add 'Color::slide_board_with_blockers'
2024-04-01 22:20:39 +01:00
0315e2fb51
Improve 'board::BitboardIterator'
...
* Accurate 'size_hint'.
* Exact size.
* Fused iterator (keeps returning 'None' after returning 'None' once).
2024-04-01 22:20:39 +01:00
f3a83065da
Add 'Color::{forward,backward}_direction'
2024-04-01 22:20:39 +01:00
0812d916ff
Add 'CastleRights::unmoved_rooks'
2024-04-01 22:20:39 +01:00
e84ec552fe
Add 'CastleRights::without_{king,queen}_side'
2024-04-01 22:20:39 +01:00
a21841c0ad
Add 'CastleRights::has_{king,queen}_side'
2024-04-01 22:20:39 +01:00
88e74d5fff
Add 'CastleRights' enum
2024-04-01 22:20:39 +01:00
f351f056a9
Add 'Color' enum
2024-04-01 22:20:39 +01:00
042f5dbc4d
Rename 'board::direction{s,}'
2024-04-01 22:20:39 +01:00
585c127381
Statically assert zero-cost invariants
...
Since some or all of those invariants will come in handy to ensure we
use as little memory as possible, to maximize the speed of the move
generation later on.
2024-04-01 22:20:39 +01:00
d51d72377e
Add 'static_assert' macro
2024-04-01 22:20:39 +01:00
643b688384
Add 'Bitboard::{LIGHT,DARK}_SQUARES
2024-04-01 22:20:39 +01:00
659e3f1c9a
Make use of 'Bitboard::is_empty'
2024-04-01 22:20:39 +01:00
f66b0276d8
Add 'Bitboard::is_empty'
2024-04-01 22:20:39 +01:00
9ef600c1bb
Add 'Direction::slide_{square,board}'
2024-04-01 22:20:39 +01:00
dc974ec0e9
Add 'Bitboard::{ANTI_,}DIAGONAL'
2024-04-01 22:20:39 +01:00
251c10cbc7
Add 'Direction::move_square'
2024-04-01 22:20:39 +01:00
1ab024fce8
Add 'Direction::iter_{rook,bishop,royalty,knight}'
2024-04-01 22:20:39 +01:00
924689ec02
Add 'Direction::move_board'
...
Encapsulates the way to move a piece on a board, avoiding the need to
mask and shift by hand.
2024-04-01 22:20:39 +01:00
b840bfc570
Add 'board::Direction' enum
2024-04-01 22:20:39 +01:00
c177d13b75
Use 'Square::index' in 'Square::{file,rank}_index'
2024-04-01 22:20:39 +01:00
281c79556a
Add 'Square::index'
2024-04-01 22:20:39 +01:00
8261b0c06b
Add 'Bitboard::count'
2024-04-01 22:20:39 +01:00
7a7e7f3665
Add 'Rank::{up,down}'
2024-04-01 22:20:39 +01:00
2b4797ec47
Add 'File::{left,right}'
2024-04-01 22:20:39 +01:00
6501466d3e
Add 'Square' constructor from 'File', 'Rank'
2024-04-01 22:20:39 +01:00
c3c3684150
Don't return 'Bitboard' from 'Square::{file,rank}'
2024-04-01 22:20:39 +01:00
ef15da41ea
Add 'File' enum
2024-04-01 22:20:39 +01:00
54d7f0d69f
Add 'Rank' enum
2024-04-01 22:20:39 +01:00
97ca224608
Add GDB pretty-printers
2024-04-01 22:20:39 +01:00
47b1854669
Introduce 'Bitboard::ALL'
2024-04-01 22:20:39 +01:00