2018-09-16 02:50:39 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
|
|
|
|
<Type Name="Vector<*>">
|
|
|
|
<Expand>
|
2019-03-12 08:59:30 +01:00
|
|
|
<Item Name="[size]">_cowdata._ptr ? (((const unsigned int *)(_cowdata._ptr))[-1]) : 0</Item>
|
2018-09-16 02:50:39 +02:00
|
|
|
<ArrayItems>
|
2019-03-12 08:59:30 +01:00
|
|
|
<Size>_cowdata._ptr ? (((const unsigned int *)(_cowdata._ptr))[-1]) : 0</Size>
|
|
|
|
<ValuePointer>_cowdata._ptr</ValuePointer>
|
2018-09-16 02:50:39 +02:00
|
|
|
</ArrayItems>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
2021-02-25 02:18:00 +01:00
|
|
|
<Type Name="LocalVector<*>">
|
|
|
|
<Expand>
|
|
|
|
<Item Name="[size]">count</Item>
|
|
|
|
<ArrayItems>
|
|
|
|
<Size>count</Size>
|
|
|
|
<ValuePointer>data</ValuePointer>
|
|
|
|
</ArrayItems>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
2019-03-12 08:59:30 +01:00
|
|
|
<Type Name="List<*>">
|
|
|
|
<Expand>
|
|
|
|
<Item Name="[size]">_data ? (_data->size_cache) : 0</Item>
|
|
|
|
<LinkedListItems>
|
|
|
|
<Size>_data ? (_data->size_cache) : 0</Size>
|
|
|
|
<HeadPointer>_data->first</HeadPointer>
|
|
|
|
<NextPointer>next_ptr</NextPointer>
|
|
|
|
<ValueNode>value</ValueNode>
|
|
|
|
</LinkedListItems>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
2018-09-16 02:50:39 +02:00
|
|
|
|
2022-09-04 18:06:26 +02:00
|
|
|
<Type Name="HashMap<*,*>">
|
|
|
|
<Expand>
|
|
|
|
<Item Name="[size]">num_elements</Item>
|
|
|
|
<LinkedListItems>
|
|
|
|
<Size>num_elements</Size>
|
|
|
|
<HeadPointer>head_element</HeadPointer>
|
|
|
|
<NextPointer>next</NextPointer>
|
|
|
|
<ValueNode>data</ValueNode>
|
|
|
|
</LinkedListItems>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="VMap<*,*>">
|
|
|
|
<Expand>
|
|
|
|
<Item Condition="_cowdata._ptr" Name="[size]">*(reinterpret_cast<int*>(_cowdata._ptr) - 1)</Item>
|
|
|
|
<ArrayItems Condition="_cowdata._ptr">
|
|
|
|
<Size>*(reinterpret_cast<int*>(_cowdata._ptr) - 1)</Size>
|
|
|
|
<ValuePointer>reinterpret_cast<VMap<$T1,$T2>::Pair*>(_cowdata._ptr)</ValuePointer>
|
|
|
|
</ArrayItems>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="VMap<Callable,*>::Pair">
|
|
|
|
<DisplayString Condition="dynamic_cast<CallableCustomMethodPointerBase*>(key.custom)">{dynamic_cast<CallableCustomMethodPointerBase*>(key.custom)->text}</DisplayString>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<!-- requires PR 64364
|
|
|
|
<Type Name="GDScriptThreadContext">
|
|
|
|
<DisplayString Condition="_is_main == true">main thread {_debug_thread_id}</DisplayString>
|
|
|
|
</Type>
|
|
|
|
-->
|
|
|
|
|
2018-09-16 02:50:39 +02:00
|
|
|
<Type Name="Variant">
|
2019-03-12 08:59:30 +01:00
|
|
|
<DisplayString Condition="type == Variant::NIL">nil</DisplayString>
|
|
|
|
<DisplayString Condition="type == Variant::BOOL">{_data._bool}</DisplayString>
|
|
|
|
<DisplayString Condition="type == Variant::INT">{_data._int}</DisplayString>
|
2020-12-28 14:37:36 +01:00
|
|
|
<DisplayString Condition="type == Variant::FLOAT">{_data._float}</DisplayString>
|
2019-03-12 08:59:30 +01:00
|
|
|
<DisplayString Condition="type == Variant::TRANSFORM2D">{_data._transform2d}</DisplayString>
|
|
|
|
<DisplayString Condition="type == Variant::AABB">{_data._aabb}</DisplayString>
|
|
|
|
<DisplayString Condition="type == Variant::BASIS">{_data._basis}</DisplayString>
|
2022-07-21 18:35:21 +02:00
|
|
|
<DisplayString Condition="type == Variant::TRANSFORM3D">{_data._transform3d}</DisplayString>
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-20 01:11:13 +02:00
|
|
|
<DisplayString Condition="type == Variant::PROJECTION">{_data._projection}</DisplayString>
|
2019-03-12 08:59:30 +01:00
|
|
|
<DisplayString Condition="type == Variant::STRING">{*(String *)_data._mem}</DisplayString>
|
|
|
|
<DisplayString Condition="type == Variant::VECTOR2">{*(Vector2 *)_data._mem}</DisplayString>
|
|
|
|
<DisplayString Condition="type == Variant::RECT2">{*(Rect2 *)_data._mem}</DisplayString>
|
|
|
|
<DisplayString Condition="type == Variant::VECTOR3">{*(Vector3 *)_data._mem}</DisplayString>
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-20 01:11:13 +02:00
|
|
|
<DisplayString Condition="type == Variant::VECTOR4">{*(Vector4 *)_data._mem}</DisplayString>
|
2019-03-12 08:59:30 +01:00
|
|
|
<DisplayString Condition="type == Variant::PLANE">{*(Plane *)_data._mem}</DisplayString>
|
2021-01-20 08:02:02 +01:00
|
|
|
<DisplayString Condition="type == Variant::QUATERNION">{*(Quaternion *)_data._mem}</DisplayString>
|
2019-03-12 08:59:30 +01:00
|
|
|
<DisplayString Condition="type == Variant::COLOR">{*(Color *)_data._mem}</DisplayString>
|
|
|
|
<DisplayString Condition="type == Variant::NODE_PATH">{*(NodePath *)_data._mem}</DisplayString>
|
2020-12-28 14:37:36 +01:00
|
|
|
<DisplayString Condition="type == Variant::RID">{*(::RID *)_data._mem}</DisplayString>
|
2019-03-12 08:59:30 +01:00
|
|
|
<DisplayString Condition="type == Variant::OBJECT">{*(Object *)_data._mem}</DisplayString>
|
|
|
|
<DisplayString Condition="type == Variant::DICTIONARY">{*(Dictionary *)_data._mem}</DisplayString>
|
|
|
|
<DisplayString Condition="type == Variant::ARRAY">{*(Array *)_data._mem}</DisplayString>
|
2022-09-04 18:06:26 +02:00
|
|
|
<DisplayString Condition="type == Variant::PACKED_BYTE_ARRAY">{reinterpret_cast<const Variant::PackedArrayRef<unsigned char>*>(_data.packed_array)->array}</DisplayString>
|
|
|
|
<DisplayString Condition="type == Variant::PACKED_INT32_ARRAY">{reinterpret_cast<const Variant::PackedArrayRef<int>*>(_data.packed_array)->array}</DisplayString>
|
|
|
|
<!-- broken, will show incorrect data
|
2020-12-28 14:37:36 +01:00
|
|
|
<DisplayString Condition="type == Variant::PACKED_INT64_ARRAY">{*(PackedInt64Array *)_data._mem}</DisplayString>
|
2022-09-04 18:06:26 +02:00
|
|
|
-->
|
|
|
|
<DisplayString Condition="type == Variant::PACKED_FLOAT32_ARRAY">{reinterpret_cast<const Variant::PackedArrayRef<float>*>(_data.packed_array)->array}</DisplayString>
|
|
|
|
<DisplayString Condition="type == Variant::PACKED_FLOAT64_ARRAY">{reinterpret_cast<const Variant::PackedArrayRef<double>*>(_data.packed_array)->array}</DisplayString>
|
|
|
|
<DisplayString Condition="type == Variant::PACKED_STRING_ARRAY">{reinterpret_cast<const Variant::PackedArrayRef<String>*>(_data.packed_array)->array}</DisplayString>
|
|
|
|
<DisplayString Condition="type == Variant::PACKED_VECTOR2_ARRAY">{reinterpret_cast<const Variant::PackedArrayRef<Vector2>*>(_data.packed_array)->array}</DisplayString>
|
|
|
|
<DisplayString Condition="type == Variant::PACKED_VECTOR3_ARRAY">{reinterpret_cast<const Variant::PackedArrayRef<Vector3>*>(_data.packed_array)->array}</DisplayString>
|
|
|
|
<DisplayString Condition="type == Variant::PACKED_COLOR_ARRAY">{reinterpret_cast<const Variant::PackedArrayRef<Color>*>(_data.packed_array)->array}</DisplayString>
|
2018-09-16 02:50:39 +02:00
|
|
|
|
2020-12-28 14:37:36 +01:00
|
|
|
<StringView Condition="type == Variant::STRING && ((String *)(_data._mem))->_cowdata._ptr">((String *)(_data._mem))->_cowdata._ptr,s32</StringView>
|
2020-07-25 21:38:34 +02:00
|
|
|
|
2018-09-16 02:50:39 +02:00
|
|
|
<Expand>
|
2019-03-12 08:59:30 +01:00
|
|
|
<Item Name="[value]" Condition="type == Variant::BOOL">_data._bool</Item>
|
|
|
|
<Item Name="[value]" Condition="type == Variant::INT">_data._int</Item>
|
2020-12-28 14:37:36 +01:00
|
|
|
<Item Name="[value]" Condition="type == Variant::FLOAT">_data._float</Item>
|
2019-03-12 08:59:30 +01:00
|
|
|
<Item Name="[value]" Condition="type == Variant::TRANSFORM2D">_data._transform2d</Item>
|
|
|
|
<Item Name="[value]" Condition="type == Variant::AABB">_data._aabb</Item>
|
|
|
|
<Item Name="[value]" Condition="type == Variant::BASIS">_data._basis</Item>
|
2022-07-21 18:35:21 +02:00
|
|
|
<Item Name="[value]" Condition="type == Variant::TRANSFORM3D">_data._transform3d</Item>
|
2019-03-12 08:59:30 +01:00
|
|
|
<Item Name="[value]" Condition="type == Variant::STRING">*(String *)_data._mem</Item>
|
|
|
|
<Item Name="[value]" Condition="type == Variant::VECTOR2">*(Vector2 *)_data._mem</Item>
|
|
|
|
<Item Name="[value]" Condition="type == Variant::RECT2">*(Rect2 *)_data._mem</Item>
|
|
|
|
<Item Name="[value]" Condition="type == Variant::VECTOR3">*(Vector3 *)_data._mem</Item>
|
|
|
|
<Item Name="[value]" Condition="type == Variant::PLANE">*(Plane *)_data._mem</Item>
|
2021-01-20 08:02:02 +01:00
|
|
|
<Item Name="[value]" Condition="type == Variant::QUATERNION">*(Quaternion *)_data._mem</Item>
|
2019-03-12 08:59:30 +01:00
|
|
|
<Item Name="[value]" Condition="type == Variant::COLOR">*(Color *)_data._mem</Item>
|
|
|
|
<Item Name="[value]" Condition="type == Variant::NODE_PATH">*(NodePath *)_data._mem</Item>
|
2020-12-28 14:37:36 +01:00
|
|
|
<Item Name="[value]" Condition="type == Variant::RID">*(::RID *)_data._mem</Item>
|
2019-03-12 08:59:30 +01:00
|
|
|
<Item Name="[value]" Condition="type == Variant::OBJECT">*(Object *)_data._mem</Item>
|
|
|
|
<Item Name="[value]" Condition="type == Variant::DICTIONARY">*(Dictionary *)_data._mem</Item>
|
|
|
|
<Item Name="[value]" Condition="type == Variant::ARRAY">*(Array *)_data._mem</Item>
|
2022-09-04 18:06:26 +02:00
|
|
|
<Item Name="[value]" Condition="type == Variant::PACKED_BYTE_ARRAY">reinterpret_cast<const Variant::PackedArrayRef<unsigned char>*>(_data.packed_array)->array</Item>
|
2020-12-28 14:37:36 +01:00
|
|
|
<Item Name="[value]" Condition="type == Variant::PACKED_INT32_ARRAY">*(PackedInt32Array *)_data._mem</Item>
|
|
|
|
<Item Name="[value]" Condition="type == Variant::PACKED_INT64_ARRAY">*(PackedInt64Array *)_data._mem</Item>
|
|
|
|
<Item Name="[value]" Condition="type == Variant::PACKED_FLOAT32_ARRAY">*(PackedFloat32Array *)_data._mem</Item>
|
|
|
|
<Item Name="[value]" Condition="type == Variant::PACKED_FLOAT64_ARRAY">*(PackedFloat64Array *)_data._mem</Item>
|
|
|
|
<Item Name="[value]" Condition="type == Variant::PACKED_STRING_ARRAY">*(PackedStringArray *)_data._mem</Item>
|
|
|
|
<Item Name="[value]" Condition="type == Variant::PACKED_VECTOR2_ARRAY">*(PackedVector2Array *)_data._mem</Item>
|
|
|
|
<Item Name="[value]" Condition="type == Variant::PACKED_VECTOR3_ARRAY">*(PackedVector3Array *)_data._mem</Item>
|
|
|
|
<Item Name="[value]" Condition="type == Variant::PACKED_COLOR_ARRAY">*(PackedColorArray *)_data._mem</Item>
|
2018-09-16 02:50:39 +02:00
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="String">
|
2019-03-12 08:59:30 +01:00
|
|
|
<DisplayString Condition="_cowdata._ptr == 0">[empty]</DisplayString>
|
2020-12-28 14:37:36 +01:00
|
|
|
<DisplayString Condition="_cowdata._ptr != 0">{_cowdata._ptr,s32}</DisplayString>
|
|
|
|
<StringView Condition="_cowdata._ptr != 0">_cowdata._ptr,s32</StringView>
|
2019-03-12 08:59:30 +01:00
|
|
|
</Type>
|
|
|
|
|
2022-09-04 18:06:26 +02:00
|
|
|
<Type Name="godot::String">
|
|
|
|
<DisplayString>{*reinterpret_cast<void**>(opaque),s32}</DisplayString>
|
|
|
|
<Expand>
|
|
|
|
<Item Name="opaque_ptr">*reinterpret_cast<void**>(opaque)</Item>
|
|
|
|
<Item Name="string">*reinterpret_cast<void**>(opaque),s32</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
2019-03-12 08:59:30 +01:00
|
|
|
<Type Name="StringName">
|
|
|
|
<DisplayString Condition="_data && _data->cname">{_data->cname}</DisplayString>
|
2020-12-28 14:37:36 +01:00
|
|
|
<DisplayString Condition="_data && !_data->cname">{_data->name,s32}</DisplayString>
|
2019-03-12 08:59:30 +01:00
|
|
|
<DisplayString Condition="!_data">[empty]</DisplayString>
|
|
|
|
<StringView Condition="_data && _data->cname">_data->cname</StringView>
|
2020-12-28 14:37:36 +01:00
|
|
|
<StringView Condition="_data && !_data->cname">_data->name,s32</StringView>
|
2018-09-16 02:50:39 +02:00
|
|
|
</Type>
|
|
|
|
|
2022-09-04 18:06:26 +02:00
|
|
|
<!-- can't cast the opaque to ::StringName because Natvis does not support global namespace specifier? -->
|
|
|
|
<Type Name="godot::StringName">
|
|
|
|
<DisplayString Condition="(*reinterpret_cast<const char***>(opaque))[1]">{(*reinterpret_cast<const char***>(opaque))[1],s8}</DisplayString>
|
|
|
|
<DisplayString Condition="!(*reinterpret_cast<const char***>(opaque))[1]">{(*reinterpret_cast<const char***>(opaque))[2],s32}</DisplayString>
|
|
|
|
<Expand>
|
|
|
|
<Item Name="opaque_ptr">*reinterpret_cast<void**>(opaque)</Item>
|
|
|
|
<Item Name="&cname">(*reinterpret_cast<const char***>(opaque))+1</Item>
|
|
|
|
<Item Name="cname">(*reinterpret_cast<const char***>(opaque))[1],s8</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="Object::SignalData">
|
|
|
|
<DisplayString Condition="user.name._cowdata._ptr">"{user.name}" {slot_map}</DisplayString>
|
|
|
|
<DisplayString Condition="!user.name._cowdata._ptr">"{slot_map}</DisplayString>
|
|
|
|
</Type>
|
|
|
|
|
2018-09-16 02:50:39 +02:00
|
|
|
<Type Name="Vector2">
|
|
|
|
<DisplayString>{{{x},{y}}}</DisplayString>
|
|
|
|
<Expand>
|
|
|
|
<Item Name="x">x</Item>
|
|
|
|
<Item Name="y">y</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="Vector3">
|
|
|
|
<DisplayString>{{{x},{y},{z}}}</DisplayString>
|
|
|
|
<Expand>
|
|
|
|
<Item Name="x">x</Item>
|
|
|
|
<Item Name="y">y</Item>
|
|
|
|
<Item Name="z">z</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
2021-01-20 08:02:02 +01:00
|
|
|
<Type Name="Quaternion">
|
|
|
|
<DisplayString>Quaternion {{{x},{y},{z},{w}}}</DisplayString>
|
2018-09-16 02:50:39 +02:00
|
|
|
<Expand>
|
|
|
|
<Item Name="x">x</Item>
|
|
|
|
<Item Name="y">y</Item>
|
|
|
|
<Item Name="z">z</Item>
|
|
|
|
<Item Name="w">w</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
|
|
|
|
<Type Name="Color">
|
|
|
|
<DisplayString>Color {{{r},{g},{b},{a}}}</DisplayString>
|
|
|
|
<Expand>
|
|
|
|
<Item Name="red">r</Item>
|
|
|
|
<Item Name="green">g</Item>
|
|
|
|
<Item Name="blue">b</Item>
|
|
|
|
<Item Name="alpha">a</Item>
|
|
|
|
</Expand>
|
|
|
|
</Type>
|
|
|
|
</AutoVisualizer>
|