]> git.sesse.net Git - stockfish/blob - src/pawns.h
Merge branch 'simplify_eval' into bishop_pin_clop
[stockfish] / src / pawns.h
1 /*
2   Stockfish, a UCI chess playing engine derived from Glaurung 2.1
3   Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
4   Copyright (C) 2008-2012 Marco Costalba, Joona Kiiski, Tord Romstad
5
6   Stockfish is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   Stockfish is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #if !defined(PAWNS_H_INCLUDED)
21 #define PAWNS_H_INCLUDED
22
23 #include "misc.h"
24 #include "position.h"
25 #include "types.h"
26
27 namespace Pawns {
28
29 /// Pawns::Entry contains various information about a pawn structure. Currently,
30 /// it only includes a middle game and end game pawn structure evaluation, and a
31 /// bitboard of passed pawns. We may want to add further information in the future.
32 /// A lookup to the pawn hash table (performed by calling the probe function)
33 /// returns a pointer to an Entry object.
34
35 struct Entry {
36
37   Score pawns_value() const { return value; }
38   Bitboard pawn_attacks(Color c) const { return pawnAttacks[c]; }
39   Bitboard passed_pawns(Color c) const { return passedPawns[c]; }
40   int file_is_half_open(Color c, File f) const { return halfOpenFiles[c] & (1 << int(f)); }
41   int has_open_file_to_left(Color c, File f) const { return halfOpenFiles[c] & ((1 << int(f)) - 1); }
42   int has_open_file_to_right(Color c, File f) const { return halfOpenFiles[c] & ~((1 << int(f+1)) - 1); }
43
44   template<Color Us>
45   Score king_safety(const Position& pos, Square ksq)  {
46
47     return kingSquares[Us] == ksq && castleRights[Us] == pos.can_castle(Us)
48          ? kingSafety[Us] : update_safety<Us>(pos, ksq);
49   }
50
51   template<Color Us>
52   Score update_safety(const Position& pos, Square ksq);
53
54   template<Color Us>
55   Value shelter_storm(const Position& pos, Square ksq);
56
57   Key key;
58   Bitboard passedPawns[COLOR_NB];
59   Bitboard pawnAttacks[COLOR_NB];
60   Square kingSquares[COLOR_NB];
61   int minKPdistance[COLOR_NB];
62   int castleRights[COLOR_NB];
63   Score value;
64   int halfOpenFiles[COLOR_NB];
65   Score kingSafety[COLOR_NB];
66 };
67
68 typedef HashTable<Entry, 16384> Table;
69
70 Entry* probe(const Position& pos, Table& entries);
71
72 }
73
74 #endif // !defined(PAWNS_H_INCLUDED)