Skip to content

Commit

Permalink
Merge pull request #29140 from neikeq/to_string_impl
Browse files Browse the repository at this point in the history
C#: Implement ScriptInstance::to_string
  • Loading branch information
neikeq authored May 23, 2019
2 parents 9738ed5 + 04ebf29 commit a46b8e1
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 1 deletion.
28 changes: 28 additions & 0 deletions modules/mono/csharp_script.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1855,6 +1855,34 @@ void CSharpInstance::_call_notification(int p_notification) {
}
}

String CSharpInstance::to_string(bool *r_valid) {
MonoObject *mono_object = get_mono_object();

if (mono_object == NULL) {
if (r_valid)
*r_valid = false;
return String();
}

MonoException *exc = NULL;
MonoString *result = GDMonoUtils::object_to_string(mono_object, &exc);

if (exc) {
GDMonoUtils::set_pending_exception(exc);
if (r_valid)
*r_valid = false;
return String();
}

if (result == NULL) {
if (r_valid)
*r_valid = false;
return String();
}

return GDMonoMarshal::mono_string_to_godot(result);
}

Ref<Script> CSharpInstance::get_script() const {

return script;
Expand Down
2 changes: 2 additions & 0 deletions modules/mono/csharp_script.h
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,8 @@ class CSharpInstance : public ScriptInstance {
virtual void notification(int p_notification);
void _call_notification(int p_notification);

virtual String to_string(bool *r_valid);

virtual Ref<Script> get_script() const;

virtual ScriptLanguage *get_language();
Expand Down
16 changes: 15 additions & 1 deletion modules/mono/editor/bindings_generator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2300,9 +2300,14 @@ void BindingsGenerator::_populate_object_type_interfaces() {
if (method_info.name.empty())
continue;

String cname = method_info.name;

if (blacklisted_methods.find(itype.cname) && blacklisted_methods[itype.cname].find(cname))
continue;

MethodInterface imethod;
imethod.name = method_info.name;
imethod.cname = imethod.name;
imethod.cname = cname;

if (method_info.flags & METHOD_FLAG_VIRTUAL)
imethod.is_virtual = true;
Expand Down Expand Up @@ -2975,6 +2980,13 @@ void BindingsGenerator::_populate_global_constants() {
}
}

void BindingsGenerator::_initialize_blacklisted_methods() {

blacklisted_methods["Object"].push_back("to_string"); // there is already ToString
blacklisted_methods["Object"].push_back("_to_string"); // override ToString instead
blacklisted_methods["Object"].push_back("_init"); // never called in C# (TODO: implement it)
}

void BindingsGenerator::_log(const char *p_format, ...) {

if (log_print_enabled) {
Expand All @@ -2992,6 +3004,8 @@ void BindingsGenerator::_initialize() {

enum_types.clear();

_initialize_blacklisted_methods();

_populate_object_type_interfaces();
_populate_builtin_type_interfaces();

Expand Down
4 changes: 4 additions & 0 deletions modules/mono/editor/bindings_generator.h
Original file line number Diff line number Diff line change
Expand Up @@ -491,6 +491,10 @@ class BindingsGenerator {
List<InternalCall> core_custom_icalls;
List<InternalCall> editor_custom_icalls;

Map<StringName, List<StringName> > blacklisted_methods;

void _initialize_blacklisted_methods();

struct NameCache {
StringName type_void;
StringName type_Array;
Expand Down

0 comments on commit a46b8e1

Please sign in to comment.