thrive/01_text_adventure/predicate.h
2025-01-18 06:34:36 -05:00

25 lines
454 B
C

#ifndef _FD_PREDICATE_
#define _FD_PREDICATE_
typedef struct Predicate Predicate;
typedef enum PredicateType {
PREDICATE_TRUE,
PREDICATE_IN_ROOM,
// PREDICATE_HAS_ITEM,
PREDICATE_FLAG_ENABLED,
} PredicateType;
#include "game.h"
struct Predicate {
PredicateType type;
char *argument;
};
bool predicate_fulfilled(Game *g, Predicate *p);
Predicate *create_predicate(Game *g, const char *string);
void print_predicate(Predicate *p);
#endif