prosperon/source/engine/registry.h
2022-08-12 19:03:56 +00:00

37 lines
876 B
C
Executable file

#ifndef REGISTRY_H
#define REGISTRY_H
#include <stddef.h>
#include "config.h"
struct mGameObject;
struct component {
const char *name;
void *(*make)(struct mGameObject * go);
void *data;
struct mGameObject *go;
void (*draw_debug)(void *data);
void (*draw_gui)(void *data);
int id;
int datasize;
void (*init)(void *data, struct mGameObject * go);
};
extern struct component components[MAXNAME];
extern int ncomponent;
void comp_draw_debug(struct component *c);
void comp_draw_gui(struct component *c);
void comp_update(struct component *c, struct mGameObject *go);
void registry_init();
void register_component(const char *name, size_t size,
void (*make)(struct mGameObject * go, struct component * c),
void(*draw_debug)(void *data),
void(*draw_gui)(void *data),
void(*init)(void *data, struct mGameObject * go));
#endif