]> git.cworth.org Git - wordgame/blob - grid4.c
Allow a new game to be started by pressing Enter after Control-C
[wordgame] / grid4.c
1 /*
2  * Copyright © 2006 Carl Worth
3  *
4  * This program is free software; you can redistribute it and\/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2, or (at your option)
7  * any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software Foundation,
16  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
17  */
18
19 #include "grid.h"
20 #include "word-game.h"
21
22 #include <string.h>
23 #include <sys/time.h>
24 #include <time.h>
25
26 #define GAME_LENGTH (3 * 60)
27 int
28 main (int argc, char *argv[])
29 {
30     dict_t dict, solution;
31     grid_t grid;
32     struct timeval tv;
33     const char *letters = NULL;
34
35     if (argc > 1) {
36         if (argc == 2) {
37             letters = argv[1];
38         } else {
39             fprintf (stderr, "Usage: %s [letters]\n", argv[0]);
40             fprintf (stderr, "Uses the given 16 letters or else a random grid.\n");
41             return 1;
42         }
43     }
44
45     gettimeofday (&tv, NULL);
46     srand (tv.tv_sec ^ tv.tv_usec);
47
48     dict_init (&dict);
49     dict_add_words_from_file (&dict, "words.txt");
50
51     grid_init (&grid, 4);
52     if (letters)
53         grid_set_letters (&grid, letters);
54
55     dict_init (&solution);
56     grid_solve (&grid, &dict, &solution);
57
58     word_game_play (grid_string (&grid),
59                     &dict, &solution, GAME_LENGTH);
60
61     dict_fini (&solution);
62     dict_fini (&dict);
63
64     return 0;
65 }