-
-
Notifications
You must be signed in to change notification settings - Fork 21.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
-fix bug in cache for atlas import/export
-fix some menus -fixed bug in out transition curves -detect and remove file:/// in collada -remove multiscript for now -remove dependencies on mouse in OS, moved to Input -avoid fscache from screwing up (fix might make it slower, but it works) -funcref was missing, it's there now
- Loading branch information
Showing
136 changed files
with
10,782 additions
and
1,576 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#ifndef FUNC_REF_H | ||
#define FUNC_REF_H | ||
|
||
#include "reference.h" | ||
|
||
class FuncRef : public Reference{ | ||
|
||
OBJ_TYPE(FuncRef,Reference); | ||
ObjectID id; | ||
StringName function; | ||
|
||
protected: | ||
|
||
static void _bind_methods(); | ||
public: | ||
|
||
Variant call_func(const Variant** p_args, int p_argcount, Variant::CallError& r_error); | ||
void set_instance(Object *p_obj); | ||
void set_function(const StringName& p_func); | ||
FuncRef(); | ||
}; | ||
|
||
#endif // FUNC_REF_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.