forked from Unity-Technologies/UnityCsReference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTransformAccessArray.bindings.cs
223 lines (165 loc) · 9.9 KB
/
TransformAccessArray.bindings.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using UnityEngine.Bindings;
using Unity.Collections;
using Unity.Collections.LowLevel.Unsafe;
using System.Runtime.InteropServices;
namespace UnityEngine.Jobs
{
//@TODO: Static code analysis needs to prevent creation of TransformAccess
// except through what is passed into the job function.
// Code below assumes this to be true since it doesn't check if TransformAccess is valid
[StructLayout(LayoutKind.Sequential)]
[NativeHeader("Runtime/Transform/ScriptBindings/TransformAccess.bindings.h")]
public partial struct TransformAccess
{
private IntPtr hierarchy;
private int index;
public Vector3 position { get { Vector3 p; GetPosition(ref this, out p); return p; } set { SetPosition(ref this, ref value); } }
public Quaternion rotation { get { Quaternion r; GetRotation(ref this, out r); return r; } set { SetRotation(ref this, ref value); } }
public Vector3 localPosition { get { Vector3 p; GetLocalPosition(ref this, out p); return p; } set { SetLocalPosition(ref this, ref value); } }
public Quaternion localRotation { get { Quaternion r; GetLocalRotation(ref this, out r); return r; } set { SetLocalRotation(ref this, ref value); } }
public Vector3 localScale { get { Vector3 s; GetLocalScale(ref this, out s); return s; } set { SetLocalScale(ref this, ref value); } }
public Matrix4x4 localToWorldMatrix { get { Matrix4x4 m; GetLocalToWorldMatrix(ref this, out m); return m; } }
public Matrix4x4 worldToLocalMatrix { get { Matrix4x4 m; GetWorldToLocalMatrix(ref this, out m); return m; } }
//@TODO: Static code analysis needs to prevent creation of TransformAccess except through TransformAccessArray accessor.
// Code below assumes this to be true since it doesn't check if TransformAccess is valid
[NativeMethod(Name = "TransformAccessBindings::GetPosition", IsThreadSafe = true, IsFreeFunction = true)]
private static extern void GetPosition(ref TransformAccess access, out Vector3 p);
[NativeMethod(Name = "TransformAccessBindings::SetPosition", IsThreadSafe = true, IsFreeFunction = true)]
private static extern void SetPosition(ref TransformAccess access, ref Vector3 p);
[NativeMethod(Name = "TransformAccessBindings::GetRotation", IsThreadSafe = true, IsFreeFunction = true)]
private static extern void GetRotation(ref TransformAccess access, out Quaternion r);
[NativeMethod(Name = "TransformAccessBindings::SetRotation", IsThreadSafe = true, IsFreeFunction = true)]
private static extern void SetRotation(ref TransformAccess access, ref Quaternion r);
[NativeMethod(Name = "TransformAccessBindings::GetLocalPosition", IsThreadSafe = true, IsFreeFunction = true)]
private static extern void GetLocalPosition(ref TransformAccess access, out Vector3 p);
[NativeMethod(Name = "TransformAccessBindings::SetLocalPosition", IsThreadSafe = true, IsFreeFunction = true)]
private static extern void SetLocalPosition(ref TransformAccess access, ref Vector3 p);
[NativeMethod(Name = "TransformAccessBindings::GetLocalRotation", IsThreadSafe = true, IsFreeFunction = true)]
private static extern void GetLocalRotation(ref TransformAccess access, out Quaternion r);
[NativeMethod(Name = "TransformAccessBindings::SetLocalRotation", IsThreadSafe = true, IsFreeFunction = true)]
private static extern void SetLocalRotation(ref TransformAccess access, ref Quaternion r);
[NativeMethod(Name = "TransformAccessBindings::GetLocalScale", IsThreadSafe = true, IsFreeFunction = true)]
private static extern void GetLocalScale(ref TransformAccess access, out Vector3 r);
[NativeMethod(Name = "TransformAccessBindings::SetLocalScale", IsThreadSafe = true, IsFreeFunction = true)]
private static extern void SetLocalScale(ref TransformAccess access, ref Vector3 r);
[NativeMethod(Name = "TransformAccessBindings::GetLocalToWorldMatrix", IsThreadSafe = true, IsFreeFunction = true)]
private static extern void GetLocalToWorldMatrix(ref TransformAccess access, out Matrix4x4 m);
[NativeMethod(Name = "TransformAccessBindings::GetWorldToLocalMatrix", IsThreadSafe = true, IsFreeFunction = true)]
private static extern void GetWorldToLocalMatrix(ref TransformAccess access, out Matrix4x4 m);
//@TODO: API incomplete...
}
[StructLayout(LayoutKind.Sequential)]
[NativeType(Header = "Runtime/Transform/ScriptBindings/TransformAccess.bindings.h", CodegenOptions = CodegenOptions.Custom)]
public struct TransformAccessArray : IDisposable
{
IntPtr m_TransformArray;
AtomicSafetyHandle m_Safety;
DisposeSentinel m_DisposeSentinel;
public TransformAccessArray(Transform[] transforms, int desiredJobCount = -1)
{
Allocate(transforms.Length, desiredJobCount, out this);
SetTransforms(m_TransformArray, transforms);
}
public TransformAccessArray(int capacity, int desiredJobCount = -1)
{
Allocate(capacity, desiredJobCount, out this);
}
public static void Allocate(int capacity, int desiredJobCount, out TransformAccessArray array)
{
array.m_TransformArray = Create(capacity, desiredJobCount);
DisposeSentinel.Create(out array.m_Safety, out array.m_DisposeSentinel, 1, Allocator.Persistent);
}
public bool isCreated
{
get { return m_TransformArray != IntPtr.Zero; }
}
public void Dispose()
{
DisposeSentinel.Dispose(ref m_Safety, ref m_DisposeSentinel);
DestroyTransformAccessArray(m_TransformArray);
m_TransformArray = IntPtr.Zero;
}
internal IntPtr GetTransformAccessArrayForSchedule()
{
AtomicSafetyHandle.CheckWriteAndThrow(m_Safety);
return m_TransformArray;
}
public Transform this[int index]
{
get
{
AtomicSafetyHandle.CheckReadAndThrow(m_Safety);
return GetTransform(m_TransformArray, index);
}
set
{
AtomicSafetyHandle.CheckWriteAndThrow(m_Safety);
SetTransform(m_TransformArray, index, value);
}
}
public int capacity
{
get
{
AtomicSafetyHandle.CheckReadAndThrow(m_Safety);
return GetCapacity(m_TransformArray);
}
set
{
AtomicSafetyHandle.CheckWriteAndThrow(m_Safety);
SetCapacity(m_TransformArray, value);
}
}
public int length
{
get
{
AtomicSafetyHandle.CheckReadAndThrow(m_Safety);
return GetLength(m_TransformArray);
}
}
public void Add(Transform transform)
{
AtomicSafetyHandle.CheckWriteAndThrow(m_Safety);
Add(m_TransformArray, transform);
}
public void RemoveAtSwapBack(int index)
{
AtomicSafetyHandle.CheckWriteAndThrow(m_Safety);
RemoveAtSwapBack(m_TransformArray, index);
}
public void SetTransforms(Transform[] transforms)
{
AtomicSafetyHandle.CheckWriteAndThrow(m_Safety);
SetTransforms(m_TransformArray, transforms);
}
[NativeMethod(Name = "TransformAccessArrayBindings::Create", IsFreeFunction = true)]
private static extern IntPtr Create(int capacity, int desiredJobCount);
[NativeMethod(Name = "DestroyTransformAccessArray", IsFreeFunction = true)]
private static extern void DestroyTransformAccessArray(IntPtr transformArray);
[NativeMethod(Name = "TransformAccessArrayBindings::SetTransforms", IsFreeFunction = true)]
private static extern void SetTransforms(IntPtr transformArrayIntPtr, Transform[] transforms);
[NativeMethod(Name = "TransformAccessArrayBindings::AddTransform", IsFreeFunction = true)]
private static extern void Add(IntPtr transformArrayIntPtr, Transform transform);
[NativeMethod(Name = "TransformAccessArrayBindings::RemoveAtSwapBack", IsFreeFunction = true)]
private static extern void RemoveAtSwapBack(IntPtr transformArrayIntPtr, int index);
[NativeMethod(Name = "TransformAccessArrayBindings::GetSortedTransformAccess", IsThreadSafe = true, IsFreeFunction = true)]
internal static extern IntPtr GetSortedTransformAccess(IntPtr transformArrayIntPtr);
[NativeMethod(Name = "TransformAccessArrayBindings::GetSortedToUserIndex", IsThreadSafe = true, IsFreeFunction = true)]
internal static extern IntPtr GetSortedToUserIndex(IntPtr transformArrayIntPtr);
[NativeMethod(Name = "TransformAccessArrayBindings::GetLength", IsFreeFunction = true)]
internal static extern int GetLength(IntPtr transformArrayIntPtr);
[NativeMethod(Name = "TransformAccessArrayBindings::GetCapacity", IsFreeFunction = true)]
internal static extern int GetCapacity(IntPtr transformArrayIntPtr);
[NativeMethod(Name = "TransformAccessArrayBindings::SetCapacity", IsFreeFunction = true)]
internal static extern void SetCapacity(IntPtr transformArrayIntPtr, int capacity);
[NativeMethod(Name = "TransformAccessArrayBindings::GetTransform", IsFreeFunction = true)]
internal static extern Transform GetTransform(IntPtr transformArrayIntPtr, int index);
[NativeMethod(Name = "TransformAccessArrayBindings::SetTransform", IsFreeFunction = true)]
internal static extern void SetTransform(IntPtr transformArrayIntPtr, int index, Transform transform);
}
}