2025-01-21 20:38:34 -05:00
|
|
|
#ifndef _FD_ITEM_
|
|
|
|
#define _FD_ITEM_
|
|
|
|
|
|
|
|
typedef struct Item Item;
|
|
|
|
typedef struct Items Items;
|
|
|
|
|
|
|
|
#include "game.h"
|
|
|
|
#include "room.h"
|
|
|
|
|
|
|
|
struct Item {
|
|
|
|
char *name;
|
|
|
|
char *indefinite;
|
|
|
|
bool pickuppable;
|
|
|
|
char *description;
|
|
|
|
bool in_inventory;
|
|
|
|
Room *location;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Items {
|
|
|
|
Item items[200];
|
|
|
|
int count;
|
|
|
|
};
|
|
|
|
|
|
|
|
void game_load_items(Game *g);
|
|
|
|
void log_items_in_room(Game *g, Room *r);
|
2025-01-21 21:01:32 -05:00
|
|
|
Item *find_item(Items *items, char *item_name);
|
|
|
|
void take_item(Game *g, char *item_name);
|
|
|
|
void drop_item(Game *g, char *item_name);
|
2025-01-23 20:25:56 -05:00
|
|
|
void destroy_item(Game *g, char *item_name);
|
2025-01-21 21:08:05 -05:00
|
|
|
void check_inventory(Game *g);
|
2025-01-21 20:38:34 -05:00
|
|
|
|
|
|
|
#endif
|