]> git.cworth.org Git - wordgame/blob - grid5.c
Increase the window size a bit
[wordgame] / grid5.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 <sys/time.h>
23 #include <time.h>
24
25 #define GAME_LENGTH (3 * 60)
26 int
27 main (void)
28 {
29     dict_t dict, solution;
30     grid_t grid;
31     struct timeval tv;
32
33     gettimeofday (&tv, NULL);
34     srand (tv.tv_sec ^ tv.tv_usec);
35
36     dict_init (&dict);
37     dict_add_words_from_file (&dict, "words.txt");
38
39     grid_init (&grid, 5);
40
41     dict_init (&solution);
42     grid_solve (&grid, &dict, &solution);
43
44     word_game_play (grid_string (&grid),
45                     &dict, &solution, GAME_LENGTH);
46
47     dict_fini (&solution);
48     dict_fini (&dict);
49
50     return 0;
51 }