thrive/predicate.h

27 lines
501 B
C
Raw Permalink Normal View History

2025-01-13 19:56:15 -05:00
#ifndef _FD_PREDICATE_
#define _FD_PREDICATE_
typedef struct Predicate Predicate;
typedef enum PredicateType {
PREDICATE_TRUE,
PREDICATE_IN_ROOM,
2025-01-21 21:01:32 -05:00
PREDICATE_ITEM_HERE,
2025-01-27 20:44:54 -05:00
PREDICATE_ITEM_NOT_HERE,
2025-01-21 21:01:32 -05:00
PREDICATE_HAS_ITEM,
2025-01-13 19:56:15 -05:00
PREDICATE_FLAG_ENABLED,
} PredicateType;
#include "game.h"
struct Predicate {
PredicateType type;
char *argument;
};
bool predicate_fulfilled(Game *g, Predicate *p);
2025-01-18 06:34:36 -05:00
Predicate *create_predicate(Game *g, const char *string);
void print_predicate(Predicate *p);
2025-01-13 19:56:15 -05:00
#endif