-
Notifications
You must be signed in to change notification settings - Fork 1
/
learner.c
200 lines (166 loc) · 4.12 KB
/
learner.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
/*
* Race for the Galaxy AI
*
* Copyright (C) 2009-2011 Keldon Jones
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "rftg.h"
/*
* Print messages?
*/
int verbose = 0;
/*
* Print messages to standard output.
*/
void message_add(game *g, char *msg)
{
/* Print if verbose flag set */
if (verbose) printf("%s", msg);
}
/*
* Use simple random number generator.
*/
int game_rand(game *g)
{
/* Call simple random number generator */
return simple_rand(&g->random_seed);
}
/*
* Play a number of training games.
*/
int main(int argc, char *argv[])
{
game my_game;
int i, j, n = 100;
int num_players = 3;
int expansion = 0, advanced = 0;
char buf[1024];
double factor = 1.0;
/* Set random seed */
my_game.random_seed = time(NULL);
/* Read card database */
read_cards();
/* Parse arguments */
for (i = 1; i < argc; i++)
{
/* Check for verbosity */
if (!strcmp(argv[i], "-v"))
{
/* Set verbose flag */
verbose++;
}
/* Check for number of players */
else if (!strcmp(argv[i], "-p"))
{
/* Set number of players */
num_players = atoi(argv[++i]);
}
/* Check for advanced game */
else if (!strcmp(argv[i], "-a"))
{
/* Set advanced flag */
advanced = 1;
}
/* Check for expansion level */
else if (!strcmp(argv[i], "-e"))
{
/* Set expansion level */
expansion = atoi(argv[++i]);
}
/* Check for number of games */
else if (!strcmp(argv[i], "-n"))
{
/* Set number of games */
n = atoi(argv[++i]);
}
/* Check for random seed */
else if (!strcmp(argv[i], "-r"))
{
/* Set random seed */
my_game.random_seed = atoi(argv[++i]);
}
/* Check for alpha factor */
else if (!strcmp(argv[i], "-f"))
{
/* Set factor */
factor = atof(argv[++i]);
}
}
/* Set number of players */
my_game.num_players = num_players;
/* Set expansion level */
my_game.expanded = expansion;
/* Set advanced flag */
my_game.advanced = advanced;
/* Assume no options disabled */
my_game.goal_disabled = 0;
my_game.takeover_disabled = 0;
/* Call initialization functions */
for (i = 0; i < num_players; i++)
{
/* Create player name */
sprintf(buf, "Player %d", i);
/* Set player name */
my_game.p[i].name = strdup(buf);
/* Set player interfaces to AI functions */
my_game.p[i].control = &ai_func;
/* Initialize AI */
my_game.p[i].control->init(&my_game, i, factor);
/* Create choice log for player */
my_game.p[i].choice_log = (int *)malloc(sizeof(int) * 4096);
/* Clear choice log size and position */
my_game.p[i].choice_size = 0;
my_game.p[i].choice_pos = 0;
}
/* Play a number of games */
for (i = 0; i < n; i++)
{
/* Initialize game */
init_game(&my_game);
/* Begin game */
begin_game(&my_game);
/* Play game rounds until finished */
while (game_round(&my_game));
/* Score game */
score_game(&my_game);
/* Print result */
for (j = 0; j < num_players; j++)
{
/* Print score */
printf("%s: %d\n", my_game.p[j].name,
my_game.p[j].end_vp);
}
/* Declare winner */
declare_winner(&my_game);
/* Call player game over functions */
for (j = 0; j < num_players; j++)
{
/* Call game over function */
my_game.p[j].control->game_over(&my_game, j);
/* Clear choice log */
my_game.p[j].choice_size = 0;
my_game.p[j].choice_pos = 0;
}
}
/* Call interface shutdown functions */
for (i = 0; i < num_players; i++)
{
/* Call shutdown function */
my_game.p[i].control->shutdown(&my_game, i);
}
/* Done */
return 0;
}