-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathGDTFManager.cpp
More file actions
12979 lines (10600 loc) · 393 KB
/
GDTFManager.cpp
File metadata and controls
12979 lines (10600 loc) · 393 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
//-----------------------------------------------------------------------------
//----- Copyright deersoft 2015 - 2017 www.deersoft.de
//-----------------------------------------------------------------------------
#include "GDTFManager.h"
#include "SceneDataExchange.h"
#include "XmlFileHelper.h"
#include "HashManager.h"
#include <iostream>
#include "Utility.h"
#include "FeedbackDispatcher.h"
#include "Wrapper/ZIPFileImpl.h"
using namespace SceneData;
static std::function<void( bool& )> fAbortCallback;
static std::mutex fAbortCallbackMutex;
//------------------------------------------------------------------------------------
// GdtfObject
GdtfObject::GdtfObject()
{
fBindValue = nullptr;
}
GdtfObject::~GdtfObject()
{
}
void GdtfObject::WriteToNode(IXMLFileNodePtr pContainerNode)
{
// Create the new node
IXMLFileNodePtr pNode;
if ( VCOM_SUCCEEDED( pContainerNode->CreateChildNode( this->GetNodeName(), & pNode ) ) )
{
// Store Node
fNode = pNode;
//-------------------------------------------------------------------------------------
// Now Print Everything
this->OnPrintToFile(pNode);
}
}
void GdtfObject::ReadFromNode(const IXMLFileNodePtr& pNode)
{
// Store Node
fNode = pNode;
TXString nodeName;
pNode->GetNodeName(nodeName);
ASSERTN(kEveryone, nodeName == GetNodeName());
this->OnReadFromNode(pNode);
this->OnErrorCheck(pNode);
}
void GdtfObject::GetNode(IXMLFileNodePtr& pNode)
{
pNode = fNode;
}
void GdtfObject::OnPrintToFile(IXMLFileNodePtr pNode)
{
// Nothing to do here
}
void GdtfObject::OnReadFromNode(const IXMLFileNodePtr& pNode)
{
// Nothing to read here
}
void GdtfObject::OnErrorCheck(const IXMLFileNodePtr& pNode)
{
// Nothing to check here
}
void GdtfObject::SetBind(void* ptr)
{
fBindValue = ptr;
}
void* GdtfObject::GetBind()
{
return fBindValue;
}
void GdtfObject::SetAbortCallback( const std::function<void( bool& )>& cb )
{
std::lock_guard<std::mutex> lock(fAbortCallbackMutex);
fAbortCallback = cb;
}
bool GdtfObject::CheckAbort()
{
std::lock_guard<std::mutex> lock(fAbortCallbackMutex);
if (fAbortCallback)
{
bool abort = false;
fAbortCallback(abort);
if ( abort )
{
fAbortReading = abort;
}
return abort;
}
return false;
}
TXString GdtfObject::GetNodeReference()
{
// Nothing to read here
DSTOP((kEveryone, "This should be never be executed. You call GetNodeReference on an object that doesn't support this."));
return "";
}
//------------------------------------------------------------------------------------
// Attributes
GdtfActivationGroup::GdtfActivationGroup(const TXString& name)
{
fName = name;
}
GdtfActivationGroup::GdtfActivationGroup()
{
}
GdtfActivationGroup::~GdtfActivationGroup()
{
}
void GdtfActivationGroup::SetName(const TXString & name)
{
fName = name;
}
void GdtfActivationGroup::OnPrintToFile(IXMLFileNodePtr pNode)
{
//------------------------------------------------------------------------------------
// Call the parent
GdtfObject::OnPrintToFile(pNode);
//------------------------------------------------------------------------------------
// Print the attributes
pNode->SetNodeAttributeValue(XML_GDTF_ActivationGroupName, fName);
}
void GdtfActivationGroup::OnReadFromNode(const IXMLFileNodePtr& pNode)
{
//------------------------------------------------------------------------------------
// Call the parent
GdtfObject::OnReadFromNode(pNode);
//------------------------------------------------------------------------------------
// Get the attributes
pNode->GetNodeAttributeValue(XML_GDTF_AttributeName, fName);
}
void GdtfActivationGroup::OnErrorCheck(const IXMLFileNodePtr& pNode)
{
//------------------------------------------------------------------------------------
// Call the parent
GdtfObject::OnErrorCheck(pNode);
//------------------------------------------------------------------------------------
// Create needed and optional Attribute Arrays
TXStringArray needed;
TXStringArray optional;
needed.push_back(XML_GDTF_ActivationGroupName);
//------------------------------------------------------------------------------------
// Check Attributes for node
GdtfParsingError::CheckNodeAttributes(pNode, needed, optional);
}
EGdtfObjectType GdtfActivationGroup::GetObjectType()
{
return EGdtfObjectType::eGdtfActivationGroup;
}
TXString GdtfActivationGroup::GetNodeName()
{
return XML_GDTF_ActivationGroupNode;
}
const TXString& GdtfActivationGroup::GetName() const
{
return fName;
}
const TGdtfAttributeArray& GdtfActivationGroup::GetLinkedAttributes() const
{
return fLinkedAttributes;
}
void GdtfActivationGroup::AddLinkedAttribute(GdtfAttribute* attr)
{
fLinkedAttributes.push_back(attr);
}
TXString GdtfActivationGroup::GetNodeReference()
{
return GetName();
}
//------------------------------------------------------------------------------------
// GdtfFeature
GdtfFeature::GdtfFeature(GdtfFeatureGroup* parent)
{
ASSERTN (kEveryone, parent);
fParent = parent;
}
GdtfFeature::~GdtfFeature()
{
}
void GdtfFeature::OnPrintToFile(IXMLFileNodePtr pNode)
{
//------------------------------------------------------------------------------------
// Call the parent
GdtfObject::OnPrintToFile(pNode);
//------------------------------------------------------------------------------------
// Print the attributes
pNode->SetNodeAttributeValue(XML_GDTF_FeatureName, fName);
}
void GdtfFeature::OnReadFromNode(const IXMLFileNodePtr& pNode)
{
//------------------------------------------------------------------------------------
// Call the parent
GdtfObject::OnReadFromNode(pNode);
//------------------------------------------------------------------------------------
// Get the attributes
pNode->GetNodeAttributeValue(XML_GDTF_FeatureName, fName);
}
void GdtfFeature::OnErrorCheck(const IXMLFileNodePtr& pNode)
{
//------------------------------------------------------------------------------------
// Call the parent
GdtfObject::OnErrorCheck(pNode);
//------------------------------------------------------------------------------------
// Create needed and optional Attribute Arrays
TXStringArray needed;
TXStringArray optional;
needed.push_back(XML_GDTF_FeatureName);
//------------------------------------------------------------------------------------
// Check Attributes for node
GdtfParsingError::CheckNodeAttributes(pNode, needed, optional);
}
EGdtfObjectType GdtfFeature::GetObjectType()
{
return EGdtfObjectType::eGdtfFeature;
}
TXString GdtfFeature::GetNodeName()
{
return XML_GDTF_FeatureNode;
}
const TXString& GdtfFeature::GetName() const
{
return fName;
}
GdtfFeatureGroup* GdtfFeature::GetFeatureGroup() const
{
return fParent;
}
const TGdtfAttributeArray& GdtfFeature::GetLinkedAttributes() const
{
return fLinkedAttributes;
}
void GdtfFeature::AddLinkedAttribute(GdtfAttribute* attr)
{
fLinkedAttributes.push_back(attr);
}
void GdtfFeature::SetName(const TXString & name)
{
fName = name;
}
TXString GdtfFeature::GetNodeReference()
{
TXString ref = fParent->GetName() + "." + GetName();
return ref;
}
//------------------------------------------------------------------------------------
// Attributes
GdtfFeatureGroup::GdtfFeatureGroup()
{
}
GdtfFeatureGroup::GdtfFeatureGroup(const TXString& name, const TXString& prettyName)
{
fName = name;
fPrettyName = prettyName;
}
GdtfFeatureGroup::~GdtfFeatureGroup()
{
for (GdtfFeaturePtr pFeature : fFeatures) { delete pFeature; }
}
void GdtfFeatureGroup::SetName(const TXString& name)
{
fName = name;
}
void GdtfFeatureGroup::SetPrettyName(const TXString& prettyName)
{
fPrettyName = prettyName;
}
void GdtfFeatureGroup::OnPrintToFile(IXMLFileNodePtr pNode)
{
//------------------------------------------------------------------------------------
// Call the parent
GdtfObject::OnPrintToFile(pNode);
//------------------------------------------------------------------------------------
// Print the attributes
pNode->SetNodeAttributeValue(XML_GDTF_FeatureGroupName, fName);
pNode->SetNodeAttributeValue(XML_GDTF_FeatureGroupPrettyName, fPrettyName);
//------------------------------------------------------------------------------------
// Print the childs
for (GdtfFeature* feature : fFeatures)
{
feature->WriteToNode(pNode);
}
}
void GdtfFeatureGroup::OnReadFromNode(const IXMLFileNodePtr& pNode)
{
//------------------------------------------------------------------------------------
// Call the parent
GdtfObject::OnReadFromNode(pNode);
//------------------------------------------------------------------------------------
// Get the attributes
pNode->GetNodeAttributeValue(XML_GDTF_FeatureGroupName, fName);
pNode->GetNodeAttributeValue(XML_GDTF_FeatureGroupPrettyName, fPrettyName);
//------------------------------------------------------------------------------------
// Read the childs
GdtfConverter::TraverseNodes(pNode, "", XML_GDTF_FeatureNode, [this] (IXMLFileNodePtr objNode) -> void
{
if ( CheckAbort() ) return;
GdtfFeaturePtr feature = new GdtfFeature(this);
feature->ReadFromNode(objNode);
fFeatures.push_back(feature);
return;
});
}
void GdtfFeatureGroup::OnErrorCheck(const IXMLFileNodePtr& pNode)
{
//------------------------------------------------------------------------------------
// Call the parent
GdtfObject::OnErrorCheck(pNode);
//------------------------------------------------------------------------------------
// Create needed and optional Attribute Arrays
TXStringArray needed;
TXStringArray optional;
needed.push_back(XML_GDTF_FeatureGroupName);
needed.push_back(XML_GDTF_FeatureGroupPrettyName);
//------------------------------------------------------------------------------------
// Check Attributes for node
GdtfParsingError::CheckNodeAttributes(pNode, needed, optional);
}
EGdtfObjectType GdtfFeatureGroup::GetObjectType()
{
return EGdtfObjectType::eGdtfFeatureGroup;
}
TXString GdtfFeatureGroup::GetNodeName()
{
return XML_GDTF_FeatureGroupNode;
}
GdtfFeature* GdtfFeatureGroup::AddFeature(const TXString& name)
{
GdtfFeature* feature = new GdtfFeature(this);
feature->SetName(name);
fFeatures.push_back(feature);
return feature;
}
const TXString& GdtfFeatureGroup::GetName() const
{
return fName;
}
const TXString& GdtfFeatureGroup::GetPrettyName() const
{
return fPrettyName;
}
const TGdtfFeatureArray GdtfFeatureGroup::GetFeatureArray()
{
return fFeatures;
}
//------------------------------------------------------------------------------------
// GdtfSubPhysicalUnit
GdtfSubPhysicalUnit::GdtfSubPhysicalUnit()
{
fType = EGdtfSubPhysicalUnitType::PlacementOffset;
fPhysicalUnit = EGdtfPhysicalUnit::None;
fPhysicalFrom = 0.0;
fPhysicalTo = 0.0;
}
GdtfSubPhysicalUnit::GdtfSubPhysicalUnit(EGdtfSubPhysicalUnitType type)
{
fType = type;
fPhysicalUnit = GdtfConverter::GetUnitFromSubPhysical(type);
fPhysicalFrom = 0.0;
fPhysicalTo = 0.0;
}
GdtfSubPhysicalUnit::~GdtfSubPhysicalUnit()
{
}
EGdtfSubPhysicalUnitType GdtfSubPhysicalUnit::GetType() const
{
return fType;
}
EGdtfPhysicalUnit GdtfSubPhysicalUnit::GetPhysicalUnit() const
{
return fPhysicalUnit;
}
double GdtfSubPhysicalUnit::GetPhysicalFrom() const
{
return fPhysicalFrom;
}
double GdtfSubPhysicalUnit::GetPhysicalTo() const
{
return fPhysicalTo;
}
void GdtfSubPhysicalUnit::SetType(const EGdtfSubPhysicalUnitType& type)
{
fType = type;
fPhysicalUnit = GdtfConverter::GetUnitFromSubPhysical(type);
}
void GdtfSubPhysicalUnit::SetPhysicalUnit(const EGdtfPhysicalUnit& physicalUnit)
{
fPhysicalUnit = physicalUnit;
}
void GdtfSubPhysicalUnit::SetPhysicalFrom(double physicalFrom)
{
fPhysicalFrom = physicalFrom;
}
void GdtfSubPhysicalUnit::SetPhysicalTo(double physicalTo)
{
fPhysicalTo = physicalTo;
}
void GdtfSubPhysicalUnit::OnPrintToFile(IXMLFileNodePtr pNode)
{
//------------------------------------------------------------------------------------
// Call the parent
GdtfObject::OnPrintToFile(pNode);
pNode->SetNodeAttributeValue(XML_GDTF_SubPhysicalUnitType, GdtfConverter::ConvertSubPhysicalUnitTypeEnum(fType));
pNode->SetNodeAttributeValue(XML_GDTF_SubPhysicalUnitPhysicalUnit, GdtfConverter::ConvertPhysicalUnitEnum(fPhysicalUnit));
pNode->SetNodeAttributeValue(XML_GDTF_SubPhysicalUnitPhysicalFrom, GdtfConverter::ConvertDouble(fPhysicalFrom));
pNode->SetNodeAttributeValue(XML_GDTF_SubPhysicalUnitPhysicalTo, GdtfConverter::ConvertDouble(fPhysicalTo));
}
void GdtfSubPhysicalUnit::OnReadFromNode(const IXMLFileNodePtr& pNode)
{
//------------------------------------------------------------------------------------
// Call the parent
GdtfObject::OnReadFromNode(pNode);
TXString type; pNode->GetNodeAttributeValue(XML_GDTF_SubPhysicalUnitType, type); GdtfConverter::ConvertSubPhysicalUnitTypeEnum(type, pNode, fType);
TXString physicalUnit; pNode->GetNodeAttributeValue(XML_GDTF_SubPhysicalUnitPhysicalUnit, physicalUnit); GdtfConverter::ConvertPhysicalUnitEnum(physicalUnit, pNode, fPhysicalUnit);
TXString physicalFrom; pNode->GetNodeAttributeValue(XML_GDTF_SubPhysicalUnitPhysicalFrom, physicalFrom); GdtfConverter::ConvertDouble(physicalFrom, pNode, fPhysicalFrom);
TXString physicalTo; pNode->GetNodeAttributeValue(XML_GDTF_SubPhysicalUnitPhysicalTo, physicalTo); GdtfConverter::ConvertDouble(physicalTo, pNode, fPhysicalTo);
}
void GdtfSubPhysicalUnit::OnErrorCheck(const IXMLFileNodePtr& pNode)
{
//------------------------------------------------------------------------------------
// Call the parent
GdtfObject::OnErrorCheck(pNode);
//------------------------------------------------------------------------------------
// Create needed and optional Attribute Arrays
TXStringArray needed;
TXStringArray optional;
needed.push_back(XML_GDTF_SubPhysicalUnitType);
needed.push_back(XML_GDTF_SubPhysicalUnitPhysicalUnit);
optional.push_back(XML_GDTF_SubPhysicalUnitPhysicalFrom);
optional.push_back(XML_GDTF_SubPhysicalUnitPhysicalTo);
//------------------------------------------------------------------------------------
// Check Attributes for node
GdtfParsingError::CheckNodeAttributes(pNode, needed, optional);
}
EGdtfObjectType GdtfSubPhysicalUnit::GetObjectType()
{
return EGdtfObjectType::eGdtfSubPhysicalUnit;
}
TXString GdtfSubPhysicalUnit::GetNodeReference()
{
return GdtfConverter::ConvertSubPhysicalUnitTypeEnum(fType);
}
TXString GdtfSubPhysicalUnit::GetNodeName()
{
return XML_GDTF_SubPhysicalUnitNodeName;
}
//------------------------------------------------------------------------------------
// Attributes
GdtfAttribute::GdtfAttribute()
{
fActivationGroup = nullptr;
fFeature = nullptr;
fMainAttribute = nullptr;
fPhysicalUnit = EGdtfPhysicalUnit::None;
fHasColor = false;
}
GdtfAttribute::GdtfAttribute(const TXString& name, const TXString& prettyName)
{
fName = name;
fPrettyName = prettyName;
fActivationGroup = nullptr;
fFeature = nullptr;
fMainAttribute = nullptr;
fPhysicalUnit = EGdtfPhysicalUnit::None;
fHasColor = false;
}
GdtfAttribute::~GdtfAttribute()
{
for(GdtfSubPhysicalUnitPtr subPhysicalUnit : fSubPhysicalUnits) { delete subPhysicalUnit; }
}
void GdtfAttribute::SetName(const TXString &name)
{
fName = name;
}
void GdtfAttribute::SetPrettyName(const TXString &name)
{
fPrettyName = name;
}
void GdtfAttribute::SetActivationGroup(GdtfActivationGroupPtr ptr)
{
ASSERTN(kEveryone, fActivationGroup == nullptr);
fActivationGroup = ptr;
ASSERTN(kEveryone, ptr != nullptr);
if (ptr) { ptr->AddLinkedAttribute(this); }
}
void SceneData::GdtfAttribute::SetMainAttribute(GdtfAttribute * attr)
{
fMainAttribute = attr;
}
void SceneData::GdtfAttribute::SetPhysicalUnit(EGdtfPhysicalUnit unit)
{
fPhysicalUnit = unit;
}
void SceneData::GdtfAttribute::SetColor(const CCieColor & col)
{
fHasColor = true;
fColor = col;
}
GdtfSubPhysicalUnitPtr GdtfAttribute::CreateSubPhysicalUnit(EGdtfSubPhysicalUnitType type)
{
GdtfSubPhysicalUnitPtr subPhysicalUnit = new GdtfSubPhysicalUnit(type);
fSubPhysicalUnits.push_back(subPhysicalUnit);
return subPhysicalUnit;
}
void GdtfAttribute::OnPrintToFile(IXMLFileNodePtr pNode)
{
//------------------------------------------------------------------------------------
// Call the parent
GdtfObject::OnPrintToFile(pNode);
ASSERTN(kEveryone, fFeature);
//------------------------------------------------------------------------------------
// Print the attributes
pNode->SetNodeAttributeValue(XML_GDTF_AttributeName, fName);
pNode->SetNodeAttributeValue(XML_GDTF_AttributePrettyName, fPrettyName);
if (fActivationGroup) { pNode->SetNodeAttributeValue(XML_GDTF_AttributeActGroup, fActivationGroup->GetNodeReference()); }
if (fFeature) { pNode->SetNodeAttributeValue(XML_GDTF_AttributeFeature, fFeature->GetNodeReference() ); }
if (fMainAttribute) { pNode->SetNodeAttributeValue(XML_GDTF_AttributefMainAttribute, fMainAttribute->GetNodeReference()); }
if(fHasColor) { pNode->SetNodeAttributeValue(XML_GDTF_AttributeColor, GdtfConverter::ConvertColor(fColor)); }
pNode->SetNodeAttributeValue(XML_GDTF_AttributePhysicalUnit, GdtfConverter::ConvertPhysicalUnitEnum(fPhysicalUnit));
for(GdtfSubPhysicalUnitPtr subPhysicalUnit : fSubPhysicalUnits)
{
subPhysicalUnit->WriteToNode(pNode);
}
}
void GdtfAttribute::OnReadFromNode(const IXMLFileNodePtr& pNode)
{
//------------------------------------------------------------------------------------
// Call the parent
GdtfObject::OnReadFromNode(pNode);
//------------------------------------------------------------------------------------
// Get the attributes
pNode->GetNodeAttributeValue(XML_GDTF_AttributeName, fName);
pNode->GetNodeAttributeValue(XML_GDTF_AttributePrettyName, fPrettyName);
pNode->GetNodeAttributeValue(XML_GDTF_AttributeActGroup, fUnresolvedActGroup);
pNode->GetNodeAttributeValue(XML_GDTF_AttributeFeature, fUnresolvedFeature);
pNode->GetNodeAttributeValue(XML_GDTF_AttributefMainAttribute, fUnresolvedMainAttrib);
TXString physicalUnitStr; pNode->GetNodeAttributeValue(XML_GDTF_AttributePhysicalUnit, physicalUnitStr); GdtfConverter::ConvertPhysicalUnitEnum(physicalUnitStr, pNode, fPhysicalUnit);
TXString colorStr;
if(VCOM_SUCCEEDED(pNode->GetNodeAttributeValue(XML_GDTF_AttributeColor, colorStr)))
{
GdtfConverter::ConvertColor(colorStr, pNode, fColor);
fHasColor = true;
}
GdtfConverter::TraverseNodes(pNode, "", XML_GDTF_SubPhysicalUnitNodeName, [this] (IXMLFileNodePtr objNode) -> void
{
if ( CheckAbort() ) return;
// Create the object
GdtfSubPhysicalUnitPtr subPhysicalUnit = new GdtfSubPhysicalUnit();
// Read from node
subPhysicalUnit->ReadFromNode(objNode);
// Add to list
fSubPhysicalUnits.push_back(subPhysicalUnit);
return;
});
}
void GdtfAttribute::OnErrorCheck(const IXMLFileNodePtr& pNode)
{
//------------------------------------------------------------------------------------
// Call the parent
GdtfObject::OnErrorCheck(pNode);
//------------------------------------------------------------------------------------
// Create needed and optional Attribute Arrays
TXStringArray needed;
TXStringArray optional;
needed.push_back(XML_GDTF_AttributeName);
needed.push_back(XML_GDTF_AttributePrettyName);
needed.push_back(XML_GDTF_AttributeFeature);
optional.push_back(XML_GDTF_AttributeActGroup);
optional.push_back(XML_GDTF_AttributefMainAttribute);
optional.push_back(XML_GDTF_AttributePhysicalUnit);
optional.push_back(XML_GDTF_AttributeColor);
//------------------------------------------------------------------------------------
// Check Attributes for node
GdtfParsingError::CheckNodeAttributes(pNode, needed, optional);
}
EGdtfObjectType GdtfAttribute::GetObjectType()
{
return EGdtfObjectType::eGdtfAttribute;
}
TXString GdtfAttribute::GetNodeName()
{
return XML_GDTF_AttributeNode;
}
const TXString& GdtfAttribute::GetName() const
{
return fName;
}
const TXString& GdtfAttribute::GetPrettyName() const
{
return fPrettyName;
}
GdtfActivationGroupPtr GdtfAttribute::GetActivationGroup() const
{
return fActivationGroup;
}
GdtfFeaturePtr GdtfAttribute::GetFeature() const
{
return fFeature;
}
bool GdtfAttribute::HasColor() const
{
return fHasColor;
}
TGdtfSubPhysicalUnitArray GdtfAttribute::GetSubPhysicalUnitArray() const
{
return fSubPhysicalUnits;
}
void GdtfAttribute::SetFeature(GdtfFeaturePtr newFeat)
{
ASSERTN(kEveryone, fFeature == nullptr);
fFeature = newFeat;
ASSERTN(kEveryone, newFeat != nullptr);
if (newFeat) { newFeat->AddLinkedAttribute(this); }
}
GdtfAttribute * SceneData::GdtfAttribute::GetMainAttribute()
{
return fMainAttribute;
}
EGdtfPhysicalUnit SceneData::GdtfAttribute::GetPhysicalUnit()
{
return fPhysicalUnit;
}
CCieColor SceneData::GdtfAttribute::GetColor()
{
return fColor;
}
TXString GdtfAttribute::GetNodeReference()
{
return GetName();
}
const TXString& GdtfAttribute::GetUnresolvedActGroup() const
{
return fUnresolvedActGroup;
}
const TXString& GdtfAttribute::GetUnresolvedMainAttribute() const
{
return fUnresolvedMainAttrib;
}
const TXString& GdtfAttribute::GetUnresolvedFeature() const
{
return fUnresolvedFeature;
}
//------------------------------------------------------------------------------------
// GdtfWheel
GdtfWheel::GdtfWheel(GdtfFixture* parentFixture)
{
fParentFixture = parentFixture;
}
GdtfWheel::GdtfWheel(GdtfFixture* parentFixture, const TXString& name)
{
fName = name;
fParentFixture = parentFixture;
}
GdtfWheel::~GdtfWheel()
{
for (GdtfWheelSlotPtr ptr : fWheelSlots) { delete ptr; }
}
GdtfWheelSlotPtr GdtfWheel::AddWheelSlot(const TXString& name)
{
// Add Slot
GdtfWheelSlot* slot = new GdtfWheelSlot(name, this);
fWheelSlots.push_back(slot);
return slot;
}
void GdtfWheel::SetName(const TXString &name)
{
fName = name;
}
bool GdtfWheel::IsGoboWheel() const
{
for (GdtfWheelSlot* slot : fWheelSlots)
{
if (slot->GetGobo().IsEmpty()) { return false; }
}
return true;
}
TXString GdtfWheel::GetNodeReference()
{
return GetName();
}
GdtfFixture* GdtfWheel::GetParentFixture() const
{
return fParentFixture;
}
const TGdtfWheelSlotArray& GdtfWheel::GetWheelSlotArray() const
{
return fWheelSlots;
}
void GdtfWheel::OnPrintToFile(IXMLFileNodePtr pNode)
{
//------------------------------------------------------------------------------------
// Call the parent
GdtfObject::OnPrintToFile(pNode);
//------------------------------------------------------------------------------------
// Print the attributes
pNode->SetNodeAttributeValue(XML_GDTF_WheelName, fName);
//------------------------------------------------------------------------------------
// Print the childs
for (GdtfWheelSlot* wheelSlotObj : fWheelSlots)
{
wheelSlotObj->WriteToNode(pNode);
}
}
void GdtfWheel::OnReadFromNode(const IXMLFileNodePtr& pNode)
{
//------------------------------------------------------------------------------------
// Call the parent
GdtfObject::OnReadFromNode(pNode);
//------------------------------------------------------------------------------------
// Get the attributes
pNode->GetNodeAttributeValue(XML_GDTF_WheelName, fName);
//------------------------------------------------------------------------------------
// Read the wheel slots
GdtfConverter::TraverseNodes(pNode, "", XML_GDTF_WheelSlotNodeName, [this] (IXMLFileNodePtr objNode) -> void
{
if ( CheckAbort() ) return;
// Create the object
GdtfWheelSlotPtr wheelSlot = new GdtfWheelSlot(this);
// Read from node
wheelSlot->ReadFromNode(objNode);
// Add to list
fWheelSlots.push_back(wheelSlot);
return;
});
}
void GdtfWheel::OnErrorCheck(const IXMLFileNodePtr& pNode)
{
//------------------------------------------------------------------------------------
// Call the parent
GdtfObject::OnErrorCheck(pNode);
//------------------------------------------------------------------------------------
// Create needed and optional Attribute Arrays
TXStringArray needed;
TXStringArray optional;
needed.push_back(XML_GDTF_WheelName);
//------------------------------------------------------------------------------------
// Check Attributes for node
GdtfParsingError::CheckNodeAttributes(pNode, needed, optional);
}
EGdtfObjectType GdtfWheel::GetObjectType()
{
return EGdtfObjectType::eGdtfWheel;
}
TXString GdtfWheel::GetNodeName()
{
return XML_GDTF_WheelNodeName;
}
const TXString& GdtfWheel::GetName() const
{
return fName;
}
//------------------------------------------------------------------------------------
// GdtfWheelSlotPrismFacet
GdtfWheelSlotPrismFacet::GdtfWheelSlotPrismFacet()
{
fColor = CCieColor(0.3127,0.3290,100.0);
}
GdtfWheelSlotPrismFacet::~GdtfWheelSlotPrismFacet()
{
}
void GdtfWheelSlotPrismFacet::SetColor(const CCieColor &color)
{
fColor = color;
}
void GdtfWheelSlotPrismFacet::SetTransformMatrix(const VWFC::Math::VWTransformMatrix &ma)
{
fTransform = ma;
}
void GdtfWheelSlotPrismFacet::OnPrintToFile(IXMLFileNodePtr pNode)
{
//------------------------------------------------------------------------------------
// Call the parent
GdtfObject::OnPrintToFile(pNode);
pNode->SetNodeAttributeValue(XML_GDTF_PrismFacetColor, GdtfConverter::ConvertColor(fColor));
pNode->SetNodeAttributeValue(XML_GDTF_PrismFacetRotation, GdtfConverter::ConvertRotation(fTransform));
}
CCieColor GdtfWheelSlotPrismFacet::GetColor()
{
return fColor;
}
VWTransformMatrix GdtfWheelSlotPrismFacet::GetTransformMatrix()
{
return fTransform;
}
void GdtfWheelSlotPrismFacet::OnReadFromNode(const IXMLFileNodePtr& pNode)
{
//------------------------------------------------------------------------------------
// Call the parent
GdtfObject::OnReadFromNode(pNode);
TXString color; pNode->GetNodeAttributeValue(XML_GDTF_PrismFacetColor, color); GdtfConverter::ConvertColor(color, pNode, fColor);
TXString transfrom; pNode->GetNodeAttributeValue(XML_GDTF_PrismFacetRotation, transfrom); GdtfConverter::ConvertRotation(transfrom, pNode, fTransform);
}
void GdtfWheelSlotPrismFacet::OnErrorCheck(const IXMLFileNodePtr& pNode)
{
//------------------------------------------------------------------------------------
// Call the parent
GdtfObject::OnErrorCheck(pNode);
//------------------------------------------------------------------------------------
// Create needed and optional Attribute Arrays
TXStringArray needed;
TXStringArray optional;
needed.push_back(XML_GDTF_PrismFacetRotation);
optional.push_back(XML_GDTF_PrismFacetColor);