1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
/*
* boardpos.h
*
* by Jrn Thyssen <jth@gnubg.org>, 2003
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of version 3 or later of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* $Id: boardpos.h,v 1.7 2008/03/08 13:42:42 Superfly_Jon Exp $
*/
#ifndef _BOARDPOS_H_
#define _BOARDPOS_H_
#define POINT_UNUSED0 28 /* the top unused bearoff tray */
#define POINT_UNUSED1 29 /* the bottom unused bearoff tray */
#define POINT_DICE 30
#define POINT_CUBE 31
#define POINT_RIGHT 32
#define POINT_LEFT 33
#define POINT_RESIGN 34
extern int positions[ 2 ][ 30 ][ 3 ];
extern void
ChequerPosition( const int clockwise,
const int point, const int chequer,
int *px, int *py );
extern void
PointArea( const int fClockwise, const int nSize,
const int n,
int *px, int *py, int *pcx, int *pcy );
extern void
CubePosition( const int crawford_game, const int cube_use,
const int doubled, const int cube_owner, int fClockwise,
int *px, int *py, int *porient );
extern void ArrowPosition( const int clockwise, int turn, const int nSize, int *px, int *py );
extern void
ResignPosition( const int resigned, int *px, int *py, int *porient );
#endif
|