2017-10-02 23:24:00 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* gd_mono_field.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/*************************************************************************/
|
2022-01-03 21:27:34 +01:00
|
|
|
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2022 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_field.h"
|
|
|
|
|
|
|
|
#include <mono/metadata/attrdefs.h>
|
|
|
|
|
2019-11-10 17:10:38 +01:00
|
|
|
#include "gd_mono_cache.h"
|
2017-10-02 23:24:00 +02:00
|
|
|
#include "gd_mono_class.h"
|
|
|
|
#include "gd_mono_marshal.h"
|
2019-11-10 17:10:38 +01:00
|
|
|
#include "gd_mono_utils.h"
|
2017-10-02 23:24:00 +02:00
|
|
|
|
2020-03-14 19:20:17 +01:00
|
|
|
void GDMonoField::set_value(MonoObject *p_object, MonoObject *p_value) {
|
|
|
|
mono_field_set_value(p_object, mono_field, p_value);
|
|
|
|
}
|
|
|
|
|
2017-10-02 23:24:00 +02:00
|
|
|
void GDMonoField::set_value_raw(MonoObject *p_object, void *p_ptr) {
|
|
|
|
mono_field_set_value(p_object, mono_field, &p_ptr);
|
|
|
|
}
|
|
|
|
|
2018-01-04 21:05:46 +01:00
|
|
|
void GDMonoField::set_value_from_variant(MonoObject *p_object, const Variant &p_value) {
|
2017-10-02 23:24:00 +02:00
|
|
|
switch (type.type_encoding) {
|
|
|
|
case MONO_TYPE_BOOLEAN: {
|
2018-10-17 21:37:57 +02:00
|
|
|
MonoBoolean val = p_value.operator bool();
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
|
|
|
} break;
|
|
|
|
case MONO_TYPE_CHAR: {
|
|
|
|
int16_t val = p_value.operator unsigned short();
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
2017-10-02 23:24:00 +02:00
|
|
|
} break;
|
|
|
|
case MONO_TYPE_I1: {
|
2018-10-17 21:37:57 +02:00
|
|
|
int8_t val = p_value.operator signed char();
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
2017-10-02 23:24:00 +02:00
|
|
|
} break;
|
|
|
|
case MONO_TYPE_I2: {
|
2018-10-17 21:37:57 +02:00
|
|
|
int16_t val = p_value.operator signed short();
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
2017-10-02 23:24:00 +02:00
|
|
|
} break;
|
|
|
|
case MONO_TYPE_I4: {
|
2018-10-17 21:37:57 +02:00
|
|
|
int32_t val = p_value.operator signed int();
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
2017-10-02 23:24:00 +02:00
|
|
|
} break;
|
|
|
|
case MONO_TYPE_I8: {
|
2018-10-17 21:37:57 +02:00
|
|
|
int64_t val = p_value.operator int64_t();
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
2017-10-02 23:24:00 +02:00
|
|
|
} break;
|
|
|
|
case MONO_TYPE_U1: {
|
2018-10-17 21:37:57 +02:00
|
|
|
uint8_t val = p_value.operator unsigned char();
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
2017-10-02 23:24:00 +02:00
|
|
|
} break;
|
|
|
|
case MONO_TYPE_U2: {
|
2018-10-17 21:37:57 +02:00
|
|
|
uint16_t val = p_value.operator unsigned short();
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
2017-10-02 23:24:00 +02:00
|
|
|
} break;
|
|
|
|
case MONO_TYPE_U4: {
|
2018-10-17 21:37:57 +02:00
|
|
|
uint32_t val = p_value.operator unsigned int();
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
2017-10-02 23:24:00 +02:00
|
|
|
} break;
|
|
|
|
case MONO_TYPE_U8: {
|
2018-10-17 21:37:57 +02:00
|
|
|
uint64_t val = p_value.operator uint64_t();
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
2017-10-02 23:24:00 +02:00
|
|
|
} break;
|
|
|
|
case MONO_TYPE_R4: {
|
2018-10-17 21:37:57 +02:00
|
|
|
float val = p_value.operator float();
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
2017-10-02 23:24:00 +02:00
|
|
|
} break;
|
|
|
|
case MONO_TYPE_R8: {
|
2018-10-17 21:37:57 +02:00
|
|
|
double val = p_value.operator double();
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
2017-10-02 23:24:00 +02:00
|
|
|
} break;
|
|
|
|
case MONO_TYPE_VALUETYPE: {
|
|
|
|
GDMonoClass *tclass = type.type_class;
|
|
|
|
|
2018-10-17 21:37:57 +02:00
|
|
|
if (tclass == CACHED_CLASS(Vector2)) {
|
2020-12-05 00:19:15 +01:00
|
|
|
GDMonoMarshal::M_Vector2 from = MARSHALLED_OUT(Vector2, p_value.operator ::Vector2());
|
|
|
|
mono_field_set_value(p_object, mono_field, &from);
|
2018-10-17 21:37:57 +02:00
|
|
|
break;
|
|
|
|
}
|
2017-10-02 23:24:00 +02:00
|
|
|
|
2020-03-03 10:42:20 +01:00
|
|
|
if (tclass == CACHED_CLASS(Vector2i)) {
|
2020-12-05 00:19:15 +01:00
|
|
|
GDMonoMarshal::M_Vector2i from = MARSHALLED_OUT(Vector2i, p_value.operator ::Vector2i());
|
|
|
|
mono_field_set_value(p_object, mono_field, &from);
|
2020-03-03 10:42:20 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-10-17 21:37:57 +02:00
|
|
|
if (tclass == CACHED_CLASS(Rect2)) {
|
2020-12-05 00:19:15 +01:00
|
|
|
GDMonoMarshal::M_Rect2 from = MARSHALLED_OUT(Rect2, p_value.operator ::Rect2());
|
|
|
|
mono_field_set_value(p_object, mono_field, &from);
|
2018-10-17 21:37:57 +02:00
|
|
|
break;
|
|
|
|
}
|
2017-10-02 23:24:00 +02:00
|
|
|
|
2020-03-03 10:42:20 +01:00
|
|
|
if (tclass == CACHED_CLASS(Rect2i)) {
|
2020-12-05 00:19:15 +01:00
|
|
|
GDMonoMarshal::M_Rect2i from = MARSHALLED_OUT(Rect2i, p_value.operator ::Rect2i());
|
|
|
|
mono_field_set_value(p_object, mono_field, &from);
|
2020-03-03 10:42:20 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-10-17 21:37:57 +02:00
|
|
|
if (tclass == CACHED_CLASS(Transform2D)) {
|
2020-12-05 00:19:15 +01:00
|
|
|
GDMonoMarshal::M_Transform2D from = MARSHALLED_OUT(Transform2D, p_value.operator ::Transform2D());
|
|
|
|
mono_field_set_value(p_object, mono_field, &from);
|
2018-10-17 21:37:57 +02:00
|
|
|
break;
|
|
|
|
}
|
2017-10-02 23:24:00 +02:00
|
|
|
|
2018-10-17 21:37:57 +02:00
|
|
|
if (tclass == CACHED_CLASS(Vector3)) {
|
2020-12-05 00:19:15 +01:00
|
|
|
GDMonoMarshal::M_Vector3 from = MARSHALLED_OUT(Vector3, p_value.operator ::Vector3());
|
|
|
|
mono_field_set_value(p_object, mono_field, &from);
|
2018-10-17 21:37:57 +02:00
|
|
|
break;
|
|
|
|
}
|
2017-10-02 23:24:00 +02:00
|
|
|
|
2020-03-03 10:42:20 +01:00
|
|
|
if (tclass == CACHED_CLASS(Vector3i)) {
|
2020-12-05 00:19:15 +01:00
|
|
|
GDMonoMarshal::M_Vector3i from = MARSHALLED_OUT(Vector3i, p_value.operator ::Vector3i());
|
|
|
|
mono_field_set_value(p_object, mono_field, &from);
|
2020-03-03 10:42:20 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-10-17 21:37:57 +02:00
|
|
|
if (tclass == CACHED_CLASS(Basis)) {
|
2020-12-05 00:19:15 +01:00
|
|
|
GDMonoMarshal::M_Basis from = MARSHALLED_OUT(Basis, p_value.operator ::Basis());
|
|
|
|
mono_field_set_value(p_object, mono_field, &from);
|
2018-10-17 21:37:57 +02:00
|
|
|
break;
|
|
|
|
}
|
2017-10-02 23:24:00 +02:00
|
|
|
|
2021-01-20 08:02:02 +01:00
|
|
|
if (tclass == CACHED_CLASS(Quaternion)) {
|
|
|
|
GDMonoMarshal::M_Quaternion from = MARSHALLED_OUT(Quaternion, p_value.operator ::Quaternion());
|
2020-12-05 00:19:15 +01:00
|
|
|
mono_field_set_value(p_object, mono_field, &from);
|
2018-10-17 21:37:57 +02:00
|
|
|
break;
|
|
|
|
}
|
2017-10-02 23:24:00 +02:00
|
|
|
|
2020-10-17 07:08:21 +02:00
|
|
|
if (tclass == CACHED_CLASS(Transform3D)) {
|
2021-04-28 09:36:08 +02:00
|
|
|
GDMonoMarshal::M_Transform3D from = MARSHALLED_OUT(Transform3D, p_value.operator ::Transform3D());
|
2020-12-05 00:19:15 +01:00
|
|
|
mono_field_set_value(p_object, mono_field, &from);
|
2018-10-17 21:37:57 +02:00
|
|
|
break;
|
|
|
|
}
|
2017-10-02 23:24:00 +02:00
|
|
|
|
2018-10-17 21:37:57 +02:00
|
|
|
if (tclass == CACHED_CLASS(AABB)) {
|
2020-12-05 00:19:15 +01:00
|
|
|
GDMonoMarshal::M_AABB from = MARSHALLED_OUT(AABB, p_value.operator ::AABB());
|
|
|
|
mono_field_set_value(p_object, mono_field, &from);
|
2018-10-17 21:37:57 +02:00
|
|
|
break;
|
|
|
|
}
|
2017-10-02 23:24:00 +02:00
|
|
|
|
2018-10-17 21:37:57 +02:00
|
|
|
if (tclass == CACHED_CLASS(Color)) {
|
2020-12-05 00:19:15 +01:00
|
|
|
GDMonoMarshal::M_Color from = MARSHALLED_OUT(Color, p_value.operator ::Color());
|
|
|
|
mono_field_set_value(p_object, mono_field, &from);
|
2018-10-17 21:37:57 +02:00
|
|
|
break;
|
|
|
|
}
|
2017-10-02 23:24:00 +02:00
|
|
|
|
2018-10-17 21:37:57 +02:00
|
|
|
if (tclass == CACHED_CLASS(Plane)) {
|
2020-12-05 00:19:15 +01:00
|
|
|
GDMonoMarshal::M_Plane from = MARSHALLED_OUT(Plane, p_value.operator ::Plane());
|
|
|
|
mono_field_set_value(p_object, mono_field, &from);
|
2018-10-17 21:37:57 +02:00
|
|
|
break;
|
|
|
|
}
|
2017-10-02 23:24:00 +02:00
|
|
|
|
2020-03-14 19:20:17 +01:00
|
|
|
if (tclass == CACHED_CLASS(Callable)) {
|
|
|
|
GDMonoMarshal::M_Callable val = GDMonoMarshal::callable_to_managed(p_value.operator Callable());
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tclass == CACHED_CLASS(SignalInfo)) {
|
|
|
|
GDMonoMarshal::M_SignalInfo val = GDMonoMarshal::signal_info_to_managed(p_value.operator Signal());
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-10-17 21:37:57 +02:00
|
|
|
if (mono_class_is_enum(tclass->get_mono_ptr())) {
|
|
|
|
MonoType *enum_basetype = mono_class_enum_basetype(tclass->get_mono_ptr());
|
|
|
|
switch (mono_type_get_type(enum_basetype)) {
|
|
|
|
case MONO_TYPE_BOOLEAN: {
|
|
|
|
MonoBoolean val = p_value.operator bool();
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case MONO_TYPE_CHAR: {
|
|
|
|
uint16_t val = p_value.operator unsigned short();
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case MONO_TYPE_I1: {
|
|
|
|
int8_t val = p_value.operator signed char();
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case MONO_TYPE_I2: {
|
|
|
|
int16_t val = p_value.operator signed short();
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case MONO_TYPE_I4: {
|
|
|
|
int32_t val = p_value.operator signed int();
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case MONO_TYPE_I8: {
|
|
|
|
int64_t val = p_value.operator int64_t();
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case MONO_TYPE_U1: {
|
|
|
|
uint8_t val = p_value.operator unsigned char();
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case MONO_TYPE_U2: {
|
|
|
|
uint16_t val = p_value.operator unsigned short();
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case MONO_TYPE_U4: {
|
|
|
|
uint32_t val = p_value.operator unsigned int();
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case MONO_TYPE_U8: {
|
|
|
|
uint64_t val = p_value.operator uint64_t();
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: {
|
2019-08-09 03:39:45 +02:00
|
|
|
ERR_FAIL_MSG("Attempted to convert Variant to a managed enum value of unmarshallable base type.");
|
2018-10-17 21:37:57 +02:00
|
|
|
}
|
|
|
|
}
|
2018-11-05 10:22:15 +01:00
|
|
|
|
|
|
|
break;
|
2018-10-17 21:37:57 +02:00
|
|
|
}
|
2017-10-17 14:02:19 +02:00
|
|
|
|
2019-08-09 03:39:45 +02:00
|
|
|
ERR_FAIL_MSG("Attempted to set the value of a field of unmarshallable type: '" + tclass->get_name() + "'.");
|
2017-10-02 23:24:00 +02:00
|
|
|
} break;
|
2020-12-05 00:19:15 +01:00
|
|
|
case MONO_TYPE_STRING: {
|
|
|
|
if (p_value.get_type() == Variant::NIL) {
|
|
|
|
// Otherwise, Variant -> String would return the string "Null"
|
|
|
|
MonoString *mono_string = nullptr;
|
|
|
|
mono_field_set_value(p_object, mono_field, mono_string);
|
|
|
|
} else {
|
|
|
|
MonoString *mono_string = GDMonoMarshal::mono_string_from_godot(p_value);
|
|
|
|
mono_field_set_value(p_object, mono_field, mono_string);
|
|
|
|
}
|
|
|
|
} break;
|
2017-10-02 23:24:00 +02:00
|
|
|
case MONO_TYPE_ARRAY:
|
|
|
|
case MONO_TYPE_SZARRAY: {
|
2020-12-05 00:19:15 +01:00
|
|
|
MonoArray *managed = GDMonoMarshal::variant_to_mono_array(p_value, type.type_class);
|
|
|
|
if (likely(managed != nullptr)) {
|
2020-04-22 17:19:45 +02:00
|
|
|
mono_field_set_value(p_object, mono_field, managed);
|
|
|
|
}
|
2017-10-02 23:24:00 +02:00
|
|
|
} break;
|
|
|
|
case MONO_TYPE_CLASS: {
|
2020-12-05 00:19:15 +01:00
|
|
|
MonoObject *managed = GDMonoMarshal::variant_to_mono_object_of_class(p_value, type.type_class);
|
|
|
|
if (likely(managed != nullptr)) {
|
2017-10-22 22:07:52 +02:00
|
|
|
mono_field_set_value(p_object, mono_field, managed);
|
2017-10-02 23:24:00 +02:00
|
|
|
}
|
2020-12-05 00:19:15 +01:00
|
|
|
} break;
|
|
|
|
case MONO_TYPE_GENERICINST: {
|
|
|
|
MonoObject *managed = GDMonoMarshal::variant_to_mono_object_of_genericinst(p_value, type.type_class);
|
|
|
|
if (likely(managed != nullptr)) {
|
2018-07-18 23:07:57 +02:00
|
|
|
mono_field_set_value(p_object, mono_field, managed);
|
|
|
|
}
|
2017-10-02 23:24:00 +02:00
|
|
|
} break;
|
|
|
|
case MONO_TYPE_OBJECT: {
|
|
|
|
// Variant
|
|
|
|
switch (p_value.get_type()) {
|
|
|
|
case Variant::BOOL: {
|
2018-10-17 21:37:57 +02:00
|
|
|
MonoBoolean val = p_value.operator bool();
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
2017-10-02 23:24:00 +02:00
|
|
|
} break;
|
|
|
|
case Variant::INT: {
|
2018-10-17 21:37:57 +02:00
|
|
|
int32_t val = p_value.operator signed int();
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
2017-10-02 23:24:00 +02:00
|
|
|
} break;
|
Variant: Added 64-bit packed arrays, renamed Variant::REAL to FLOAT.
- Renames PackedIntArray to PackedInt32Array.
- Renames PackedFloatArray to PackedFloat32Array.
- Adds PackedInt64Array and PackedFloat64Array.
- Renames Variant::REAL to Variant::FLOAT for consistency.
Packed arrays are for storing large amount of data and creating stuff like
meshes, buffers. textures, etc. Forcing them to be 64 is a huge waste of
memory. That said, many users requested the ability to have 64 bits packed
arrays for their games, so this is just an optional added type.
For Variant, the float datatype is always 64 bits, and exposed as `float`.
We still have `real_t` which is the datatype that can change from 32 to 64
bits depending on a compile flag (not entirely working right now, but that's
the idea). It affects math related datatypes and code only.
Neither Variant nor PackedArray make use of real_t, which is only intended
for math precision, so the term is removed from there to keep only float.
2020-02-24 19:20:53 +01:00
|
|
|
case Variant::FLOAT: {
|
2017-10-02 23:24:00 +02:00
|
|
|
#ifdef REAL_T_IS_DOUBLE
|
2018-10-17 21:37:57 +02:00
|
|
|
double val = p_value.operator double();
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
2017-10-02 23:24:00 +02:00
|
|
|
#else
|
2018-10-17 21:37:57 +02:00
|
|
|
float val = p_value.operator float();
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
2017-10-02 23:24:00 +02:00
|
|
|
#endif
|
|
|
|
} break;
|
|
|
|
case Variant::STRING: {
|
|
|
|
MonoString *mono_string = GDMonoMarshal::mono_string_from_godot(p_value);
|
|
|
|
mono_field_set_value(p_object, mono_field, mono_string);
|
|
|
|
} break;
|
2018-10-17 21:37:57 +02:00
|
|
|
case Variant::VECTOR2: {
|
2020-12-05 00:19:15 +01:00
|
|
|
GDMonoMarshal::M_Vector2 from = MARSHALLED_OUT(Vector2, p_value.operator ::Vector2());
|
|
|
|
mono_field_set_value(p_object, mono_field, &from);
|
2018-10-17 21:37:57 +02:00
|
|
|
} break;
|
2020-03-03 10:42:20 +01:00
|
|
|
case Variant::VECTOR2I: {
|
2020-12-05 00:19:15 +01:00
|
|
|
GDMonoMarshal::M_Vector2i from = MARSHALLED_OUT(Vector2i, p_value.operator ::Vector2i());
|
|
|
|
mono_field_set_value(p_object, mono_field, &from);
|
2020-03-03 10:42:20 +01:00
|
|
|
} break;
|
2018-10-17 21:37:57 +02:00
|
|
|
case Variant::RECT2: {
|
2020-12-05 00:19:15 +01:00
|
|
|
GDMonoMarshal::M_Rect2 from = MARSHALLED_OUT(Rect2, p_value.operator ::Rect2());
|
|
|
|
mono_field_set_value(p_object, mono_field, &from);
|
2018-10-17 21:37:57 +02:00
|
|
|
} break;
|
2020-03-03 10:42:20 +01:00
|
|
|
case Variant::RECT2I: {
|
2020-12-05 00:19:15 +01:00
|
|
|
GDMonoMarshal::M_Rect2i from = MARSHALLED_OUT(Rect2i, p_value.operator ::Rect2i());
|
|
|
|
mono_field_set_value(p_object, mono_field, &from);
|
2020-03-03 10:42:20 +01:00
|
|
|
} break;
|
2018-10-17 21:37:57 +02:00
|
|
|
case Variant::VECTOR3: {
|
2020-12-05 00:19:15 +01:00
|
|
|
GDMonoMarshal::M_Vector3 from = MARSHALLED_OUT(Vector3, p_value.operator ::Vector3());
|
|
|
|
mono_field_set_value(p_object, mono_field, &from);
|
2018-10-17 21:37:57 +02:00
|
|
|
} break;
|
2020-03-03 10:42:20 +01:00
|
|
|
case Variant::VECTOR3I: {
|
2020-12-05 00:19:15 +01:00
|
|
|
GDMonoMarshal::M_Vector3i from = MARSHALLED_OUT(Vector3i, p_value.operator ::Vector3i());
|
|
|
|
mono_field_set_value(p_object, mono_field, &from);
|
2020-03-03 10:42:20 +01:00
|
|
|
} break;
|
2018-10-17 21:37:57 +02:00
|
|
|
case Variant::TRANSFORM2D: {
|
2020-12-05 00:19:15 +01:00
|
|
|
GDMonoMarshal::M_Transform2D from = MARSHALLED_OUT(Transform2D, p_value.operator ::Transform2D());
|
|
|
|
mono_field_set_value(p_object, mono_field, &from);
|
2018-10-17 21:37:57 +02:00
|
|
|
} break;
|
|
|
|
case Variant::PLANE: {
|
2020-12-05 00:19:15 +01:00
|
|
|
GDMonoMarshal::M_Plane from = MARSHALLED_OUT(Plane, p_value.operator ::Plane());
|
|
|
|
mono_field_set_value(p_object, mono_field, &from);
|
2018-10-17 21:37:57 +02:00
|
|
|
} break;
|
2021-01-20 08:02:02 +01:00
|
|
|
case Variant::QUATERNION: {
|
|
|
|
GDMonoMarshal::M_Quaternion from = MARSHALLED_OUT(Quaternion, p_value.operator ::Quaternion());
|
2020-12-05 00:19:15 +01:00
|
|
|
mono_field_set_value(p_object, mono_field, &from);
|
2018-10-17 21:37:57 +02:00
|
|
|
} break;
|
|
|
|
case Variant::AABB: {
|
2020-12-05 00:19:15 +01:00
|
|
|
GDMonoMarshal::M_AABB from = MARSHALLED_OUT(AABB, p_value.operator ::AABB());
|
|
|
|
mono_field_set_value(p_object, mono_field, &from);
|
2018-10-17 21:37:57 +02:00
|
|
|
} break;
|
|
|
|
case Variant::BASIS: {
|
2020-12-05 00:19:15 +01:00
|
|
|
GDMonoMarshal::M_Basis from = MARSHALLED_OUT(Basis, p_value.operator ::Basis());
|
|
|
|
mono_field_set_value(p_object, mono_field, &from);
|
2018-10-17 21:37:57 +02:00
|
|
|
} break;
|
2021-04-28 09:36:08 +02:00
|
|
|
case Variant::TRANSFORM3D: {
|
|
|
|
GDMonoMarshal::M_Transform3D from = MARSHALLED_OUT(Transform3D, p_value.operator ::Transform3D());
|
2020-12-05 00:19:15 +01:00
|
|
|
mono_field_set_value(p_object, mono_field, &from);
|
2018-10-17 21:37:57 +02:00
|
|
|
} break;
|
|
|
|
case Variant::COLOR: {
|
2020-12-05 00:19:15 +01:00
|
|
|
GDMonoMarshal::M_Color from = MARSHALLED_OUT(Color, p_value.operator ::Color());
|
|
|
|
mono_field_set_value(p_object, mono_field, &from);
|
2018-10-17 21:37:57 +02:00
|
|
|
} break;
|
2020-03-14 19:20:17 +01:00
|
|
|
case Variant::STRING_NAME: {
|
|
|
|
MonoObject *managed = GDMonoUtils::create_managed_from(p_value.operator StringName());
|
|
|
|
mono_field_set_value(p_object, mono_field, managed);
|
|
|
|
} break;
|
2017-10-02 23:24:00 +02:00
|
|
|
case Variant::NODE_PATH: {
|
|
|
|
MonoObject *managed = GDMonoUtils::create_managed_from(p_value.operator NodePath());
|
2017-10-22 22:07:52 +02:00
|
|
|
mono_field_set_value(p_object, mono_field, managed);
|
2017-10-02 23:24:00 +02:00
|
|
|
} break;
|
2020-11-09 14:53:05 +01:00
|
|
|
case Variant::RID: {
|
|
|
|
MonoObject *managed = GDMonoUtils::create_managed_from(p_value.operator ::RID());
|
2017-10-22 22:07:52 +02:00
|
|
|
mono_field_set_value(p_object, mono_field, managed);
|
2017-10-02 23:24:00 +02:00
|
|
|
} break;
|
|
|
|
case Variant::OBJECT: {
|
|
|
|
MonoObject *managed = GDMonoUtils::unmanaged_get_managed(p_value.operator Object *());
|
|
|
|
mono_field_set_value(p_object, mono_field, managed);
|
2020-03-14 19:20:17 +01:00
|
|
|
} break;
|
|
|
|
case Variant::CALLABLE: {
|
|
|
|
GDMonoMarshal::M_Callable val = GDMonoMarshal::callable_to_managed(p_value.operator Callable());
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
|
|
|
} break;
|
|
|
|
case Variant::SIGNAL: {
|
|
|
|
GDMonoMarshal::M_SignalInfo val = GDMonoMarshal::signal_info_to_managed(p_value.operator Signal());
|
|
|
|
mono_field_set_value(p_object, mono_field, &val);
|
|
|
|
} break;
|
2017-10-02 23:24:00 +02:00
|
|
|
case Variant::DICTIONARY: {
|
2018-07-18 23:07:57 +02:00
|
|
|
MonoObject *managed = GDMonoUtils::create_managed_from(p_value.operator Dictionary(), CACHED_CLASS(Dictionary));
|
|
|
|
mono_field_set_value(p_object, mono_field, managed);
|
|
|
|
} break;
|
|
|
|
case Variant::ARRAY: {
|
|
|
|
MonoObject *managed = GDMonoUtils::create_managed_from(p_value.operator Array(), CACHED_CLASS(Array));
|
2017-10-22 22:07:52 +02:00
|
|
|
mono_field_set_value(p_object, mono_field, managed);
|
2017-10-02 23:24:00 +02:00
|
|
|
} break;
|
2020-02-17 22:06:54 +01:00
|
|
|
case Variant::PACKED_BYTE_ARRAY: {
|
2020-12-05 00:19:15 +01:00
|
|
|
MonoArray *managed = GDMonoMarshal::PackedByteArray_to_mono_array(p_value.operator ::PackedByteArray());
|
|
|
|
mono_field_set_value(p_object, mono_field, managed);
|
2018-10-17 21:37:57 +02:00
|
|
|
} break;
|
Variant: Added 64-bit packed arrays, renamed Variant::REAL to FLOAT.
- Renames PackedIntArray to PackedInt32Array.
- Renames PackedFloatArray to PackedFloat32Array.
- Adds PackedInt64Array and PackedFloat64Array.
- Renames Variant::REAL to Variant::FLOAT for consistency.
Packed arrays are for storing large amount of data and creating stuff like
meshes, buffers. textures, etc. Forcing them to be 64 is a huge waste of
memory. That said, many users requested the ability to have 64 bits packed
arrays for their games, so this is just an optional added type.
For Variant, the float datatype is always 64 bits, and exposed as `float`.
We still have `real_t` which is the datatype that can change from 32 to 64
bits depending on a compile flag (not entirely working right now, but that's
the idea). It affects math related datatypes and code only.
Neither Variant nor PackedArray make use of real_t, which is only intended
for math precision, so the term is removed from there to keep only float.
2020-02-24 19:20:53 +01:00
|
|
|
case Variant::PACKED_INT32_ARRAY: {
|
2020-12-05 00:19:15 +01:00
|
|
|
MonoArray *managed = GDMonoMarshal::PackedInt32Array_to_mono_array(p_value.operator ::PackedInt32Array());
|
|
|
|
mono_field_set_value(p_object, mono_field, managed);
|
2018-10-17 21:37:57 +02:00
|
|
|
} break;
|
2020-03-14 19:20:17 +01:00
|
|
|
case Variant::PACKED_INT64_ARRAY: {
|
2020-12-05 00:19:15 +01:00
|
|
|
MonoArray *managed = GDMonoMarshal::PackedInt64Array_to_mono_array(p_value.operator ::PackedInt64Array());
|
|
|
|
mono_field_set_value(p_object, mono_field, managed);
|
2020-03-14 19:20:17 +01:00
|
|
|
} break;
|
Variant: Added 64-bit packed arrays, renamed Variant::REAL to FLOAT.
- Renames PackedIntArray to PackedInt32Array.
- Renames PackedFloatArray to PackedFloat32Array.
- Adds PackedInt64Array and PackedFloat64Array.
- Renames Variant::REAL to Variant::FLOAT for consistency.
Packed arrays are for storing large amount of data and creating stuff like
meshes, buffers. textures, etc. Forcing them to be 64 is a huge waste of
memory. That said, many users requested the ability to have 64 bits packed
arrays for their games, so this is just an optional added type.
For Variant, the float datatype is always 64 bits, and exposed as `float`.
We still have `real_t` which is the datatype that can change from 32 to 64
bits depending on a compile flag (not entirely working right now, but that's
the idea). It affects math related datatypes and code only.
Neither Variant nor PackedArray make use of real_t, which is only intended
for math precision, so the term is removed from there to keep only float.
2020-02-24 19:20:53 +01:00
|
|
|
case Variant::PACKED_FLOAT32_ARRAY: {
|
2020-12-05 00:19:15 +01:00
|
|
|
MonoArray *managed = GDMonoMarshal::PackedFloat32Array_to_mono_array(p_value.operator ::PackedFloat32Array());
|
|
|
|
mono_field_set_value(p_object, mono_field, managed);
|
2018-10-17 21:37:57 +02:00
|
|
|
} break;
|
2020-03-14 19:20:17 +01:00
|
|
|
case Variant::PACKED_FLOAT64_ARRAY: {
|
2020-12-05 00:19:15 +01:00
|
|
|
MonoArray *managed = GDMonoMarshal::PackedFloat64Array_to_mono_array(p_value.operator ::PackedFloat64Array());
|
|
|
|
mono_field_set_value(p_object, mono_field, managed);
|
2020-03-14 19:20:17 +01:00
|
|
|
} break;
|
2020-02-17 22:06:54 +01:00
|
|
|
case Variant::PACKED_STRING_ARRAY: {
|
2020-12-05 00:19:15 +01:00
|
|
|
MonoArray *managed = GDMonoMarshal::PackedStringArray_to_mono_array(p_value.operator ::PackedStringArray());
|
|
|
|
mono_field_set_value(p_object, mono_field, managed);
|
2018-10-17 21:37:57 +02:00
|
|
|
} break;
|
2020-02-17 22:06:54 +01:00
|
|
|
case Variant::PACKED_VECTOR2_ARRAY: {
|
2020-12-05 00:19:15 +01:00
|
|
|
MonoArray *managed = GDMonoMarshal::PackedVector2Array_to_mono_array(p_value.operator ::PackedVector2Array());
|
|
|
|
mono_field_set_value(p_object, mono_field, managed);
|
2018-10-17 21:37:57 +02:00
|
|
|
} break;
|
2020-02-17 22:06:54 +01:00
|
|
|
case Variant::PACKED_VECTOR3_ARRAY: {
|
2020-12-05 00:19:15 +01:00
|
|
|
MonoArray *managed = GDMonoMarshal::PackedVector3Array_to_mono_array(p_value.operator ::PackedVector3Array());
|
|
|
|
mono_field_set_value(p_object, mono_field, managed);
|
2018-10-17 21:37:57 +02:00
|
|
|
} break;
|
2020-02-17 22:06:54 +01:00
|
|
|
case Variant::PACKED_COLOR_ARRAY: {
|
2020-12-05 00:19:15 +01:00
|
|
|
MonoArray *managed = GDMonoMarshal::PackedColorArray_to_mono_array(p_value.operator ::PackedColorArray());
|
|
|
|
mono_field_set_value(p_object, mono_field, managed);
|
2018-10-17 21:37:57 +02:00
|
|
|
} break;
|
2020-05-10 13:00:47 +02:00
|
|
|
default:
|
|
|
|
break;
|
2017-10-02 23:24:00 +02:00
|
|
|
}
|
|
|
|
} break;
|
|
|
|
default: {
|
2019-11-06 17:03:04 +01:00
|
|
|
ERR_PRINT("Attempted to set the value of a field of unexpected type encoding: " + itos(type.type_encoding) + ".");
|
2017-10-02 23:24:00 +02:00
|
|
|
} break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-04 21:05:46 +01:00
|
|
|
MonoObject *GDMonoField::get_value(MonoObject *p_object) {
|
|
|
|
return mono_field_get_value_object(mono_domain_get(), mono_field, p_object);
|
|
|
|
}
|
|
|
|
|
2017-10-02 23:24:00 +02:00
|
|
|
bool GDMonoField::get_bool_value(MonoObject *p_object) {
|
2017-10-09 00:10:54 +02:00
|
|
|
return (bool)GDMonoMarshal::unbox<MonoBoolean>(get_value(p_object));
|
2017-10-02 23:24:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int GDMonoField::get_int_value(MonoObject *p_object) {
|
2017-10-09 00:10:54 +02:00
|
|
|
return GDMonoMarshal::unbox<int32_t>(get_value(p_object));
|
2017-10-02 23:24:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
String GDMonoField::get_string_value(MonoObject *p_object) {
|
|
|
|
MonoObject *val = get_value(p_object);
|
2017-12-24 03:32:40 +01:00
|
|
|
return GDMonoMarshal::mono_string_to_godot((MonoString *)val);
|
2017-10-02 23:24:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool GDMonoField::has_attribute(GDMonoClass *p_attr_class) {
|
|
|
|
ERR_FAIL_NULL_V(p_attr_class, false);
|
|
|
|
|
2020-07-05 19:19:36 +02:00
|
|
|
if (!attrs_fetched) {
|
2017-10-02 23:24:00 +02:00
|
|
|
fetch_attributes();
|
2020-07-05 19:19:36 +02:00
|
|
|
}
|
2017-10-02 23:24:00 +02:00
|
|
|
|
2020-07-05 19:19:36 +02:00
|
|
|
if (!attributes) {
|
2017-10-02 23:24:00 +02:00
|
|
|
return false;
|
2020-07-05 19:19:36 +02:00
|
|
|
}
|
2017-10-02 23:24:00 +02:00
|
|
|
|
2018-01-04 21:05:46 +01:00
|
|
|
return mono_custom_attrs_has_attr(attributes, p_attr_class->get_mono_ptr());
|
2017-10-02 23:24:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
MonoObject *GDMonoField::get_attribute(GDMonoClass *p_attr_class) {
|
2020-04-02 01:20:12 +02:00
|
|
|
ERR_FAIL_NULL_V(p_attr_class, nullptr);
|
2017-10-02 23:24:00 +02:00
|
|
|
|
2020-07-05 19:19:36 +02:00
|
|
|
if (!attrs_fetched) {
|
2017-10-02 23:24:00 +02:00
|
|
|
fetch_attributes();
|
2020-07-05 19:19:36 +02:00
|
|
|
}
|
2017-10-02 23:24:00 +02:00
|
|
|
|
2020-07-05 19:19:36 +02:00
|
|
|
if (!attributes) {
|
2020-04-02 01:20:12 +02:00
|
|
|
return nullptr;
|
2020-07-05 19:19:36 +02:00
|
|
|
}
|
2017-10-02 23:24:00 +02:00
|
|
|
|
2018-01-04 21:05:46 +01:00
|
|
|
return mono_custom_attrs_get_attr(attributes, p_attr_class->get_mono_ptr());
|
2017-10-02 23:24:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void GDMonoField::fetch_attributes() {
|
2020-04-02 01:20:12 +02:00
|
|
|
ERR_FAIL_COND(attributes != nullptr);
|
2018-01-04 21:05:46 +01:00
|
|
|
attributes = mono_custom_attrs_from_field(owner->get_mono_ptr(), mono_field);
|
2017-10-02 23:24:00 +02:00
|
|
|
attrs_fetched = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GDMonoField::is_static() {
|
|
|
|
return mono_field_get_flags(mono_field) & MONO_FIELD_ATTR_STATIC;
|
|
|
|
}
|
|
|
|
|
2019-01-29 00:02:35 +01:00
|
|
|
IMonoClassMember::Visibility GDMonoField::get_visibility() {
|
2017-10-02 23:24:00 +02:00
|
|
|
switch (mono_field_get_flags(mono_field) & MONO_FIELD_ATTR_FIELD_ACCESS_MASK) {
|
|
|
|
case MONO_FIELD_ATTR_PRIVATE:
|
2019-01-29 00:02:35 +01:00
|
|
|
return IMonoClassMember::PRIVATE;
|
2017-10-02 23:24:00 +02:00
|
|
|
case MONO_FIELD_ATTR_FAM_AND_ASSEM:
|
2019-01-29 00:02:35 +01:00
|
|
|
return IMonoClassMember::PROTECTED_AND_INTERNAL;
|
2017-10-02 23:24:00 +02:00
|
|
|
case MONO_FIELD_ATTR_ASSEMBLY:
|
2019-01-29 00:02:35 +01:00
|
|
|
return IMonoClassMember::INTERNAL;
|
2017-10-02 23:24:00 +02:00
|
|
|
case MONO_FIELD_ATTR_FAMILY:
|
2019-01-29 00:02:35 +01:00
|
|
|
return IMonoClassMember::PROTECTED;
|
2017-10-02 23:24:00 +02:00
|
|
|
case MONO_FIELD_ATTR_PUBLIC:
|
2019-01-29 00:02:35 +01:00
|
|
|
return IMonoClassMember::PUBLIC;
|
2017-10-02 23:24:00 +02:00
|
|
|
default:
|
2019-01-29 00:02:35 +01:00
|
|
|
ERR_FAIL_V(IMonoClassMember::PRIVATE);
|
2017-10-02 23:24:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-04 21:05:46 +01:00
|
|
|
GDMonoField::GDMonoField(MonoClassField *p_mono_field, GDMonoClass *p_owner) {
|
2017-10-02 23:24:00 +02:00
|
|
|
owner = p_owner;
|
2018-01-04 21:05:46 +01:00
|
|
|
mono_field = p_mono_field;
|
2021-01-18 09:34:10 +01:00
|
|
|
name = String::utf8(mono_field_get_name(mono_field));
|
2017-10-02 23:24:00 +02:00
|
|
|
MonoType *field_type = mono_field_get_type(mono_field);
|
|
|
|
type.type_encoding = mono_type_get_type(field_type);
|
|
|
|
MonoClass *field_type_class = mono_class_from_mono_type(field_type);
|
|
|
|
type.type_class = GDMono::get_singleton()->get_class(field_type_class);
|
|
|
|
|
|
|
|
attrs_fetched = false;
|
2020-04-02 01:20:12 +02:00
|
|
|
attributes = nullptr;
|
2017-10-02 23:24:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
GDMonoField::~GDMonoField() {
|
|
|
|
if (attributes) {
|
|
|
|
mono_custom_attrs_free(attributes);
|
|
|
|
}
|
|
|
|
}
|