3 #define _POSIX_C_SOURCE 200809L
5 #include <stddef.h> /* NULL */
6 #include <stdint.h> /* uint8_t, uint16_t, uint32_t */
7 #include <stdio.h> /* FILE, printf(), fflush() */
8 #include <stdlib.h> /* free() */
9 #include <string.h> /* strlen(), strcmp(), strncmp(), strdup() */
10 #include <unistd.h> /* access() */
11 #include "../common/parse_file.h" /* set_err_line_options(), token_from_line(),
12 * err_line(), err_line_inc(), parse_val()
14 #include "../common/readwrite.h" /* try_fopen(), try_fcose(), try_fwrite(),
15 * try_fgets(), textfile_width(), try_fputc()
17 #include "../common/rexit.h" /* exit_trouble(), exit_err() */
18 #include "../common/try_malloc.h" /* try_malloc() */
19 #include "ai.h" /* ai() */
20 #include "cleanup.h" /* unset_cleanup_flag() */
21 #include "god_commands.h" /* parse_god_command_1arg(),parse_god_command_2arg()*/
22 #include "hardcoded_strings.h" /* s */
23 #include "io.h" /* io_round(), save_world() */
24 #include "things.h" /* Thing, get_thing_action_id_by_name(), get_player() */
25 #include "world.h" /* world */
29 /* If "string" and "comparand" match in string, set "c_to_set" to value." */
30 static uint8_t set_char_by_string_comparison(char * string, char * comparand,
31 char * c_to_set, char value);
33 /* Return 1 on world.exists, else 0 and err_line() appropriate error message. */
34 static uint8_t player_commands_allowed();
36 /* Parse player command "tok0" with no argument to player action. */
37 static uint8_t parse_player_command_0arg(char * tok0);
39 /* Parse player command "tok0" with one argument "tok1" to player action. */
40 static uint8_t parse_player_command_1arg(char * tok0, char * tok1);
42 /* Parse/apply command "tok0" (read further tokens as necessary). */
43 static uint8_t parse_command(char * tok0);
45 /* Compares first line of server out file to world.server_test, aborts if they
46 * don't match, but not before unsetting the flags deleting files in the server
47 * directory, for in that case those must be assumed to belong to another server
50 static void server_test();
52 /* Run the game world and its inhabitants (and their actions) until the player
53 * avatar is free to receive new commands (or is dead).
55 static void turn_over();
60 static uint8_t set_char_by_string_comparison(char * string, char * comparand,
61 char * c_to_set, char value)
63 if (!strcmp(string, comparand))
73 static uint8_t player_commands_allowed()
77 err_line(1, "No world exists in which to run player commands.");
85 static uint8_t parse_player_command_0arg(char * tok0)
87 struct Thing * player = get_player();
88 if (!strcmp(tok0, s[S_CMD_WAIT]) || !strcmp(tok0, s[S_CMD_PICKUP]))
90 if (player_commands_allowed())
92 player->command = get_thing_action_id_by_name(tok0);
103 static uint8_t parse_player_command_1arg(char * tok0, char * tok1)
105 struct Thing * player = get_player();
106 if ( ( parse_val(tok0, tok1, s[S_CMD_DROP], '8', (char *) &player->arg)
107 || parse_val(tok0, tok1, s[S_CMD_USE], '8', (char *) &player->arg))
108 && player_commands_allowed())
110 player->command = get_thing_action_id_by_name(tok0);
113 else if (!strcmp(tok0, s[S_CMD_MOVE]) && player_commands_allowed())
116 if (!( set_char_by_string_comparison(tok1, "east", &dir, 'd')
117 || set_char_by_string_comparison(tok1, "south-east", &dir, 'c')
118 || set_char_by_string_comparison(tok1, "south-west", &dir, 'x')
119 || set_char_by_string_comparison(tok1, "west", &dir, 's')
120 || set_char_by_string_comparison(tok1, "north-west", &dir, 'w')
121 || set_char_by_string_comparison(tok1, "north-east", &dir, 'e')))
126 player->command = get_thing_action_id_by_name(tok0);
138 static uint8_t parse_command(char * tok0)
140 if (parse_player_command_0arg(tok0))
146 char * tok1 = token_from_line(NULL);
147 if (tok1 && ( parse_player_command_1arg(tok0, tok1)
148 || parse_god_command_1arg(tok0, tok1)))
154 char * tok2 = token_from_line(NULL);
155 if (tok2 && parse_god_command_2arg(tok0, tok1, tok2))
166 static void server_test()
168 char test[10 + 1 + 10 + 1 + 1];
169 FILE * file = try_fopen(s[S_PATH_OUT], "r", __func__);
170 try_fgets(test, 10 + 10 + 1 + 1, file, __func__);
171 try_fclose(file, __func__);
172 if (strcmp(test, world.server_test))
174 unset_cleanup_flag(CLEANUP_WORLDSTATE);
175 unset_cleanup_flag(CLEANUP_OUT);
176 unset_cleanup_flag(CLEANUP_IN);
177 char * msg = "Server test string in server output file does not match. "
178 "This indicates that the current server process has been "
179 "superseded by another one.";
186 static void turn_over()
188 struct Thing * player = get_player();
189 struct Thing * thing = player;
190 uint16_t start_turn = world.turn;
191 while ( 0 < player->lifepoints
192 || (0 == player->lifepoints && start_turn == world.turn))
197 thing = world.things;
199 if (0 < thing->lifepoints)
201 if (0 == thing->command)
210 struct ThingAction * ta = get_thing_action(thing->command);
211 if (thing->progress == ta->effort)
224 static void record_msg(char * msg)
227 FILE * file_tmp = atomic_write_start(s[S_PATH_RECORD], &path_tmp);
228 if (!access(s[S_PATH_RECORD], F_OK))
230 FILE * file_read = try_fopen(s[S_PATH_RECORD], "r", __func__);
231 uint32_t linemax = textfile_width(file_read);
232 char * line = try_malloc(linemax + 1, __func__);
233 while (try_fgets(line, linemax + 1, file_read, __func__))
235 try_fwrite(line, strlen(line), 1, file_tmp, __func__);
238 try_fclose(file_read, __func__);
240 try_fwrite(msg, strlen(msg), 1, file_tmp, __func__);
241 try_fputc('\n', file_tmp, __func__);
242 atomic_write_finish(file_tmp, s[S_PATH_RECORD], path_tmp);
247 extern void obey_msg(char * msg, uint8_t do_record, uint8_t do_verbose)
249 if (world.is_verbose && do_verbose)
251 exit_trouble(-1 == printf("Input: %s\n", msg), __func__, "printf");
253 set_err_line_options("Trouble with message: ", msg, 0);
254 char * msg_copy = strdup(msg);
255 char * tok0 = token_from_line(msg_copy);
259 if (parse_command(tok0))
270 char * tokplus = token_from_line(NULL);
271 err_line(NULL != tokplus, "Too many arguments, ignoring overflow.");
276 err_line(1, "Unknown command/argument or bad number of tokens.");
282 extern uint8_t io_loop()
287 char * msg = io_round();
292 if (world.is_verbose)
294 exit_trouble(-1 == printf("Input: %s\n", msg), __func__, "printf");
296 if (!strcmp("QUIT", msg))
301 if (!strcmp("PING", msg))
304 char * pong = "PONG\n";
305 try_fwrite(pong, strlen(pong), 1, world.file_out, __func__);
306 fflush(world.file_out);