Long-dead code removal: unused macro
[gnushogi.git] / gnushogi / pat2inc.c
blob1299e2a71d084da99d621a6c0d5d8886c407dad0
1 /*
2 * FILE: pat2inc.c
4 * Convert GNU Shogi pattern textfile to an include file.
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
11 * GNU SHOGI is based on GNU CHESS
13 * Copyright (c) 1988, 1989, 1990 John Stanback
14 * Copyright (c) 1992 Free Software Foundation
16 * This file is part of GNU SHOGI.
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.
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.
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 * ----------------------------------------------------------------------
35 #include "gnushogi.h"
36 #include "pattern.h"
39 extern void ReadOpeningSequences(short *pindex, const char* patternfile);
40 extern void WriteOpeningSequences(short pindex, const char* patternincfile);
42 small_short board[NO_SQUARES];
43 small_short color[NO_SQUARES];
45 int
46 main(int argc, char **argv)
48 short sq, side, max_pattern_data;
50 if (argc != 3) {
51 fprintf(stderr, "Usage: %s gnushogi.pat pattern.inc\n", argv[0]);
52 exit(1);
54 char* patternfile = argv[1];
55 char* patternincfile = argv[2];
57 #ifdef TEST_DISTANCE
58 short d;
59 char s[80];
60 #endif
62 Initialize_data();
64 for (sq = 0; sq < NO_SQUARES; sq++)
66 board[sq] = no_piece;
67 color[sq] = neutral;
70 ClearCaptured();
72 for (side = 0; side <= 1; side++)
73 PieceCnt[side] = -1;
75 #ifdef TEST_DISTANCE
76 strcpy(s, "g6i k5i g4i p9g p8g r* s3h p7g b8h B* S5f");
78 if (string_to_board_color(s))
80 printf("ERROR IN string_to_board_color");
81 exit(1);
83 else
85 UpdateDisplay(0, 0, 1, 0);
88 d = pattern_distance(black, &pattern);
90 printf("distance = %d\n", d);
92 #endif
94 ReadOpeningSequences(&max_pattern_data, patternfile);
95 WriteOpeningSequences(max_pattern_data, patternincfile);
97 return 0;