summaryrefslogtreecommitdiff
path: root/src/util.hpp
blob: 54de07ed224e5feef565d310a69a9f81319dd4fa (plain)
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
#pragma once

#include "h-basic.hpp"
#include "timer_type_fwd.hpp"

#include <vector>
#include <string>

#define MAX_IGNORE_KEYMAPS 12

bool input_box(std::string const &text, int y, int x, std::string *buf, std::size_t max);
std::string input_box_auto(std::string const &title, std::size_t max);
bool input_box_auto(std::string const &prompt, std::string *buf, std::size_t max);
void draw_box(int y, int x, int h, int w);
void display_list(int y, int x, int h, int w, const char *title, std::vector<std::string> const &list, std::size_t begin, std::size_t sel, byte sel_color);
std::string get_player_race_name(int pr, int ps);
std::string get_day(s32b day);
s32b bst(s32b what, s32b t);
FILE *my_fopen(const char *file, const char *mode);
errr my_fgets(FILE *fff, char *buf, unsigned long n);
errr my_fclose(FILE *fff);
errr fd_kill(const char *file);
errr fd_move(const char *file, const char *what);
int fd_make(const char *file, int mode);
int fd_open(const char *file, int flags);
errr fd_seek(int fd, unsigned long n);
errr fd_read(int fd, char *buf, unsigned long n);
errr fd_write(int fd, const char *buf, unsigned long n);
errr fd_close(int fd);
void flush();
void flush_on_failure();
void move_cursor(int row, int col);
void text_to_ascii(char *buf, const char *str);
void ascii_to_text(char *buf, const char *str);
char inkey_scan();
void display_message(int x, int y, int split, byte color, const char *t);
void cmsg_print(byte color, const char *msg);
void cmsg_print(byte color, std::string const &msg);
void msg_print(const char *msg);
void msg_print(std::string const &msg);
void cmsg_format(byte color, const char *fmt, ...);
void msg_format(const char *fmt, ...);
void screen_save();
void screen_save_no_flush();
void screen_load();
void screen_load_no_flush();
void c_put_str(byte attr, const char *str, int row, int col);
void c_put_str(byte attr, std::string const &str, int row, int col);
void put_str(const char *str, int row, int col);
void put_str(std::string const &s, int row, int col);
void c_prt(byte attr, const char *str, int row, int col);
void c_prt(byte attr, std::string const &s, int row, int col);
void prt(std::string const &s, int row, int col);
void text_out_to_screen(byte a, const char *str);
void text_out_to_file(byte a, const char *str);
void text_out(const char *str);
void text_out(std::string const &str);
void text_out_c(byte a, const char *str);
void text_out_c(byte a, std::string const &str);
void clear_from(int row);
int ask_menu(const char *ask, const std::vector<std::string> &items);
bool askfor_aux(std::string *buf, std::size_t max_len);
bool askfor_aux(char *buf, int len);
bool askfor_aux_with_completion(char *buf, int len);
bool get_string(const char *prompt, char *buf, int len);
bool get_check(const char *prompt);
bool get_check(std::string const &prompt);
bool get_com(const char *prompt, char *command);
s32b get_quantity(const char *prompt, s32b max);
extern char request_command_ignore_keymaps[MAX_IGNORE_KEYMAPS];
extern bool request_command_inven_mode;
void request_command(int shopping);
bool is_a_vowel(int ch);
int get_keymap_dir(char ch);
byte count_bits(u32b array);
void strlower(char *buf);
int test_monster_name(const char *name);
int test_mego_name(const char *name);
int test_item_name(const char *name);
char msg_box_auto(std::string const &title);
timer_type *new_timer(void (*callback)(), s32b delay);
int get_keymap_mode();
void repeat_push(int what);
bool repeat_pull(int *what);
void repeat_check();
void get_count(int number, int max);
bool in_bounds(int y, int x);
bool in_bounds2(int y, int x);
bool panel_contains(int y, int x);
errr path_parse(char *buf, int max, const char *file);
void pause_line(int row);
std::string user_name();
errr path_build(char *buf, int max, const char *path, const char *file);
void bell();
errr macro_add(const char *pat, const char *act);
int macro_find_exact(const char *pat);
char inkey();
void prt(const char *str, int row, int col);