forked from izrik/FbxSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFbxObject.cs
595 lines (468 loc) · 15.7 KB
/
FbxObject.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
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
using System;
using System.Collections.Generic;
using System.Linq;
namespace FbxSharp
{
public class FbxObject : FbxEmitter
{
static ulong __uniqueId = 0;
public FbxObject(String name="")
{
SetInitialName(name ?? "");
Properties = new FbxObjectPropertyCollection(this);
SrcObjects = new ObjectSrcObjectCollection(this);
DstObjects = new ObjectDstObjectCollection(this);
SrcProperties = new ObjectSrcPropertyCollection(this);
DstProperties = new ObjectDstPropertyCollection(this);
UniqueId = __uniqueId;
__uniqueId++;
_scene = DstObjects.CreateObjectView<FbxScene>();
}
public override string ToString()
{
return string.Format("[{2}: Name={0}, UniqueId={1}]", Name, UniqueId, this.GetType().Name);
}
#region General Object Management
protected readonly ObjectView<FbxScene> _scene;
public FbxScene Scene
{
get
{
return _scene.Get();
}
}
public FbxScene GetScene()
{
return Scene;
}
#endregion
#region Selection Management
public virtual bool GetSelected()
{
throw new NotImplementedException();
}
public virtual void SetSelected(bool pSelected)
{
throw new NotImplementedException();
}
#endregion
#region User Data
public void SetUserDataPtr(ulong pUserID, object pUserData)
{
throw new NotImplementedException();
}
public object GetUserDataPtr(ulong pUserID)
{
throw new NotImplementedException();
}
public void SetUserDataPtr(object pUserData)
{
throw new NotImplementedException();
}
public object GetUserDataPtr()
{
throw new NotImplementedException();
}
#endregion
#region General Object Connection and Relationship Management
public readonly ObjectSrcObjectCollection SrcObjects;
public readonly ObjectDstObjectCollection DstObjects;
public virtual void ConnectSrcObject(FbxObject fbxObject/*, Connection.EType type = Connection.EType.None*/)
{
SrcObjects.Add(fbxObject);
if (Scene != null)
{
Scene.ConnectSrcObject(fbxObject);
}
}
public bool IsConnectedSrcObject(FbxObject pObject)
{
return SrcObjects.Contains(pObject);
}
public virtual bool DisconnectSrcObject(FbxObject pObject)
{
return SrcObjects.Remove(pObject);
}
public bool DisconnectAllSrcObject()
{
foreach (var src in SrcObjects.ToArray())
{
DisconnectSrcObject(src);
}
return true;
}
public bool DisconnectAllSrcObject(FbxCriteria pCriteria)
{
throw new NotImplementedException();
}
[Obsolete("Deprecated, please use DisconnectAllSrcObject<T>() instead.")]
public bool DisconnectAllSrcObject(FbxClassId pClassId)
{
throw new NotImplementedException();
}
public int GetSrcObjectCount()
{
return SrcObjects.Count;
}
public int GetSrcObjectCount(FbxCriteria pCriteria)
{
throw new NotImplementedException();
}
[Obsolete("Deprecated, please use GetSrcObjectCount<T>() instead.")]
public int GetSrcObjectCount(FbxClassId pClassId)
{
throw new NotImplementedException();
}
public FbxObject GetSrcObject(int pIndex = 0)
{
return SrcObjects[pIndex];
}
public FbxObject GetSrcObject(FbxCriteria pCriteria, int pIndex=0)
{
throw new NotImplementedException();
}
[Obsolete("Deprecated, please use GetSrcObject<T>() instead.")]
public FbxObject GetSrcObject(FbxClassId pClassId, int pIndex=0)
{
throw new NotImplementedException();
}
public FbxObject FindSrcObject(string pName, int pStartIndex=0)
{
throw new NotImplementedException();
}
public FbxObject FindSrcObject(FbxCriteria pCriteria, string pName, int pStartIndex=0)
{
throw new NotImplementedException();
}
[Obsolete("Deprecated, please use FindSrcObject<T>() instead.")]
public FbxObject FindSrcObject(FbxClassId pClassId, string pName, int pStartIndex=0)
{
throw new NotImplementedException();
}
public bool DisconnectAllSrcObject<T>()
{
var objectsToDisconnect = SrcObjects.Where(obj => obj is T).ToArray();
bool succeeded = true;
foreach (var obj in objectsToDisconnect)
{
// failure modes?
succeeded &= DisconnectSrcObject(obj);
}
return succeeded;
}
public bool DisconnectAllSrcObject<T>(FbxCriteria pCriteria)
{
throw new NotImplementedException();
}
public int GetSrcObjectCount<T>()
{
return SrcObjects.Count(obj => obj is T);
}
public int GetSrcObjectCount<T>(FbxCriteria pCriteria)
{
throw new NotImplementedException();
}
public T GetSrcObject<T>(int pIndex=0)
{
return SrcObjects.Where(obj => obj is T).Cast<T>().ElementAt(pIndex);
}
public T GetSrcObject<T>(FbxCriteria pCriteria, int pIndex=0)
{
throw new NotImplementedException();
}
public T FindSrcObject<T>(string pName, int pStartIndex=0)
{
throw new NotImplementedException();
}
public T FindSrcObject<T>(FbxCriteria pCriteria, string pName, int pStartIndex=0)
{
throw new NotImplementedException();
}
public virtual bool ConnectDstObject(FbxObject pObject/*, Connection.EType pType = Connection.EType.None*/)
{
DstObjects.Add(pObject);
return true;
}
public bool IsConnectedDstObject(FbxObject pObject)
{
return DstObjects.Contains(pObject);
}
public virtual bool DisconnectDstObject(FbxObject pObject)
{
return DstObjects.Remove(pObject);
}
public bool DisconnectAllDstObject()
{
foreach (var dst in DstObjects.ToArray())
{
DisconnectDstObject(dst);
}
return true;
}
public bool DisconnectAllDstObject(FbxCriteria pCriteria)
{
throw new NotImplementedException();
}
[Obsolete("Deprecated, please use DisconnectAllDstObject<T>() instead.")]
public bool DisconnectAllDstObject(FbxClassId pClassId)
{
throw new NotImplementedException();
}
public int GetDstObjectCount()
{
return DstObjects.Count;
}
public int GetDstObjectCount(FbxCriteria pCriteria)
{
throw new NotImplementedException();
}
[Obsolete("Deprecated, please use GetDstObjectCount<T>() instead.")]
public int GetDstObjectCount(FbxClassId pClassId)
{
throw new NotImplementedException();
}
public FbxObject GetDstObject(int pIndex = 0)
{
return DstObjects[pIndex];
}
FbxObject FindDstObject(string pName, int pStartIndex=0)
{
throw new NotImplementedException();
}
FbxObject FindDstObject(FbxCriteria pCriteria, string pName, int pStartIndex=0)
{
throw new NotImplementedException();
}
[Obsolete("Deprecated, please use FindDstObject<T>() instead.")]
public FbxObject FindDstObject(FbxClassId pClassId, string pName, int pStartIndex=0)
{
throw new NotImplementedException();
}
public bool DisconnectAllDstObject<T>()
{
throw new NotImplementedException();
}
public bool DisconnectAllDstObject<T>(FbxCriteria pCriteria)
{
throw new NotImplementedException();
}
public int GetDstObjectCount<T>()
{
throw new NotImplementedException();
}
public int GetDstObjectCount<T>(FbxCriteria pCriteria)
{
throw new NotImplementedException();
}
public T GetDstObject<T>(int pIndex=0)
{
throw new NotImplementedException();
}
public T GetDstObject<T>(FbxCriteria pCriteria, int pIndex=0)
{
throw new NotImplementedException();
}
public T FindDstObject<T>(string pName, int pStartIndex=0)
{
throw new NotImplementedException();
}
public T FindDstObject<T>(FbxCriteria pCriteria, string pName, int pStartIndex=0)
{
throw new NotImplementedException();
}
#endregion
#region Extended Object Connection and Relationship Management
public IEnumerable<T> GetSrcObjects<T>()
{
return SrcObjects.Where(obj => obj is T).Cast<T>();
}
public IEnumerable<T> GetDstObjects<T>()
{
return DstObjects.Where(obj => obj is T).Cast<T>();
}
#endregion
#region Property Management
public readonly FbxObjectPropertyCollection Properties;
public readonly ObjectSrcPropertyCollection SrcProperties;
public readonly ObjectDstPropertyCollection DstProperties;
public FbxProperty GetFirstProperty()
{
if (Properties.Count == 0) return null;
return Properties[0];
}
public FbxProperty GetNextProperty(FbxProperty pProperty)
{
if (!Properties.Contains(pProperty)) return null;
var index = Properties.IndexOf(pProperty);
if (index + 1 >= Properties.Count) return null;
if (index < 0) return null;
return Properties[index + 1];
}
public FbxProperty FindProperty(string pName, bool pCaseSensitive=true)
{
return Properties.FirstOrDefault(p => string.Compare(p.Name, pName, ignoreCase: !pCaseSensitive) == 0);
}
//public Property FindProperty(string pName, FbxDataType pDataType, bool pCaseSensitive=true)
public FbxProperty FindProperty(string pName, Type pDataType, bool pCaseSensitive=true)
{
return FindProperty(prop =>
string.Compare(prop.Name, pName, ignoreCase: !pCaseSensitive) == 0 &&
prop.PropertyDataType == pDataType);
}
public FbxProperty FindProperty(Func<FbxProperty, bool> predicate)
{
return FindProperties(predicate).FirstOrDefault();
}
public IEnumerable<FbxProperty> FindProperties(Func<FbxProperty, bool> predicate)
{
return Properties.Where(predicate);
}
public FbxProperty FindPropertyHierarchical(string pName, bool pCaseSensitive=true)
{
throw new NotImplementedException();
}
//public Property FindPropertyHierarchical(string pName, FbxDataType pDataType, bool pCaseSensitive=true)
//{
// throw new NotImplementedException();
//}
readonly static FbxPropertyT<object> classRootProperty = new FbxPropertyT<object>();
public FbxProperty GetClassRootProperty()
{
return classRootProperty;
}
public bool ConnectSrcProperty(FbxProperty pProperty)
{
if (SrcProperties.Contains(pProperty))
return false;
SrcProperties.Add(pProperty);
return true;
}
public bool IsConnectedSrcProperty(FbxProperty pProperty)
{
return SrcProperties.Contains(pProperty);
}
public bool DisconnectSrcProperty(FbxProperty pProperty)
{
return SrcProperties.Remove(pProperty);
}
public int GetSrcPropertyCount()
{
return SrcProperties.Count;
}
public FbxProperty GetSrcProperty(int pIndex=0)
{
return SrcProperties[pIndex];
}
public FbxProperty FindSrcProperty(string pName, int pStartIndex=0)
{
throw new NotImplementedException();
}
public bool ConnectDstProperty(FbxProperty pProperty)
{
if (DstProperties.Contains(pProperty))
return false;
DstProperties.Add(pProperty);
return true;
}
public bool IsConnectedDstProperty(FbxProperty pProperty)
{
return DstProperties.Contains(pProperty);
}
public bool DisconnectDstProperty(FbxProperty pProperty)
{
return DstProperties.Remove(pProperty);
}
public int GetDstPropertyCount()
{
return DstProperties.Count;
}
public FbxProperty GetDstProperty(int pIndex=0)
{
return DstProperties[pIndex];
}
public FbxProperty FindDstProperty(string pName, int pStartIndex=0)
{
throw new NotImplementedException();
}
public FbxProperty CreateProperty(string name, Type type)
{
var concreteType = typeof(FbxPropertyT<>).MakeGenericType(type);
var prop = (FbxProperty)Activator.CreateInstance(concreteType, (object)name);
Properties.Add(prop);
return prop;
}
#endregion
#region Public Attributes
public readonly FbxProperty RootProperty = new FbxPropertyT<object>();
#endregion
#region Object Name Management
public string Name { get; set; }
public ulong UniqueId { get; set; }
public void SetName(string pName)
{
Name = pName;
}
public string GetName()
{
return Name;
}
public string GetNameWithoutNameSpacePrefix()
{
return Name;
}
public string GetNameWithNameSpacePrefix()
{
return GetNameSpacePrefix() + GetName();
}
public void SetInitialName(string pName)
{
initialName = pName;
SetName(pName);
}
string initialName = "";
public string GetInitialName()
{
return initialName;
}
string _namespace = "";
public string GetNameSpaceOnly()
{
return _namespace;
}
public void SetNameSpace(string pNameSpace)
{
_namespace = pNameSpace;
FirstCharIsMissing = true;
}
public string[] GetNameSpaceArray(char identifier)
{
return _namespace.Split(identifier).Reverse().ToArray();
}
bool FirstCharIsMissing = false;
public string GetNameOnly()
{
if (FirstCharIsMissing)
return Name.Substring(1);
return Name;
}
public virtual string GetNameSpacePrefix()
{
return "";
}
public ulong GetUniqueID()
{
return UniqueId;
}
public static string RemovePrefix(string pName)
{
int index = pName.LastIndexOf("::");
return pName.Substring(index+2);
}
public static string StripPrefix(string lName)
{
int index = lName.IndexOf("::");
return lName.Substring(index+2);
}
#endregion
}
}