Collab_RPG/src/npc.h
2024-07-30 18:19:49 +02:00

49 lines
1.1 KiB
C

#ifndef NPC_H
#define NPC_H
#include "game.h"
#include "memory.h"
#include <stdbool.h>
#include <stdint.h>
enum {
NPC_NONE = 0,
NPC_FRIENDLY = 1, // The player's team
NPC_HOSTILE = 2, // to the player
NPC_ALL = 3
};
// Frees then malloc()s a new path to npc
// Useful if you want to safely edit a path
int npc_clear_path(NPC *npc);
// Adds point x,y to the path of npc
// Won't work on static NPCs, use npc_clear_path before or make them on the heap
int npc_append_path(uint16_t x, uint16_t y, NPC *npc);
// Clears the NPCs path and creates a new one going to dest,
// avoiding non-walkable tiles
// Returns non-zero on failure
int npc_pathfind(int32_t dest_x, int32_t dest_y, Map *full_map, NPC *npc);
// realloc()s npcRPG to adequate size and returns a pointer to the new element
// Returns NULL on failure
NPC *npc_create();
// Pops the NPC from npcRPG
void npc_remove(NPC *npc);
/* Draws the player player. This function should be called after drawing the
* map! */
void npc_draw(Game *game);
void update_npcs(Game *game);
void update_npc(NPC *npc);
void reload_npc(Game *game);
#endif