-
Notifications
You must be signed in to change notification settings - Fork 9
/
glyphinfo.h
73 lines (54 loc) · 2.05 KB
/
glyphinfo.h
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#ifndef PHP_RAYLIB_GLYPHINFO_H
#define PHP_RAYLIB_GLYPHINFO_H
#include "include/hashmap.h"
#include "image.h"
extern zend_class_entry * php_raylib_glyphinfo_ce;
// External Free Objects - Prevent Circular Dependency
extern void php_raylib_image_free_storage(zend_object *object);
extern void php_raylib_glyphinfo_free_storage(zend_object * object);
extern zend_object * php_raylib_glyphinfo_new(zend_class_entry * ce);
extern zend_object * php_raylib_glyphinfo_new_ex(zend_class_entry *ce, zend_object *orig);
extern zend_object_handlers php_raylib_glyphinfo_object_handlers;
typedef enum {
RL_GLYPHINFO_IS_POINTER,
RL_GLYPHINFO_IS_VALUE
} RLGlyphInfoDataType;
typedef union {
GlyphInfo *p;
GlyphInfo v;
} GlyphInfoUnion;
struct RL_GlyphInfo {
unsigned int id;
char *guid;
GlyphInfoUnion data;
RLGlyphInfoDataType type;
unsigned refCount;
unsigned char deleted;
};
static struct RL_GlyphInfo **RL_GlyphInfo_Object_List;
static hashmap *RL_GlyphInfo_Object_Map;
char* RL_GlyphInfo_Hash_Id(char *str, size_t size);
struct RL_GlyphInfo* RL_GlyphInfo_Create();
void RL_GlyphInfo_Delete(struct RL_GlyphInfo* object, int index);
void RL_GlyphInfo_Free(struct RL_GlyphInfo* object);
typedef struct _php_raylib_glyphinfo_object {
struct RL_GlyphInfo *glyphinfo;
HashTable *prop_handler;
zval image;
zend_object std;
} php_raylib_glyphinfo_object;
static inline php_raylib_glyphinfo_object *php_raylib_glyphinfo_fetch_object(zend_object *obj) {
return (php_raylib_glyphinfo_object *)((char *)obj - XtOffsetOf(php_raylib_glyphinfo_object, std));
}
static inline GlyphInfo *php_raylib_glyphinfo_fetch_data(php_raylib_glyphinfo_object *obj) {
GlyphInfo *my_glyphinfo;
if (obj->glyphinfo->type == RL_GLYPHINFO_IS_POINTER) {
my_glyphinfo = obj->glyphinfo->data.p;
} else {
my_glyphinfo = &obj->glyphinfo->data.v;
}
return my_glyphinfo;
}
#define Z_GLYPHINFO_OBJ_P(zv) php_raylib_glyphinfo_fetch_object(Z_OBJ_P(zv));
void php_raylib_glyphinfo_startup(INIT_FUNC_ARGS);
#endif //PHP_RAYLIB_GLYPHINFO_H