forked from github/server
3391b3bb7a
- initialize global.cookie properly
428 lines
14 KiB
C
428 lines
14 KiB
C
/* vi: set ts=2:
|
|
*
|
|
* Eressea PB(E)M host Copyright (C) 1998-2003
|
|
* 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.de)
|
|
* Ingo Wilken (Ingo.Wilken@informatik.uni-oldenburg.de)
|
|
*
|
|
* based on:
|
|
*
|
|
* Atlantis v1.0 13 September 1993 Copyright 1993 by Russell Wallace
|
|
* Atlantis v1.7 Copyright 1996 by Alex Schröder
|
|
*
|
|
* This program may not be used, modified or distributed without
|
|
* prior permission by the authors of Eressea.
|
|
* This program may not be sold or used commercially without prior written
|
|
* permission from the authors.
|
|
*/
|
|
|
|
#ifndef ERESSEA_H
|
|
#define ERESSEA_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* this should always be the first thing included after config.h */
|
|
#include "types.h"
|
|
|
|
/* experimental gameplay features (that don't affect the savefile) */
|
|
/* TODO: move these settings to settings.h or into configuration files */
|
|
#define GOBLINKILL /* Goblin-Spezialklau kann tödlich enden */
|
|
#define HERBS_ROT /* herbs owned by units have a chance to rot. */
|
|
#define SHIPDAMAGE /* Schiffsbeschädigungen */
|
|
#define INSECT_POTION /* Spezialtrank für Insekten */
|
|
#define ORCIFICATION /* giving snotlings to the peasants gets counted */
|
|
#undef TROLLSAVE /* saving throw for dead trolls */
|
|
|
|
#define ALLIED(f1, f2) (f1==f2 || (f1->alliance && f1->alliance==f2->alliance))
|
|
|
|
/* for some good prime numbers, check http://www.math.niu.edu/~rusin/known-math/98/pi_x */
|
|
#ifndef MAXREGIONS
|
|
# define MAXREGIONS 524287 /* must be prime for hashing. 262139 was a little small */
|
|
#endif
|
|
#ifndef MAXUNITS
|
|
# define MAXUNITS 1048573 /* must be prime for hashing. 524287 was >90% full */
|
|
#endif
|
|
|
|
#define MAXPEASANTS_PER_AREA 10 /* number of peasants per region-size */
|
|
#define TREESIZE (MAXPEASANTS_PER_AREA-2) /* space used by trees (in #peasants) */
|
|
|
|
#define PEASANTFORCE 0.75 /* Chance einer Vermehrung trotz 90% Auslastung */
|
|
#define HERBROTCHANCE 5 /* Verrottchance für Kräuter (ifdef HERBS_ROT) */
|
|
|
|
/* Gebäudegröße = Minimalbelagerer */
|
|
#define SIEGEFACTOR 2
|
|
|
|
/** Magic */
|
|
#define MAXMAGICIANS 3
|
|
#define MAXALCHEMISTS 3
|
|
|
|
/** Plagues **/
|
|
#define PLAGUE_CHANCE 0.1F /* Seuchenwahrscheinlichkeit (siehe plagues()) */
|
|
#define PLAGUE_VICTIMS 0.2F /* % Betroffene */
|
|
#define PLAGUE_HEALCHANCE 0.25F /* Wahrscheinlichkeit Heilung */
|
|
#define PLAGUE_HEALCOST 30 /* Heilkosten */
|
|
|
|
/** Monster */
|
|
|
|
#define MONSTERATTACK 0.4F /* Chance für Monsterangriff */
|
|
|
|
/** Gebäude */
|
|
#define COLLAPSE_CHANCE 0.4F /* Chance für Einsturz bei unversorgtem Gebaeude */
|
|
#define COLLAPSE_SURVIVAL 0.5F /* Soviele % überleben den Einsturz */
|
|
|
|
/* Magiesystem */
|
|
#define NIGHT_EYE_TALENT 5
|
|
|
|
/* Bewegungsweiten: */
|
|
#define BP_WALKING 4
|
|
#define BP_RIDING 6
|
|
#define BP_UNICORN 9
|
|
#define BP_DRAGON 4
|
|
|
|
#define BP_NORMAL 3
|
|
#define BP_ROAD 2
|
|
|
|
|
|
/**
|
|
* Hier endet der Teil von eressea.h, der die defines für die
|
|
* Spielwelt Eressea enthält, und beginnen die allgemeinen Routinen
|
|
*/
|
|
|
|
#define ENCCHANCE 10 /* %-Chance für einmalige Zufallsbegegnung */
|
|
|
|
#define DISPLAYSIZE 8191 /* max. Länge einer Beschreibung, ohne trailing 0 */
|
|
#define NAMESIZE 127 /* max. Länge eines Namens, ohne trailing 0 */
|
|
#define IDSIZE 15 /* max. Länge einer no (als String), ohne trailing 0 */
|
|
#define KEYWORDSIZE 15 /* max. Länge eines Keyword, ohne trailing 0 */
|
|
#define OBJECTIDSIZE (NAMESIZE+5+IDSIZE) /* max. Länge der Strings, die
|
|
* von struct unitname, etc. zurückgegeben werden. ohne die 0 */
|
|
|
|
#define BAGCAPACITY 20000 /* soviel paßt in einen Bag of Holding */
|
|
#define STRENGTHCAPACITY 50000 /* zusätzliche Tragkraft beim Kraftzauber (deprecated) */
|
|
#define STRENGTHMULTIPLIER 50 /* multiplier for trollbelt */
|
|
|
|
/* ----------------- Befehle ----------------------------------- */
|
|
|
|
extern const char *keywords[MAXKEYWORDS];
|
|
extern const char *parameters[MAXPARAMS];
|
|
|
|
/** report options **/
|
|
#define want(option) (1<<option)
|
|
extern const char *options[MAXOPTIONS];
|
|
|
|
/* ------------------------------------------------------------- */
|
|
|
|
extern int shipspeed(const struct ship * sh, const struct unit * u);
|
|
extern int init_data(const char * filename);
|
|
|
|
#define i2b(i) ((boolean)((i)?(true):(false)))
|
|
|
|
typedef struct ally {
|
|
struct ally *next;
|
|
struct faction *faction;
|
|
int status;
|
|
} ally;
|
|
|
|
void remove_empty_units_in_region(struct region *r);
|
|
void remove_empty_units(void);
|
|
void remove_empty_factions(boolean writedropouts);
|
|
|
|
typedef struct strlist {
|
|
struct strlist *next;
|
|
char * s;
|
|
} strlist;
|
|
|
|
#define fval(u, i) ((u)->flags & (i))
|
|
#define fset(u, i) ((u)->flags |= (i))
|
|
#define freset(u, i) ((u)->flags &= ~(i))
|
|
|
|
extern int turn;
|
|
extern int quiet;
|
|
|
|
/* parteinummern */
|
|
extern boolean faction_id_is_unused(int);
|
|
|
|
/* leuchtturm */
|
|
extern boolean check_leuchtturm(struct region * r, struct faction * f);
|
|
extern void update_lighthouse(struct building * lh);
|
|
extern struct unit_list * get_lighthouses(const struct region * r);
|
|
extern int lighthouse_range(const struct building * b, const struct faction * f);
|
|
|
|
/* skills */
|
|
extern int max_skill(struct faction * f, skill_t sk);
|
|
extern int count_skill(struct faction * f, skill_t sk);
|
|
|
|
/* direction, geography */
|
|
extern const char *directions[];
|
|
extern direction_t finddirection(const char *s, const struct locale *);
|
|
|
|
extern int findoption(const char *s, const struct locale * lang);
|
|
|
|
/* special units */
|
|
void make_undead_unit(struct unit *);
|
|
|
|
extern struct region *regions;
|
|
extern struct faction *factions;
|
|
|
|
void addstrlist(strlist ** SP, const char *s);
|
|
|
|
int armedmen(const struct unit * u);
|
|
|
|
unsigned int atoip(const char *s);
|
|
unsigned int getuint(void);
|
|
int getint(void);
|
|
|
|
extern const char *igetstrtoken(const char *s);
|
|
|
|
extern void init_tokens(const struct order * ord); /* initialize token parsing */
|
|
extern skill_t findskill(const char *s, const struct locale * lang);
|
|
|
|
extern keyword_t findkeyword(const char *s, const struct locale * lang);
|
|
|
|
extern param_t findparam(const char *s, const struct locale * lang);
|
|
extern param_t getparam(const struct locale * lang);
|
|
|
|
extern int atoi36(const char * s);
|
|
extern int getid(void);
|
|
#define unitid(x) itoa36((x)->no)
|
|
|
|
#define getshipid() getid()
|
|
#define getfactionid() getid()
|
|
|
|
#define buildingid(x) itoa36((x)->no)
|
|
#define shipid(x) itoa36((x)->no)
|
|
#define factionid(x) itoa36((x)->no)
|
|
#define curseid(x) itoa36((x)->no)
|
|
|
|
extern boolean cansee(const struct faction * f, const struct region * r, const struct unit * u, int modifier);
|
|
boolean cansee_durchgezogen(const struct faction * f, const struct region * r, const struct unit * u, int modifier);
|
|
extern boolean cansee_unit(const struct unit * u, const struct unit * target, int modifier);
|
|
boolean seefaction(const struct faction * f, const struct region * r, const struct unit * u, int modifier);
|
|
extern int effskill(const struct unit * u, skill_t sk);
|
|
|
|
extern int lovar(double xpct_x2);
|
|
/* returns a value between [0..xpct_2], generated with two dice */
|
|
|
|
int distribute(int old, int new_value, int n);
|
|
|
|
int newunitid(void);
|
|
int forbiddenid(int id);
|
|
int newcontainerid(void);
|
|
|
|
extern struct unit *createunit(struct region * r, struct faction * f, int number, const struct race * rc);
|
|
extern void create_unitid(struct unit *u, int id);
|
|
extern boolean getunitpeasants;
|
|
extern struct unit *getunitg(const struct region * r, const struct faction * f);
|
|
extern struct unit *getunit(const struct region * r, const struct faction * f);
|
|
|
|
extern int read_unitid(const struct faction * f, const struct region * r);
|
|
|
|
extern int alliedunit(const struct unit * u, const struct faction * f2, int mode);
|
|
extern int alliedfaction(const struct plane * pl, const struct faction * f,
|
|
const struct faction * f2, int mode);
|
|
extern int alliedgroup(const struct plane * pl, const struct faction * f,
|
|
const struct faction * f2, const struct ally * sf,
|
|
int mode);
|
|
|
|
struct faction *findfaction(int n);
|
|
struct faction *getfaction(void);
|
|
|
|
struct unit *findunitg(int n, const struct region * hint);
|
|
struct unit *findunit(int n);
|
|
|
|
struct unit *findunitr(const struct region * r, int n);
|
|
struct region *findunitregion(const struct unit * su);
|
|
|
|
extern char *estring(const char *s);
|
|
extern char *estring_i(char *s);
|
|
extern char *cstring(const char *s);
|
|
extern char *cstring_i(char *s);
|
|
extern const char *unitname(const struct unit * u);
|
|
extern char * write_unitname(const struct unit * u, char * buffer, size_t size);
|
|
|
|
struct building *largestbuilding(const struct region * r, boolean img);
|
|
|
|
extern int count_all(const struct faction * f);
|
|
extern int count_migrants (const struct faction * f);
|
|
extern int count_maxmigrants(const struct faction * f);
|
|
|
|
extern boolean has_limited_skills(const struct unit * u);
|
|
extern const struct race * findrace(const char *, const struct locale *);
|
|
|
|
int eff_stealth(const struct unit * u, const struct region * r);
|
|
void scale_number(struct unit * u, int n);
|
|
int unit_max_hp(const struct unit * u);
|
|
int ispresent(const struct faction * f, const struct region * r);
|
|
|
|
int check_option(struct faction * f, int option);
|
|
extern void parse(keyword_t kword, int (*dofun)(struct unit *, struct order *), boolean thisorder);
|
|
|
|
/* Anzahl Personen in einer Einheit festlegen. NUR (!) mit dieser Routine,
|
|
* sonst großes Unglück. Durch asserts an ein paar Stellen abgesichert. */
|
|
void verify_data(void);
|
|
|
|
void stripfaction(struct faction * f);
|
|
void freestrlist(strlist * s);
|
|
|
|
int change_hitpoints(struct unit *u, int value);
|
|
|
|
int weight(const struct unit * u);
|
|
void changeblockchaos(void);
|
|
|
|
/* intervall, in dem die regionen der partei zu finden sind */
|
|
extern struct region *firstregion(struct faction * f);
|
|
extern struct region *lastregion(struct faction * f);
|
|
|
|
void fhash(struct faction * f);
|
|
void funhash(struct faction * f);
|
|
|
|
boolean idle(struct faction * f);
|
|
boolean unit_has_cursed_item(struct unit *u);
|
|
|
|
/* simple garbage collection: */
|
|
void * gc_add(void * p);
|
|
void addmessage(struct region * r, struct faction * f, const char *s, msg_t mtype, int level);
|
|
|
|
/* grammatik-flags: */
|
|
#define GF_NONE 0
|
|
/* singular, ohne was dran */
|
|
#define GF_PLURAL 1
|
|
/* Angaben in Mehrzahl */
|
|
#define GF_ARTICLE 8
|
|
/* der, die, eine */
|
|
#define GF_SPECIFIC 16
|
|
/* der, die, das vs. ein, eine */
|
|
#define GF_DETAILED 32
|
|
/* mehr Informationen. z.b. straße zu 50% */
|
|
#define GF_PURE 64
|
|
/* untranslated */
|
|
|
|
#define GUARD_NONE 0
|
|
#define GUARD_TAX 1
|
|
/* Verhindert Steuereintreiben */
|
|
#define GUARD_MINING 2
|
|
/* Verhindert Bergbau */
|
|
#define GUARD_TREES 4
|
|
/* Verhindert Waldarbeiten */
|
|
#define GUARD_TRAVELTHRU 8
|
|
/* Blockiert Durchreisende */
|
|
#define GUARD_LANDING 16
|
|
/* Verhindert Ausstieg + Weiterreise */
|
|
#define GUARD_CREWS 32
|
|
/* Verhindert Unterhaltung auf Schiffen */
|
|
#define GUARD_RECRUIT 64
|
|
/* Verhindert Rekrutieren */
|
|
#define GUARD_PRODUCE 128
|
|
/* Verhindert Abbau von Resourcen mit RTF_LIMITED */
|
|
#define GUARD_ALL 0xFFFF
|
|
|
|
extern void setstatus(struct unit * u, int status);
|
|
/* !< sets combatstatus of a unit */
|
|
extern void setguard(struct unit * u, unsigned int flags);
|
|
/* !< setzt die guard-flags der Einheit */
|
|
extern unsigned int getguard(const struct unit * u);
|
|
/* liest die guard-flags der Einheit */
|
|
extern void guard(struct unit * u, unsigned int mask);
|
|
/* Einheit setzt "BEWACHE", rassenspezifzisch.
|
|
* 'mask' kann einzelne flags zusätzlich und-maskieren.
|
|
*/
|
|
|
|
extern boolean hunger(int number, struct unit * u);
|
|
extern int lifestyle(const struct unit*);
|
|
extern int besieged(const struct unit * u);
|
|
extern int maxworkingpeasants(const struct region * r);
|
|
|
|
extern int wage(const struct region *r, const struct faction *f, const struct race * rc);
|
|
extern int maintenance_cost(const struct unit * u);
|
|
extern struct message * movement_error(struct unit * u, const char * token, struct order * ord, int error_code);
|
|
extern boolean move_blocked(const struct unit * u, const struct region *src, const struct region *dest);
|
|
extern void add_income(struct unit * u, int type, int want, int qty);
|
|
|
|
/* movewhere error codes */
|
|
enum {
|
|
E_MOVE_OK = 0, /* possible to move */
|
|
E_MOVE_NOREGION, /* no region exists in this direction */
|
|
E_MOVE_BLOCKED /* cannot see this region, there is a blocking border. */
|
|
};
|
|
extern int movewhere(const struct unit *u, const char * token, struct region * r, struct region** resultp);
|
|
|
|
extern const char * basepath(void);
|
|
extern const char * resourcepath(void);
|
|
extern void kernel_init(void);
|
|
extern void kernel_done(void);
|
|
|
|
extern void reorder_owners(struct region * r);
|
|
|
|
extern const char *localenames[];
|
|
|
|
#ifdef _MSC_VER
|
|
#include <stdafx.h>
|
|
#endif
|
|
|
|
/** compatibility: **/
|
|
extern race_t old_race(const struct race *);
|
|
extern const struct race * new_race[];
|
|
|
|
/* globale settings des Spieles */
|
|
typedef struct settings {
|
|
const char *gamename;
|
|
boolean unitsperalliance;
|
|
unsigned int maxunits;
|
|
struct attrib *attribs;
|
|
unsigned int data_turn;
|
|
boolean disabled[MAXKEYWORDS];
|
|
struct param * parameters;
|
|
void * vm_state;
|
|
float producexpchance;
|
|
int cookie;
|
|
|
|
struct global_functions {
|
|
int (*wage)(const struct region *r, const struct faction * f, const struct race * rc);
|
|
int (*maintenance)(const struct unit * u);
|
|
} functions;
|
|
} settings;
|
|
extern settings global;
|
|
|
|
extern int produceexp(struct unit * u, skill_t sk, int n);
|
|
|
|
extern boolean sqlpatch;
|
|
extern boolean lomem; /* save memory */
|
|
|
|
extern const char * dbrace(const struct race * rc);
|
|
|
|
extern void set_param(struct param ** p, const char * name, const char * data);
|
|
extern const char* get_param(const struct param * p, const char * name);
|
|
|
|
extern boolean ExpensiveMigrants(void);
|
|
extern int NMRTimeout(void);
|
|
extern int LongHunger(const struct unit * u);
|
|
extern boolean TradeDisabled(void);
|
|
extern int SkillCap(skill_t sk);
|
|
extern int NewbieImmunity(void);
|
|
extern int AllianceAuto(void); /* flags that allied factions get automatically */
|
|
extern int AllianceRestricted(void); /* flags restricted to allied factions */
|
|
extern struct order * default_order(const struct locale * lang);
|
|
extern int entertainmoney(const struct region * r);
|
|
|
|
extern void plagues(struct region * r, boolean ismagic);
|
|
|
|
extern struct attrib_type at_guard;
|
|
extern void free_gamedata(void);
|
|
#if 1 /* disable to count all units */
|
|
# define count_unit(u) playerrace(u->race)
|
|
#else
|
|
# define count_unit(u) 1
|
|
#endif
|
|
|
|
#if XECMD_MODULE
|
|
extern struct attrib_type at_xontormiaexpress;
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|