2001-01-25 10:37:55 +01:00
|
|
|
/* vi: set ts=2:
|
|
|
|
*
|
2001-04-14 13:39:14 +02:00
|
|
|
*
|
2003-07-29 11:48:03 +02:00
|
|
|
* Eressea PB(E)M host Copyright (C) 1998-2003
|
2001-01-25 10:37:55 +01:00
|
|
|
* Christian Schlittchen (corwin@amber.kn-bremen.de)
|
|
|
|
* Katja Zedel (katze@felidae.kn-bremen.de)
|
|
|
|
* Henning Peters (faroul@beyond.kn-bremen.de)
|
|
|
|
* Enno Rehling (enno@eressea-pbem.de)
|
|
|
|
* Ingo Wilken (Ingo.Wilken@informatik.uni-oldenburg.de)
|
|
|
|
*
|
|
|
|
* This program may not be used, modified or distributed without
|
|
|
|
* prior permission by the authors of Eressea.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TELEPORT_H
|
|
|
|
#define TELEPORT_H
|
2003-07-29 11:48:03 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2001-01-25 10:37:55 +01:00
|
|
|
|
2004-05-25 01:09:10 +02:00
|
|
|
struct region *r_standard_to_astral(const struct region *r);
|
|
|
|
struct region *r_astral_to_standard(const struct region *);
|
2004-05-25 10:53:59 +02:00
|
|
|
extern struct region_list *astralregions(const struct region * rastral, boolean (*valid)(const struct region *));
|
2005-06-10 00:10:35 +02:00
|
|
|
extern struct region_list *all_in_range(const struct region *r, short n, boolean (*valid)(const struct region *));
|
2004-05-25 01:09:10 +02:00
|
|
|
extern boolean inhabitable(const struct region * r);
|
|
|
|
extern struct plane * get_astralplane(void);
|
2004-05-25 11:30:39 +02:00
|
|
|
extern struct plane * get_normalplane(void);
|
2004-05-25 01:09:10 +02:00
|
|
|
|
|
|
|
void create_teleport_plane(void);
|
|
|
|
void set_teleport_plane_regiontypes(void);
|
2001-01-25 10:37:55 +01:00
|
|
|
|
2003-07-29 11:48:03 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2001-01-25 10:37:55 +01:00
|
|
|
#endif
|