| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  gd_mono_marshal.cpp                                                  */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							|  |  |  | /*                      https://godotengine.org                          */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2019-01-01 12:53:14 +01:00
										 |  |  | /* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2019 Godot Engine contributors (cf. AUTHORS.md)    */ | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | #include "gd_mono_marshal.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "gd_mono.h"
 | 
					
						
							|  |  |  | #include "gd_mono_class.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace GDMonoMarshal { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | Variant::Type managed_to_variant_type(const ManagedType &p_type) { | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	switch (p_type.type_encoding) { | 
					
						
							|  |  |  | 		case MONO_TYPE_BOOLEAN: | 
					
						
							|  |  |  | 			return Variant::BOOL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case MONO_TYPE_I1: | 
					
						
							|  |  |  | 			return Variant::INT; | 
					
						
							|  |  |  | 		case MONO_TYPE_I2: | 
					
						
							|  |  |  | 			return Variant::INT; | 
					
						
							|  |  |  | 		case MONO_TYPE_I4: | 
					
						
							|  |  |  | 			return Variant::INT; | 
					
						
							|  |  |  | 		case MONO_TYPE_I8: | 
					
						
							|  |  |  | 			return Variant::INT; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case MONO_TYPE_U1: | 
					
						
							|  |  |  | 			return Variant::INT; | 
					
						
							|  |  |  | 		case MONO_TYPE_U2: | 
					
						
							|  |  |  | 			return Variant::INT; | 
					
						
							|  |  |  | 		case MONO_TYPE_U4: | 
					
						
							|  |  |  | 			return Variant::INT; | 
					
						
							|  |  |  | 		case MONO_TYPE_U8: | 
					
						
							|  |  |  | 			return Variant::INT; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case MONO_TYPE_R4: | 
					
						
							|  |  |  | 			return Variant::REAL; | 
					
						
							|  |  |  | 		case MONO_TYPE_R8: | 
					
						
							|  |  |  | 			return Variant::REAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case MONO_TYPE_STRING: { | 
					
						
							|  |  |  | 			return Variant::STRING; | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case MONO_TYPE_VALUETYPE: { | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			GDMonoClass *vtclass = p_type.type_class; | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(Vector2)) | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 				return Variant::VECTOR2; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(Rect2)) | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 				return Variant::RECT2; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(Transform2D)) | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 				return Variant::TRANSFORM2D; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(Vector3)) | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 				return Variant::VECTOR3; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(Basis)) | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 				return Variant::BASIS; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(Quat)) | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 				return Variant::QUAT; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(Transform)) | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 				return Variant::TRANSFORM; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(AABB)) | 
					
						
							| 
									
										
										
										
											2017-11-16 21:09:00 -05:00
										 |  |  | 				return Variant::AABB; | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(Color)) | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 				return Variant::COLOR; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(Plane)) | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 				return Variant::PLANE; | 
					
						
							| 
									
										
										
										
											2017-10-17 14:02:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (mono_class_is_enum(vtclass->get_mono_ptr())) | 
					
						
							| 
									
										
										
										
											2017-10-17 14:02:19 +02:00
										 |  |  | 				return Variant::INT; | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case MONO_TYPE_ARRAY: | 
					
						
							|  |  |  | 		case MONO_TYPE_SZARRAY: { | 
					
						
							| 
									
										
										
										
											2018-07-18 23:07:57 +02:00
										 |  |  | 			MonoArrayType *array_type = mono_type_get_array_type(p_type.type_class->get_mono_type()); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (array_type->eklass == CACHED_CLASS_RAW(MonoObject)) | 
					
						
							|  |  |  | 				return Variant::ARRAY; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (array_type->eklass == CACHED_CLASS_RAW(uint8_t)) | 
					
						
							|  |  |  | 				return Variant::POOL_BYTE_ARRAY; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (array_type->eklass == CACHED_CLASS_RAW(int32_t)) | 
					
						
							|  |  |  | 				return Variant::POOL_INT_ARRAY; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (array_type->eklass == REAL_T_MONOCLASS) | 
					
						
							|  |  |  | 				return Variant::POOL_REAL_ARRAY; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (array_type->eklass == CACHED_CLASS_RAW(String)) | 
					
						
							|  |  |  | 				return Variant::POOL_STRING_ARRAY; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (array_type->eklass == CACHED_CLASS_RAW(Vector2)) | 
					
						
							|  |  |  | 				return Variant::POOL_VECTOR2_ARRAY; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (array_type->eklass == CACHED_CLASS_RAW(Vector3)) | 
					
						
							|  |  |  | 				return Variant::POOL_VECTOR3_ARRAY; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (array_type->eklass == CACHED_CLASS_RAW(Color)) | 
					
						
							|  |  |  | 				return Variant::POOL_COLOR_ARRAY; | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case MONO_TYPE_CLASS: { | 
					
						
							|  |  |  | 			GDMonoClass *type_class = p_type.type_class; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// GodotObject
 | 
					
						
							|  |  |  | 			if (CACHED_CLASS(GodotObject)->is_assignable_from(type_class)) { | 
					
						
							|  |  |  | 				return Variant::OBJECT; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (CACHED_CLASS(NodePath) == type_class) { | 
					
						
							|  |  |  | 				return Variant::NODE_PATH; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (CACHED_CLASS(RID) == type_class) { | 
					
						
							|  |  |  | 				return Variant::_RID; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-07-18 23:07:57 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (CACHED_CLASS(Dictionary) == type_class) { | 
					
						
							|  |  |  | 				return Variant::DICTIONARY; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (CACHED_CLASS(Array) == type_class) { | 
					
						
							|  |  |  | 				return Variant::ARRAY; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2019-03-05 18:52:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 			// The order in which we check the following interfaces is very important (dictionaries and generics first)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-03 09:44:53 +02:00
										 |  |  | 			MonoReflectionType *reftype = mono_type_get_object(mono_domain_get(), type_class->get_mono_type()); | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-21 19:09:00 +02:00
										 |  |  | 			if (GDMonoUtils::Marshal::generic_idictionary_is_assignable_from(reftype)) { | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 				return Variant::DICTIONARY; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-05 18:52:19 +01:00
										 |  |  | 			if (type_class->implements_interface(CACHED_CLASS(System_Collections_IDictionary))) { | 
					
						
							|  |  |  | 				return Variant::DICTIONARY; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-21 19:09:00 +02:00
										 |  |  | 			if (GDMonoUtils::Marshal::generic_ienumerable_is_assignable_from(reftype)) { | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 				return Variant::ARRAY; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-05 18:52:19 +01:00
										 |  |  | 			if (type_class->implements_interface(CACHED_CLASS(System_Collections_IEnumerable))) { | 
					
						
							|  |  |  | 				return Variant::ARRAY; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case MONO_TYPE_GENERICINST: { | 
					
						
							| 
									
										
										
										
											2019-07-03 09:44:53 +02:00
										 |  |  | 			MonoReflectionType *reftype = mono_type_get_object(mono_domain_get(), p_type.type_class->get_mono_type()); | 
					
						
							| 
									
										
										
										
											2018-07-18 23:07:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 			if (GDMonoUtils::Marshal::type_is_generic_dictionary(reftype)) { | 
					
						
							|  |  |  | 				return Variant::DICTIONARY; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2019-03-05 21:39:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 			if (GDMonoUtils::Marshal::type_is_generic_array(reftype)) { | 
					
						
							|  |  |  | 				return Variant::ARRAY; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2019-03-05 21:39:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 			// The order in which we check the following interfaces is very important (dictionaries and generics first)
 | 
					
						
							| 
									
										
										
										
											2019-04-29 21:20:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-21 19:09:00 +02:00
										 |  |  | 			if (GDMonoUtils::Marshal::generic_idictionary_is_assignable_from(reftype)) | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 				return Variant::DICTIONARY; | 
					
						
							| 
									
										
										
										
											2019-03-05 21:39:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 			if (p_type.type_class->implements_interface(CACHED_CLASS(System_Collections_IDictionary))) { | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 				return Variant::DICTIONARY; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-07-18 23:07:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-21 19:09:00 +02:00
										 |  |  | 			if (GDMonoUtils::Marshal::generic_ienumerable_is_assignable_from(reftype)) | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 				return Variant::ARRAY; | 
					
						
							| 
									
										
										
										
											2018-07-18 23:07:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 			if (p_type.type_class->implements_interface(CACHED_CLASS(System_Collections_IEnumerable))) { | 
					
						
							|  |  |  | 				return Variant::ARRAY; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		default: { | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-03-05 21:39:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 	// Unknown
 | 
					
						
							|  |  |  | 	return Variant::NIL; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-03-05 21:39:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | bool try_get_array_element_type(const ManagedType &p_array_type, ManagedType &r_elem_type) { | 
					
						
							|  |  |  | 	switch (p_array_type.type_encoding) { | 
					
						
							|  |  |  | 		case MONO_TYPE_GENERICINST: { | 
					
						
							| 
									
										
										
										
											2019-07-03 09:44:53 +02:00
										 |  |  | 			MonoReflectionType *array_reftype = mono_type_get_object(mono_domain_get(), p_array_type.type_class->get_mono_type()); | 
					
						
							| 
									
										
										
										
											2019-04-29 21:20:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 			if (GDMonoUtils::Marshal::type_is_generic_array(array_reftype)) { | 
					
						
							|  |  |  | 				MonoReflectionType *elem_reftype; | 
					
						
							| 
									
										
										
										
											2019-03-05 21:39:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 				GDMonoUtils::Marshal::array_get_element_type(array_reftype, &elem_reftype); | 
					
						
							| 
									
										
										
										
											2019-03-05 18:52:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 				r_elem_type = ManagedType::from_reftype(elem_reftype); | 
					
						
							|  |  |  | 				return true; | 
					
						
							| 
									
										
										
										
											2019-03-05 18:52:19 +01:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 			MonoReflectionType *elem_reftype; | 
					
						
							|  |  |  | 			if (GDMonoUtils::Marshal::generic_ienumerable_is_assignable_from(array_reftype, &elem_reftype)) { | 
					
						
							|  |  |  | 				r_elem_type = ManagedType::from_reftype(elem_reftype); | 
					
						
							|  |  |  | 				return true; | 
					
						
							| 
									
										
										
										
											2019-03-05 18:52:19 +01:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 		default: { | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return false; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-10-17 14:02:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | bool try_get_dictionary_key_value_types(const ManagedType &p_dictionary_type, ManagedType &r_key_type, ManagedType &r_value_type) { | 
					
						
							|  |  |  | 	switch (p_dictionary_type.type_encoding) { | 
					
						
							|  |  |  | 		case MONO_TYPE_GENERICINST: { | 
					
						
							| 
									
										
										
										
											2019-07-03 09:44:53 +02:00
										 |  |  | 			MonoReflectionType *dict_reftype = mono_type_get_object(mono_domain_get(), p_dictionary_type.type_class->get_mono_type()); | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (GDMonoUtils::Marshal::type_is_generic_dictionary(dict_reftype)) { | 
					
						
							|  |  |  | 				MonoReflectionType *key_reftype; | 
					
						
							|  |  |  | 				MonoReflectionType *value_reftype; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				GDMonoUtils::Marshal::dictionary_get_key_value_types(dict_reftype, &key_reftype, &value_reftype); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				r_key_type = ManagedType::from_reftype(key_reftype); | 
					
						
							|  |  |  | 				r_value_type = ManagedType::from_reftype(value_reftype); | 
					
						
							|  |  |  | 				return true; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			MonoReflectionType *key_reftype, *value_reftype; | 
					
						
							|  |  |  | 			if (GDMonoUtils::Marshal::generic_idictionary_is_assignable_from(dict_reftype, &key_reftype, &value_reftype)) { | 
					
						
							|  |  |  | 				r_key_type = ManagedType::from_reftype(key_reftype); | 
					
						
							|  |  |  | 				r_value_type = ManagedType::from_reftype(value_reftype); | 
					
						
							|  |  |  | 				return true; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2017-10-17 14:02:19 +02:00
										 |  |  | 		default: { | 
					
						
							|  |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 	return false; | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | String mono_to_utf8_string(MonoString *p_mono_string) { | 
					
						
							|  |  |  | 	MonoError error; | 
					
						
							|  |  |  | 	char *utf8 = mono_string_to_utf8_checked(p_mono_string, &error); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-30 20:43:06 +01:00
										 |  |  | 	if (!mono_error_ok(&error)) { | 
					
						
							|  |  |  | 		ERR_PRINTS(String("Failed to convert MonoString* to UTF-8: ") + mono_error_get_message(&error)); | 
					
						
							|  |  |  | 		mono_error_cleanup(&error); | 
					
						
							|  |  |  | 		return String(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	String ret = String::utf8(utf8); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mono_free(utf8); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | String mono_to_utf16_string(MonoString *p_mono_string) { | 
					
						
							|  |  |  | 	int len = mono_string_length(p_mono_string); | 
					
						
							|  |  |  | 	String ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (len == 0) | 
					
						
							|  |  |  | 		return ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ret.resize(len + 1); | 
					
						
							|  |  |  | 	ret.set(len, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	CharType *src = (CharType *)mono_string_chars(p_mono_string); | 
					
						
							| 
									
										
										
										
											2018-12-16 00:44:18 +00:00
										 |  |  | 	CharType *dst = ret.ptrw(); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < len; i++) { | 
					
						
							|  |  |  | 		dst[i] = src[i]; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MonoObject *variant_to_mono_object(const Variant *p_var) { | 
					
						
							|  |  |  | 	ManagedType type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	type.type_encoding = MONO_TYPE_OBJECT; | 
					
						
							| 
									
										
										
										
											2018-07-18 23:07:57 +02:00
										 |  |  | 	// type.type_class is not needed when we specify the MONO_TYPE_OBJECT encoding
 | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return variant_to_mono_object(p_var, type); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MonoObject *variant_to_mono_object(const Variant *p_var, const ManagedType &p_type) { | 
					
						
							|  |  |  | 	switch (p_type.type_encoding) { | 
					
						
							|  |  |  | 		case MONO_TYPE_BOOLEAN: { | 
					
						
							|  |  |  | 			MonoBoolean val = p_var->operator bool(); | 
					
						
							|  |  |  | 			return BOX_BOOLEAN(val); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 		case MONO_TYPE_CHAR: { | 
					
						
							|  |  |  | 			uint16_t val = p_var->operator unsigned short(); | 
					
						
							|  |  |  | 			return BOX_UINT16(val); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 		case MONO_TYPE_I1: { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 			int8_t val = p_var->operator signed char(); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 			return BOX_INT8(val); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		case MONO_TYPE_I2: { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 			int16_t val = p_var->operator signed short(); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 			return BOX_INT16(val); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		case MONO_TYPE_I4: { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 			int32_t val = p_var->operator signed int(); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 			return BOX_INT32(val); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		case MONO_TYPE_I8: { | 
					
						
							|  |  |  | 			int64_t val = p_var->operator int64_t(); | 
					
						
							|  |  |  | 			return BOX_INT64(val); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case MONO_TYPE_U1: { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 			uint8_t val = p_var->operator unsigned char(); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 			return BOX_UINT8(val); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		case MONO_TYPE_U2: { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 			uint16_t val = p_var->operator unsigned short(); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 			return BOX_UINT16(val); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		case MONO_TYPE_U4: { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 			uint32_t val = p_var->operator unsigned int(); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 			return BOX_UINT32(val); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		case MONO_TYPE_U8: { | 
					
						
							|  |  |  | 			uint64_t val = p_var->operator uint64_t(); | 
					
						
							|  |  |  | 			return BOX_UINT64(val); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case MONO_TYPE_R4: { | 
					
						
							|  |  |  | 			float val = p_var->operator float(); | 
					
						
							|  |  |  | 			return BOX_FLOAT(val); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		case MONO_TYPE_R8: { | 
					
						
							|  |  |  | 			double val = p_var->operator double(); | 
					
						
							|  |  |  | 			return BOX_DOUBLE(val); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case MONO_TYPE_STRING: { | 
					
						
							|  |  |  | 			return (MonoObject *)mono_string_from_godot(p_var->operator String()); | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case MONO_TYPE_VALUETYPE: { | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			GDMonoClass *vtclass = p_type.type_class; | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(Vector2)) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 				GDMonoMarshal::M_Vector2 from = MARSHALLED_OUT(Vector2, p_var->operator ::Vector2()); | 
					
						
							|  |  |  | 				return mono_value_box(mono_domain_get(), CACHED_CLASS_RAW(Vector2), &from); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(Rect2)) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 				GDMonoMarshal::M_Rect2 from = MARSHALLED_OUT(Rect2, p_var->operator ::Rect2()); | 
					
						
							|  |  |  | 				return mono_value_box(mono_domain_get(), CACHED_CLASS_RAW(Rect2), &from); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(Transform2D)) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 				GDMonoMarshal::M_Transform2D from = MARSHALLED_OUT(Transform2D, p_var->operator ::Transform2D()); | 
					
						
							|  |  |  | 				return mono_value_box(mono_domain_get(), CACHED_CLASS_RAW(Transform2D), &from); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(Vector3)) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 				GDMonoMarshal::M_Vector3 from = MARSHALLED_OUT(Vector3, p_var->operator ::Vector3()); | 
					
						
							|  |  |  | 				return mono_value_box(mono_domain_get(), CACHED_CLASS_RAW(Vector3), &from); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(Basis)) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 				GDMonoMarshal::M_Basis from = MARSHALLED_OUT(Basis, p_var->operator ::Basis()); | 
					
						
							|  |  |  | 				return mono_value_box(mono_domain_get(), CACHED_CLASS_RAW(Basis), &from); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(Quat)) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 				GDMonoMarshal::M_Quat from = MARSHALLED_OUT(Quat, p_var->operator ::Quat()); | 
					
						
							|  |  |  | 				return mono_value_box(mono_domain_get(), CACHED_CLASS_RAW(Quat), &from); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(Transform)) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 				GDMonoMarshal::M_Transform from = MARSHALLED_OUT(Transform, p_var->operator ::Transform()); | 
					
						
							|  |  |  | 				return mono_value_box(mono_domain_get(), CACHED_CLASS_RAW(Transform), &from); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(AABB)) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 				GDMonoMarshal::M_AABB from = MARSHALLED_OUT(AABB, p_var->operator ::AABB()); | 
					
						
							|  |  |  | 				return mono_value_box(mono_domain_get(), CACHED_CLASS_RAW(AABB), &from); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(Color)) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 				GDMonoMarshal::M_Color from = MARSHALLED_OUT(Color, p_var->operator ::Color()); | 
					
						
							|  |  |  | 				return mono_value_box(mono_domain_get(), CACHED_CLASS_RAW(Color), &from); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(Plane)) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 				GDMonoMarshal::M_Plane from = MARSHALLED_OUT(Plane, p_var->operator ::Plane()); | 
					
						
							|  |  |  | 				return mono_value_box(mono_domain_get(), CACHED_CLASS_RAW(Plane), &from); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-10-17 14:02:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (mono_class_is_enum(vtclass->get_mono_ptr())) { | 
					
						
							|  |  |  | 				MonoType *enum_basetype = mono_class_enum_basetype(vtclass->get_mono_ptr()); | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 				MonoClass *enum_baseclass = mono_class_from_mono_type(enum_basetype); | 
					
						
							|  |  |  | 				switch (mono_type_get_type(enum_basetype)) { | 
					
						
							|  |  |  | 					case MONO_TYPE_BOOLEAN: { | 
					
						
							|  |  |  | 						MonoBoolean val = p_var->operator bool(); | 
					
						
							|  |  |  | 						return BOX_ENUM(enum_baseclass, val); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					case MONO_TYPE_CHAR: { | 
					
						
							|  |  |  | 						uint16_t val = p_var->operator unsigned short(); | 
					
						
							|  |  |  | 						return BOX_ENUM(enum_baseclass, val); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					case MONO_TYPE_I1: { | 
					
						
							|  |  |  | 						int8_t val = p_var->operator signed char(); | 
					
						
							|  |  |  | 						return BOX_ENUM(enum_baseclass, val); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					case MONO_TYPE_I2: { | 
					
						
							|  |  |  | 						int16_t val = p_var->operator signed short(); | 
					
						
							|  |  |  | 						return BOX_ENUM(enum_baseclass, val); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					case MONO_TYPE_I4: { | 
					
						
							|  |  |  | 						int32_t val = p_var->operator signed int(); | 
					
						
							|  |  |  | 						return BOX_ENUM(enum_baseclass, val); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					case MONO_TYPE_I8: { | 
					
						
							|  |  |  | 						int64_t val = p_var->operator int64_t(); | 
					
						
							|  |  |  | 						return BOX_ENUM(enum_baseclass, val); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					case MONO_TYPE_U1: { | 
					
						
							|  |  |  | 						uint8_t val = p_var->operator unsigned char(); | 
					
						
							|  |  |  | 						return BOX_ENUM(enum_baseclass, val); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					case MONO_TYPE_U2: { | 
					
						
							|  |  |  | 						uint16_t val = p_var->operator unsigned short(); | 
					
						
							|  |  |  | 						return BOX_ENUM(enum_baseclass, val); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					case MONO_TYPE_U4: { | 
					
						
							|  |  |  | 						uint32_t val = p_var->operator unsigned int(); | 
					
						
							|  |  |  | 						return BOX_ENUM(enum_baseclass, val); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					case MONO_TYPE_U8: { | 
					
						
							|  |  |  | 						uint64_t val = p_var->operator uint64_t(); | 
					
						
							|  |  |  | 						return BOX_ENUM(enum_baseclass, val); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					default: { | 
					
						
							|  |  |  | 						ERR_EXPLAIN(String() + "Attempted to convert Variant to a managed enum value of unmarshallable base type."); | 
					
						
							|  |  |  | 						ERR_FAIL_V(NULL); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-10-17 14:02:19 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case MONO_TYPE_ARRAY: | 
					
						
							|  |  |  | 		case MONO_TYPE_SZARRAY: { | 
					
						
							| 
									
										
										
										
											2018-07-18 23:07:57 +02:00
										 |  |  | 			MonoArrayType *array_type = mono_type_get_array_type(p_type.type_class->get_mono_type()); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (array_type->eklass == CACHED_CLASS_RAW(MonoObject)) | 
					
						
							|  |  |  | 				return (MonoObject *)Array_to_mono_array(p_var->operator Array()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (array_type->eklass == CACHED_CLASS_RAW(uint8_t)) | 
					
						
							|  |  |  | 				return (MonoObject *)PoolByteArray_to_mono_array(p_var->operator PoolByteArray()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (array_type->eklass == CACHED_CLASS_RAW(int32_t)) | 
					
						
							|  |  |  | 				return (MonoObject *)PoolIntArray_to_mono_array(p_var->operator PoolIntArray()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (array_type->eklass == REAL_T_MONOCLASS) | 
					
						
							|  |  |  | 				return (MonoObject *)PoolRealArray_to_mono_array(p_var->operator PoolRealArray()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (array_type->eklass == CACHED_CLASS_RAW(String)) | 
					
						
							|  |  |  | 				return (MonoObject *)PoolStringArray_to_mono_array(p_var->operator PoolStringArray()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (array_type->eklass == CACHED_CLASS_RAW(Vector2)) | 
					
						
							|  |  |  | 				return (MonoObject *)PoolVector2Array_to_mono_array(p_var->operator PoolVector2Array()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (array_type->eklass == CACHED_CLASS_RAW(Vector3)) | 
					
						
							|  |  |  | 				return (MonoObject *)PoolVector3Array_to_mono_array(p_var->operator PoolVector3Array()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (array_type->eklass == CACHED_CLASS_RAW(Color)) | 
					
						
							|  |  |  | 				return (MonoObject *)PoolColorArray_to_mono_array(p_var->operator PoolColorArray()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			ERR_EXPLAIN(String() + "Attempted to convert Variant to a managed array of unmarshallable element type."); | 
					
						
							|  |  |  | 			ERR_FAIL_V(NULL); | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case MONO_TYPE_CLASS: { | 
					
						
							|  |  |  | 			GDMonoClass *type_class = p_type.type_class; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// GodotObject
 | 
					
						
							|  |  |  | 			if (CACHED_CLASS(GodotObject)->is_assignable_from(type_class)) { | 
					
						
							|  |  |  | 				return GDMonoUtils::unmanaged_get_managed(p_var->operator Object *()); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (CACHED_CLASS(NodePath) == type_class) { | 
					
						
							|  |  |  | 				return GDMonoUtils::create_managed_from(p_var->operator NodePath()); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (CACHED_CLASS(RID) == type_class) { | 
					
						
							|  |  |  | 				return GDMonoUtils::create_managed_from(p_var->operator RID()); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-07-18 23:07:57 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (CACHED_CLASS(Dictionary) == type_class) { | 
					
						
							|  |  |  | 				return GDMonoUtils::create_managed_from(p_var->operator Dictionary(), CACHED_CLASS(Dictionary)); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (CACHED_CLASS(Array) == type_class) { | 
					
						
							|  |  |  | 				return GDMonoUtils::create_managed_from(p_var->operator Array(), CACHED_CLASS(Array)); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2019-03-05 18:52:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 			// The order in which we check the following interfaces is very important (dictionaries and generics first)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-03 09:44:53 +02:00
										 |  |  | 			MonoReflectionType *reftype = mono_type_get_object(mono_domain_get(), type_class->get_mono_type()); | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			MonoReflectionType *key_reftype, *value_reftype; | 
					
						
							|  |  |  | 			if (GDMonoUtils::Marshal::generic_idictionary_is_assignable_from(reftype, &key_reftype, &value_reftype)) { | 
					
						
							|  |  |  | 				return GDMonoUtils::create_managed_from(p_var->operator Dictionary(), | 
					
						
							|  |  |  | 						GDMonoUtils::Marshal::make_generic_dictionary_type(key_reftype, value_reftype)); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-05 18:52:19 +01:00
										 |  |  | 			if (type_class->implements_interface(CACHED_CLASS(System_Collections_IDictionary))) { | 
					
						
							|  |  |  | 				return GDMonoUtils::create_managed_from(p_var->operator Dictionary(), CACHED_CLASS(Dictionary)); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 			MonoReflectionType *elem_reftype; | 
					
						
							|  |  |  | 			if (GDMonoUtils::Marshal::generic_ienumerable_is_assignable_from(reftype, &elem_reftype)) { | 
					
						
							|  |  |  | 				return GDMonoUtils::create_managed_from(p_var->operator Array(), | 
					
						
							|  |  |  | 						GDMonoUtils::Marshal::make_generic_array_type(elem_reftype)); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-05 18:52:19 +01:00
										 |  |  | 			if (type_class->implements_interface(CACHED_CLASS(System_Collections_IEnumerable))) { | 
					
						
							| 
									
										
										
										
											2019-07-03 09:44:53 +02:00
										 |  |  | 				if (GDMonoUtils::tools_godot_api_check()) { | 
					
						
							|  |  |  | 					return GDMonoUtils::create_managed_from(p_var->operator Array(), CACHED_CLASS(Array)); | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					return (MonoObject *)GDMonoMarshal::Array_to_mono_array(p_var->operator Array()); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2019-03-05 18:52:19 +01:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 		case MONO_TYPE_OBJECT: { | 
					
						
							|  |  |  | 			// Variant
 | 
					
						
							|  |  |  | 			switch (p_var->get_type()) { | 
					
						
							|  |  |  | 				case Variant::BOOL: { | 
					
						
							|  |  |  | 					MonoBoolean val = p_var->operator bool(); | 
					
						
							|  |  |  | 					return BOX_BOOLEAN(val); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				case Variant::INT: { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 					int32_t val = p_var->operator signed int(); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 					return BOX_INT32(val); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				case Variant::REAL: { | 
					
						
							|  |  |  | #ifdef REAL_T_IS_DOUBLE
 | 
					
						
							|  |  |  | 					double val = p_var->operator double(); | 
					
						
							|  |  |  | 					return BOX_DOUBLE(val); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 					float val = p_var->operator float(); | 
					
						
							|  |  |  | 					return BOX_FLOAT(val); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				case Variant::STRING: | 
					
						
							|  |  |  | 					return (MonoObject *)mono_string_from_godot(p_var->operator String()); | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 				case Variant::VECTOR2: { | 
					
						
							|  |  |  | 					GDMonoMarshal::M_Vector2 from = MARSHALLED_OUT(Vector2, p_var->operator ::Vector2()); | 
					
						
							|  |  |  | 					return mono_value_box(mono_domain_get(), CACHED_CLASS_RAW(Vector2), &from); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				case Variant::RECT2: { | 
					
						
							|  |  |  | 					GDMonoMarshal::M_Rect2 from = MARSHALLED_OUT(Rect2, p_var->operator ::Rect2()); | 
					
						
							|  |  |  | 					return mono_value_box(mono_domain_get(), CACHED_CLASS_RAW(Rect2), &from); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				case Variant::VECTOR3: { | 
					
						
							|  |  |  | 					GDMonoMarshal::M_Vector3 from = MARSHALLED_OUT(Vector3, p_var->operator ::Vector3()); | 
					
						
							|  |  |  | 					return mono_value_box(mono_domain_get(), CACHED_CLASS_RAW(Vector3), &from); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				case Variant::TRANSFORM2D: { | 
					
						
							|  |  |  | 					GDMonoMarshal::M_Transform2D from = MARSHALLED_OUT(Transform2D, p_var->operator ::Transform2D()); | 
					
						
							|  |  |  | 					return mono_value_box(mono_domain_get(), CACHED_CLASS_RAW(Transform2D), &from); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				case Variant::PLANE: { | 
					
						
							|  |  |  | 					GDMonoMarshal::M_Plane from = MARSHALLED_OUT(Plane, p_var->operator ::Plane()); | 
					
						
							|  |  |  | 					return mono_value_box(mono_domain_get(), CACHED_CLASS_RAW(Plane), &from); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				case Variant::QUAT: { | 
					
						
							|  |  |  | 					GDMonoMarshal::M_Quat from = MARSHALLED_OUT(Quat, p_var->operator ::Quat()); | 
					
						
							|  |  |  | 					return mono_value_box(mono_domain_get(), CACHED_CLASS_RAW(Quat), &from); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				case Variant::AABB: { | 
					
						
							|  |  |  | 					GDMonoMarshal::M_AABB from = MARSHALLED_OUT(AABB, p_var->operator ::AABB()); | 
					
						
							|  |  |  | 					return mono_value_box(mono_domain_get(), CACHED_CLASS_RAW(AABB), &from); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				case Variant::BASIS: { | 
					
						
							|  |  |  | 					GDMonoMarshal::M_Basis from = MARSHALLED_OUT(Basis, p_var->operator ::Basis()); | 
					
						
							|  |  |  | 					return mono_value_box(mono_domain_get(), CACHED_CLASS_RAW(Basis), &from); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				case Variant::TRANSFORM: { | 
					
						
							|  |  |  | 					GDMonoMarshal::M_Transform from = MARSHALLED_OUT(Transform, p_var->operator ::Transform()); | 
					
						
							|  |  |  | 					return mono_value_box(mono_domain_get(), CACHED_CLASS_RAW(Transform), &from); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				case Variant::COLOR: { | 
					
						
							|  |  |  | 					GDMonoMarshal::M_Color from = MARSHALLED_OUT(Color, p_var->operator ::Color()); | 
					
						
							|  |  |  | 					return mono_value_box(mono_domain_get(), CACHED_CLASS_RAW(Color), &from); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 				case Variant::NODE_PATH: | 
					
						
							|  |  |  | 					return GDMonoUtils::create_managed_from(p_var->operator NodePath()); | 
					
						
							|  |  |  | 				case Variant::_RID: | 
					
						
							|  |  |  | 					return GDMonoUtils::create_managed_from(p_var->operator RID()); | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 				case Variant::OBJECT: | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 					return GDMonoUtils::unmanaged_get_managed(p_var->operator Object *()); | 
					
						
							|  |  |  | 				case Variant::DICTIONARY: | 
					
						
							| 
									
										
										
										
											2018-07-18 23:07:57 +02:00
										 |  |  | 					return GDMonoUtils::create_managed_from(p_var->operator Dictionary(), CACHED_CLASS(Dictionary)); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 				case Variant::ARRAY: | 
					
						
							| 
									
										
										
										
											2018-07-18 23:07:57 +02:00
										 |  |  | 					return GDMonoUtils::create_managed_from(p_var->operator Array(), CACHED_CLASS(Array)); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 				case Variant::POOL_BYTE_ARRAY: | 
					
						
							|  |  |  | 					return (MonoObject *)PoolByteArray_to_mono_array(p_var->operator PoolByteArray()); | 
					
						
							|  |  |  | 				case Variant::POOL_INT_ARRAY: | 
					
						
							|  |  |  | 					return (MonoObject *)PoolIntArray_to_mono_array(p_var->operator PoolIntArray()); | 
					
						
							|  |  |  | 				case Variant::POOL_REAL_ARRAY: | 
					
						
							|  |  |  | 					return (MonoObject *)PoolRealArray_to_mono_array(p_var->operator PoolRealArray()); | 
					
						
							|  |  |  | 				case Variant::POOL_STRING_ARRAY: | 
					
						
							|  |  |  | 					return (MonoObject *)PoolStringArray_to_mono_array(p_var->operator PoolStringArray()); | 
					
						
							|  |  |  | 				case Variant::POOL_VECTOR2_ARRAY: | 
					
						
							|  |  |  | 					return (MonoObject *)PoolVector2Array_to_mono_array(p_var->operator PoolVector2Array()); | 
					
						
							|  |  |  | 				case Variant::POOL_VECTOR3_ARRAY: | 
					
						
							|  |  |  | 					return (MonoObject *)PoolVector3Array_to_mono_array(p_var->operator PoolVector3Array()); | 
					
						
							|  |  |  | 				case Variant::POOL_COLOR_ARRAY: | 
					
						
							|  |  |  | 					return (MonoObject *)PoolColorArray_to_mono_array(p_var->operator PoolColorArray()); | 
					
						
							|  |  |  | 				default: | 
					
						
							|  |  |  | 					return NULL; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 			case MONO_TYPE_GENERICINST: { | 
					
						
							| 
									
										
										
										
											2019-07-03 09:44:53 +02:00
										 |  |  | 				MonoReflectionType *reftype = mono_type_get_object(mono_domain_get(), p_type.type_class->get_mono_type()); | 
					
						
							| 
									
										
										
										
											2018-07-18 23:07:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 				if (GDMonoUtils::Marshal::type_is_generic_dictionary(reftype)) { | 
					
						
							| 
									
										
										
										
											2018-07-18 23:07:57 +02:00
										 |  |  | 					return GDMonoUtils::create_managed_from(p_var->operator Dictionary(), p_type.type_class); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 				if (GDMonoUtils::Marshal::type_is_generic_array(reftype)) { | 
					
						
							| 
									
										
										
										
											2018-07-18 23:07:57 +02:00
										 |  |  | 					return GDMonoUtils::create_managed_from(p_var->operator Array(), p_type.type_class); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2019-03-05 18:52:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 				// The order in which we check the following interfaces is very important (dictionaries and generics first)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				MonoReflectionType *key_reftype, *value_reftype; | 
					
						
							|  |  |  | 				if (GDMonoUtils::Marshal::generic_idictionary_is_assignable_from(reftype, &key_reftype, &value_reftype)) { | 
					
						
							|  |  |  | 					return GDMonoUtils::create_managed_from(p_var->operator Dictionary(), | 
					
						
							|  |  |  | 							GDMonoUtils::Marshal::make_generic_dictionary_type(key_reftype, value_reftype)); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-05 18:52:19 +01:00
										 |  |  | 				if (p_type.type_class->implements_interface(CACHED_CLASS(System_Collections_IDictionary))) { | 
					
						
							|  |  |  | 					return GDMonoUtils::create_managed_from(p_var->operator Dictionary(), CACHED_CLASS(Dictionary)); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 				MonoReflectionType *elem_reftype; | 
					
						
							|  |  |  | 				if (GDMonoUtils::Marshal::generic_ienumerable_is_assignable_from(reftype, &elem_reftype)) { | 
					
						
							|  |  |  | 					return GDMonoUtils::create_managed_from(p_var->operator Array(), | 
					
						
							|  |  |  | 							GDMonoUtils::Marshal::make_generic_array_type(elem_reftype)); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-05 18:52:19 +01:00
										 |  |  | 				if (p_type.type_class->implements_interface(CACHED_CLASS(System_Collections_IEnumerable))) { | 
					
						
							| 
									
										
										
										
											2019-07-03 09:44:53 +02:00
										 |  |  | 					if (GDMonoUtils::tools_godot_api_check()) { | 
					
						
							|  |  |  | 						return GDMonoUtils::create_managed_from(p_var->operator Array(), CACHED_CLASS(Array)); | 
					
						
							|  |  |  | 					} else { | 
					
						
							|  |  |  | 						return (MonoObject *)GDMonoMarshal::Array_to_mono_array(p_var->operator Array()); | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2019-03-05 18:52:19 +01:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 			} break; | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ERR_EXPLAIN(String() + "Attempted to convert Variant to an unmarshallable managed type. Name: \'" + | 
					
						
							|  |  |  | 				p_type.type_class->get_name() + "\' Encoding: " + itos(p_type.type_encoding)); | 
					
						
							|  |  |  | 	ERR_FAIL_V(NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Variant mono_object_to_variant(MonoObject *p_obj) { | 
					
						
							|  |  |  | 	if (!p_obj) | 
					
						
							|  |  |  | 		return Variant(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-05 21:39:50 +01:00
										 |  |  | 	ManagedType type = ManagedType::from_class(mono_object_get_class(p_obj)); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-05 21:39:50 +01:00
										 |  |  | 	ERR_FAIL_COND_V(!type.type_class, Variant()); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-18 10:33:13 +01:00
										 |  |  | 	switch (type.type_encoding) { | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 		case MONO_TYPE_BOOLEAN: | 
					
						
							| 
									
										
										
										
											2017-10-09 00:10:54 +02:00
										 |  |  | 			return (bool)unbox<MonoBoolean>(p_obj); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 		case MONO_TYPE_CHAR: | 
					
						
							|  |  |  | 			return unbox<uint16_t>(p_obj); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 		case MONO_TYPE_I1: | 
					
						
							| 
									
										
										
										
											2017-10-09 00:10:54 +02:00
										 |  |  | 			return unbox<int8_t>(p_obj); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 		case MONO_TYPE_I2: | 
					
						
							| 
									
										
										
										
											2017-10-09 00:10:54 +02:00
										 |  |  | 			return unbox<int16_t>(p_obj); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 		case MONO_TYPE_I4: | 
					
						
							| 
									
										
										
										
											2017-10-09 00:10:54 +02:00
										 |  |  | 			return unbox<int32_t>(p_obj); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 		case MONO_TYPE_I8: | 
					
						
							| 
									
										
										
										
											2017-10-09 00:10:54 +02:00
										 |  |  | 			return unbox<int64_t>(p_obj); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		case MONO_TYPE_U1: | 
					
						
							| 
									
										
										
										
											2017-10-09 00:10:54 +02:00
										 |  |  | 			return unbox<uint8_t>(p_obj); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 		case MONO_TYPE_U2: | 
					
						
							| 
									
										
										
										
											2017-10-09 00:10:54 +02:00
										 |  |  | 			return unbox<uint16_t>(p_obj); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 		case MONO_TYPE_U4: | 
					
						
							| 
									
										
										
										
											2017-10-09 00:10:54 +02:00
										 |  |  | 			return unbox<uint32_t>(p_obj); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 		case MONO_TYPE_U8: | 
					
						
							| 
									
										
										
										
											2017-10-09 00:10:54 +02:00
										 |  |  | 			return unbox<uint64_t>(p_obj); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		case MONO_TYPE_R4: | 
					
						
							| 
									
										
										
										
											2017-10-09 00:10:54 +02:00
										 |  |  | 			return unbox<float>(p_obj); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 		case MONO_TYPE_R8: | 
					
						
							| 
									
										
										
										
											2017-10-09 00:10:54 +02:00
										 |  |  | 			return unbox<double>(p_obj); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		case MONO_TYPE_STRING: { | 
					
						
							| 
									
										
										
										
											2017-12-24 03:32:40 +01:00
										 |  |  | 			if (p_obj == NULL) | 
					
						
							|  |  |  | 				return Variant(); // NIL
 | 
					
						
							|  |  |  | 			return mono_string_to_godot_not_null((MonoString *)p_obj); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case MONO_TYPE_VALUETYPE: { | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			GDMonoClass *vtclass = type.type_class; | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(Vector2)) | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 				return MARSHALLED_IN(Vector2, (GDMonoMarshal::M_Vector2 *)mono_object_unbox(p_obj)); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(Rect2)) | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 				return MARSHALLED_IN(Rect2, (GDMonoMarshal::M_Rect2 *)mono_object_unbox(p_obj)); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(Transform2D)) | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 				return MARSHALLED_IN(Transform2D, (GDMonoMarshal::M_Transform2D *)mono_object_unbox(p_obj)); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(Vector3)) | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 				return MARSHALLED_IN(Vector3, (GDMonoMarshal::M_Vector3 *)mono_object_unbox(p_obj)); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(Basis)) | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 				return MARSHALLED_IN(Basis, (GDMonoMarshal::M_Basis *)mono_object_unbox(p_obj)); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(Quat)) | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 				return MARSHALLED_IN(Quat, (GDMonoMarshal::M_Quat *)mono_object_unbox(p_obj)); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(Transform)) | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 				return MARSHALLED_IN(Transform, (GDMonoMarshal::M_Transform *)mono_object_unbox(p_obj)); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(AABB)) | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 				return MARSHALLED_IN(AABB, (GDMonoMarshal::M_AABB *)mono_object_unbox(p_obj)); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(Color)) | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 				return MARSHALLED_IN(Color, (GDMonoMarshal::M_Color *)mono_object_unbox(p_obj)); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (vtclass == CACHED_CLASS(Plane)) | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 				return MARSHALLED_IN(Plane, (GDMonoMarshal::M_Plane *)mono_object_unbox(p_obj)); | 
					
						
							| 
									
										
										
										
											2017-10-17 14:02:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:10:08 +01:00
										 |  |  | 			if (mono_class_is_enum(vtclass->get_mono_ptr())) | 
					
						
							| 
									
										
										
										
											2017-10-17 14:02:19 +02:00
										 |  |  | 				return unbox<int32_t>(p_obj); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case MONO_TYPE_ARRAY: | 
					
						
							|  |  |  | 		case MONO_TYPE_SZARRAY: { | 
					
						
							| 
									
										
										
										
											2018-07-18 23:07:57 +02:00
										 |  |  | 			MonoArrayType *array_type = mono_type_get_array_type(type.type_class->get_mono_type()); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (array_type->eklass == CACHED_CLASS_RAW(MonoObject)) | 
					
						
							|  |  |  | 				return mono_array_to_Array((MonoArray *)p_obj); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (array_type->eklass == CACHED_CLASS_RAW(uint8_t)) | 
					
						
							|  |  |  | 				return mono_array_to_PoolByteArray((MonoArray *)p_obj); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (array_type->eklass == CACHED_CLASS_RAW(int32_t)) | 
					
						
							|  |  |  | 				return mono_array_to_PoolIntArray((MonoArray *)p_obj); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (array_type->eklass == REAL_T_MONOCLASS) | 
					
						
							|  |  |  | 				return mono_array_to_PoolRealArray((MonoArray *)p_obj); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (array_type->eklass == CACHED_CLASS_RAW(String)) | 
					
						
							|  |  |  | 				return mono_array_to_PoolStringArray((MonoArray *)p_obj); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (array_type->eklass == CACHED_CLASS_RAW(Vector2)) | 
					
						
							|  |  |  | 				return mono_array_to_PoolVector2Array((MonoArray *)p_obj); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (array_type->eklass == CACHED_CLASS_RAW(Vector3)) | 
					
						
							|  |  |  | 				return mono_array_to_PoolVector3Array((MonoArray *)p_obj); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (array_type->eklass == CACHED_CLASS_RAW(Color)) | 
					
						
							|  |  |  | 				return mono_array_to_PoolColorArray((MonoArray *)p_obj); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			ERR_EXPLAIN(String() + "Attempted to convert a managed array of unmarshallable element type to Variant."); | 
					
						
							|  |  |  | 			ERR_FAIL_V(Variant()); | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case MONO_TYPE_CLASS: { | 
					
						
							| 
									
										
										
										
											2018-01-18 10:33:13 +01:00
										 |  |  | 			GDMonoClass *type_class = type.type_class; | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			// GodotObject
 | 
					
						
							|  |  |  | 			if (CACHED_CLASS(GodotObject)->is_assignable_from(type_class)) { | 
					
						
							| 
									
										
										
										
											2017-10-09 00:10:54 +02:00
										 |  |  | 				Object *ptr = unbox<Object *>(CACHED_FIELD(GodotObject, ptr)->get_value(p_obj)); | 
					
						
							| 
									
										
										
										
											2019-02-14 22:54:10 +01:00
										 |  |  | 				if (ptr != NULL) { | 
					
						
							|  |  |  | 					Reference *ref = Object::cast_to<Reference>(ptr); | 
					
						
							|  |  |  | 					return ref ? Variant(Ref<Reference>(ref)) : Variant(ptr); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				return Variant(); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (CACHED_CLASS(NodePath) == type_class) { | 
					
						
							| 
									
										
										
										
											2017-10-09 00:10:54 +02:00
										 |  |  | 				NodePath *ptr = unbox<NodePath *>(CACHED_FIELD(NodePath, ptr)->get_value(p_obj)); | 
					
						
							|  |  |  | 				return ptr ? Variant(*ptr) : Variant(); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (CACHED_CLASS(RID) == type_class) { | 
					
						
							| 
									
										
										
										
											2017-10-09 00:10:54 +02:00
										 |  |  | 				RID *ptr = unbox<RID *>(CACHED_FIELD(RID, ptr)->get_value(p_obj)); | 
					
						
							|  |  |  | 				return ptr ? Variant(*ptr) : Variant(); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-07-18 23:07:57 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (CACHED_CLASS(Array) == type_class) { | 
					
						
							|  |  |  | 				MonoException *exc = NULL; | 
					
						
							| 
									
										
										
										
											2019-03-05 18:52:19 +01:00
										 |  |  | 				Array *ptr = invoke_method_thunk(CACHED_METHOD_THUNK(Array, GetPtr), p_obj, &exc); | 
					
						
							| 
									
										
										
										
											2019-07-03 09:44:53 +02:00
										 |  |  | 				UNHANDLED_EXCEPTION(exc); | 
					
						
							| 
									
										
										
										
											2018-07-18 23:07:57 +02:00
										 |  |  | 				return ptr ? Variant(*ptr) : Variant(); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (CACHED_CLASS(Dictionary) == type_class) { | 
					
						
							|  |  |  | 				MonoException *exc = NULL; | 
					
						
							| 
									
										
										
										
											2019-03-05 18:52:19 +01:00
										 |  |  | 				Dictionary *ptr = invoke_method_thunk(CACHED_METHOD_THUNK(Dictionary, GetPtr), p_obj, &exc); | 
					
						
							| 
									
										
										
										
											2019-07-03 09:44:53 +02:00
										 |  |  | 				UNHANDLED_EXCEPTION(exc); | 
					
						
							| 
									
										
										
										
											2018-07-18 23:07:57 +02:00
										 |  |  | 				return ptr ? Variant(*ptr) : Variant(); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2019-03-05 18:52:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 			// The order in which we check the following interfaces is very important (dictionaries and generics first)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-03 09:44:53 +02:00
										 |  |  | 			MonoReflectionType *reftype = mono_type_get_object(mono_domain_get(), type_class->get_mono_type()); | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-21 19:09:00 +02:00
										 |  |  | 			if (GDMonoUtils::Marshal::generic_idictionary_is_assignable_from(reftype)) { | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 				return GDMonoUtils::Marshal::generic_idictionary_to_dictionary(p_obj); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-05 18:52:19 +01:00
										 |  |  | 			if (type_class->implements_interface(CACHED_CLASS(System_Collections_IDictionary))) { | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 				return GDMonoUtils::Marshal::idictionary_to_dictionary(p_obj); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-21 19:09:00 +02:00
										 |  |  | 			if (GDMonoUtils::Marshal::generic_ienumerable_is_assignable_from(reftype)) { | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 				return GDMonoUtils::Marshal::enumerable_to_array(p_obj); | 
					
						
							| 
									
										
										
										
											2019-03-05 18:52:19 +01:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (type_class->implements_interface(CACHED_CLASS(System_Collections_IEnumerable))) { | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 				return GDMonoUtils::Marshal::enumerable_to_array(p_obj); | 
					
						
							| 
									
										
										
										
											2019-03-05 18:52:19 +01:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case MONO_TYPE_GENERICINST: { | 
					
						
							| 
									
										
										
										
											2019-07-03 09:44:53 +02:00
										 |  |  | 			MonoReflectionType *reftype = mono_type_get_object(mono_domain_get(), type.type_class->get_mono_type()); | 
					
						
							| 
									
										
										
										
											2018-07-18 23:07:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 			if (GDMonoUtils::Marshal::type_is_generic_dictionary(reftype)) { | 
					
						
							|  |  |  | 				MonoException *exc = NULL; | 
					
						
							| 
									
										
										
										
											2018-07-18 23:07:57 +02:00
										 |  |  | 				MonoObject *ret = type.type_class->get_method("GetPtr")->invoke(p_obj, &exc); | 
					
						
							| 
									
										
										
										
											2019-07-03 09:44:53 +02:00
										 |  |  | 				UNHANDLED_EXCEPTION(exc); | 
					
						
							| 
									
										
										
										
											2018-07-18 23:07:57 +02:00
										 |  |  | 				return *unbox<Dictionary *>(ret); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 			if (GDMonoUtils::Marshal::type_is_generic_array(reftype)) { | 
					
						
							|  |  |  | 				MonoException *exc = NULL; | 
					
						
							| 
									
										
										
										
											2018-07-18 23:07:57 +02:00
										 |  |  | 				MonoObject *ret = type.type_class->get_method("GetPtr")->invoke(p_obj, &exc); | 
					
						
							| 
									
										
										
										
											2019-07-03 09:44:53 +02:00
										 |  |  | 				UNHANDLED_EXCEPTION(exc); | 
					
						
							| 
									
										
										
										
											2018-07-18 23:07:57 +02:00
										 |  |  | 				return *unbox<Array *>(ret); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2019-03-05 18:52:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 			// The order in which we check the following interfaces is very important (dictionaries and generics first)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-21 19:09:00 +02:00
										 |  |  | 			if (GDMonoUtils::Marshal::generic_idictionary_is_assignable_from(reftype)) { | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 				return GDMonoUtils::Marshal::generic_idictionary_to_dictionary(p_obj); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-05 18:52:19 +01:00
										 |  |  | 			if (type.type_class->implements_interface(CACHED_CLASS(System_Collections_IDictionary))) { | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 				return GDMonoUtils::Marshal::idictionary_to_dictionary(p_obj); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-21 19:09:00 +02:00
										 |  |  | 			if (GDMonoUtils::Marshal::generic_ienumerable_is_assignable_from(reftype)) { | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 				return GDMonoUtils::Marshal::enumerable_to_array(p_obj); | 
					
						
							| 
									
										
										
										
											2019-03-05 18:52:19 +01:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (type.type_class->implements_interface(CACHED_CLASS(System_Collections_IEnumerable))) { | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 				return GDMonoUtils::Marshal::enumerable_to_array(p_obj); | 
					
						
							| 
									
										
										
										
											2019-03-05 18:52:19 +01:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ERR_EXPLAIN(String() + "Attempted to convert an unmarshallable managed type to Variant. Name: \'" + | 
					
						
							| 
									
										
										
										
											2018-01-18 10:33:13 +01:00
										 |  |  | 				type.type_class->get_name() + "\' Encoding: " + itos(type.type_encoding)); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	ERR_FAIL_V(Variant()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MonoArray *Array_to_mono_array(const Array &p_array) { | 
					
						
							|  |  |  | 	MonoArray *ret = mono_array_new(mono_domain_get(), CACHED_CLASS_RAW(MonoObject), p_array.size()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < p_array.size(); i++) { | 
					
						
							|  |  |  | 		MonoObject *boxed = variant_to_mono_object(p_array[i]); | 
					
						
							| 
									
										
										
										
											2017-11-01 00:17:34 +01:00
										 |  |  | 		mono_array_setref(ret, i, boxed); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Array mono_array_to_Array(MonoArray *p_array) { | 
					
						
							|  |  |  | 	Array ret; | 
					
						
							| 
									
										
										
										
											2018-06-05 22:14:32 +02:00
										 |  |  | 	if (!p_array) | 
					
						
							|  |  |  | 		return ret; | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	int length = mono_array_length(p_array); | 
					
						
							| 
									
										
										
										
											2018-05-20 18:15:53 -07:00
										 |  |  | 	ret.resize(length); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < length; i++) { | 
					
						
							|  |  |  | 		MonoObject *elem = mono_array_get(p_array, MonoObject *, i); | 
					
						
							| 
									
										
										
										
											2018-05-20 18:15:53 -07:00
										 |  |  | 		ret[i] = mono_object_to_variant(elem); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MonoArray *PoolIntArray_to_mono_array(const PoolIntArray &p_array) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 	PoolIntArray::Read r = p_array.read(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	MonoArray *ret = mono_array_new(mono_domain_get(), CACHED_CLASS_RAW(int32_t), p_array.size()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < p_array.size(); i++) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 		mono_array_set(ret, int32_t, i, r[i]); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PoolIntArray mono_array_to_PoolIntArray(MonoArray *p_array) { | 
					
						
							|  |  |  | 	PoolIntArray ret; | 
					
						
							| 
									
										
										
										
											2018-06-05 22:14:32 +02:00
										 |  |  | 	if (!p_array) | 
					
						
							|  |  |  | 		return ret; | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	int length = mono_array_length(p_array); | 
					
						
							| 
									
										
										
										
											2018-05-20 18:15:53 -07:00
										 |  |  | 	ret.resize(length); | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 	PoolIntArray::Write w = ret.write(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	for (int i = 0; i < length; i++) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 		w[i] = mono_array_get(p_array, int32_t, i); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MonoArray *PoolByteArray_to_mono_array(const PoolByteArray &p_array) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 	PoolByteArray::Read r = p_array.read(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	MonoArray *ret = mono_array_new(mono_domain_get(), CACHED_CLASS_RAW(uint8_t), p_array.size()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < p_array.size(); i++) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 		mono_array_set(ret, uint8_t, i, r[i]); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PoolByteArray mono_array_to_PoolByteArray(MonoArray *p_array) { | 
					
						
							|  |  |  | 	PoolByteArray ret; | 
					
						
							| 
									
										
										
										
											2018-06-05 22:14:32 +02:00
										 |  |  | 	if (!p_array) | 
					
						
							|  |  |  | 		return ret; | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	int length = mono_array_length(p_array); | 
					
						
							| 
									
										
										
										
											2018-05-20 18:15:53 -07:00
										 |  |  | 	ret.resize(length); | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 	PoolByteArray::Write w = ret.write(); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < length; i++) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 		w[i] = mono_array_get(p_array, uint8_t, i); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MonoArray *PoolRealArray_to_mono_array(const PoolRealArray &p_array) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 	PoolRealArray::Read r = p_array.read(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	MonoArray *ret = mono_array_new(mono_domain_get(), REAL_T_MONOCLASS, p_array.size()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < p_array.size(); i++) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 		mono_array_set(ret, real_t, i, r[i]); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PoolRealArray mono_array_to_PoolRealArray(MonoArray *p_array) { | 
					
						
							|  |  |  | 	PoolRealArray ret; | 
					
						
							| 
									
										
										
										
											2018-06-05 22:14:32 +02:00
										 |  |  | 	if (!p_array) | 
					
						
							|  |  |  | 		return ret; | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	int length = mono_array_length(p_array); | 
					
						
							| 
									
										
										
										
											2018-05-20 18:15:53 -07:00
										 |  |  | 	ret.resize(length); | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 	PoolRealArray::Write w = ret.write(); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < length; i++) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 		w[i] = mono_array_get(p_array, real_t, i); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MonoArray *PoolStringArray_to_mono_array(const PoolStringArray &p_array) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 	PoolStringArray::Read r = p_array.read(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	MonoArray *ret = mono_array_new(mono_domain_get(), CACHED_CLASS_RAW(String), p_array.size()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < p_array.size(); i++) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 		MonoString *boxed = mono_string_from_godot(r[i]); | 
					
						
							| 
									
										
										
										
											2019-05-20 18:34:35 +02:00
										 |  |  | 		mono_array_setref(ret, i, boxed); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PoolStringArray mono_array_to_PoolStringArray(MonoArray *p_array) { | 
					
						
							|  |  |  | 	PoolStringArray ret; | 
					
						
							| 
									
										
										
										
											2018-06-05 22:14:32 +02:00
										 |  |  | 	if (!p_array) | 
					
						
							|  |  |  | 		return ret; | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	int length = mono_array_length(p_array); | 
					
						
							| 
									
										
										
										
											2018-05-20 18:15:53 -07:00
										 |  |  | 	ret.resize(length); | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 	PoolStringArray::Write w = ret.write(); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < length; i++) { | 
					
						
							|  |  |  | 		MonoString *elem = mono_array_get(p_array, MonoString *, i); | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 		w[i] = mono_string_to_godot(elem); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MonoArray *PoolColorArray_to_mono_array(const PoolColorArray &p_array) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 	PoolColorArray::Read r = p_array.read(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	MonoArray *ret = mono_array_new(mono_domain_get(), CACHED_CLASS_RAW(Color), p_array.size()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < p_array.size(); i++) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 		M_Color *raw = (M_Color *)mono_array_addr_with_size(ret, sizeof(M_Color), i); | 
					
						
							|  |  |  | 		*raw = MARSHALLED_OUT(Color, r[i]); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PoolColorArray mono_array_to_PoolColorArray(MonoArray *p_array) { | 
					
						
							|  |  |  | 	PoolColorArray ret; | 
					
						
							| 
									
										
										
										
											2018-06-05 22:14:32 +02:00
										 |  |  | 	if (!p_array) | 
					
						
							|  |  |  | 		return ret; | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	int length = mono_array_length(p_array); | 
					
						
							| 
									
										
										
										
											2018-05-20 18:15:53 -07:00
										 |  |  | 	ret.resize(length); | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 	PoolColorArray::Write w = ret.write(); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < length; i++) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 		w[i] = MARSHALLED_IN(Color, (M_Color *)mono_array_addr_with_size(p_array, sizeof(M_Color), i)); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MonoArray *PoolVector2Array_to_mono_array(const PoolVector2Array &p_array) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 	PoolVector2Array::Read r = p_array.read(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	MonoArray *ret = mono_array_new(mono_domain_get(), CACHED_CLASS_RAW(Vector2), p_array.size()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < p_array.size(); i++) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 		M_Vector2 *raw = (M_Vector2 *)mono_array_addr_with_size(ret, sizeof(M_Vector2), i); | 
					
						
							|  |  |  | 		*raw = MARSHALLED_OUT(Vector2, r[i]); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PoolVector2Array mono_array_to_PoolVector2Array(MonoArray *p_array) { | 
					
						
							|  |  |  | 	PoolVector2Array ret; | 
					
						
							| 
									
										
										
										
											2018-06-05 22:14:32 +02:00
										 |  |  | 	if (!p_array) | 
					
						
							|  |  |  | 		return ret; | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	int length = mono_array_length(p_array); | 
					
						
							| 
									
										
										
										
											2018-05-20 18:15:53 -07:00
										 |  |  | 	ret.resize(length); | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 	PoolVector2Array::Write w = ret.write(); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < length; i++) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 		w[i] = MARSHALLED_IN(Vector2, (M_Vector2 *)mono_array_addr_with_size(p_array, sizeof(M_Vector2), i)); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MonoArray *PoolVector3Array_to_mono_array(const PoolVector3Array &p_array) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 	PoolVector3Array::Read r = p_array.read(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	MonoArray *ret = mono_array_new(mono_domain_get(), CACHED_CLASS_RAW(Vector3), p_array.size()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < p_array.size(); i++) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 		M_Vector3 *raw = (M_Vector3 *)mono_array_addr_with_size(ret, sizeof(M_Vector3), i); | 
					
						
							|  |  |  | 		*raw = MARSHALLED_OUT(Vector3, r[i]); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PoolVector3Array mono_array_to_PoolVector3Array(MonoArray *p_array) { | 
					
						
							|  |  |  | 	PoolVector3Array ret; | 
					
						
							| 
									
										
										
										
											2018-06-05 22:14:32 +02:00
										 |  |  | 	if (!p_array) | 
					
						
							|  |  |  | 		return ret; | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	int length = mono_array_length(p_array); | 
					
						
							| 
									
										
										
										
											2018-05-20 18:15:53 -07:00
										 |  |  | 	ret.resize(length); | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 	PoolVector3Array::Write w = ret.write(); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < length; i++) { | 
					
						
							| 
									
										
										
										
											2018-10-17 21:37:57 +02:00
										 |  |  | 		w[i] = MARSHALLED_IN(Vector3, (M_Vector3 *)mono_array_addr_with_size(p_array, sizeof(M_Vector3), i)); | 
					
						
							| 
									
										
										
										
											2017-10-02 23:24:00 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-05-18 04:14:21 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-18 16:24:33 +02:00
										 |  |  | } // namespace GDMonoMarshal
 |