summaryrefslogtreecommitdiff
path: root/core/func_ref.cpp
blob: 0e43112de888687ef929f7a140301357ad306cd4 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include "func_ref.h"

Variant FuncRef::call_func(const Variant** p_args, int p_argcount, Variant::CallError& r_error) {

	if (id==0) {
		r_error.error=Variant::CallError::CALL_ERROR_INSTANCE_IS_NULL;
		return Variant();
	}
	Object* obj = ObjectDB::get_instance(id);

	if (!obj) {
		r_error.error=Variant::CallError::CALL_ERROR_INSTANCE_IS_NULL;
		return Variant();
	}

	return obj->call(function,p_args,p_argcount,r_error);

}

void FuncRef::set_instance(Object *p_obj){

	ERR_FAIL_NULL(p_obj);
	id=p_obj->get_instance_ID();
}
void FuncRef::set_function(const StringName& p_func){

	function=p_func;
}

void FuncRef::_bind_methods() {

	{
		MethodInfo mi;
		mi.name="call";
		mi.arguments.push_back( PropertyInfo( Variant::STRING, "method"));
		Vector<Variant> defargs;
		for(int i=0;i<10;i++) {
			mi.arguments.push_back( PropertyInfo( Variant::NIL, "arg"+itos(i)));
			defargs.push_back(Variant());
		}
		ObjectTypeDB::bind_native_method(METHOD_FLAGS_DEFAULT,"call_func",&FuncRef::call_func,mi,defargs);

	}

	ObjectTypeDB::bind_method(_MD("set_instance","instance"),&FuncRef::set_instance);
	ObjectTypeDB::bind_method(_MD("set_function","name"),&FuncRef::set_function);

}


FuncRef::FuncRef(){

	id=0;
}