server/src/modules/autoseed.h

45 lines
1.3 KiB
C
Raw Normal View History

/*
2010-08-08 10:06:34 +02:00
+-------------------+ Christian Schlittchen <corwin@amber.kn-bremen.de>
| | Enno Rehling <enno@eressea.de>
| Eressea PBEM host | Katja Zedel <katze@felidae.kn-bremen.de>
| (c) 1998 - 2003 | Henning Peters <faroul@beyond.kn-bremen.de>
| | Ingo Wilken <Ingo.Wilken@informatik.uni-oldenburg.de>
+-------------------+ Stefan Reich <reich@halbling.de>
This program may not be used, modified or distributed
2010-08-08 10:06:34 +02:00
without prior permission by the authors of Eressea.
*/
2010-08-08 10:06:34 +02:00
#ifndef _REGIONLIST_H
#define _REGIONLIST_H
#ifdef __cplusplus
extern "C" {
#endif
struct newfaction;
2011-03-07 08:02:35 +01:00
typedef struct newfaction {
struct newfaction *next;
char *email;
char *password;
const struct locale *lang;
const struct race *race;
bool oldregions;
struct alliance *allies;
} newfaction;
2010-08-08 10:06:34 +02:00
#define ISLANDSIZE 20
#define TURNS_PER_ISLAND 5
extern int autoseed(newfaction ** players, int nsize, int max_agediff);
extern newfaction *read_newfactions(const char *filename);
extern const struct terrain_type *random_terrain(const struct terrain_type
*terrains[], int distribution[], int size);
2010-08-08 10:06:34 +02:00
extern int build_island_e3(int x, int y, int minsize, newfaction **players, int numfactions);
2010-08-08 10:06:34 +02:00
#ifdef __cplusplus
}
#endif
#endif