home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / gnu / gchsrc31.lzh / GNUCHESS.H < prev    next >
C/C++ Source or Header  |  1992-04-27  |  7KB  |  253 lines

  1. /*
  2.   gnuchess.h - Header file for GNU CHESS
  3.  
  4.   Revision: 1990-04-18
  5.  
  6.   Copyright (C) 1986, 1987, 1988, 1989, 1990 Free Software Foundation, Inc.
  7.  
  8.   This file is part of CHESS.
  9.  
  10.   CHESS is distributed in the hope that it will be useful, but WITHOUT ANY
  11.   WARRANTY.  No author or distributor accepts responsibility to anyone for
  12.   the consequences of using it or for whether it serves any particular
  13.   purpose or works at all, unless he says so in writing.  Refer to the CHESS
  14.   General Public License for full details.
  15.  
  16.   Everyone is granted permission to copy, modify and redistribute CHESS, but
  17.   only under the conditions described in the CHESS General Public License.
  18.   A copy of this license is supposed to have been given to you along with
  19.   CHESS so you can know your rights and responsibilities.  It should be in a
  20.   file named COPYING.  Among other things, the copyright notice and this
  21.   notice must be preserved on all copies.
  22. */
  23.  
  24. #include <stdio.h>
  25. #define SEEK_SET 0
  26. #define SEEK_END 2
  27.  
  28. #if !defined(__STDC__) || !defined(MSDOS)
  29. # ifndef __GNUC__  /* ie. Heh?  GNUC has const */
  30. #  define const
  31. # endif
  32. #endif
  33.  
  34. #ifndef __GNUC__
  35. #define inline
  36. #endif
  37.  
  38. /*
  39.   ttblsz must be a power of 2.
  40.   Setting ttblsz 0 removes the transposition tables.
  41. */
  42. #ifdef MSDOS
  43. # define ttblsz (1 << 11)
  44. #else
  45. # define huge /* ie. "huge" is an MSDOS thing */
  46. # ifdef atarist
  47. #  define ttblsz (1 << 14)
  48. # else
  49. #  define ttblsz (1 << 16)
  50. # endif
  51. #endif /* MSODS */
  52.  
  53. #define maxdepth 30
  54. #define white 0
  55. #define black 1
  56. #define neutral 2
  57. #define no_piece 0
  58. #define pawn 1
  59. #define knight 2
  60. #define bishop 3
  61. #define rook 4
  62. #define queen 5
  63. #define king 6
  64. #define bpawn 7
  65. #define pmask 0x0007
  66. #define promote 0x0008
  67. #define cstlmask 0x0010
  68. #define epmask 0x0020
  69. #define exact 0x0040
  70. #define pwnthrt 0x0080
  71. #define check 0x0100
  72. #define capture 0x0200
  73. #define draw 0x0400
  74. #define maxdepth 30
  75. #define false 0
  76. #define true 1
  77. /* #define absv(x) ((x) < 0 ? -(x) : (x)) */
  78.  
  79. struct leaf
  80. {
  81.   short f, t, score, reply;
  82.   unsigned short flags;
  83. };
  84. struct GameRec
  85. {
  86.   unsigned short gmove;
  87.   short score, depth, time, piece, color;
  88.   long nodes;
  89. };
  90. struct TimeControlRec
  91. {
  92.   short moves[2];
  93.   long clock[2];
  94. };
  95. struct BookEntry
  96. {
  97.   struct BookEntry *next;
  98.   unsigned short *mv;
  99. };
  100.  
  101. struct flags
  102. {
  103.   short mate;        /* the game is over */
  104.   short post;        /* show principle variation */
  105.   short quit;        /* quit/exit gnuchess */
  106.   short reverse;    /* reverse board display */
  107.   short bothsides;    /* computer plays both sides */
  108.   short hash;        /* enable/disable transposition table */
  109.   short force;        /* enter moves */
  110.   short easy;        /* disable thinking on opponents time */
  111.   short beep;        /* enable/disable beep */
  112.   short timeout;    /* time to make a move */
  113.   short rcptr;        /* enable/disable recapture heuristics */
  114. };
  115.  
  116. extern struct leaf Tree[2000], *root;
  117. extern short TrPnt[maxdepth];
  118. extern short board[64], color[64];
  119. extern short PieceList[2][16], PawnCnt[2][8];
  120. extern short castld[2], Mvboard[64];
  121. extern short svalue[64];
  122. extern struct flags flag;
  123. extern short opponent, computer, Awindow, Bwindow, INCscore;
  124. extern short dither, player;
  125. extern short xwndw, epsquare, contempt;
  126. extern long ResponseTime, ExtraTime, Level, et, et0, time0, ft;
  127. extern long NodeCnt, ETnodes, EvalNodes, HashCnt, HashCol;
  128. extern struct GameRec GameList[512];
  129. extern short GameCnt, Game50;
  130. extern short Sdepth, MaxSearchDepth;
  131. extern struct BookEntry *Book;
  132. extern struct TimeControlRec TimeControl;
  133. extern short TCflag, TCmoves, TCminutes, OperatorTime;
  134. extern const short otherside[3];
  135. extern const short Stboard[64];
  136. extern const short Stcolor[64];
  137. extern unsigned short hint, PrVar[maxdepth];
  138.  
  139. #define distance(a,b) distdata[a][b]
  140. #define row(a) ((a) >> 3)
  141. #define column(a) ((a) & 7)
  142. #define locn(a,b) (((a) << 3) | b)
  143. extern short distdata[64][64];
  144.  
  145. /* gnuchess.c external functions */
  146. extern void NewGame (void);
  147. /* book.c */
  148. extern int parse (FILE * fd, short unsigned int *mv, short int side);
  149. extern void GetOpenings (void);
  150. extern void OpeningBook (unsigned short int *hint);
  151. /* search.c */
  152. extern void repetition (short int *cnt);
  153. extern void SelectMove (short int side, short int iop);
  154. extern int search (short int side,
  155.            short int ply,
  156.            short int depth,
  157.            short int alpha,
  158.            short int beta,
  159.            short unsigned int *bstline,
  160.            short int *rpt);
  161. /* tran.c */
  162. #if ttblsz
  163. extern int ProbeTTable (short int side,
  164.             short int depth,
  165.             short int *alpha,
  166.             short int *beta,
  167.             short int *score);
  168. extern void PutInTTable (short int side,
  169.              short int score,
  170.              short int depth,
  171.              short int alpha,
  172.              short int beta,
  173.              short unsigned int mv);
  174. extern void ZeroTTable (void);
  175. extern void ZeroRPT (void);
  176. #ifdef HASHFILE
  177. extern int ProbeFTable (short int side,
  178.             short int depth,
  179.             short int *alpha,
  180.             short int *beta,
  181.             short int *score);
  182. extern void PutInFTable (short int side,
  183.              short int score,
  184.              short int depth,
  185.              short int alpha,
  186.              short int beta,
  187.              short unsigned int f,
  188.              short unsigned int t);
  189. #endif /* HASHFILE */
  190. #endif /* ttblsz */
  191. /* move.c */
  192. extern void Initialize_moves (void);
  193. extern void MoveList (short int side, short int ply);
  194. extern void CaptureList (short int side, short int ply);
  195. extern int castle (short int side, short int kf, short int kt, short int iop);
  196. extern void MakeMove (short int side,
  197.               struct leaf * node,
  198.               short int *tempb,
  199.               short int *tempc,
  200.               short int *tempsf,
  201.               short int *tempst,
  202.               short int *INCscore);
  203. extern void UnmakeMove (short int side,
  204.             struct leaf * node,
  205.             short int *tempb,
  206.             short int *tempc,
  207.             short int *tempsf,
  208.             short int *tempst);
  209. extern void InitializeStats (void);
  210. /* eval.c */
  211. extern int SqAtakd (short int sq, short int side);
  212. extern int evaluate (short int side,
  213.              short int ply,
  214.              short int alpha,
  215.              short int beta,
  216.              short int INCscore,
  217.              short int *slk,
  218.              short int *InChk);
  219. extern void ScoreLoneKing (short int side, short int *score);
  220. extern void ScorePosition (short int side, short int *score);
  221. extern void ExaminePosition (void);
  222. extern void UpdateWeights (void);
  223.  
  224. /* *dsp.c external functions */
  225. extern void Initialize (void);
  226. extern void InputCommand (void);
  227. extern void ExitChess (void);
  228. extern void ClrScreen (void);
  229. extern void SetTimeControl (void);
  230. extern void SelectLevel (void);
  231. extern void UpdateDisplay (short int f,
  232.                short int t,
  233.                short int flag,
  234.                short int iscastle);
  235. extern void ElapsedTime (short int iop);
  236. extern void ShowSidetomove (void);
  237. extern void SearchStartStuff (short int side);
  238. extern void ShowDepth (char ch);
  239. extern void ShowResults (short int score,
  240.              short unsigned int *bstline,
  241.              char ch);
  242. extern void algbr (short int f, short int t, short int flag);
  243. extern void OutputMove (void);
  244. extern void ShowCurrentMove (short int pnt, short int f, short int t);
  245. extern void ListGame (void);
  246. extern void ShowMessage (char *s);
  247. extern void ClrScreen (void);
  248. extern void gotoXY (short int x, short int y);
  249. extern void ClrEoln (void);
  250. extern void DrawPiece (short int sq);
  251. extern void UpdateClocks (void);
  252.  
  253.