Update copyright info for 2008 (minishogi patches) and recent developments.
[gnushogi.git] / gnushogi / pat2inc.c
1 /*
2  * FILE: pat2inc.c
3  *
4  *     Convert GNU Shogi pattern textfile to an include file.
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 #include "gnushogi.h"
36 #include "pattern.h"
37
38
39 extern void ReadOpeningSequences(short *pindex);
40 extern void WriteOpeningSequences(short pindex);
41
42 small_short board[NO_SQUARES];
43 small_short color[NO_SQUARES];
44
45 int
46 main(int argc, char **argv)
47 {
48     short sq, side, max_pattern_data;
49
50 #ifdef TEST_DISTANCE
51     short d;
52     char  s[80];
53 #endif
54
55     Initialize_data();
56
57     for (sq = 0; sq < NO_SQUARES; sq++)
58     {
59         board[sq] = no_piece;
60         color[sq] = neutral;
61     }
62
63     ClearCaptured();
64
65     for (side = 0; side <= 1; side++)
66         PieceCnt[side] = -1;
67
68 #ifdef TEST_DISTANCE
69     strcpy(s, "g6i k5i g4i p9g p8g r* s3h p7g b8h B* S5f");
70
71     if (string_to_board_color(s))
72     {
73         printf("ERROR IN string_to_board_color");
74         exit(1);
75     }
76     else
77     {
78         UpdateDisplay(0, 0, 1, 0);
79     }
80
81     d = pattern_distance(black, &pattern);
82
83     printf("distance = %d\n", d);
84
85 #endif
86
87     ReadOpeningSequences(&max_pattern_data);
88     WriteOpeningSequences(max_pattern_data);
89
90     return 0;
91 }