chiark / gitweb /
8cb864df3f2a1540e5f85b8e8f84068310590e29
[sgt-puzzles.git] / list.c
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
13 perl -ne '/^#define thegame (\S+)/ and $1 ne "nullgame" and print "extern const game $1;\n"' *.c
14 echo -e '\nconst game *gamelist[] = {'
15 perl -ne '/^#define thegame (\S+)/ and $1 ne "nullgame" and print "    &$1,\n"' *.c
16 echo -e '};\n\nconst int gamecount = lenof(gamelist);'
17
18  */
19
20 extern const game cube;
21 extern const game fifteen;
22 extern const game flip;
23 extern const game mines;
24 extern const game net;
25 extern const game netslide;
26 extern const game pattern;
27 extern const game rect;
28 extern const game samegame;
29 extern const game sixteen;
30 extern const game solo;
31 extern const game twiddle;
32
33 const game *gamelist[] = {
34     &cube,
35     &fifteen,
36     &flip,
37     &mines,
38     &net,
39     &netslide,
40     &pattern,
41     &rect,
42     &samegame,
43     &sixteen,
44     &solo,
45     &twiddle,
46 };
47
48 const int gamecount = lenof(gamelist);