30 lines
485 B
C
30 lines
485 B
C
|
#ifndef _FD_ACTION_
|
||
|
#define _FD_ACTION_
|
||
|
|
||
|
typedef struct Action Action;
|
||
|
typedef struct Actions Actions;
|
||
|
|
||
|
#include "game.h"
|
||
|
#include "word.h"
|
||
|
#include "predicate.h"
|
||
|
|
||
|
struct Action {
|
||
|
Word *words[4];
|
||
|
int words_count;
|
||
|
Predicate *predicates[10];
|
||
|
int predicates_count;
|
||
|
int priority;
|
||
|
char *description;
|
||
|
// Effect *effect;
|
||
|
};
|
||
|
|
||
|
struct Actions {
|
||
|
Action actions[1000];
|
||
|
int count;
|
||
|
};
|
||
|
|
||
|
void game_load_actions(Game *g);
|
||
|
Action *find_action(Actions *actions, char *command);
|
||
|
|
||
|
#endif
|