-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathSofaBaseObjectAPI.cs
More file actions
430 lines (337 loc) · 16.7 KB
/
SofaBaseObjectAPI.cs
File metadata and controls
430 lines (337 loc) · 16.7 KB
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
using UnityEngine;
using System;
using System.Runtime.InteropServices;
namespace SofaUnityAPI
{
/// <summary>
/// Main class of the Sofa plugin. This is the base class representing Sofa 3D Object, handling all bindings to Sofa 3D Object.
/// It will connect to the SofaPhysicsAPI.
/// </summary>
public class SofaBaseObjectAPI : IDisposable
{
/// <summary> Default constructor, will call impl method: @see createObject() </summary>
/// <param name="simu">Pointer to the SofaPhysicsAPI</param>
/// <param name="nameID">Name of this Object</param>
/// <param name="isRigid">Type rigid or deformable</param>
public SofaBaseObjectAPI(IntPtr simu, string nameID, string parentName, bool isRigid)
{
m_simu = simu;
m_name = nameID;
m_isRigid = isRigid;
m_parentName = parentName;
m_isCreated = createObject();
}
/// Destructor
~SofaBaseObjectAPI()
{
Dispose(false);
}
/// Pointer to the SofaPhysicsAPI
protected IntPtr m_simu = IntPtr.Zero;
/// Pointer to the Sofa 3D object. TODO: check why this pointer messed up in use.
//protected IntPtr m_native = IntPtr.Zero;
protected bool m_hasObject = false;
// TODO: check if needed
bool m_isDisposed;
/// Parameter to activate internal logging
public bool displayLog = false;
/// Name of the Sofa 3D Object mapped to this Object.
protected string m_name;
/// Type of Sofa 3D Object mapped to this Object.
protected string m_type;
/// Sofa 3D Object parent name in Sofa simulation Tree.
protected string m_parentName;
/// Parameter to store the information if the object is rigid or deformable.
protected bool m_isRigid = false;
/// Parameter to store the info if creation succeed. Will store the value return by @sa createObject
public bool m_isCreated = false;
/// Memory free method
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
/// Memory free method
protected virtual void Dispose(bool disposing)
{
if (!m_isDisposed)
{
m_isDisposed = true;
}
}
/// Implicit method to really create object and link to Sofa object. To be overwritten by child.
protected virtual bool createObject()
{
return false;
}
/// Implicit method load the object from the Sofa side. TODO: check if still needed
public virtual void loadObject()
{
}
/// Getter of the sofa 3D Object parent name.
public string parent
{
get { return m_parentName; }
}
/// BoundingBox min Value in 3D
protected Vector3 m_min = new Vector3(100000, 100000, 100000);
/// BoundingBox max Value in 3D
protected Vector3 m_max = new Vector3(-100000, -100000, -100000);
/// Method to compute the Mesh BoundingBox
public virtual void computeBoundingBox(Mesh mesh)
{
Vector3[] verts = mesh.vertices;
int nbrV = verts.Length;
// Get min and max of the mesh
for (int i = 0; i < nbrV; i++)
{
if (verts[i].x > m_max.x)
m_max.x = verts[i].x;
if (verts[i].y > m_max.y)
m_max.y = verts[i].y;
if (verts[i].z > m_max.z)
m_max.z = verts[i].z;
if (verts[i].x < m_min.x)
m_min.x = verts[i].x;
if (verts[i].y < m_min.y)
m_min.y = verts[i].y;
if (verts[i].z < m_min.z)
m_min.z = verts[i].z;
}
}
/// Booleen to warn mesh normals have to be inverted
public bool m_invertNormals = false;
public virtual int[] createTriangulation()
{
return new int[0];
}
public virtual void updateMesh(Mesh mesh)
{
}
public virtual void recomputeTexCoords(Mesh mesh)
{
}
public virtual void recomputeTopology(Mesh mesh)
{
}
/// <summary> Generic method to get value of a Data<float> field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <returns> Float value of the Data field, return float.MinValue if field is not found. </returns>
public float getFloatValue_deprecated(string dataName)
{
Debug.LogError("Method is deprecated and should not be used anymore.");
return float.MinValue;
}
/// <summary> Generic method to set value of a Data<float> field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <param name="value"> New float value of the Data. </param>
public void setFloatValue_deprecated(string dataName, float value)
{
Debug.LogError("Method is deprecated and should not be used anymore.");
}
/// <summary> Generic method to get value of a Data<int> field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <returns> Int value of the Data field, return int.MinValue if field is not found. </returns>
public int getIntValue_deprecated(string dataName)
{
Debug.LogError("Method is deprecated and should not be used anymore.");
return int.MinValue;
}
/// <summary> Generic method to set value of a Data<int> field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <param name="value"> New int value of the Data. </param>
public void setIntValue_deprecated(string dataName, int value)
{
Debug.LogError("Method is deprecated and should not be used anymore.");
}
/// <summary> Generic method to get value of a Data<bool> field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <returns> Bool value of the Data field, return false if field is not found. </returns>
public bool getBoolValue_deprecated(string dataName)
{
Debug.LogError("Method is deprecated and should not be used anymore.");
return false;
}
/// <summary> Generic method to set value of a Data<bool> field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <param name="value"> New bool value of the Data. </param>
public void setBoolValue_deprecated(string dataName, bool value)
{
Debug.LogError("Method is deprecated and should not be used anymore.");
}
/// <summary> Generic method to get value of a Data<string> field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <returns> String value of the Data field, return "None" if field is not found. </returns>
public string getStringValue_deprecated(string dataName)
{
Debug.LogError("Method is deprecated and should not be used anymore.");
return "None";
}
/// <summary> Generic method to set value of a Data<string> field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <param name="value"> New string value of the Data. </param>
public void setStringValue_deprecated(string dataName, string value)
{
Debug.LogError("Method is deprecated and should not be used anymore.");
}
/// <summary> Generic method to get value of a Data<Vec3f> field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <returns> Vector3 of the Data field, return Vector3 of float.MinValue if field is not found. </returns>
public Vector3 getVector3fValue_deprecated(string dataName)
{
Vector3 values = new Vector3(float.MinValue, float.MinValue, float.MinValue);
Debug.LogError("Method is deprecated and should not be used anymore.");
return values;
}
/// <summary> Generic method to set value of a Data<Vec3f> field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <param name="values"> New Vector3 values of the Data. </param>
public void setVector3fValue_deprecated(string dataName, Vector3 values)
{
Debug.LogError("Method is deprecated and should not be used anymore.");
}
/// <summary> Generic method to get size of a Data< vector<float> > field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <returns> size of the Data vector. Return negative value if field not found or error encountered. </returns>
public int getVecfSize_deprecated(string dataName)
{
Debug.LogError("Method is deprecated and should not be used anymore.");
return -1;
}
/// <summary> Generic method to get values of a Data< vector<float> > field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <param name="size"> Size of the Data vector. </param>
/// <param name="values"> Values of the Data vector field returned. </param>
/// <returns> Int error code. Negative value if method failed, 0 otherwise. </returns>
public int getVectorfValue_deprecated(string dataName, int size, float[] values)
{
Debug.LogError("Method is deprecated and should not be used anymore.");
return -1;
}
/// <summary> Generic method to set values of a Data< vector<float> > field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <param name="size"> Size of the Data vector. </param>
/// <param name="values"> New values to set to the Data vector field. </param>
/// <returns> Int error code. Negative value if method failed, 0 otherwise. </returns>
public int setVectorfValue_deprecated(string dataName, int size, float[] values)
{
Debug.LogError("Method is deprecated and should not be used anymore.");
return -1;
}
/// <summary> Generic method to get size of a Data< vector<int> > field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <returns> size of the Data vector. Return negative value if field not found or error encountered. </returns>
public int getVeciSize_deprecated(string dataName)
{
Debug.LogError("Method is deprecated and should not be used anymore.");
return -1;
}
/// <summary> Generic method to get values of a Data< vector<int> > field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <param name="size"> Size of the Data vector. </param>
/// <param name="values"> Values of the Data vector field returned. </param>
/// <returns> Int error code. Negative value if method failed, 0 otherwise. </returns>
public int getVeciValue_deprecated(string dataName, int size, int[] values)
{
Debug.LogError("Method is deprecated and should not be used anymore.");
return -1;
}
/// <summary> Generic method to set values of a Data< vector<float> > field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <param name="size"> Size of the Data vector. </param>
/// <param name="values"> New values to set to the Data vector field. </param>
/// <returns> Int error code. Negative value if method failed, 0 otherwise. </returns>
public int setVeciValue_deprecated(string dataName, int size, int[] values)
{
Debug.LogError("Method is deprecated and should not be used anymore.");
return -1;
}
/// <summary> Generic method to get size of a Data< vector<float> > field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <returns> size of the Data vector. Return negative value if field not found or error encountered. </returns>
public int getVecofVec3fSize_deprecated(string dataName)
{
Debug.LogError("Method is deprecated and should not be used anymore.");
return -1;
}
/// <summary> Generic method to get values of a Data< vector<float> > field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <param name="size"> Size of the Data vector. </param>
/// <param name="values"> Values of the Data vector field returned. </param>
/// <returns> Int error code. Negative value if method failed, 0 otherwise. </returns>
public int getVecofVec3fValue_deprecated(string dataName, int size, float[] values)
{
Debug.LogError("Method is deprecated and should not be used anymore.");
return -1;
}
/// <summary> Generic method to set values of a Data< vector<float> > field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <param name="size"> Size of the Data vector. </param>
/// <param name="values"> New values to set to the Data vector field. </param>
/// <returns> Int error code. Negative value if method failed, 0 otherwise. </returns>
public int setVecofVec3fValue_deprecated(string dataName, int size, float[] values)
{
Debug.LogError("Method is deprecated and should not be used anymore.");
return -1;
}
public int getVecfValue_deprecated(string dataName, string dataType, float[] values)
{
Debug.LogError("Method is deprecated and should not be used anymore.");
return -1;
}
public int setVecfValue_deprecated(string dataName, string dataType, float[] values)
{
Debug.LogError("Method is deprecated and should not be used anymore.");
return -1;
}
public int getRigidfValue_deprecated(string dataName, string dataType, float[] values)
{
Debug.LogError("Method is deprecated and should not be used anymore.");
return -1;
}
public int setRigidfValue_deprecated(string dataName, string dataType, float[] values)
{
Debug.LogError("Method is deprecated and should not be used anymore.");
return -1;
}
public int getRigiddValue_deprecated(string dataName, string dataType, double[] values)
{
Debug.LogError("Method is deprecated and should not be used anymore.");
return -1;
}
public int setRigiddValue_deprecated(string dataName, string dataType, double[] values)
{
Debug.LogError("Method is deprecated and should not be used anymore.");
return -1;
}
/// <summary> Method to check pointer of the Sofa object. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <returns> True if pointer is valid otherwise return false. </returns>
protected bool checkNativePointerForGetData(string dataName)
{
if (!m_hasObject)
{
Debug.LogError("Error getting parameter: " + dataName + " of object: " + m_name + " . Can't access Object Pointer m_native.");
return false;
}
else
return true;
}
/// <summary> Method to check pointer of the Sofa object. </summary>
/// <param name="dataName"> Name of the Data field to set. </param>
/// <returns> True if pointer is valid otherwise return false. </returns>
protected bool checkNativePointerForSetData(string dataName)
{
if (!m_hasObject)
{
Debug.LogError("Error setting parameter: " + dataName + " in object: " + m_name + " . Can't access Object Pointer m_native.");
return false;
}
else
return true;
}
/////////////////////////////////////////////////////////////////////////////////////////
/////////// API to Communication with Sofa objects ////////////////
/////////////////////////////////////////////////////////////////////////////////////////
}
}