summaryrefslogtreecommitdiff
path: root/src/entityimpl.h
blob: 397e58b761d0f37b9d3d5f027294394d3d967a4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#pragma once
#include "game.h"
#include "cfg.h"
#include "TZR.h"
#include "entitytag.h"
#include <string.h>

[[maybe_unused]] static void *_draw;
[[maybe_unused]] static void *_update;

#define IMPL(X) static void X(Entity *this, Game *g); \
__attribute__((constructor)) static void init_##X() { _##X = X; } \
static void X([[maybe_unused]] Entity *this, [[maybe_unused]] Game *g)

#define IMPL_INIT(X,P) static void init(Entity *, const char *, \
                                        int, int, int, int); \
__attribute__((constructor)) static void init_tag(void) { \
	entitytags[num_entitytags].init = init; \
	entitytags[num_entitytags].parent = P; \
	entitytags[num_entitytags++].name = #X; \
} \
static void _init(Entity *this); \
static void init(Entity *this, const char *name, int x, int y, int w, int h) { \
	memset(this, 0, sizeof(*this)); \
	this->update = _update; \
	this->draw = _draw; \
	this->name = name; \
	this->pos[0] = x; \
	this->pos[1] = y; \
	this->width = w; \
	this->height = h; \
	this->type = entity_type(#X); \
	_init(this); \
} \
static void _init([[maybe_unused]] Entity *this)