4 #include <stdlib.h> /* for atoi(), exit(), EXIT_FAILURE, calloc() */
5 #include <stdio.h> /* for FILE typedef, F_OK */
6 #include <ncurses.h> /* for initscr(), noecho(), curs_set(), keypad(), raw() */
7 #include <time.h> /* for time() */
8 #include <unistd.h> /* for getopt(), optarg */
9 #include <stdint.h> /* for uint8_t */
10 #include "windows.h" /* for structs WinMeta, Win, init_win(), init_win_meta(),
13 #include "draw_wins.h" /* for draw_keys_win(), draw_map_win(), draw_info_win(),
16 #include "keybindings.h" /* for initkeybindings(), get_action_key() */
17 #include "readwrite.h" /* for [read/write]_uint[8/16/32][_bigendian]() */
18 #include "map_objects.h" /* for structs Monster, Item, Player,
19 * init_map_object_defs(), read_map_objects(),
22 #include "map_object_actions.h" /* for player_wait(), move_player() */
23 #include "map.h" /* for struct Map, init_map() */
24 #include "misc.h" /* for update_log(), toggle_window(), find_passable_pos(),
25 * meta_keys(), save_game()
27 #include "yx_uint16.h" /* for dir enum */
28 #include "rrand.h" /* for rrand(), rrand_seed() */
29 #include "rexit.h" /* for exit_game() */
31 int main(int argc, char *argv[])
34 char * recordfile_tmp = "record_tmp";
35 char * savefile_tmp = "savefile_tmp";
36 char * err_x = "A file 'recordfile_tmp' exists, probably from a corrupted "
37 "previous record saving process. To avoid game record "
38 "corruption, I won't start until it is removed or renamed.";
39 exit_err(!access(recordfile_tmp, F_OK), &world, err_x);
40 err_x = "A file 'savefile_tmp' exists, probably from a corrupted "
41 "previous game saving process. To avoid savegame "
42 "corruption, I won't start until it is removed or renamed.";
43 exit_err(!access(savefile_tmp, F_OK), &world, err_x);
45 /* Read in startup options (i.e. replay option and replay start turn). */
48 world.interactive = 1;
49 while ((opt = getopt(argc, argv, "s::")) != -1)
54 world.interactive = 0;
57 start_turn = atoi(optarg);
64 /* Initialize log, player, monster/item definitions and monsters/items. */
65 world.log = calloc(1, sizeof(char));
66 set_cleanup_flag(CLEANUP_LOG);
67 update_log (&world, " ");
70 world.player = &player;
73 init_map_object_defs(&world, "defs");
75 /* For interactive mode, try to load world state from savefile. */
76 char * err_o = "Error loading game: "
77 "Unable to open 'savefile' for reading.";
78 char * err_r = "Error loading game: "
79 "Trouble reading from opened 'savefile'.";
80 char * err_c = "Error loading game: "
81 "Unable to close opened 'savefile'.";
82 char * savefile = "savefile";
84 if (1 == world.interactive && 0 == access(savefile, F_OK))
86 file = fopen(savefile, "r");
87 exit_err(0 == file, &world, err_o);
88 if ( read_uint32_bigendian(file, &world.seed)
89 || read_uint32_bigendian(file, &world.turn)
90 || read_uint16_bigendian(file, &player.pos.y)
91 || read_uint16_bigendian(file, &player.pos.x)
92 || read_uint8(file, &player.hitpoints)
93 || read_map_objects(&world, &world.monster, file)
94 || read_map_objects(&world, &world.item, file))
96 exit_err(1, &world, err_r);
98 exit_err(fclose(file), &world, err_c);
103 /* For non-interactive mode, try to load world state from record file. */
106 err_o = "Error loading record file: "
107 "Unable to open file 'record' for reading.";
108 err_r = "Error loading record file: "
109 "Trouble reading from opened file 'record'.";
110 char * recordfile = "record";
112 if (0 == world.interactive)
114 file = fopen(recordfile, "r");
115 exit_err(0 == file, &world, err_o);
116 exit_err(read_uint32_bigendian(file, &world.seed), &world, err_r);
119 /* For interactive-mode in newly started world, generate a start seed
120 * from the current time.
124 world.seed = time(NULL);
126 err_x = "Error recording new seed: "
127 "A file 'record' already exists, when it shouldn't.";
128 err_o = "Error recording new seed: "
129 "Unable to open 'record_tmp' file for writing.";
130 char * err_w = "Error recording new seed: "
131 "Trouble writing to opened 'record_tmp' file.";
132 err_c = "Error recording new seed: "
133 "Unable to close opened file 'record_tmp'.";
134 char * err_m = "Error recording new seed: "
135 "Unable to rename file 'record_tmp' to 'record'.";
136 exit_err(!access(recordfile, F_OK), &world, err_x);
137 file = fopen(recordfile_tmp, "w");
138 exit_err(0 == file, &world, err_o);
139 exit_err(write_uint32_bigendian(world.seed, file), &world, err_w);
140 exit_err(fclose(file), &world, err_c);
141 exit_err(rename(recordfile_tmp, recordfile), &world, err_m);
146 /* Generate map from seed and, if newly generated world, start positions of
149 rrand_seed(world.seed);
150 struct Map map = init_map();
152 set_cleanup_flag(CLEANUP_MAP);
155 player.pos = find_passable_pos(world.map);
157 foo = build_map_objects(&world, &world.monster, 1, 1 + rrand() % 27);
158 foo = build_map_objects(&world, foo, 2, 1 + rrand() % 9);
159 build_map_objects(&world, foo, 3, 1 + rrand() % 3);
160 foo = build_map_objects(&world, &world.item, 4, 1 + rrand() % 3);
161 build_map_objects(&world, foo, 5, 1 + rrand() % 3);
164 /* Initialize window system and windows. */
165 WINDOW * screen = initscr();
166 set_cleanup_flag(CLEANUP_NCURSES);
169 keypad(screen, TRUE);
171 init_keybindings(&world);
172 set_cleanup_flag(CLEANUP_KEYBINDINGS);
173 struct WinMeta win_meta = init_win_meta(screen);
174 struct Win win_keys = init_win(&win_meta, "Keys",
175 0, 29, &world, draw_keys_win);
176 struct Win win_info = init_win(&win_meta, "Info",
177 2, 20, &world, draw_info_win);
178 uint16_t height_logwin = win_meta.padframe.size.y
179 - (2 + win_info.frame.size.y);
180 struct Win win_log = init_win(&win_meta, "Log",
181 height_logwin, 20, &world, draw_log_win);
182 uint16_t width_mapwin = win_meta.padframe.size.x - win_keys.frame.size.x
183 - win_log.frame.size.x - 2;
184 struct Win win_map = init_win(&win_meta, "Map",
185 0, width_mapwin, &world, draw_map_win);
186 toggle_window(&win_meta, &win_keys);
187 toggle_window(&win_meta, &win_map);
188 toggle_window(&win_meta, &win_info);
189 toggle_window(&win_meta, &win_log);
193 uint8_t quit_called = 0;
194 uint8_t await_actions = 1;
195 if (0 == world.interactive)
200 if (start_turn == world.turn)
206 draw_all_wins (&win_meta);
209 if (1 == await_actions
210 && (world.turn < start_turn
211 || key == get_action_key(world.keybindings,
212 "wait / next turn")) )
220 else if (0 == action)
222 player_wait (&world);
224 else if (NORTH == action)
226 move_player(&world, NORTH);
228 else if (EAST == action)
230 move_player(&world, EAST);
232 else if (SOUTH == action)
234 move_player(&world, SOUTH);
236 else if (WEST == action)
238 move_player(&world, WEST);
243 quit_called = meta_keys(key, &world, &win_meta, &win_keys,
244 &win_map, &win_info, &win_log);
245 if (1 == quit_called)
247 err_c = "Error closing read 'record' file.";
248 exit_err(fclose(file), &world, err_c);
255 /* Interactive mode. */
258 uint32_t last_turn = 0;
261 if (last_turn != world.turn)
264 last_turn = world.turn;
266 if (1 == await_actions && 0 == player.hitpoints)
270 draw_all_wins (&win_meta);
272 if (1 == await_actions
273 && key == get_action_key(world.keybindings,
276 move_player(&world, NORTH);
278 else if (1 == await_actions
279 && key == get_action_key(world.keybindings,
282 move_player(&world, EAST);
284 else if (1 == await_actions
285 && key == get_action_key(world.keybindings,
288 move_player(&world, SOUTH);
290 else if (1 == await_actions
291 && key == get_action_key(world.keybindings,
294 move_player(&world, WEST);
296 else if (1 == await_actions
297 && key == get_action_key(world.keybindings,
300 player_wait (&world);
304 quit_called = meta_keys(key, &world, &win_meta, &win_keys,
305 &win_map, &win_info, &win_log);
306 if (1 == quit_called)