home · contact · privacy
Server/AI: Explore map for (long-time) unexplored cells.
[plomrogue] / src / server / field_of_view.h
1 /* src/server/field_of_view.h
2  *
3  * This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
4  * or any later version. For details on its copyright, license, and warranties,
5  * see the file NOTICE in the root directory of the PlomRogue source package.
6  *
7  * Generate field of view maps.
8  */
9
10 #ifndef FIELD_OF_VIEW_H
11 #define FIELD_OF_VIEW_H
12
13 #include <stdint.h> /* uint8_t, uint32_t */
14 struct Thing;
15
16
17
18 /* Update "t_eye"'s .mem_map memory with what's in its current FOV, and update
19  * and age the .mem_depth_map.
20  */
21 extern void update_map_memory(struct Thing * t_eye);
22
23 /* Build "t"'s field of view. */
24 extern void build_fov_map(struct Thing * t);
25
26
27
28 #endif