Drop more dead code and unused decls.
[gnushogi.git] / gnushogi / gnushogi.h
1 /*
2  * FILE: gnushogi.h
3  *
4  *     Main header file for GNU Shogi.
5  *
6  * ----------------------------------------------------------------------
7  * Copyright (c) 1993, 1994, 1995 Matthias Mutz
8  * Copyright (c) 1999 Michael Vanier and the Free Software Foundation
9  * Copyright (c) 2008, 2013, 2014 Yann Dirson and the Free Software Foundation
10  *
11  * GNU SHOGI is based on GNU CHESS
12  *
13  * Copyright (c) 1988, 1989, 1990 John Stanback
14  * Copyright (c) 1992 Free Software Foundation
15  *
16  * This file is part of GNU SHOGI.
17  *
18  * GNU Shogi is free software; you can redistribute it and/or modify it
19  * under the terms of the GNU General Public License as published by the
20  * Free Software Foundation; either version 3 of the License,
21  * or (at your option) any later version.
22  *
23  * GNU Shogi is distributed in the hope that it will be useful, but WITHOUT
24  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
25  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
26  * for more details.
27  *
28  * You should have received a copy of the GNU General Public License along
29  * with GNU Shogi; see the file COPYING. If not, see
30  * <http://www.gnu.org/licenses/>.
31  * ----------------------------------------------------------------------
32  *
33  */
34
35 /* Hack for anal-retentive ANSI-compliance if desired: */
36 #define inline
37
38 /* FIXME: this file needs to be reorganized in some rational manner. */
39
40 #ifndef _GNUSHOGI_H_
41 #define _GNUSHOGI_H_
42
43 #include "config.h"        /* Portability #defines. */
44 #include "debug.h"
45 #include "opts.h"          /* Various option-setting #defines.  */
46
47 #include <stdarg.h>
48
49 /*
50  * Display options.
51  */
52
53 typedef enum {
54   DISPLAY_RAW,
55 #ifdef HAVE_LIBCURSES
56   DISPLAY_CURSES,
57 #endif
58   DISPLAY_X
59 } display_t;
60 extern display_t display_type;
61
62 #define XSHOGI     (display_type == DISPLAY_X)
63
64
65 /* Miscellaneous globals. */
66
67 extern short hard_time_limit; /* If you exceed time limit, you lose.   */
68 extern short nolist;          /* Don't list game after exit.           */
69
70
71 /*
72  * Options for various compilers/OSs.
73  */
74
75 /*
76  * type small_short must cover -128 .. 127.  In case of trouble,
77  * try commenting out "signed".  If this doesn't help, use short.
78  */
79
80 #define small_short  signed char
81 #define small_ushort unsigned char
82
83
84 typedef small_ushort   UBYTE;
85 typedef short          SHORT;
86 typedef unsigned short USHORT;
87 typedef int            INT;
88 typedef unsigned int   UINT;
89 typedef long           LONG;
90 typedef unsigned long  ULONG;
91
92
93 #if !defined(HAVE_MEMCPY) && !defined(HAVE_BCOPY)
94 #  define array_copy(src, dst, len) \
95    { \
96        long i; \
97        char  *psrc = (char  *)src, *pdst = (char  *)dst; \
98        for (i = len; i; pdst[--i] = psrc[i]); \
99    }
100 #  define array_zero(dst, len) \
101   { \
102       long i; \
103       char  *pdst = (char  *)dst; \
104       for (i = len; i; pdst[--i] = 0); \
105   }
106 #elif !defined(HAVE_MEMCPY)   /* BSD and derivatives */
107 #  define array_copy(src, dst, len) bcopy(src, dst, len)
108 #  define array_zero(dst, len)      bzero(dst, len)
109 #else /* System V and derivatives */
110 #  define array_copy(src, dst, len) memcpy(dst, src, len)
111 #  define array_zero(dst, len)      memset(dst, 0, len)
112 #endif
113
114
115 #ifndef __GNUC__
116 #  define inline
117 #endif
118
119
120 /*
121  * Standard header files.
122  */
123
124 #include <stdio.h>
125 #include <ctype.h>
126 #include <stdlib.h>
127 #include <assert.h>
128 #include <string.h>
129
130 #include <sys/param.h>
131 #include <sys/types.h>
132 #ifdef WIN32
133 #  include <windows.h>
134 #else
135    typedef small_short    BYTE;
136 #  include <sys/times.h>
137 #  include <sys/ioctl.h>
138 #endif
139
140 #if TIME_WITH_SYS_TIME
141 #  include <sys/time.h>
142 #  include <time.h>
143 #else
144 #  if HAVE_SYS_TIME_H
145 #    include <sys/time.h>
146 #  else
147 #    include <time.h>
148 #  endif
149 #endif
150
151 #define RWA_ACC "r+"
152 #define WA_ACC "w+"
153 #ifdef BINBOOK
154 extern char *binbookfile;
155 #endif
156
157 extern char *bookfile;
158 extern short ahead;
159 extern char  *xwin;
160 extern char  *Lang;
161 extern void movealgbr(short m, char *s);
162
163
164 #define SEEK_SET 0
165 #define SEEK_END 2
166
167 #ifdef MINISHOGI
168 #define NO_PIECES       11
169 #define MAX_CAPTURED    19
170 #define NO_PTYPE_PIECES 11
171 #define NO_COLS          5
172 #define NO_ROWS          5
173 #else
174 #define NO_PIECES       15
175 #define MAX_CAPTURED    19
176 #define NO_PTYPE_PIECES 15
177 #define NO_COLS          9
178 #define NO_ROWS          9
179 #endif
180 #define NO_SQUARES      (NO_COLS*NO_ROWS)
181
182 #define ROW_NAME(n) ('a' + NO_ROWS - 1 - n)
183 #define COL_NAME(n) ('1' + NO_COLS - 1 - n)
184
185 #if defined HASHFILE || defined CACHE
186 #  define PTBLBDSIZE (NO_SQUARES + NO_PIECES)
187 #endif
188
189 #include "eval.h"
190
191 #define SCORE_LIMIT 12000
192
193 /* masks into upper 16 bits of attacks array */
194 /* observe order of relative piece values */
195 #define CNT_MASK 0x000000FF
196 #define ctlP  0x00200000
197 #define ctlPp 0x00100000
198 #define ctlL  0x00080000
199 #define ctlN  0x00040000
200 #define ctlLp 0x00020000
201 #define ctlNp 0x00010000
202 #define ctlS  0x00008000
203 #define ctlSp 0x00004000
204 #define ctlG  0x00002000
205 #define ctlB  0x00001000
206 #define ctlBp 0x00000800
207 #define ctlR  0x00000400
208 #define ctlRp 0x00000200
209 #define ctlK  0x00000100
210
211 /* attack functions */
212 #define Pattack(c, u)   (attack[c][u] > ctlP)
213 #define Anyattack(c, u) (attack[c][u] != 0)
214
215 /* hashtable flags */
216 #define truescore   0x0001
217 #define lowerbound  0x0002
218 #define upperbound  0x0004
219 #define kingcastle  0x0008
220 #define queencastle 0x0010
221 #define evalflag    0x0020
222
223 /* King positions */
224 #define BlackKing PieceList[black][0]
225 #define WhiteKing PieceList[white][0]
226 #define OwnKing   PieceList[c1][0]
227 #define EnemyKing PieceList[c2][0]
228
229
230 /* board properties */
231 #ifndef MINISHOGI
232 #define InBlackCamp(sq) ((sq) < 27)
233 #define InWhiteCamp(sq) ((sq) > 53)
234 #else
235 #define InBlackCamp(sq) ((sq) < 5)
236 #define InWhiteCamp(sq) ((sq) > 19)
237 #endif
238 #define InPromotionZone(side, sq) \
239 (((side) == black) ? InWhiteCamp(sq) : InBlackCamp(sq))
240
241 /* constants */
242 /* FIXME ? */
243 #define OPENING_HINT 0x141d /* P7g-7f (20->29) */
244
245 /* truth values */
246 #ifndef false
247 #define false 0
248 #endif
249
250 #ifndef true
251 #define true  1
252 #endif
253
254 /* colors */
255 #define black   0
256 #define white   1
257 #define neutral 2
258
259 /* piece code defines */
260 enum {
261     no_piece = 0,
262     pawn,
263 #ifndef MINISHOGI
264     lance,
265     knight,
266 #endif
267     /* start of pieces that can be dropped at any square */
268     silver,
269     gold,
270     bishop,
271     rook,
272     ppawn,
273 #ifndef MINISHOGI
274     plance,
275     pknight,
276 #endif
277     psilver,
278     pbishop,
279     prook,
280     king
281 };
282
283 /* move types */
284 enum {
285     ptype_no_piece = 0,
286     ptype_pawn = 0,
287 #ifndef MINISHOGI
288     ptype_lance,
289     ptype_knight,
290 #endif
291     ptype_silver,
292     ptype_gold,
293     ptype_bishop,
294     ptype_rook,
295     ptype_pbishop,
296     ptype_prook,
297     ptype_king,
298     ptype_wpawn,
299 #ifndef MINISHOGI
300     ptype_wlance,
301     ptype_wknight,
302 #endif
303     ptype_wsilver,
304     ptype_wgold
305 };
306
307 /* node flags */
308 #define pmask        0x000f /*    15 */
309 #define promote      0x0010 /*    16 */
310 #define dropmask     0x0020 /*    32 */
311 #define exact        0x0040 /*    64 */
312 #define tesuji       0x0080 /*   128 */
313 #define check        0x0100 /*   256 */
314 #define capture      0x0200 /*   512 */
315 #define draw         0x0400 /*  1024 */
316 #define stupid       0x0800 /*  2048 */
317 #define questionable 0x1000 /*  4096 */
318 #define kingattack   0x2000 /*  8192 */
319 #define book         0x4000 /* 16384 */
320
321 /* move quality flags */
322 #define goodmove     tesuji
323 #define badmove      stupid
324 #ifdef EASY_OPENINGS
325 #define difficult    questionable
326 #endif
327
328 /* move symbols */
329 #ifndef MINISHOGI
330 #define pxx (" PLNSGBRPLNSBRK ")
331 #define qxx (" plnsgbrplnsbrk ")
332 #define rxx ("ihgfedcba")
333 #define cxx ("987654321")
334 #else
335 #define pxx (" PSGBRPSBRK ")
336 #define qxx (" psgbrpsbrk ")
337 #define rxx ("edcba")
338 #define cxx ("54321")
339 #endif
340
341 /***************** Table limits ********************************************/
342
343 /*
344  * ttblsz must be a power of 2. Setting ttblsz 0 removes the transposition
345  * tables.
346  */
347
348 #if defined NOTTABLE
349 #  define vttblsz 0
350 #elif defined SMALL_MEMORY
351 #  if defined SAVE_SSCORE
352 #    define vttblsz (1 << 12)
353 #  else
354 #    if defined EXTRA_2MB
355 #      define vttblsz (1 << 12)
356 #    else
357 #      define vttblsz (1 << 10)
358 #    endif
359 #  endif
360 #else
361 #  define vttblsz (100001)
362 #endif
363
364 #if defined SMALL_MEMORY
365 #  define MINTTABLE (0)
366 #else
367 #  define MINTTABLE (8000)    /* min ttable size -1 */
368 #endif
369
370 #define ttblsz vttblsz
371
372 #if defined SMALL_MEMORY
373 #  if !defined SAVE_SSCORE
374 #    define TREE 1500             /* max number of tree entries */
375 #  else
376 #    define TREE 2500             /* max number of tree entries */
377 #  endif
378 #else
379 #  define TREE 4000               /* max number of tree entries */
380 #endif
381
382 #define MAXDEPTH  40            /* max depth a search can be carried */
383 #define MINDEPTH   2            /* min search depth =1 (no hint), >1 hint */
384 #define MAXMOVES 300            /* max number of half moves in a game */
385 #define CPSIZE   241            /* size of lang file max */
386
387 #if defined SMALL_MEMORY
388 #  if defined SAVE_SSCORE
389 #    define ETABLE (1 << 10)      /* static eval cache */
390 #  else
391 #    if defined EXTRA_2MB
392 #      define ETABLE (1 << 10)    /* static eval cache */
393 #    else
394 #      define ETABLE (1 << 8)     /* static eval cache */
395 #    endif
396 #  endif
397 #else
398 #  define ETABLE (10001)          /* static eval cache */
399 #endif
400
401 /***************** tuning paramaters *******************/
402
403 #if defined VERY_SLOW_CPU
404 #  define MINRESPONSETIME 300
405 #elif defined SLOW_CPU
406 #  define MINRESPONSETIME 200
407 #else
408 #  define MINRESPONSETIME 100     /* 1 s */
409 #endif
410
411 #define MINGAMEIN  4
412 #define MINMOVES  15
413 #define CHKDEPTH   1   /* always look forward CHKDEPTH
414                         * half-moves if in check */
415
416 #if defined SLOW_CPU || defined VERY_SLOW_CPU
417 #  define DEPTHBEYOND 7     /* Max to go beyond Sdepth */
418 #else
419 #  define DEPTHBEYOND 11    /* Max to go beyond Sdepth */
420 #endif
421
422 #define HASHDEPTH      4  /* depth above which to use HashFile */
423 #define HASHMOVELIMIT 40  /* Use HashFile only for this many moves */
424 #define PTVALUE        0  /* material value below which pawn threats at
425                            * 5 & 3 are used */
426 #define ZDEPTH 3          /* depth beyond which to check
427                            * ZDELTA for extra time */
428 #define ZDELTA 10         /* score delta per ply to cause
429                            * extra time to be given */
430 #define BESTDELTA 90
431
432 /* about 1/2 second worth of nodes for your machine */
433 #if defined VERY_SLOW_CPU
434 /* check the time every ZNODES positions */
435 #  define ZNODES (flag.tsume ? 20 : 50)
436 #elif defined SLOW_CPU
437 #  define ZNODES (flag.tsume ? 40 : 100)
438 #else
439 #  define ZNODES (flag.tsume ? 400 : 1000)
440 #endif
441
442 #define MAXTCCOUNTX  10  /* max number of time clicks
443                           * per search to complete ply */
444 #define MAXTCCOUNTR   4  /* max number of time clicks
445                           * per search extensions*/
446 #define SCORESPLIM    8  /* Score space doesn't apply after this stage */
447 #define SDEPTHLIM    (Sdepth + 1)
448 #define HISTORYLIM 4096  /* Max value of history killer */
449
450 #ifdef EXACTHISTORY
451 #  if defined SMALL_MEMORY
452 #    define HISTORY_MASK 0x8000     /* mask to MSB of history index */
453 #    define HISTORY_SIZE 0x10000    /* size of history table */
454 #  else
455 #    define HISTORY_MASK (1 << 15)  /* mask to MSB of history index */
456 #    define HISTORY_SIZE (1 << 16)  /* size of history table */
457 #  endif
458 #else
459 /* smaller history table, but dangerous because of collisions */
460 #  define HISTORY_MASK 0x3fff     /* mask to significant bits
461                                    * of history index */
462 #  if defined SMALL_MEMORY
463 #    define HISTORY_SIZE 0x4000 /* size of history table */
464 #  else
465 #    define HISTORY_SIZE (1 << 14)  /* size of history table */
466 #  endif
467 #endif
468
469 #define sizeof_history (sizeof(unsigned short) * (size_t)HISTORY_SIZE)
470
471 #ifdef EXACTHISTORY
472 /* Map from.to (8bit.8bit) to from.to (0.7bit.8bit) */
473 #  define khmove(mv) (mv & 0x7fff)
474 #  define hmove(mv) ((mv & 0x7fff) ^ 0x5555)
475 #else
476 /* Map from.to (8bit.8bit) to from.to (00.7bit.7bit) */
477 /* Swap bits of ToSquare in case of promotions, hoping that
478    no catastrophic collision occurs. */
479 #  define khmove(mv) (((mv & 0x7f00) >> 1) | \
480            ((mv & 0x0080) ? ((mv & 0x007f) ^ 0x007f) : (mv & 0x007f)))
481 #  define hmove(mv) (khmove(mv) ^ 0x2aaa)
482 #endif
483
484 /* mask color to 15th bit */
485 #ifdef EXACTHISTORY
486 #  define hindex(c, mv) ((c ? HISTORY_MASK : 0) | hmove(mv))
487 #else
488 /* for white, swap bits, hoping that no catastrophic collision occurs. */
489 #  define hindex(c, mv) (c ? ((~hmove(mv)) & HISTORY_MASK) : hmove(mv))
490 #endif
491
492 #define EWNDW  10    /* Eval window to force position scoring at depth
493                       * greater than (Sdepth + 2)        */
494 #define WAWNDW 90    /* alpha window when computer black */
495 #define WBWNDW 90    /* beta window when computer black  */
496 #define BAWNDW 90    /* alpha window when computer white */
497 #define BBWNDW 90    /* beta window when computer white  */
498 #define BXWNDW 90    /* window to force position scoring at lower */
499 #define WXWNDW 90    /* window to force position scoring at lower */
500
501 #define DITHER  5    /* max amount random can alter a pos value */
502 #define LBONUS  1    /* points per stage value of L increases   */
503 #define BBONUS  2    /* points per stage value of B increases   */
504 #define RBONUS  2    /* points per stage value of R increases   */
505
506 #define QUESTIONABLE (valueK)   /* Penalty for questionable moves. */
507
508 #if defined STUPID
509 #  undef STUPID
510 #endif
511
512 #define STUPID (valueR << 1)    /* Penalty for stupid moves. */
513
514 #define KINGPOSLIMIT (-1)      /* King positional scoring limit */
515 #define KINGSAFETY  32
516 #define MAXrehash (7)
517
518 /******* parameters for Opening Book ****************/
519
520 #define BOOKSIZE   8000  /* Number of unique position/move
521                           * combinations allowed */
522 #define BOOKMAXPLY   40           /* Max plys to keep in book database */
523 #define BOOKFAIL (BOOKMAXPLY / 2) /* if no book move found for BOOKFAIL
524                                    * turns stop using book */
525 #define BOOKPOCKET          64
526 #define BOOKRAND          1000  /* used to select an opening move
527                                  * from a list */
528 #define BOOKENDPCT         950  /* 5 % chance a BOOKEND will stop the book */
529 #define DONTUSE         -32760  /* flag move as don't use */
530 #define ILLEGAL_TRAPPED -32761  /* flag move as illegal:
531                                  * no move from this square */
532 #define ILLEGAL_DOUBLED -32762  /* flag move as illegal:
533                                  * two pawns on one column */
534 #define ILLEGAL_MATE    -32763  /* flag move as illegal:
535                                  * pawn drop with mate */
536
537 /*****************************************************/
538
539 struct hashval
540 {
541     unsigned long key, bd;
542 };
543
544 struct hashentry
545 {
546     unsigned long hashbd;
547     unsigned short mv;
548     unsigned char depth; /* unsigned char saves some space */
549     unsigned char flags;
550 #ifdef notdef
551     unsigned short age;
552 #endif
553     short score;
554 #ifdef HASHTEST
555     unsigned char bd[PTBLBDSIZE];
556 #endif /* HASHTEST */
557 };
558
559 #if defined HASHFILE || defined CACHE
560 struct etable
561 {
562     unsigned long ehashbd;
563     short escore[2];
564 #if !defined SAVE_SSCORE
565     short sscore[NO_SQUARES];
566 #endif
567     short score;
568     small_short hung[2];
569 #ifdef CACHETEST
570     unsigned char bd[PTBLBDSIZE];
571 #endif /* CACHETEST */
572 };
573
574 #if defined CACHE
575 extern short use_etable;
576 typedef struct etable etable_field[ETABLE];
577 extern etable_field  *etab[2];
578 #endif
579
580 /*
581  * CHECKME! Is this valid?
582  *
583  * persistent transposition table. By default, the size is (1 << vfilesz).
584  * If you change the size, be sure to run gnushogi -c [vfilesz]
585  * before anything else.
586  */
587
588 #define frehash 6
589
590 #if defined SMALL_MEMORY
591 #  define vfilesz 10
592 #else
593 #  define vfilesz 14
594 #endif
595
596 struct fileentry
597 {
598     unsigned char bd[PTBLBDSIZE];
599     unsigned char f, t, flags, depth, sh, sl;
600 };
601
602 #endif /* HASHFILE */
603
604
605 struct leaf
606 {
607     small_ushort f, t;
608     short score, reply, width;
609     short INCscore;
610     unsigned short flags;
611 };
612
613
614 struct GameRec
615 {
616     unsigned short gmove;    /* this move */
617     short score;             /* score after this move */
618     short depth;             /* search depth this move */
619     long  time;               /* search time this move */
620     short fpiece;            /* moved or dropped piece */
621     short piece;             /* piece captured */
622     short color;             /* color */
623     short flags;             /* move flags capture, promote, castle */
624     short Game50;            /* flag for repetition */
625     long  nodes;              /* nodes searched for this move */
626     unsigned long hashkey, hashbd;   /* board key before this move */
627 };
628
629
630 struct TimeControlRec
631 {
632     short moves[2];
633     long  clock[2];
634 };
635
636
637 struct flags
638 {
639     short mate;              /* the game is over */
640     short post;              /* show principle variation */
641     short quit;              /* quit/exit */
642     short regularstart;      /* did the game start from standard
643                               * initial board ? */
644     short reverse;           /* reverse board display */
645     short bothsides;         /* computer plays both sides */
646     short hash;              /* enable/disable transposition table */
647     short force;             /* enter moves */
648     short easy;              /* disable thinking on opponents time */
649     short beep;              /* enable/disable beep */
650     short timeout;           /* time to make a move */
651     short musttimeout;       /* time to make a move */
652     short back;              /* time to make a move */
653     short rcptr;             /* enable/disable recapture heuristics */
654     short rv;                /* reverse video */
655     short stars;             /* add stars to uxdsp screen */
656     short coords;            /* add coords to visual screen */
657     short shade;
658     short material;          /* draw on lack of material */
659     short illegal;           /* illegal position */
660     short onemove;           /* timing is onemove */
661     short gamein;            /* timing is gamein */
662     short tsume;             /* first consider checks */
663 };
664
665 extern FILE *debugfile;
666
667 #ifndef EVALFILE
668 #define EVALFILE "/tmp/EVAL"
669 #endif
670
671 extern FILE *debug_eval_file;
672 extern short debug_moves;
673
674
675 #ifdef HISTORY
676 extern short use_history;
677 extern unsigned short  *history;
678 #endif
679
680 extern long znodes;
681
682 extern char ColorStr[2][10];
683
684 extern char mvstr[4][6];
685 extern int mycnt1, mycnt2;
686 extern short ahead;
687 extern struct leaf rootnode;
688 extern struct leaf  *Tree;
689 extern struct leaf  *root;
690 extern char savefile[], listfile[];
691 extern short TrPnt[];
692 extern small_short board[], color[];
693 extern const small_short sweep[NO_PIECES];
694 extern small_short PieceList[2][NO_SQUARES], PawnCnt[2][NO_COLS];
695 extern small_short Captured[2][NO_PIECES];
696
697 #ifndef HAVE_MEMSET
698 #  define ClearCaptured() \
699   { \
700       short piece, color; \
701       for (color = black; color <= white; color++) \
702           for (piece = 0; piece < NO_PIECES; piece++) \
703               Captured[color][piece] = 0; \
704   }
705 #else
706 #  define ClearCaptured() \
707   memset((char *)Captured, 0, (unsigned long)sizeof(Captured))
708 #endif /* HAVE_MEMSET */
709
710 extern small_short Mvboard[];
711
712 #if !defined SAVE_SVALUE
713 extern short svalue[NO_SQUARES];
714 #endif
715
716 extern short pscore[2]; /* eval.c */
717 extern int EADD; /* eval.c */
718 extern int EGET; /* eval.c */
719 extern struct flags flag;
720 extern short opponent, computer, INCscore;
721 extern short WAwindow, BAwindow, WBwindow, BBwindow;
722 extern short dither, player;
723 extern short xwndw, contempt;
724 extern long  ResponseTime, ExtraTime, TCleft,
725     MaxResponseTime, et, et0, time0, ft;
726 extern int   TCcount;
727
728 #ifdef INTERRUPT_TEST
729 extern long itime0, it;
730 #endif
731
732 extern long  reminus, replus;
733 extern long  GenCnt, NodeCnt, ETnodes, EvalNodes, HashAdd, HashCnt,
734     HashCol, THashCol, FHashCnt, FHashAdd;
735 extern short HashDepth, HashMoveLimit;
736 extern struct GameRec  *GameList;
737 extern short GameCnt, Game50;
738 extern short Sdepth, MaxSearchDepth;
739 extern int   Book;
740 extern struct TimeControlRec TimeControl;
741 extern int   TCadd;
742 extern short TCflag, TCmoves, TCminutes, TCseconds, OperatorTime;
743 extern int   timecomp[MINGAMEIN], timeopp[MINGAMEIN];
744 extern int   compptr, oppptr;
745 extern short XCmore, XCmoves[], XCminutes[], XCseconds[], XC;
746 extern const short otherside[];
747 extern const small_short Stboard[];
748 extern const small_short Stcolor[];
749 extern unsigned short hint;
750 extern short TOflag;
751 extern short stage, stage2;
752
753 #define in_opening_stage    (!flag.tsume && (stage < 33))
754 #define in_middlegame_stage (!flag.tsume && (stage >= 33) && (stage <= 66))
755 #define in_endgame_stage    (flag.tsume || (stage > 66))
756
757 extern short ahead, hash;
758 extern short balance[2];
759 extern small_short ChkFlag[], CptrFlag[], TesujiFlag[];
760 extern short Pscore[], Tscore[];
761 extern /*unsigned*/ short rehash;  /* -1 is used as a flag --tpm */
762 extern unsigned int ttbllimit;
763 extern unsigned int TTadd;
764 extern unsigned int ttblsize;
765 extern short mtl[], hung[];
766 extern small_short Pindex[];
767 extern small_short PieceCnt[];
768 extern short FROMsquare, TOsquare;
769 extern small_short HasPiece[2][NO_PIECES];
770 extern const short kingP[];
771 extern unsigned short killr0[], killr1[];
772 extern unsigned short killr2[], killr3[];
773 extern unsigned short PrVar[MAXDEPTH];
774 extern unsigned short PV, SwagHt, Swag0, Swag1, Swag2, Swag3, Swag4, sidebit;
775 extern short mtl[2], pmtl[2], hung[2];
776 extern const small_short relative_value[];
777 extern const long control[];
778 extern small_short diagonal(short delta);
779 extern const small_short promoted[NO_PIECES], unpromoted[NO_PIECES];
780 extern const small_short is_promoted[NO_PIECES];
781
782 typedef unsigned char next_array[NO_SQUARES][NO_SQUARES];
783 typedef small_short distdata_array[NO_SQUARES][NO_SQUARES];
784
785 extern const small_short inunmap[NO_SQUARES];
786 #ifndef MINISHOGI
787 extern const small_short nunmap[(NO_COLS + 2)*(NO_ROWS + 4)];
788 #else
789 extern const small_short nunmap[(NO_COLS + 2)*(NO_ROWS + 2)];
790 #endif
791
792 #if defined SAVE_NEXTPOS
793 extern const small_short direc[NO_PTYPE_PIECES][8];
794 extern short first_direction(short ptyp, short *d, short sq);
795 extern short next_direction(short ptyp, short *d, short sq);
796 extern short next_position(short ptyp, short *d, short sq, short u);
797 #else
798 extern short use_nextpos;
799 extern next_array  *nextpos[NO_PTYPE_PIECES];
800 extern next_array  *nextdir[NO_PTYPE_PIECES];
801 #endif
802
803 extern value_array   *value;
804 extern fscore_array  *fscore;
805
806 #ifndef SAVE_DISTDATA
807 extern short use_distdata;
808 extern distdata_array  *distdata;
809 #endif
810
811 #ifndef SAVE_PTYPE_DISTDATA
812 extern short use_ptype_distdata;
813 extern distdata_array  *ptype_distdata[NO_PTYPE_PIECES];
814 #endif
815
816 extern const small_short ptype[2][NO_PIECES];
817
818 extern long filesz, hashmask, hashbase;
819 extern FILE *hashfile;
820 extern unsigned int starttime;
821
822 /* eval.c */
823 typedef small_short Mpiece_array[2][NO_SQUARES];
824 extern Mpiece_array *Mpiece[NO_PIECES];
825 extern short ADVNCM[NO_PIECES];
826
827 #define computed_distance(a, b) \
828     ((abs(column(a) - column(b)) > abs(row(a) - row(b))) \
829     ? abs(column(a) - column(b)) : abs(row(a) - row(b)))
830
831 extern short distance(short a, short b);
832 extern short ptype_distance(short ptyp, short f, short t);
833 extern short piece_distance(short side, short piece, short f, short t);
834
835 #if defined UNKNOWN
836 #  undef UNKNOWN
837 #endif
838
839 #define UNKNOWN      'U'
840 #define STATIC_ROOK  'S'
841 #define RANGING_ROOK 'R'
842
843 extern char GameType[2];
844 void ShowGameType(void);
845
846 extern unsigned short bookmaxply;
847 extern unsigned int bookcount;
848 extern unsigned int booksize;
849 extern unsigned long hashkey, hashbd;
850
851 typedef struct hashval hashcode_array[2][NO_PIECES][NO_SQUARES];
852 typedef struct hashval drop_hashcode_array[2][NO_PIECES][NO_SQUARES];
853
854 extern hashcode_array  *hashcode;
855 extern drop_hashcode_array  *drop_hashcode;
856
857 #ifdef QUIETBACKGROUND
858 extern short background;
859 #endif /* QUIETBACKGROUND */
860
861 #if ttblsz
862 extern short use_ttable;
863 extern struct hashentry  *ttable[2];
864 #endif
865
866 /*
867  * hashbd contains a 32 bit "signature" of the board position. hashkey
868  * contains a 16 bit code used to address the hash table. When a move is
869  * made, XOR'ing the hashcode of moved piece on the from and to squares with
870  * the hashbd and hashkey values keeps things current.
871  */
872
873 #define UpdateHashbd(side, piece, f, t) \
874 { \
875   if ((f) >= 0) \
876     { \
877       hashbd  ^= (*hashcode)[side][piece][f].bd;  \
878       hashkey ^= (*hashcode)[side][piece][f].key; \
879     } \
880  \
881   if ((t) >= 0) \
882     { \
883       hashbd  ^= (*hashcode)[side][piece][t].bd;  \
884       hashkey ^= (*hashcode)[side][piece][t].key; \
885     } \
886 }
887
888 #define UpdateDropHashbd(side, piece, count) \
889 { \
890   hashbd  ^= (*drop_hashcode)[side][piece][count].bd;  \
891   hashkey ^= (*drop_hashcode)[side][piece][count].key; \
892 }
893
894
895 extern short rpthash[2][256];
896 extern char *DRAW;
897
898 extern char* DRAW_REPETITION;
899 extern char *DRAW_MAXMOVES;
900 extern char *DRAW_JUSTDRAW;
901
902 #define row(a)     ((a) / NO_COLS)
903 #define column(a)  ((a) % NO_COLS)
904 #define locn(a, b) (((a) * NO_COLS) + b)
905
906 /* init external functions */
907 extern void InitConst(char *lang); /* init.c */
908 extern int  Initialize_data(void); /* init.c */
909 extern void Free_data(void);       /* init.c */
910 extern int  Lock_data(void);       /* init.c */
911 extern void Unlock_data(void);     /* init.c */
912 extern void Initialize_dist(void); /* init.c */
913 extern void Initialize_eval(void); /* eval.c */
914 extern void NewGame(void);
915 extern void GetOpenings(void);
916 extern int  OpeningBook(unsigned short *hint);
917
918 typedef enum
919 {
920     REMOVE_PIECE = 1, ADD_PIECE
921 } UpdatePieceList_mode;
922
923 extern void
924 UpdatePieceList(short side, short sq, UpdatePieceList_mode iop);
925
926 typedef enum
927 {
928     FOREGROUND_MODE = 1, BACKGROUND_MODE
929 } SelectMove_mode;
930
931 extern void
932 SelectMove(short side, SelectMove_mode iop);
933
934 extern int
935 search(short side,
936        short ply,
937        short depth,
938        short alpha,
939        short beta,
940        unsigned short *bstline,
941        short *rpt);
942
943 #ifdef CACHE
944 void PutInEETable(short side, int score);
945 int  CheckEETable(short side);
946 int  ProbeEETable(short side, short *score);
947 #endif
948
949 #if ttblsz
950 extern int
951 ProbeTTable(short side,
952             short depth,
953             short ply,
954             short *alpha,
955             short *beta,
956             short *score);
957
958 extern int
959 PutInTTable(short side,
960             short score,
961             short depth,
962             short ply,
963             short beta,
964             unsigned short mv);
965
966 extern void ZeroTTable(void);
967 extern void ZeroRPT(void);
968 extern void Initialize_ttable(void);
969 extern unsigned int urand(void);
970
971 #  ifdef HASHFILE
972 extern void gsrand(unsigned int);
973
974 extern int
975 ProbeFTable(short side,
976             short depth,
977             short ply,
978             short *alpha,
979             short *beta,
980             short *score);
981
982 extern void
983 PutInFTable(short side,
984             short score,
985             short depth,
986             short ply,
987             short alpha,
988             short beta,
989             unsigned short f,
990             unsigned short t);
991
992 #  endif /* HASHFILE */
993 #endif /* ttblsz */
994
995 #if !defined SAVE_NEXTPOS
996 extern void Initialize_moves(void);
997 #endif
998
999 extern short generate_move_flags;
1000
1001 extern void MoveList(short side, short ply,
1002                      short in_check, short blockable);
1003 extern void CaptureList(short side, short ply,
1004                         short in_check, short blockable);
1005
1006 /* from attacks.c */
1007 extern int
1008 SqAttacked(short square, short side, short *blockable);
1009
1010 extern void
1011 MakeMove(short side,
1012          struct leaf  *node,
1013          short *tempb,
1014          short *tempc,
1015          short *tempsf,
1016          short *tempst,
1017          short *INCscore);
1018
1019 extern void
1020 UnmakeMove(short side,
1021            struct leaf  *node,
1022            short *tempb,
1023            short *tempc,
1024            short *tempsf,
1025            short *tempst);
1026
1027 extern void
1028 InitializeStats(void);
1029
1030 extern int
1031 evaluate(short side,
1032          short ply,
1033          short alpha,
1034          short beta,
1035          short INCscore,
1036          short *InChk,
1037          short *blockable);
1038
1039 extern short ScorePosition(short side);
1040 extern void  ExaminePosition(short side);
1041 extern short ScorePatternDistance(short side);
1042 extern void  DetermineStage(short side);
1043 extern void  UpdateWeights(short side);
1044 extern int   InitMain(void);
1045 extern void  ExitMain(void);
1046 extern void  Initialize(void);
1047 extern void  InputCommand(char *command);
1048 extern void  ExitShogi(void);
1049 extern void  ClearScreen(void);
1050 extern void  SetTimeControl(void);
1051 extern void  SelectLevel(char *sx);
1052
1053 extern void
1054 UpdateDisplay(short f,
1055               short t,
1056               short flag,
1057               short iscastle);
1058
1059 typedef enum
1060 {
1061     COMPUTE_AND_INIT_MODE = 1, COMPUTE_MODE
1062 #ifdef INTERRUPT_TEST
1063     , INIT_INTERRUPT_MODE, COMPUTE_INTERRUPT_MODE
1064 #endif
1065 } ElapsedTime_mode;
1066
1067 extern void  SetResponseTime(short side);
1068 extern void  CheckForTimeout(int score, int globalscore,
1069                              int Jscore, int zwndw);
1070 extern void  ShowSidetoMove(void);
1071 extern void  ShowResponseTime(void);
1072 extern void  ShowPatternCount(short side, short n);
1073 extern void  SearchStartStuff(short side);
1074 extern void  ShowDepth(char ch);
1075 extern void  TerminateSearch(int);
1076 extern void  ShowResults(short score, unsigned short *bstline, char ch);
1077 extern void  SetupBoard(void);
1078 extern void  algbr(short f, short t, short flag);
1079 extern void  OutputMove(void);
1080 extern void  ShowCurrentMove(short pnt, short f, short t);
1081 extern void  ListGame(void);
1082 extern void  ShowMessage(char *s);
1083 extern void  ClearScreen(void);
1084 extern void  DoDebug(void);
1085 extern void  DoTable(short table[NO_SQUARES]);
1086 extern void  ShowPostnValues(void);
1087 extern void  ChangeXwindow(void);
1088 extern void  SetContempt(void);
1089 extern void  ChangeHashDepth(void);
1090 extern void  ChangeBetaWindow(void);
1091 extern void  GiveHint(void);
1092 extern void  ShowPrompt(void);
1093 extern void  EditBoard(void);
1094 extern void  help(void);
1095 extern void  ChangeSearchDepth(void);
1096 extern void  skip(void);
1097 extern void  skipb(void);
1098 extern void  EnPassant(short xside, short f, short t, short iop);
1099 extern void  ShowNodeCnt(long NodeCnt);
1100 extern void  ShowLine(unsigned short *bstline);
1101 extern int   pick(short p1, short p2);
1102 extern short repetition(void);
1103 extern void  TimeCalc(void);
1104 extern void  ElapsedTime(ElapsedTime_mode iop);
1105
1106 extern short
1107 DropPossible(short piece, short side, short sq); /* genmoves.c */
1108
1109 extern short
1110 IsCheckmate(short side, short in_check,
1111             short blockable); /* genmoves.c */
1112
1113
1114 typedef enum
1115 {
1116     VERIFY_AND_MAKE_MODE, VERIFY_AND_TRY_MODE, UNMAKE_MODE
1117 } VerifyMove_mode;
1118
1119 extern int VerifyMove(char *s, VerifyMove_mode iop, unsigned short *mv);
1120 extern unsigned short TTage;
1121
1122 /* display driver framework */
1123
1124 struct display
1125 {
1126     void (*ChangeAlphaWindow)(void);
1127     void (*ChangeBetaWindow)(void);
1128     void (*ChangeHashDepth)(void);
1129     void (*ChangeSearchDepth)(char *sx);
1130     void (*ChangeXwindow)(void);
1131     void (*ClearScreen)(void);
1132     void (*DoDebug)(void);
1133     void (*DoTable)(short table[NO_SQUARES]);
1134     void (*EditBoard)(void);
1135     void (*ExitShogi)(void);
1136     void (*GiveHint)(void);
1137     void (*Initialize)(void);
1138     void (*ShowNodeCnt)(long NodeCnt);
1139     void (*OutputMove)(void);
1140     void (*PollForInput)(void);
1141     void (*SetContempt)(void);
1142     void (*SearchStartStuff)(short side);
1143     void (*SelectLevel)(char *sx);
1144     void (*ShowCurrentMove)(short pnt, short f, short t);
1145     void (*ShowDepth)(char ch);
1146     void (*ShowGameType)(void);
1147     void (*ShowLine)(unsigned short *bstline);
1148     void (*ShowMessage)(char *s);
1149     void (*AlwaysShowMessage)(const char *format, ...);
1150     void (*Printf)(const char *format, ...);
1151     void (*doRequestInputString)(const char* fmt, char* buffer);
1152     int  (*GetString)(char* sx);
1153     void (*SetupBoard)(void);
1154     void (*ShowPatternCount)(short side, short n);
1155     void (*ShowPostnValue)(short sq);
1156     void (*ShowPostnValues)(void);
1157     void (*ShowPrompt)(void);
1158     void (*ShowResponseTime)(void);
1159     void (*ShowResults)(short score, unsigned short *bstline, char ch);
1160     void (*ShowSidetoMove)(void);
1161     void (*ShowStage)(void);
1162     void (*TerminateSearch)(int sig);
1163     void (*UpdateClocks)(void);
1164     void (*UpdateDisplay)(short f, short t, short redraw, short isspec);
1165     void (*help)(void);
1166 };
1167
1168 extern struct display *dsp;
1169
1170 extern struct display raw_display;
1171 extern struct display curses_display;
1172
1173 #endif /* _GNUSHOGI_H_ */