1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
use crate::square::*;
pub type Bitboard = u64;
pub trait BitboardTrait {
fn pretty_print_string(&self) -> String;
fn pop(&mut self) -> (Square, bool);
}
impl BitboardTrait for Bitboard {
fn pretty_print_string(&self) -> String {
let mut bb = *self;
let mut buff = "".to_string();
let mut bits = 0;
loop {
if bits % 8 == 0 {
buff += &format!("{}", NUM_FILES - bits / 8).to_string();
}
if bb & (1 << 63) != 0 {
buff += "1"
} else {
buff += "."
}
if bits % 8 == 7 {
buff += "*\n"
}
bb = bb << 1;
bits = bits + 1;
if bits == 64 {
break;
}
}
format! {"bitboard {:#016x}\n**********\n{}*abcdefgh*\n", &self, buff}
}
fn pop(&mut self) -> (Square, bool) {
if *self == 0 {
return (0, false);
}
let tzs = self.trailing_zeros() as usize;
let sq = rank_file(tzs / NUM_FILES, LAST_FILE - (tzs % NUM_FILES));
*self &= !(1 << tzs);
return (sq, true);
}
}