hank
2016-12-13 6e1425f9ce40a8d178a0218e24bc37c7b01477bb
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
/*
 *  wax_instance.h
 *  Lua
 *
 *  Created by ProbablyInteractive on 5/18/09.
 *  Copyright 2009 Probably Interactive. All rights reserved.
 *
 */
 
#import <Foundation/Foundation.h>
#import <objc/runtime.h>
#import <objc/message.h>
 
//#import "lua.h"
#import <lua/lua.h>
 
#define WAX_INSTANCE_METATABLE_NAME "wax.instance"
 
typedef struct _wax_instance_userdata {
    id instance;
    BOOL isClass;
    Class isSuper; // isSuper not only stores whether the class is a super, but it also contains the value of the next superClass.
    BOOL actAsSuper; // It only acts like a super once, when it is called for the first time.
    BOOL waxRetain; // TODO: need release instance when gc
} wax_instance_userdata;
 
int luaopen_wax_instance(lua_State *L);
 
wax_instance_userdata *wax_instance_create(lua_State *L, id instance, BOOL isClass);
wax_instance_userdata *wax_instance_createSuper(lua_State *L, wax_instance_userdata *instanceUserdata);
void wax_instance_pushUserdataTable(lua_State *L);
void wax_instance_pushStrongUserdataTable(lua_State *L);
 
BOOL wax_instance_pushFunction(lua_State *L, id self, SEL selector);
void wax_instance_pushUserdata(lua_State *L, id object);
BOOL wax_instance_isWaxClass(id instance);