Update TODO list
[gnushogi.git] / gnushogi / makepattern.c
blob6dbca38e4acab55be9b8e5d12133792457c9bda1
1 /*
2 * FILE: makepattern.c
4 * ----------------------------------------------------------------------
5 * Copyright (c) 1993, 1994, 1995 Matthias Mutz
6 * Copyright (c) 1999 Michael Vanier and the Free Software Foundation
7 * Copyright (c) 2008, 2013, 2014 Yann Dirson and the Free Software Foundation
9 * GNU SHOGI is based on GNU CHESS
11 * Copyright (c) 1988, 1989, 1990 John Stanback
12 * Copyright (c) 1992 Free Software Foundation
14 * This file is part of GNU SHOGI.
16 * GNU Shogi is free software; you can redistribute it and/or modify it
17 * under the terms of the GNU General Public License as published by the
18 * Free Software Foundation; either version 3 of the License,
19 * or (at your option) any later version.
21 * GNU Shogi is distributed in the hope that it will be useful, but WITHOUT
22 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
23 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
24 * for more details.
26 * You should have received a copy of the GNU General Public License along
27 * with GNU Shogi; see the file COPYING. If not, see
28 * <http://www.gnu.org/licenses/>.
29 * ----------------------------------------------------------------------
33 #include "gnushogi.h"
34 #include "pattern.h"
36 #define MAX_PATTERN_DATA 5000
37 #define MAX_OPENING_SEQUENCE 20
38 #define MAX_PATTERN 200
40 small_short pattern_data[MAX_PATTERN_DATA];
42 /* minimal ShowMessage to avoid dependency on extraneous display code */
43 static void
44 Dummy_ShowMessage(char *s)
46 printf("%s\n", s);
48 static struct display dummydsp = {
49 .ShowMessage = Dummy_ShowMessage,
51 struct display *dsp = &dummydsp;
53 #define is_digit(c) (((c) >= '0') && ((c) <= '9'))
54 #define is_alpha(c) ((((c) >= 'a') && ((c) <= 'z')) \
55 || (((c) >= 'A') && ((c) <= 'Z')))
56 #define eos(s) ((*s == '\0') || (*s == '\n'))
59 /* skip blanks and comments in brackets */
61 static void
62 skipbb(char **s)
64 while ((**s == ' ') || (**s == '|') || (**s == '['))
66 if (**s == '[')
68 while (**s != ']')
69 (*s)++;
72 (*s)++;
77 /* skip unsigned numbers */
79 static void
80 skipi(char **s)
82 while (is_digit(**s))
83 (*s)++;
85 skipbb(s);
89 static short
90 ScanPiece(char **s, small_short *side,
91 small_short *piece, small_short *square)
93 short isp, isw, c, r;
95 /* determine promotion status */
96 if (**s == '+')
97 isp = true, (*s)++; /* FIXME: split into two lines. */
98 else
99 isp = false;
101 /* determine side and piece */
102 for (c = 0; c < NO_PIECES; c++)
104 if ((isw = (**s == pxx[c])) || (**s == qxx[c]))
106 *piece = isp ? promoted[c] : unpromoted[c];
107 *side = isw;
108 (*s)++;
109 break;
113 if (c == NO_PIECES)
114 return 1;
116 if (**s == '*')
118 /* piece is captured */
119 (*s)++;
120 *square = NO_SQUARES + *piece;
122 else
124 /* determine column */
125 for (c = 0; c < NO_COLS; c++)
127 if (**s == cxx[c])
129 (*s)++;
130 break;
134 if (c >= NO_COLS)
135 return 1;
137 /* determine row */
138 for (r = 0; r < NO_ROWS; r++)
140 if (**s == rxx[r])
142 (*s)++;
143 break;
147 if (r >= NO_ROWS)
148 return 1;
150 /* determine square */
151 *square = r * NO_COLS + c;
154 skipbb(s);
155 return 0;
159 static short
160 ScanPattern (char *s, short *pindex)
162 small_short side, piece, square;
163 skipbb(&s); /* skip blanks and comments */
165 while (is_digit(*s))
167 pattern_data[(*pindex)++] = atoi(s);
168 skipi(&s);
171 pattern_data[(*pindex)++] = END_OF_LINKS;
172 skipbb(&s);
174 while (!eos(s))
176 if (ScanPiece(&s, &side, &piece, &square))
178 return 1;
180 else
182 pattern_data[(*pindex)++] = piece;
183 pattern_data[(*pindex)++] = (side ? -square : square);
188 pattern_data[(*pindex)++] = END_OF_FIELDS;
189 return 0;
193 void
194 ReadOpeningSequences (short *pindex, const char* patternfile)
196 FILE *fd;
197 char s[256];
198 short max_pattern = 0;
199 short max_opening_sequence = 0;
201 fd = fopen (patternfile, "r");
203 if (fd == NULL) {
204 sprintf(s, "no pattern file '%s'", patternfile);
205 dsp->ShowMessage(s);
206 return;
209 *pindex = 0;
211 while (fgets (s, 256, fd) != NULL)
213 if (*s == '#')
215 /* comment, skip line */
217 else if (is_alpha(*s))
219 if (max_opening_sequence++ > 0)
221 pattern_data[(*pindex)++] = END_OF_PATTERNS;
224 pattern_data[(*pindex)++] = ValueOfOpeningName(s);
226 else
228 if (ScanPattern(s, pindex))
230 dsp->ShowMessage("error in pattern sequence...");
231 exit(1);
233 else
235 max_pattern++;
240 pattern_data[(*pindex)++] = END_OF_PATTERNS;
241 pattern_data[(*pindex)++] = END_OF_SEQUENCES;
243 sprintf(s,
244 "Pattern: %d bytes for %d sequences with %d patterns.\n",
245 *pindex, max_opening_sequence, max_pattern);
246 dsp->ShowMessage(s);
248 fclose(fd);
252 void
253 WriteOpeningSequences (short pindex, const char* patternincfile)
255 FILE *fd;
256 short n = 0;
257 short max_pattern = 0;
258 short max_opening_sequence = 0;
260 fd = fopen (patternincfile, "w");
261 fprintf(fd, "#define MAX_PATTERN_DATA %d\n\n", pindex);
262 fprintf(fd, "small_short pattern_data[MAX_PATTERN_DATA] =\n{\n");
266 fprintf(fd, " %d,\n", pattern_data[n++]);
270 fprintf(fd, " ");
272 /* write links */
273 while (pattern_data[n] != END_OF_LINKS)
275 fprintf(fd, "%d, ", pattern_data[n++]);
278 fprintf(fd, "%d, ", pattern_data[n++]);
280 /* write pattern */
283 fprintf(fd, "%d,", pattern_data[n++]);
285 while (pattern_data[n] != END_OF_FIELDS);
287 fprintf(fd, "%d,\n", pattern_data[n++]);
288 max_pattern++;
290 while (pattern_data[n] != END_OF_PATTERNS);
292 fprintf(fd, " %d,\n", pattern_data[n++]);
293 max_opening_sequence++;
295 while (pattern_data[n] != END_OF_SEQUENCES);
297 fprintf(fd, " %d\n}; \n", pattern_data[n++]);
298 fprintf(fd, "\n#define MAX_OPENING_SEQUENCE %d\n", max_opening_sequence);
299 fprintf(fd, "\n#define MAX_PATTERN %d\n", max_pattern);
300 fclose(fd);