28 lines
1.7 KiB
C
28 lines
1.7 KiB
C
#include "defs.h"
|
|
|
|
void addignorecell(lifeform_t *lf, cell_t *c);
|
|
int aiattack(lifeform_t *lf, lifeform_t *victim, int timelimit);
|
|
enum OBTYPE aigetattackspell(lifeform_t *lf, lifeform_t *victim);
|
|
enum OBTYPE aigetfleespell(lifeform_t *lf);
|
|
cell_t *aigetlastknownpos(lifeform_t *lf, lifeform_t *target, int *lastx, int *lasty, int *lastdir);
|
|
object_t *aigetrangedattack(lifeform_t *lf, enum RANGEATTACK *ra, int *range);
|
|
void aigetspelltarget(lifeform_t *lf, objecttype_t *spelltype, lifeform_t *victim, lifeform_t **spelllf, cell_t **spellcell, object_t **spellob, enum FLAG purpose);
|
|
object_t *aigetwand(lifeform_t *lf, enum FLAG purpose);
|
|
flag_t *aigoto(lifeform_t *lf, cell_t *c, enum MOVEREASON why, void *data, int timelimit);
|
|
flag_t *aihastarget(lifeform_t *lf);
|
|
int aimovetolf(lifeform_t *lf, lifeform_t *target, int wantattack);
|
|
void aimovetotargetcell(lifeform_t *lf, flag_t *f);
|
|
int aipickup(lifeform_t *lf, object_t *o);
|
|
int aipickupok(lifeform_t *lf, object_t *o);
|
|
int aiobok(lifeform_t *lf, object_t *o, lifeform_t *target);
|
|
int aispellok(lifeform_t *lf, enum OBTYPE spellid, lifeform_t *victim, enum FLAG purpose);
|
|
void aiturn(lifeform_t *lf);
|
|
int aiwants(lifeform_t *lf, object_t *o, int *covets);
|
|
int aiwants_real(lifeform_t *lf, object_t *o, int *covets, int *noids, enum OBTYPE *oid, int *oidcovet,int *nwantflags, enum FLAG *wantflag, int *wantflagcovet);
|
|
lifeform_t *gettargetlf(lifeform_t *lf);
|
|
object_t *hasbetterarmour(lifeform_t *lf, obpile_t *op);
|
|
object_t *hasbetterweapon(lifeform_t *lf, obpile_t *op);
|
|
int lookforobs(lifeform_t *lf);
|
|
void makewantedoblist(lifeform_t *lf, int *noids, enum OBTYPE *oid, int *oidcovet,int *nwantflags, enum FLAG *wantflag, int *wantflagcovet);
|
|
int useitemwithflag(lifeform_t *lf, enum FLAG whichflag);
|