-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathSofaBaseComponentAPI.cs
More file actions
1130 lines (902 loc) · 52.6 KB
/
SofaBaseComponentAPI.cs
File metadata and controls
1130 lines (902 loc) · 52.6 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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using UnityEngine;
using System;
using System.Runtime.InteropServices;
namespace SofaUnityAPI
{
public class SofaBaseComponentAPI : SofaBaseAPI
{
public SofaBaseComponentAPI(IntPtr simu, string nameID, bool isCustom)
: base(simu, nameID, isCustom)
{
}
public string GetPossiblesTypes()
{
if (m_isReady)
{
string type = sofaComponentAPI_getPossibleTypes(m_simu, m_name);
return type;
}
else
return "Error";
}
public string GetComponentType()
{
if (m_isReady)
{
string type = sofaComponentAPI_getComponentType(m_simu, m_name);
return type;
}
else
return "Error";
}
public string GetComponentDisplayName()
{
if (m_isReady)
{
string type = sofaComponentAPI_getComponentDisplayName(m_simu, m_name);
return type;
}
else
return "Error";
}
/// Method to get all data listen by this component as a json unique string.
public string LoadAllData()
{
if (m_isReady)
return sofaComponentAPI_getDataFields(m_simu, m_name);
else
return "None";
}
public string LoadAllLinks()
{
if (m_isReady)
return sofaComponentAPI_getLinks(m_simu, m_name);
else
return "None";
}
public int ReinitComponent()
{
if (m_isReady)
return sofaComponentAPI_reinitComponent(m_simu, m_name);
else
return -1;
}
public int GetDataCounter(string dataName)
{
if (checkNativePointer())
{
int[] val = new int[1];
val[0] = -1;
int res = sofaComponentAPI_getDataCounter(m_simu, m_name, dataName, val);
if (res == 0)
return val[0];
else
Debug.LogError("Method GetDataCounter of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
}
return 0;
}
public int GetDataFlags(string dataName)
{
if (checkNativePointer())
{
int[] val = new int[1];
int res = sofaComponentAPI_getDataFlags(m_simu, m_name, dataName, val);
if (res == 0)
return val[0];
else
Debug.LogError("Method GetDataCounter of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
}
return 0;
}
/// <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(string dataName)
{
if (checkNativePointer())
{
int[] val = new int[1];
val[0] = 0;
int res = sofaComponentAPI_getBoolValueAsInt(m_simu, m_name, dataName, val);
if (res == 0)
{
if (val[0] == 1)
return true;
else
return false;
}
else
Debug.LogError("Method getBoolValue of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
}
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(string dataName, bool value)
{
if (checkNativePointer())
{
int res = sofaComponentAPI_setBoolValue(m_simu, m_name, dataName, value);
if (res != 0)
Debug.LogError("Method setBoolValue of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
}
}
/// <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(string dataName)
{
if (checkNativePointer())
{
int[] val = new int[1];
int res = sofaComponentAPI_getIntValue(m_simu, m_name, dataName, val);
if (res == 0)
return val[0];
else
Debug.LogError("Method getIntValue of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
}
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(string dataName, int value)
{
if (checkNativePointer())
{
int res = sofaComponentAPI_setIntValue(m_simu, m_name, dataName, value);
if (res != 0)
Debug.LogError("Method setIntValue of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
}
}
/// <summary> Generic method to get value of a Data<unsigned int> field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <returns> unsigned int value cast in int of the Data field, return int.MinValue if field is not found. </returns>
public int GetUIntValue(string dataName)
{
if (checkNativePointer())
{
uint[] val = new uint[1];
int res = sofaComponentAPI_getUIntValue(m_simu, m_name, dataName, val);
if (res == 0)
return (int)val[0]; // TODO see if conversion limit test is needed
else
Debug.LogError("Method getUIntValue of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
}
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 unsigned int value of the Data. </param>
public void SetUIntValue(string dataName, int value)
{
if (checkNativePointer())
{
uint val = (uint)value;
int res = sofaComponentAPI_setUIntValue(m_simu, m_name, dataName, val);
if (res != 0)
Debug.LogError("Method setUIntValue of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
}
}
/// <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(string dataName)
{
if (checkNativePointer())
{
float[] val = new float[1];
int res = sofaComponentAPI_getFloatValue(m_simu, m_name, dataName, val);
if (res == 0)
return val[0];
else
Debug.LogError("Method getFloatValue of Data: " + dataName + " of object: " + m_name + ", returns error: " + SofaDefines.msg_error[res]);
}
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(string dataName, float value)
{
if (checkNativePointer())
{
int res = sofaComponentAPI_setFloatValue(m_simu, m_name, dataName, value);
if (res != 0)
Debug.LogError("Method setFloatValue of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
}
}
/// <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 casted from Double of the Data field, return float.MinValue if field is not found. </returns>
public float GetDoubleValue(string dataName)
{
if (checkNativePointer())
{
double[] val = new double[1];
int res = sofaComponentAPI_getDoubleValue(m_simu, m_name, dataName, val);
if (res == 0)
return (float)val[0];
else
Debug.LogError("Method GetDoubleValue of Data: " + dataName + " of object: " + m_name + ", returns error: " + SofaDefines.msg_error[res]);
}
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 SetDoubleValue(string dataName, float value)
{
if (checkNativePointer())
{
int res = sofaComponentAPI_setDoubleValue(m_simu, m_name, dataName, (double)value);
if (res != 0)
Debug.LogError("Method SetDoubleValue of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
}
}
/// <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(string dataName)
{
if (checkNativePointer())
{
string res = sofaComponentAPI_getStringValue(m_simu, m_name, dataName);
return res;
}
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(string dataName, string value)
{
if (checkNativePointer())
{
int res = sofaComponentAPI_setStringValue(m_simu, m_name, dataName, value);
if (res != 0)
Debug.LogError("Method setStringValue of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
}
}
/// <summary> Generic method to get value of a Data<Vec2i> field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <returns> Vector2 of int of the Data field, return Vector2 of int.MinValue if field is not found. </returns>
public Vector2Int GetVector2iValue(string dataName)
{
Vector2Int values = new Vector2Int(int.MinValue, int.MinValue);
if (checkNativePointer())
{
int[] val = new int[2];
int res = sofaComponentAPI_getVec2iValue(m_simu, m_name, dataName, val);
if (res == 0)
{
for (int i = 0; i < 2; ++i)
values[i] = val[i];
}
else
Debug.LogError("Method getVector2iValue of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
}
return values;
}
/// <summary> Generic method to set value of a Data<Vec2i> field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <param name="values"> New Vector2 values of the Data. </param>
public void SetVector2iValue(string dataName, Vector2Int values, bool isUnsigned = false)
{
if (checkNativePointer())
{
int[] val = new int[2];
for (int i = 0; i < 2; ++i)
val[i] = values[i];
int res = sofaComponentAPI_setVec2iValue(m_simu, m_name, dataName, val);
if (res != 0)
Debug.LogError("Method setVector2iValue of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
}
}
/// <summary> Generic method to get value of a Data<Vec2> field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <param name="doubleValue"> Parameter to inform if data is in double and should be converted to float. </param>
/// <returns> Vector2 of the Data field, return Vector2 of float.MinValue if field is not found. </returns>
public Vector3 GetVector2Value(string dataName, bool doubleValue = false)
{
Vector2 values = new Vector2(float.MinValue, float.MinValue);
if (checkNativePointer())
{
float[] val = new float[2];
int res = -1;
if (doubleValue)
res = sofaComponentAPI_getVec2Value(m_simu, m_name, dataName, true, val);
else
res = sofaComponentAPI_getVec2fValue(m_simu, m_name, dataName, val);
if (res == 0)
{
for (int i = 0; i < 2; ++i)
values[i] = val[i];
}
else
Debug.LogError("Method getVector2Value of Data: " + dataName + " of object: " + m_name + " in double: " + doubleValue + " returns error: " + SofaDefines.msg_error[res]);
}
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="doubleValue"> Parameter to inform if data is in double and should be converted to float. </param>
/// <param name="values"> New Vector3 values of the Data. </param>
public void SetVector2Value(string dataName, Vector2 values, bool doubleValue = false)
{
if (checkNativePointer())
{
float[] val = new float[2];
for (int i = 0; i < 2; ++i)
val[i] = values[i];
int res = -1;
if (doubleValue)
res = sofaComponentAPI_setVec2Value(m_simu, m_name, dataName, true, val);
else
res = sofaComponentAPI_setVec2fValue(m_simu, m_name, dataName, val);
if (res != 0)
Debug.LogError("Method setVector2Value of Data: " + dataName + " of object: " + m_name + " in double: " + doubleValue + " returns error: " + SofaDefines.msg_error[res]);
}
}
/// <summary> Generic method to get value of a Data<Vec3i> field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <returns> Vector3 of int of the Data field, return Vector3 of int.MinValue if field is not found. </returns>
public Vector3Int GetVector3iValue(string dataName)
{
Vector3Int values = new Vector3Int(int.MinValue, int.MinValue, int.MinValue);
if (checkNativePointer())
{
int[] val = new int[3];
int res = sofaComponentAPI_getVec3iValue(m_simu, m_name, dataName, val);
if (res == 0)
{
for (int i = 0; i < 3; ++i)
values[i] = val[i];
}
else
Debug.LogError("Method getVector3iValue of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
}
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 Vector3Int values of the Data. </param>
public void SetVector3iValue(string dataName, Vector3Int values, bool isUnsigned = false)
{
if (checkNativePointer())
{
int[] val = new int[3];
for (int i = 0; i < 3; ++i)
val[i] = values[i];
int res = sofaComponentAPI_setVec3iValue(m_simu, m_name, dataName, val);
if (res != 0)
Debug.LogError("Method setVector3iValue of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
}
}
/// <summary> Generic method to get value of a Data<Vec3f> field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <param name="doubleValue"> Parameter to inform if data is in double and should be converted to float. </param>
/// <returns> Vector3 of the Data field, return Vector3 of float.MinValue if field is not found. </returns>
public Vector3 GetVector3Value(string dataName, bool doubleValue = false)
{
Vector3 values = new Vector3(float.MinValue, float.MinValue, float.MinValue);
if (checkNativePointer())
{
float[] val = new float[3];
int res = -1;
if (doubleValue)
res = sofaComponentAPI_getVec3Value(m_simu, m_name, dataName, true, val);
else
res = sofaComponentAPI_getVec3fValue(m_simu, m_name, dataName, val);
if (res == 0)
{
values[0] = -val[0];
values[1] = val[1];
values[2] = val[2];
}
else
Debug.LogError("Method getVector3Value of Data: " + dataName + " of object: " + m_name + " in double: " + doubleValue + " returns error: " + SofaDefines.msg_error[res]);
}
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="doubleValue"> Parameter to inform if data is in double and should be converted to float. </param>
/// <param name="values"> New Vector3 values of the Data. </param>
public void SetVector3Value(string dataName, Vector3 values, bool doubleValue = false)
{
if (checkNativePointer())
{
float[] val = new float[3];
val[0] = -values[0];
val[1] = values[1];
val[2] = values[2];
int res = -1;
if (doubleValue)
res = sofaComponentAPI_setVec3Value(m_simu, m_name, dataName, true, val);
else
res = sofaComponentAPI_setVec3fValue(m_simu, m_name, dataName, val);
if (res != 0)
Debug.LogError("Method setVector3fValue of Data: " + dataName + " of object: " + m_name + " in double: " + doubleValue + " returns error: " + SofaDefines.msg_error[res]);
}
}
/// <summary> Generic method to get value of a Data<Vec4f> field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <param name="doubleValue"> Parameter to inform if data is in double and should be converted to float. </param>
/// <returns> Vector4 of the Data field, return Vector4 of float.MinValue if field is not found. </returns>
public Vector4 GetVector4Value(string dataName, bool doubleValue = false)
{
Vector4 values = new Vector4(float.MinValue, float.MinValue, float.MinValue, float.MinValue);
if (checkNativePointer())
{
float[] val = new float[4];
int res = -1;
if (doubleValue)
res = sofaComponentAPI_getVec4Value(m_simu, m_name, dataName, true, val);
else
res = sofaComponentAPI_getVec4fValue(m_simu, m_name, dataName, val);
if (res == 0)
{
for (int i = 0; i < 4; ++i)
values[i] = val[i];
}
else
Debug.LogError("Method getVector4Value of Data: " + dataName + " of object: " + m_name + " in double: " + doubleValue + " returns error: " + SofaDefines.msg_error[res]);
}
return values;
}
/// <summary> Generic method to set value of a Data<Vec4f> field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <param name="doubleValue"> Parameter to inform if data is in double and should be converted to float. </param>
/// <param name="values"> New Vector4 values of the Data. </param>
public void SetVector4Value(string dataName, Vector4 values, bool doubleValue = false)
{
if (checkNativePointer())
{
float[] val = new float[4];
for (int i = 0; i < 4; ++i)
val[i] = values[i];
int res = -1;
if (doubleValue)
res = sofaComponentAPI_setVec4Value(m_simu, m_name, dataName, true, val);
else
res = sofaComponentAPI_setVec4fValue(m_simu, m_name, dataName, val);
if (res != 0)
Debug.LogError("Method setVector4fValue of Data: " + dataName + " of object: " + m_name + " in double: " + doubleValue + " returns error: " + SofaDefines.msg_error[res]);
}
}
/// Generic method to get value of a Data<Rigid3f> field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <param name="values"> Buffer to get the values of the Rigid3 float. </param>
/// <param name="doubleValue"> Parameter to inform if data is in double and should be converted to float. </param>
/// <returns></returns>
public int GetRigidValue(string dataName, float[] values, bool doubleValue = false)
{
if (checkNativePointer())
{
int res = -1;
if (doubleValue)
res = sofaComponentAPI_getRigid3Value(m_simu, m_name, dataName, true, values);
else
res = sofaComponentAPI_getRigid3fValue(m_simu, m_name, dataName, values);
if (res != 0)
Debug.LogError("Method GetRigidValue of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
return res;
}
return -1;
}
/// Generic method to set value of a Data<Rigid3f> field. </summary>
/// <param name="dataName"> Name of the Data field requested. </param>
/// <param name="values"> Buffer with the new values of the Rigid3f to be set. </param>
/// <returns></returns>
public int SetRigidfValue(string dataName, float[] values)
{
if (checkNativePointer())
{
int res = sofaComponentAPI_setRigid3fValue(m_simu, m_name, dataName, values);
if (res != 0)
Debug.LogError("Method setRigid3fValue of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
return res;
}
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 GetVectoriSize(string dataName)
{
if (checkNativePointer())
{
int[] val = new int[1];
val[0] = -2;
string dataType = "unsigned int";
int res = sofaComponentAPI_getVectorSize(m_simu, m_name, dataName, dataType, val);
if (res != 0)
{
Debug.LogError("Method getVeciSize of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
return res;
}
else
return val[0];
}
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 GetVectorfSize(string dataName)
{
if (checkNativePointer())
{
int[] val = new int[1];
val[0] = -2;
string dataType = "float";
int res = sofaComponentAPI_getVectorSize(m_simu, m_name, dataName, dataType, val);
if (res != 0)
{
Debug.LogError("Method getVecfSize of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
return res;
}
else
return val[0];
}
return -1;
}
/// <summary> Generic method to get size of a Data< vector<double> > 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 GetVectordSize(string dataName)
{
if (checkNativePointer())
{
int[] val = new int[1];
val[0] = -2;
string dataType = "double";
int res = sofaComponentAPI_getVectorSize(m_simu, m_name, dataName, dataType, val);
if (res != 0)
{
Debug.LogError("Method getVecdSize of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
return res;
}
else
return val[0];
}
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(string dataName, int size, float[] values)
{
if (checkNativePointer())
{
int res = sofaComponentAPI_getVectorfValue(m_simu, m_name, dataName, size, values);
if (res != 0)
Debug.LogError("Method getVectorfValue of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
return res;
}
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(string dataName, int size, float[] values)
{
if (checkNativePointer())
{
int res = sofaComponentAPI_setVectorfValue(m_simu, m_name, dataName, size, values);
if (res != 0)
Debug.LogError("Method setVectorfValue of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
return res;
}
return -1;
}
/// <summary> Generic method to get values of a Data< vector<double> > 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 GetVectordValue(string dataName, int size, float[] values)
{
if (checkNativePointer())
{
int res = sofaComponentAPI_getVectorValue(m_simu, m_name, dataName, "double", size, values);
if (res != 0)
Debug.LogError("Method getVectorValue of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
return res;
}
return -1;
}
/// <summary> Generic method to set values of a Data< vector<double> > 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 SetVectordValue(string dataName, int size, float[] values)
{
if (checkNativePointer())
{
int res = sofaComponentAPI_setVectorValue(m_simu, m_name, dataName, "double", size, values);
if (res != 0)
Debug.LogError("Method setVectorValue of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
return res;
}
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 GetVectoriValue(string dataName, int size, int[] values)
{
if (checkNativePointer())
{
int res = sofaComponentAPI_getVectoriValue(m_simu, m_name, dataName, size, values);
if (res != 0)
Debug.LogError("Method getVeciValue of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
return res;
}
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 SetVectoriValue(string dataName, int size, int[] values)
{
if (checkNativePointer())
{
int res = sofaComponentAPI_setVectoriValue(m_simu, m_name, dataName, size, values);
if (res != 0)
Debug.LogError("Method setVeciValue of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
return res;
}
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 GetVecofVec2Size(string dataName, bool doubleValue = false)
{
if (checkNativePointer())
{
int[] val = new int[1];
val[0] = -2;
int res = sofaComponentAPI_getVecofVec2Size(m_simu, m_name, dataName, doubleValue, val);
if (res != 0)
{
Debug.LogError("Method getVecofVec2Size of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
return res;
}
else
return val[0];
}
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 GetVecofVec2Value(string dataName, int size, float[] values, bool doubleValue = false)
{
if (checkNativePointer())
{
int res = sofaComponentAPI_getVecofVec2Value(m_simu, m_name, dataName, size, doubleValue, values);
if (res != 0)
Debug.LogError("Method getVecofVec2Value of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
return res;
}
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 SetVecofVec2Value(string dataName, int size, float[] values, bool doubleValue = false)
{
if (checkNativePointer())
{
int res = sofaComponentAPI_setVecofVec2Value(m_simu, m_name, dataName, size, doubleValue, values);
if (res != 0)
Debug.LogError("Method setVecofVec2Value of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
return res;
}
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 GetVecofVec3Size(string dataName, bool doubleValue = false)
{
if (checkNativePointer())
{
int[] val = new int[1];
val[0] = -2;
int res = sofaComponentAPI_getVecofVec3Size(m_simu, m_name, dataName, doubleValue, val);
if (res != 0)
{
Debug.LogError("Method getVecofVec3Size of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
return res;
}
else
return val[0];
}
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 GetVecofVec3Value(string dataName, int size, float[] values, bool doubleValue = false)
{
if (checkNativePointer())
{
int res = sofaComponentAPI_getVecofVec3Value(m_simu, m_name, dataName, size, doubleValue, values);
if (res != 0)
Debug.LogError("Method getVecofVec3Value of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
return res;
}
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 SetVecofVec3Value(string dataName, int size, float[] values, bool doubleValue = false)
{
if (checkNativePointer())
{
int res = sofaComponentAPI_setVecofVec3Value(m_simu, m_name, dataName, size, doubleValue, values);
if (res != 0)
Debug.LogError("Method setVecofVec3Value of Data: " + dataName + " of object: " + m_name + " returns error: " + SofaDefines.msg_error[res]);
return res;
}
return -1;
}
/////////////////////////////////////////////////////////////////////////////////////////
////////// API to Communication with Sofa component ///////////////
/////////////////////////////////////////////////////////////////////////////////////////
[DllImport("SofaVerseAPI", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)]
public static extern string sofaComponentAPI_getPossibleTypes(IntPtr obj, string componentName);
[DllImport("SofaVerseAPI", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)]
public static extern string sofaComponentAPI_getComponentType(IntPtr obj, string componentName);
[DllImport("SofaVerseAPI", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)]
public static extern string sofaComponentAPI_getComponentDisplayName(IntPtr obj, string componentName);
[DllImport("SofaVerseAPI", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)]
public static extern int sofaComponentAPI_reinitComponent(IntPtr obj, string componentName);
[DllImport("SofaVerseAPI", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)]
public static extern string sofaComponentAPI_getDataFields(IntPtr obj, string componentName);
[DllImport("SofaVerseAPI", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)]
public static extern string sofaComponentAPI_getLinks(IntPtr obj, string componentName);
/////////////////////////////////////////////////////////////////////////////////////////
/////////// Communication API to set/get basic values into Sofa ////////////////
/////////////////////////////////////////////////////////////////////////////////////////
/// Data API
[DllImport("SofaVerseAPI", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)]
public static extern int sofaComponentAPI_getDataCounter(IntPtr obj, string componentName, string dataName, int[] value);
[DllImport("SofaVerseAPI", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)]
public static extern int sofaComponentAPI_getDataFlags(IntPtr obj, string componentName, string dataName, int[] value);
/// Bool API
[DllImport("SofaVerseAPI", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)]
public static extern int sofaComponentAPI_getBoolValue(IntPtr obj, string componentName, string dataName, bool[] value);
[DllImport("SofaVerseAPI", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)]
public static extern int sofaComponentAPI_getBoolValueAsInt(IntPtr obj, string componentName, string dataName, int[] value);
[DllImport("SofaVerseAPI", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)]
public static extern int sofaComponentAPI_setBoolValue(IntPtr obj, string componentName, string dataName, bool value);
/// Int API
[DllImport("SofaVerseAPI", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)]
public static extern int sofaComponentAPI_getIntValue(IntPtr obj, string componentName, string dataName, int[] value);
[DllImport("SofaVerseAPI", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)]
public static extern int sofaComponentAPI_setIntValue(IntPtr obj, string componentName, string dataName, int value);
/// UInt API
[DllImport("SofaVerseAPI", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)]
public static extern int sofaComponentAPI_getUIntValue(IntPtr obj, string componentName, string dataName, uint[] value);
[DllImport("SofaVerseAPI", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)]
public static extern int sofaComponentAPI_setUIntValue(IntPtr obj, string componentName, string dataName, uint value);
/// Float API
[DllImport("SofaVerseAPI", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)]
public static extern int sofaComponentAPI_getFloatValue(IntPtr obj, string componentName, string dataName, float[] value);
[DllImport("SofaVerseAPI", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)]
public static extern int sofaComponentAPI_setFloatValue(IntPtr obj, string componentName, string dataName, float value);
/// Double API
[DllImport("SofaVerseAPI", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)]
public static extern int sofaComponentAPI_getDoubleValue(IntPtr obj, string componentName, string dataName, double[] value);
[DllImport("SofaVerseAPI", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)]
public static extern int sofaComponentAPI_setDoubleValue(IntPtr obj, string componentName, string dataName, double value);
/// String API
[DllImport("SofaVerseAPI", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)]
public static extern string sofaComponentAPI_getStringValue(IntPtr obj, string componentName, string dataName);
[DllImport("SofaVerseAPI", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)]
public static extern int sofaComponentAPI_setStringValue(IntPtr obj, string componentName, string dataName, string value);