]> git.sesse.net Git - stockfish/blob - src/nnue/features/half_kp.cpp
29322f040893fc9f40161b64f3a6527961b078ca
[stockfish] / src / nnue / features / half_kp.cpp
1 /*
2   Stockfish, a UCI chess playing engine derived from Glaurung 2.1
3   Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
4
5   Stockfish is free software: you can redistribute it and/or modify
6   it under the terms of the GNU General Public License as published by
7   the Free Software Foundation, either version 3 of the License, or
8   (at your option) any later version.
9
10   Stockfish is distributed in the hope that it will be useful,
11   but WITHOUT ANY WARRANTY; without even the implied warranty of
12   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   GNU General Public License for more details.
14
15   You should have received a copy of the GNU General Public License
16   along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 //Definition of input features HalfKP of NNUE evaluation function
20
21 #include "half_kp.h"
22 #include "index_list.h"
23
24 namespace Eval::NNUE::Features {
25
26   // Orient a square according to perspective (rotates by 180 for black)
27   inline Square orient(Color perspective, Square s) {
28     return Square(int(s) ^ (bool(perspective) * 63));
29   }
30
31   // Index of a feature for a given king position and another piece on some square
32   inline IndexType make_index(Color perspective, Square s, Piece pc, Square ksq) {
33     return IndexType(orient(perspective, s) + kpp_board_index[perspective][pc] + PS_END * ksq);
34   }
35
36   // Get a list of indices for active features
37   template <Side AssociatedKing>
38   void HalfKP<AssociatedKing>::AppendActiveIndices(
39       const Position& pos, Color perspective, IndexList* active) {
40
41     Square ksq = orient(perspective, pos.square<KING>(perspective));
42     Bitboard bb = pos.pieces() & ~pos.pieces(KING);
43     while (bb) {
44       Square s = pop_lsb(&bb);
45       active->push_back(make_index(perspective, s, pos.piece_on(s), ksq));
46     }
47   }
48
49   // Get a list of indices for recently changed features
50   template <Side AssociatedKing>
51   void HalfKP<AssociatedKing>::AppendChangedIndices(
52       const Position& pos, const DirtyPiece& dp, Color perspective,
53       IndexList* removed, IndexList* added) {
54
55     Square ksq = orient(perspective, pos.square<KING>(perspective));
56     for (int i = 0; i < dp.dirty_num; ++i) {
57       Piece pc = dp.piece[i];
58       if (type_of(pc) == KING) continue;
59       if (dp.from[i] != SQ_NONE)
60         removed->push_back(make_index(perspective, dp.from[i], pc, ksq));
61       if (dp.to[i] != SQ_NONE)
62         added->push_back(make_index(perspective, dp.to[i], pc, ksq));
63     }
64   }
65
66   template class HalfKP<Side::kFriend>;
67
68 }  // namespace Eval::NNUE::Features