Under Gtk 1.2 (at least on Debian woody), a config or preset change that would
[sgt/puzzles] / list.c
... / ...
CommitLineData
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;
22extern const game flip;
23extern const game guess;
24extern const game mines;
25extern const game net;
26extern const game netslide;
27extern const game pattern;
28extern const game rect;
29extern const game samegame;
30extern const game sixteen;
31extern const game solo;
32extern const game twiddle;
33
34const game *gamelist[] = {
35 &cube,
36 &fifteen,
37 &flip,
38 &guess,
39 &mines,
40 &net,
41 &netslide,
42 &pattern,
43 &rect,
44 &samegame,
45 &sixteen,
46 &solo,
47 &twiddle,
48};
49
50const int gamecount = lenof(gamelist);