2 Copyright (c) 2006 Paolo Capriotti <p.capriotti@sns.it>
3 (c) 2006 Maurizio Monge <maurizio.monge@kdemail.net>
5 This program 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 2 of the License, or
8 (at your option) any later version.
17 template <typename Variant
>
19 static typename
Variant::Move
createNormalMove(const NormalUserMove
& move
) {
20 return typename
Variant::Move(move
.from
, move
.to
,
21 static_cast<typename
Variant::Piece::PromotionType
>(move
.promotionType
));
24 static typename
Variant::Move
createDropMove(const DropUserMove
& move
) {
25 return Variant::Move::createDropMove(move
.m_pool
, move
.m_piece_index
, move
.m_to
);
28 static NormalUserMove
toNormal(const typename
Variant::Move
& move
) {
29 return NormalUserMove(move
.from
, move
.to
);
33 #endif // MOVEFACTORY_H