Nit: "warning: extra tokens at end of #endif directive"
[sgt/puzzles] / list.c
CommitLineData
19ef4855 1/*
2 * list.c: List of puzzles.
3 */
4
5#include "puzzles.h"
6
7/*
8 * The available games can be most easily enumerated by searching
9 * for the line in each game source file saying "#define thegame
10 * <gamename>". Hence, the following piece of shell/Perl should
11 * regenerate this list automatically:
12
13perl -ne '/^#define thegame (\S+)/ and $1 ne "nullgame" and print "extern const game $1;\n"' *.c
14echo -e '\nconst game *gamelist[] = {'
15perl -ne '/^#define thegame (\S+)/ and $1 ne "nullgame" and print " &$1,\n"' *.c
16echo -e '};\n\nconst int gamecount = lenof(gamelist);'
17
18 */
19
20extern const game cube;
21extern const game fifteen;
7959b517 22extern const game mines;
19ef4855 23extern const game net;
24extern const game netslide;
25extern const game pattern;
26extern const game rect;
27extern const game sixteen;
1d8e8ad8 28extern const game solo;
9038fd11 29extern const game twiddle;
19ef4855 30
31const game *gamelist[] = {
32 &cube,
33 &fifteen,
7959b517 34 &mines,
19ef4855 35 &net,
36 &netslide,
37 &pattern,
38 &rect,
39 &sixteen,
1d8e8ad8 40 &solo,
9038fd11 41 &twiddle,
19ef4855 42};
43
44const int gamecount = lenof(gamelist);