Changed my email in the copyright statements.
[tagua/yd.git] / src / movefactory.h
blob036cc08c1d3ed21034accb8115f53b25a4c3552b
1 /*
2 Copyright (c) 2006 Paolo Capriotti <p.capriotti@gmail.com>
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.
9 */
11 #ifndef MOVEFACTORY_H
12 #define MOVEFACTORY_H
14 #include "tagua.h"
15 #include "usermove.h"
17 template <typename Variant>
18 struct MoveFactory {
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