X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=gnushogi%2Fattacks.c;h=7d2237d81af82aceb5d3773ff9764a63932e2187;hb=HEAD;hp=8e10305377501c7a11c9d7342e0cd91b52326e44;hpb=82b026e6376b640a4d3409a461dd6bd83708e33e;p=gnushogi.git diff --git a/gnushogi/attacks.c b/gnushogi/attacks.c index 8e10305..7d2237d 100644 --- a/gnushogi/attacks.c +++ b/gnushogi/attacks.c @@ -2,11 +2,15 @@ * FILE: attacks.c * * ---------------------------------------------------------------------- - * - * Copyright (c) 2012 Free Software Foundation + * Copyright (c) 1993, 1994, 1995 Matthias Mutz + * Copyright (c) 1999 Michael Vanier and the Free Software Foundation + * Copyright (c) 2008, 2013, 2014 Yann Dirson and the Free Software Foundation * * GNU SHOGI is based on GNU CHESS * + * Copyright (c) 1988, 1989, 1990 John Stanback + * Copyright (c) 1992 Free Software Foundation + * * This file is part of GNU SHOGI. * * GNU Shogi is free software; you can redistribute it and/or modify it @@ -115,6 +119,7 @@ SqAttacked(short square, short side, short *blockable) } while (u != square); +#ifndef MINISHOGI /* try a knight capture (using xside's knight moves) */ ptyp = ptype[side ^ 1][knight]; @@ -138,6 +143,7 @@ SqAttacked(short square, short side, short *blockable) #endif } while (u != square); +#endif /* MINISHOGI */ *blockable = true; @@ -213,6 +219,7 @@ SqAttacked(short square, short side, short *blockable) } while (u != square); +#ifndef MINISHOGI /* try a lance capture (using xside's lance moves) */ ptyp = ptype[side ^ 1][lance]; @@ -245,6 +252,7 @@ SqAttacked(short square, short side, short *blockable) } } while (u != square); +#endif /* MINISHOGI */ return false; }