home · contact · privacy
80bb1cd1bfa4057612726ac165a1fc92f07e8095
[plomrogue] / src / misc.h
1 /* misc.h
2  *
3  * Miscellaneous routines that have not yet found a proper parent module. Having
4  * LOTS of stuff in here is a sure sign that better modularization is in order.
5  */
6
7 #ifndef MISC_H
8 #define MISC_H
9
10 #include <stdlib.h>    /* for size_t */
11 #include <stdint.h>    /* for uint16_t */
12 #include "yx_uint16.h" /* for yx_uint16 coordinates */
13 struct Map;
14
15
16
17 /* Return 16-bit number pseudo-randomly generated via Linear Congruential
18  * Generator algorithm with some proven constants. Use instead of rand() to
19  * ensure portability of the same pseudo-randomness across systems.
20  */
21 extern uint16_t rrand();
22
23 /* Wrappers to malloc(), calloc() from function "f"; exit_trouble() on error. */
24 extern void * try_malloc(size_t size, char * f);
25 extern void * try_calloc(size_t nmemb, size_t size, char * f);
26
27 /* If one and only one of files at "p1", "p2" exists, fail with explanation. */
28 extern void check_files_xor(char * p1, char * p2);
29
30 /* Check if tempfile "path" exists, and if so, exit with explanation that. */
31 extern void check_tempfile(char * path);
32
33 /* Save / load / unload (free) / reload interface configuration data. */
34 extern void save_interface_conf();
35 extern void load_interface_conf();
36 extern void unload_interface_conf();
37 extern void reload_interface_conf();
38
39 /* Append "text" to game log, or a "." if "text" is the same as the last one. */
40 extern void update_log(char * text);
41
42 /* Return offset nto center map of "mapsize" on "position" in "framesize". */
43 extern uint16_t center_offset(uint16_t position,
44                               uint16_t mapsize, uint16_t framesize);
45
46 /* Record "action" in record file, do all movements until player's next turn. */
47 extern void turn_over(char action);
48
49 /* Save or load current game data to / from file "savefile". */
50 extern void save_game();
51 extern void load_game();
52
53 /* Return random passable (as by is_passable()) position on "map". */
54 extern struct yx_uint16 find_passable_pos(struct Map * map);
55
56 /* Move world.inventory_sel up ("dir"="u") or down (else) as far as possible. */
57 extern void nav_inventory(char dir);
58
59
60
61 #endif