2014-12-17 17:22:26 +01:00
|
|
|
#ifndef LIGHTHOUSE_H
|
|
|
|
#define LIGHTHOUSE_H
|
|
|
|
|
2017-01-10 16:31:05 +01:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2014-12-17 17:22:26 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2014-12-17 17:46:21 +01:00
|
|
|
|
|
|
|
struct faction;
|
|
|
|
struct region;
|
|
|
|
struct building;
|
2018-07-17 20:53:34 +02:00
|
|
|
struct building_type;
|
2017-05-21 21:33:29 +02:00
|
|
|
struct unit;
|
2016-09-17 12:34:02 +02:00
|
|
|
struct attrib;
|
|
|
|
|
2016-12-16 17:16:10 +01:00
|
|
|
extern struct attrib_type at_lighthouse;
|
2014-12-17 17:22:26 +01:00
|
|
|
/* leuchtturm */
|
2018-07-17 20:53:34 +02:00
|
|
|
bool is_lighthouse(const struct building_type *btype);
|
|
|
|
bool lighthouse_guarded(const struct region *r);
|
2017-05-21 21:33:29 +02:00
|
|
|
void update_lighthouse(struct building *b);
|
2018-07-17 20:53:34 +02:00
|
|
|
void remove_lighthouse(const struct building *lh);
|
2018-07-18 20:49:17 +02:00
|
|
|
int lighthouse_range(const struct building *b);
|
|
|
|
int lighthouse_view_distance(const struct building *b, const struct unit *u);
|
2014-12-17 17:22:26 +01:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|