summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/shout.h
blob: 6582798a3517c5557e5ec38c04e5423f5ef05c6b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef SHOUT_H
#define SHOUT_H

bool noisy(int loudness, const coord_def& where, int who,
           bool mermaid = false, bool message_if_unseen = false);
bool noisy(int loudness, const coord_def& where, const char *msg = NULL,
           int who = -1, bool mermaid = false, bool message_if_unseen = false,
           bool fake_noise = false);
bool fake_noisy(int loudness, const coord_def& where);

void item_noise(const item_def& item, string msg, int loudness = 25);
void noisy_equipment();

void check_monsters_sense(sense_type sense, int range, const coord_def& where);

void blood_smell(int strength, const coord_def& where);
void handle_monster_shouts(monster* mons, bool force = false);
bool check_awaken(monster* mons);

void apply_noises();

#endif