FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
solvespace/src/importdxf.cpp at master · solvespace/solvespace · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
solvespace
/
solvespace
Public
Notifications
You must be signed in to change notification settings
Fork
594
Star
4.1k
Code
Issues
244
Pull requests
33
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
solvespace
/
src
/
importdxf.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
1199 lines (1018 loc) · 38.8 KB
Breadcrumbs
solvespace
/
src
/
importdxf.cpp
Copy path
File metadata and controls
1199 lines (1018 loc) · 38.8 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
#
include
"
solvespace.h
"
#
include
"
libdxfrw.h
"
#
include
"
libdwgr.h
"
namespace
SolveSpace
{
static
std::string
ToUpper
(std::string str) {
std::transform
(str.
begin
(), str.
end
(), str.
begin
(), ::toupper);
return
str;
}
static
Quaternion
NormalFromExtPoint
(Vector extPoint) {
//
DXF arbitrary axis algorithm for transforming a Z-vector into a rotated
//
coordinate system
Vector ax, ay;
Vector az = extPoint.
WithMagnitude
(
1.0
);
if
((
fabs
(az.
x
) <
1
/
64
.) && (
fabs
(az.
y
) <
1
/
64
.)) {
ax =
Vector::From
(
0
,
1
,
0
).
Cross
(az).
WithMagnitude
(
1.0
);
}
else
{
ax =
Vector::From
(
0
,
0
,
1
).
Cross
(az).
WithMagnitude
(
1.0
);
}
ay = az.
Cross
(ax).
WithMagnitude
(
1.0
);
return
Quaternion::From
(ax, ay);
}
class
DxfImport
:
public
DRW_Interface
{
public:
Vector blockX;
Vector blockY;
Vector blockZ;
Vector blockT;
void
invertXTransform
() {
blockX.
x
= -blockX.
x
;
blockY.
x
= -blockY.
x
;
blockT.
x
= -blockT.
x
;
}
void
multBlockTransform
(
double
x,
double
y,
double
sx,
double
sy,
double
angle) {
Vector oldX = blockX;
Vector oldY = blockY;
Vector oldT = blockT;
Vector newX =
Vector::From
(sx,
0.0
,
0.0
).
RotatedAbout
({
0.0
,
0.0
,
1.0
}, angle);
Vector newY =
Vector::From
(
0.0
, sy,
0.0
).
RotatedAbout
({
0.0
,
0.0
,
1.0
}, angle);
Vector newT = {x, y,
0.0
};
blockX = oldX.
ScaledBy
(newX.
x
).
Plus
(
oldY.
ScaledBy
(newX.
y
));
blockY = oldX.
ScaledBy
(newY.
x
).
Plus
(
oldY.
ScaledBy
(newY.
y
));
blockT = oldX.
ScaledBy
(newT.
x
).
Plus
(
oldY.
ScaledBy
(newT.
y
)).
Plus
(oldT);
}
void
clearBlockTransform
() {
blockX = {
1.0
,
0.0
,
0.0
};
blockY = {
0.0
,
1.0
,
0.0
};
blockZ = {
0.0
,
0.0
,
1.0
};
blockT = {
0.0
,
0.0
,
0.0
};
}
Vector
blockTransform
(Vector v) {
Vector r = blockT;
r = r.
Plus
(blockX.
ScaledBy
(v.
x
));
r = r.
Plus
(blockY.
ScaledBy
(v.
y
));
r = r.
Plus
(blockZ.
ScaledBy
(v.
z
));
return
r;
}
void
blockTransformArc
(Vector *c, Vector *p0, Vector *p1) {
bool
oldSign = p0->
Minus
(*c).
Cross
(p1->
Minus
(*c)).
z
>
0.0
;
*c =
blockTransform
(*c);
*p0 =
blockTransform
(*p0);
*p1 =
blockTransform
(*p1);
bool
newSign = p0->
Minus
(*c).
Cross
(p1->
Minus
(*c)).
z
>
0.0
;
if
(oldSign != newSign)
std::swap
(*p0, *p1);
}
Vector
toVector
(
const
DRW_Coord &c,
bool
transform =
true
) {
Vector result = {c.
x
, c.
y
, c.
z
};
if
(transform)
return
blockTransform
(result);
return
result;
}
Vector
toVector
(
const
DRW_Vertex2D &c) {
Vector result = {c.
x
, c.
y
,
0.0
};
return
blockTransform
(result);
}
Vector
toVector
(
const
DRW_Vertex &c) {
Vector result = {c.
basePoint
.
x
, c.
basePoint
.
y
, c.
basePoint
.
z
};
return
blockTransform
(result);
}
double
angleTo
(Vector v0, Vector v1) {
Vector d = v1.
Minus
(v0);
double
a =
atan2
(d.
y
, d.
x
);
return
M_PI
+
remainder
(a -
M_PI
,
2
*
M_PI
);
}
Vector
polar
(
double
radius,
double
angle) {
return
{radius *
cos
(angle), radius *
sin
(angle),
0.0
};
}
hRequest
createBulge
(Vector p0, Vector p1,
double
bulge) {
bool
reversed = bulge <
0.0
;
double
alpha =
atan
(bulge) *
4.0
;
Vector middle = p1.
Plus
(p0).
ScaledBy
(
0.5
);
double
dist = p1.
Minus
(p0).
Magnitude
() /
2.0
;
double
angle =
angleTo
(p0, p1);
//
alpha can't be 0.0 at this point
double
radius =
fabs
(dist /
sin
(alpha /
2.0
));
double
wu =
fabs
(radius * radius - dist * dist);
double
h =
sqrt
(wu);
if
(bulge >
0.0
) {
angle +=
M_PI_2
;
}
else
{
angle -=
M_PI_2
;
}
if
(
fabs
(alpha) >
M_PI
) {
h *= -
1.0
;
}
Vector center =
polar
(h, angle);
center = center.
Plus
(middle);
if
(reversed)
std::swap
(p0, p1);
blockTransformArc
(¢er, &p0, &p1);
hRequest hr =
SS
.
GW
.
AddRequest
(Request::Type::
ARC_OF_CIRCLE
,
/*
rememberForUndo=
*/
false
);
SK
.
GetEntity
(hr.
entity
(
1
))->
PointForceTo
(center);
SK
.
GetEntity
(hr.
entity
(
2
))->
PointForceTo
(p0);
SK
.
GetEntity
(hr.
entity
(
3
))->
PointForceTo
(p1);
processPoint
(hr.
entity
(
1
));
processPoint
(hr.
entity
(
2
));
processPoint
(hr.
entity
(
3
));
return
hr;
}
struct
Block
{
std::vector<std::unique_ptr<DRW_Entity>> entities;
DRW_Block data;
};
bool
asConstruction =
false
;
unsigned
unknownEntities =
0
;
std::map<std::string, hStyle> styles;
std::map<std::string, Block> blocks;
std::map<std::string, DRW_Layer> layers;
Block *readBlock =
NULL
;
const
DRW_Insert *insertInsert =
NULL
;
template
<
class
T
>
bool
addPendingBlockEntity
(
const
T &e) {
if
(readBlock ==
NULL
)
return
false
;
readBlock->
entities
.
emplace_back
(
new
T
(e));
return
true
;
}
void
addEntity
(DRW_Entity *e) {
switch
(e->
eType
) {
case
DRW
::
POINT
:
addPoint
(*
static_cast
<DRW_Point *>(e));
break
;
case
DRW
::
LINE
:
addLine
(*
static_cast
<DRW_Line *>(e));
break
;
case
DRW
::
ARC
:
addArc
(*
static_cast
<DRW_Arc *>(e));
break
;
case
DRW
::
CIRCLE
:
addCircle
(*
static_cast
<DRW_Circle *>(e));
break
;
case
DRW
::
POLYLINE
:
addPolyline
(*
static_cast
<DRW_Polyline *>(e));
break
;
case
DRW
::
LWPOLYLINE
:
addLWPolyline
(*
static_cast
<DRW_LWPolyline *>(e));
break
;
case
DRW
::
SPLINE
:
addSpline
(
static_cast
<DRW_Spline *>(e));
break
;
case
DRW
::
INSERT
:
addInsert
(*
static_cast
<DRW_Insert *>(e));
break
;
case
DRW
::
TEXT
:
addText
(*
static_cast
<DRW_Text *>(e));
break
;
case
DRW
::
MTEXT
:
addMText
(*
static_cast
<DRW_MText *>(e));
break
;
case
DRW
::
DIMALIGNED
:
addDimAlign
(
static_cast
<DRW_DimAligned *>(e));
break
;
case
DRW
::
DIMLINEAR
:
addDimLinear
(
static_cast
<DRW_DimLinear *>(e));
break
;
case
DRW
::
DIMRADIAL
:
addDimRadial
(
static_cast
<DRW_DimRadial *>(e));
break
;
case
DRW
::
DIMDIAMETRIC
:
addDimDiametric
(
static_cast
<DRW_DimDiametric *>(e));
break
;
case
DRW
::
DIMANGULAR
:
addDimAngular
(
static_cast
<DRW_DimAngular *>(e));
break
;
default
:
unknownEntities++;
}
}
Style::TextOrigin
dxfAlignToOrigin
(DRW_Text::HAlign alignH, DRW_Text::VAlign alignV) {
uint32_t
origin =
0
;
switch
(alignH) {
case
DRW_Text::HLeft:
origin |= (
uint32_t
)Style::TextOrigin::
LEFT
;
break
;
case
DRW_Text::HMiddle:
case
DRW_Text::HCenter:
break
;
case
DRW_Text::HRight:
origin |= (
uint32_t
)Style::TextOrigin::
RIGHT
;
break
;
case
DRW_Text::HAligned:
case
DRW_Text::HFit:
default
:
origin |= (
uint32_t
)Style::TextOrigin::
LEFT
;
break
;
}
switch
(alignV) {
case
DRW_Text::VBaseLine:
case
DRW_Text::VBottom:
origin |= (
uint32_t
)Style::TextOrigin::
BOT
;
break
;
case
DRW_Text::VMiddle:
break
;
case
DRW_Text::VTop:
origin |= (
uint32_t
)Style::TextOrigin::
TOP
;
break
;
default
:
origin |= (
uint32_t
)Style::TextOrigin::
BOT
;
break
;
}
return
(Style::TextOrigin)origin;
}
DRW_Layer *
getSourceLayer
(
const
DRW_Entity *e) {
DRW_Layer *layer =
NULL
;
if
(insertInsert !=
NULL
) {
std::string l = insertInsert->
layer
;
auto
bi = layers.
find
(l);
if
(bi != layers.
end
()) layer = &bi->
second
;
}
else
{
std::string l = e->
layer
;
auto
bi = layers.
find
(l);
if
(bi != layers.
end
()) layer = &bi->
second
;
}
return
layer;
}
int
getColor
(
const
DRW_Entity *e) {
int
col = e->
color
;
if
(col ==
DRW
::ColorByBlock) {
if
(insertInsert !=
NULL
) {
col = insertInsert->
color
;
}
else
{
col =
7
;
}
}
if
(col ==
DRW
::ColorByLayer) {
DRW_Layer *layer =
getSourceLayer
(e);
if
(layer !=
NULL
) {
col = layer->
color
;
}
else
{
col =
7
;
}
}
return
col;
}
DRW_LW_Conv::lineWidth
getLineWidth
(
const
DRW_Entity *e) {
DRW_LW_Conv::lineWidth result = e->
lWeight
;
if
(result == DRW_LW_Conv::widthByBlock) {
if
(insertInsert !=
NULL
) {
result = insertInsert->
lWeight
;
}
else
{
result = DRW_LW_Conv::widthDefault;
}
}
if
(result == DRW_LW_Conv::widthByLayer) {
DRW_Layer *layer =
getSourceLayer
(e);
if
(layer !=
NULL
) {
result = layer->
lWeight
;
}
else
{
result = DRW_LW_Conv::widthDefault;
}
}
return
result;
}
std::string
getLineType
(
const
DRW_Entity *e) {
std::string result = e->
lineType
;
if
(result ==
"
BYBLOCK
"
) {
if
(insertInsert !=
NULL
) {
result =
ToUpper
(insertInsert->
lineType
);
}
else
{
result =
"
CONTINUOUS
"
;
}
}
if
(result ==
"
BYLAYER
"
) {
DRW_Layer *layer =
getSourceLayer
(e);
if
(layer !=
NULL
) {
result =
ToUpper
(layer->
lineType
);
}
else
{
result =
"
CONTINUOUS
"
;
}
}
return
result;
}
hStyle
invisibleStyle
() {
std::string id =
"
@dxf-invisible
"
;
auto
si = styles.
find
(id);
if
(si != styles.
end
()) {
return
si->
second
;
}
hStyle hs = {
Style::CreateCustomStyle
(
/*
rememberForUndo=
*/
false
) };
Style *s =
Style::Get
(hs);
s->
name
= id;
s->
visible
=
false
;
styles.
emplace
(id, hs);
return
hs;
}
hStyle
styleFor
(
const
DRW_Entity *e) {
//
Color.
//
! @todo which color to choose: index or RGB one?
int
col =
getColor
(e);
RgbaColor c =
RgbaColor::From
(
DRW
::dxfColors[col][
0
],
DRW
::dxfColors[col][
1
],
DRW
::dxfColors[col][
2
]);
//
Line width.
DRW_LW_Conv::lineWidth lw =
getLineWidth
(e);
double
width =
DRW_LW_Conv::lineWidth2dxfInt
(e->
lWeight
) /
100.0
;
if
(width <
0.0
) width =
1.0
;
//
Line stipple.
//
! @todo Probably, we can load default autocad patterns and match it with ours.
std::string lineType =
getLineType
(e);
StipplePattern stipple = StipplePattern::
CONTINUOUS
;
for
(
uint32_t
i =
0
; i <= (
uint32_t
)StipplePattern::
LAST
; i++) {
StipplePattern st = (StipplePattern)i;
if
(lineType ==
DxfFileWriter::lineTypeName
(st)) {
stipple = st;
break
;
}
}
//
Text properties.
DRW_Text::HAlign alignH = DRW_Text::HLeft;
DRW_Text::VAlign alignV = DRW_Text::VBaseLine;
double
textAngle =
0.0
;
double
textHeight =
Style::DefaultTextHeight
();
if
(e->
eType
==
DRW
::
TEXT
|| e->
eType
==
DRW
::
MTEXT
) {
const
DRW_Text *text =
static_cast
<
const
DRW_Text *>(e);
alignH = text->
alignH
;
alignV = text->
alignV
;
textHeight = text->
height
;
textAngle = text->
angle
;
//
I have no idea why, but works
if
(alignH == DRW_Text::HMiddle) {
alignV = DRW_Text::VMiddle;
}
}
//
Unique identifier based on style properties.
std::string id =
"
@dxf
"
;
if
(lw != DRW_LW_Conv::widthDefault)
id +=
ssprintf
(
"
-w%.4g
"
, width);
if
(lineType !=
"
CONTINUOUS
"
)
id +=
ssprintf
(
"
-%s
"
, lineType.
c_str
());
if
(c.
red
!=
0
|| c.
green
!=
0
|| c.
blue
!=
0
)
id +=
ssprintf
(
"
-#%02x%02x%02x
"
, c.
red
, c.
green
, c.
blue
);
if
(textHeight !=
Style::DefaultTextHeight
())
id +=
ssprintf
(
"
-h%.4g
"
, textHeight);
if
(textAngle !=
0.0
)
id +=
ssprintf
(
"
-a%.5g
"
, textAngle);
if
(alignH != DRW_Text::HLeft)
id +=
ssprintf
(
"
-oh%d
"
, alignH);
if
(alignV != DRW_Text::VBaseLine)
id +=
ssprintf
(
"
-ov%d
"
, alignV);
auto
si = styles.
find
(id);
if
(si != styles.
end
()) {
return
si->
second
;
}
hStyle hs = {
Style::CreateCustomStyle
(
/*
rememberForUndo=
*/
false
) };
Style *s =
Style::Get
(hs);
if
(lw != DRW_LW_Conv::widthDefault) {
s->
widthAs
= Style::UnitsAs::
MM
;
s->
width
= width;
s->
stippleScale
=
1.0
+ width *
2.0
;
}
s->
name
= id;
s->
stippleType
= stipple;
if
(c.
red
!=
0
|| c.
green
!=
0
|| c.
blue
!=
0
) s->
color
= c;
s->
textHeightAs
= Style::UnitsAs::
MM
;
s->
textHeight
= textHeight;
s->
textAngle
= textAngle;
s->
textOrigin
=
dxfAlignToOrigin
(alignH, alignV);
styles.
emplace
(id, hs);
return
hs;
}
void
configureRequest
(hRequest hr, hStyle hs) {
Request *r =
SK
.
GetRequest
(hr);
r->
construction
= asConstruction;
r->
style
= hs;
}
struct
VectorHash
{
size_t
operator
()(
const
Vector &v)
const
{
static
const
size_t
size = std::numeric_limits<
size_t
>::
max
() /
2
-
1
;
static
const
double
eps = (
4.0
*
LENGTH_EPS
);
double
x =
fabs
(v.
x
) / eps;
double
y =
fabs
(v.
y
) / eps;
size_t
xs =
size_t
(
fmod
(x,
double
(size)));
size_t
ys =
size_t
(
fmod
(y,
double
(size)));
return
ys * size + xs;
}
};
struct
VectorPred
{
bool
operator
()(Vector a, Vector b)
const
{
return
a.
Equals
(b,
LENGTH_EPS
);
}
};
std::unordered_map<Vector, hEntity, VectorHash, VectorPred> points;
void
processPoint
(hEntity he,
bool
constrain =
true
) {
Entity *e =
SK
.
GetEntity
(he);
Vector pos = e->
PointGetNum
();
hEntity p =
findPoint
(pos);
if
(p == he)
return
;
if
(p != Entity::
NO_ENTITY
) {
if
(constrain) {
Constraint::ConstrainCoincident
(he, p);
}
//
We don't add point because we already
//
have point in this position
return
;
}
points.
emplace
(pos, he);
}
hEntity
findPoint
(
const
Vector &p) {
auto
it = points.
find
(p);
if
(it == points.
end
())
return
Entity::
NO_ENTITY
;
return
it->
second
;
}
hEntity
createOrGetPoint
(
const
Vector &p) {
hEntity he =
findPoint
(p);
if
(he != Entity::
NO_ENTITY
)
return
he;
hRequest hr =
SS
.
GW
.
AddRequest
(Request::Type::
DATUM_POINT
,
/*
rememberForUndo=
*/
false
);
he = hr.
entity
(
0
);
SK
.
GetEntity
(he)->
PointForceTo
(p);
points.
emplace
(p, he);
return
he;
}
hEntity
createLine
(Vector p0, Vector p1, hStyle style,
bool
constrainHV =
false
) {
if
(p0.
Equals
(p1))
return
Entity::
NO_ENTITY
;
hRequest hr =
SS
.
GW
.
AddRequest
(Request::Type::
LINE_SEGMENT
,
/*
rememberForUndo=
*/
false
);
SK
.
GetEntity
(hr.
entity
(
1
))->
PointForceTo
(p0);
SK
.
GetEntity
(hr.
entity
(
2
))->
PointForceTo
(p1);
processPoint
(hr.
entity
(
1
));
processPoint
(hr.
entity
(
2
));
if
(constrainHV &&
SS
.
GW
.
LockedInWorkplane
()) {
bool
hasConstraint =
false
;
Constraint::Type cType;
if
(
fabs
(p0.
x
- p1.
x
) <
LENGTH_EPS
) {
hasConstraint =
true
;
cType = Constraint::Type::
VERTICAL
;
}
else
if
(
fabs
(p0.
y
- p1.
y
) <
LENGTH_EPS
) {
hasConstraint =
true
;
cType = Constraint::Type::
HORIZONTAL
;
}
if
(hasConstraint) {
Constraint::Constrain
(
cType,
Entity::
NO_ENTITY
,
Entity::
NO_ENTITY
,
hr.
entity
(
0
)
);
}
}
configureRequest
(hr, style);
return
hr.
entity
(
0
);
}
hEntity
createWorkplane
(
const
Vector &p,
const
Quaternion &q) {
hRequest hr =
SS
.
GW
.
AddRequest
(Request::Type::
WORKPLANE
,
/*
rememberForUndo=
*/
false
);
SK
.
GetEntity
(hr.
entity
(
1
))->
PointForceTo
(p);
processPoint
(hr.
entity
(
1
));
SK
.
GetEntity
(hr.
entity
(
32
))->
NormalForceTo
(q);
return
hr.
entity
(
0
);
}
hEntity
findOrCreateWorkplane
(
const
Vector &p,
const
Quaternion &q) {
Vector z = q.
RotationN
();
for
(
auto
&r :
SK
.
request
) {
if
((r.
type
== Request::Type::
WORKPLANE
) && (r.
group
==
SS
.
GW
.
activeGroup
)) {
Vector wp =
SK
.
GetEntity
(r.
h
.
entity
(
1
))->
PointGetNum
();
Vector wz =
SK
.
GetEntity
(r.
h
.
entity
(
32
))->
NormalN
();
if
((p.
DistanceToPlane
(wz, wp) <
LENGTH_EPS
) && z.
Equals
(wz)) {
return
r.
h
.
entity
(
0
);
}
}
}
return
createWorkplane
(p, q);
}
static
void
activateWorkplane
(hEntity he) {
Group *g =
SK
.
GetGroup
(
SS
.
GW
.
activeGroup
);
g->
activeWorkplane
= he;
}
hEntity
createCircle
(
const
Vector &c,
const
Quaternion &q,
double
r, hStyle style) {
hRequest hr =
SS
.
GW
.
AddRequest
(Request::Type::
CIRCLE
,
/*
rememberForUndo=
*/
false
);
SK
.
GetEntity
(hr.
entity
(
1
))->
PointForceTo
(c);
processPoint
(hr.
entity
(
1
));
SK
.
GetEntity
(hr.
entity
(
32
))->
NormalForceTo
(q);
SK
.
GetEntity
(hr.
entity
(
64
))->
DistanceForceTo
(r);
configureRequest
(hr, style);
return
hr.
entity
(
0
);
}
void
addLayer
(
const
DRW_Layer &data)
override
{
layers.
emplace
(data.
name
, data);
}
void
addBlock
(
const
DRW_Block &data)
override
{
readBlock = &blocks[data.
name
];
readBlock->
data
= data;
}
void
endBlock
()
override
{
readBlock =
NULL
;
}
void
addPoint
(
const
DRW_Point &data)
override
{
if
(data.
space
!=
DRW
::ModelSpace)
return
;
if
(addPendingBlockEntity<DRW_Point>(data))
return
;
hRequest hr =
SS
.
GW
.
AddRequest
(Request::Type::
DATUM_POINT
,
/*
rememberForUndo=
*/
false
);
SK
.
GetEntity
(hr.
entity
(
0
))->
PointForceTo
(
toVector
(data.
basePoint
));
processPoint
(hr.
entity
(
0
));
}
void
addLine
(
const
DRW_Line &data)
override
{
if
(data.
space
!=
DRW
::ModelSpace)
return
;
if
(addPendingBlockEntity<DRW_Line>(data))
return
;
createLine
(
toVector
(data.
basePoint
),
toVector
(data.
secPoint
),
styleFor
(&data),
/*
constrainHV=
*/
true
);
}
void
addArc
(
const
DRW_Arc &data)
override
{
if
(data.
space
!=
DRW
::ModelSpace)
return
;
if
(addPendingBlockEntity<DRW_Arc>(data))
return
;
double
r = data.
radious
;
double
sa = data.
staangle
;
double
ea = data.
endangle
;
Vector c =
toVector
(data.
basePoint
);
Vector nz =
toVector
(data.
extPoint
);
Quaternion q =
NormalFromExtPoint
(nz);
bool
planar = q.
RotationN
().
Equals
({
0
,
0
,
1
});
bool
onPlane = c.
z
<
LENGTH_EPS
;
hEntity oldWorkplane =
SS
.
GW
.
ActiveWorkplane
();
if
(!planar || !onPlane) {
activateWorkplane
(
findOrCreateWorkplane
(c, q));
}
hRequest hr =
SS
.
GW
.
AddRequest
(Request::Type::
ARC_OF_CIRCLE
,
/*
rememberForUndo=
*/
false
);
Vector u = q.
RotationU
(), v = q.
RotationV
();
Vector rvs = c.
Plus
(u.
ScaledBy
(r *
cos
(sa))).
Plus
(v.
ScaledBy
(r *
sin
(sa)));
Vector rve = c.
Plus
(u.
ScaledBy
(r *
cos
(ea))).
Plus
(v.
ScaledBy
(r *
sin
(ea)));
if
(data.
extPoint
.
z
== -
1.0
) {
c.
x
= -c.
x
;
rvs.
x
= - rvs.
x
;
rve.
x
= - rve.
x
;
std::swap
(rvs, rve);
}
blockTransformArc
(&c, &rvs, &rve);
SK
.
GetEntity
(hr.
entity
(
1
))->
PointForceTo
(c);
SK
.
GetEntity
(hr.
entity
(
2
))->
PointForceTo
(rvs);
SK
.
GetEntity
(hr.
entity
(
3
))->
PointForceTo
(rve);
processPoint
(hr.
entity
(
1
));
processPoint
(hr.
entity
(
2
));
processPoint
(hr.
entity
(
3
));
configureRequest
(hr,
styleFor
(&data));
activateWorkplane
(oldWorkplane);
}
void
addCircle
(
const
DRW_Circle &data)
override
{
if
(data.
space
!=
DRW
::ModelSpace)
return
;
if
(addPendingBlockEntity<DRW_Circle>(data))
return
;
Vector nz =
toVector
(data.
extPoint
);
Quaternion normal =
NormalFromExtPoint
(nz);
createCircle
(
toVector
(data.
basePoint
), normal, data.
radious
,
styleFor
(&data));
}
void
addLWPolyline
(
const
DRW_LWPolyline &data)
override
{
if
(data.
space
!=
DRW
::ModelSpace)
return
;
if
(addPendingBlockEntity<DRW_LWPolyline>(data))
return
;
size_t
vNum = data.
vertlist
.
size
();
//
Check for closed polyline.
if
((data.
flags
&
1
) !=
1
) vNum--;
//
Correct coordinate system for the case where z=-1, as described in
//
http://paulbourke.net/dataformats/dxf/dxf10.html.
bool
needSwapX = data.
extPoint
.
z
== -
1.0
;
for
(
size_t
i =
0
; i < vNum; i++) {
DRW_Vertex2D c0 = *data.
vertlist
[i];
DRW_Vertex2D c1 = *data.
vertlist
[(i +
1
) % data.
vertlist
.
size
()];
if
(needSwapX) {
c0.
x
= -c0.
x
;
c1.
x
= -c1.
x
;
c0.
bulge
= -c0.
bulge
;
}
Vector p0 = {c0.
x
, c0.
y
,
0.0
};
Vector p1 = {c1.
x
, c1.
y
,
0.0
};
hStyle hs =
styleFor
(&data);
if
(
EXACT
(data.
vertlist
[i]->
bulge
==
0.0
)) {
createLine
(
blockTransform
(p0),
blockTransform
(p1), hs,
/*
constrainHV=
*/
true
);
}
else
{
hRequest hr =
createBulge
(p0, p1, c0.
bulge
);
configureRequest
(hr, hs);
}
}
}
void
addPolyline
(
const
DRW_Polyline &data)
override
{
if
(data.
space
!=
DRW
::ModelSpace)
return
;
if
(addPendingBlockEntity<DRW_Polyline>(data))
return
;
size_t
vNum = data.
vertlist
.
size
();
//
Check for closed polyline.
if
((data.
flags
&
1
) !=
1
) vNum--;
//
Correct coordinate system for the case where z=-1, as described in
//
http://paulbourke.net/dataformats/dxf/dxf10.html.
bool
needSwapX = (data.
extPoint
.
z
== -
1.0
);
for
(
size_t
i =
0
; i < vNum; i++) {
DRW_Coord c0 = data.
vertlist
[i]->
basePoint
;
DRW_Coord c1 = data.
vertlist
[(i +
1
) % data.
vertlist
.
size
()]->
basePoint
;
double
bulge = data.
vertlist
[i]->
bulge
;
if
(needSwapX) {
c0.
x
= -c0.
x
;
c1.
x
= -c1.
x
;
bulge = -bulge;
}
Vector p0 = {c0.
x
, c0.
y
, c0.
z
};
Vector p1 = {c1.
x
, c1.
y
, c1.
z
};
hStyle hs =
styleFor
(&data);
if
(
EXACT
(bulge ==
0.0
)) {
createLine
(
blockTransform
(p0),
blockTransform
(p1), hs,
/*
constrainHV=
*/
true
);
}
else
{
hRequest hr =
createBulge
(p0, p1, bulge);
configureRequest
(hr, hs);
}
}
}
void
addSpline
(
const
DRW_Spline *data)
override
{
if
(data->
space
!=
DRW
::ModelSpace)
return
;
if
(data->
degree
!=
3
)
return
;
if
(addPendingBlockEntity<DRW_Spline>(*data))
return
;
hRequest hr =
SS
.
GW
.
AddRequest
(Request::Type::
CUBIC
,
/*
rememberForUndo=
*/
false
);
for
(
int
i =
0
; i <
4
; i++) {
SK
.
GetEntity
(hr.
entity
(i +
1
))->
PointForceTo
(
toVector
(*data->
controllist
[i]));
processPoint
(hr.
entity
(i +
1
));
}
configureRequest
(hr,
styleFor
(data));
}
void
addInsert
(
const
DRW_Insert &data)
override
{
if
(data.
space
!=
DRW
::ModelSpace)
return
;
if
(addPendingBlockEntity<DRW_Insert>(data))
return
;
auto
bi = blocks.
find
(data.
name
);
ssassert
(bi != blocks.
end
(),
"
Inserted block does not exist
"
);
Block *block = &bi->
second
;
//
Push transform.
Vector x = blockX;
Vector y = blockY;
Vector t = blockT;
const
DRW_Insert *oldInsert = insertInsert;
insertInsert = &data;
if
(data.
extPoint
.
z
== -
1.0
)
invertXTransform
();
multBlockTransform
(data.
basePoint
.
x
, data.
basePoint
.
y
, data.
xscale
, data.
yscale
,
data.
angle
);
for
(
auto
&e : block->
entities
) {
addEntity
(&*e);
}
insertInsert = oldInsert;
//
Pop transform.
blockX = x;
blockY = y;
blockT = t;
}
void
addMText
(
const
DRW_MText &data)
override
{
if
(data.
space
!=
DRW
::ModelSpace)
return
;
if
(addPendingBlockEntity<DRW_MText>(data))
return
;
DRW_MText text = data;
text.
secPoint
= text.
basePoint
;
addText
(text);
}
void
addText
(
const
DRW_Text &data)
override
{
if
(data.
space
!=
DRW
::ModelSpace)
return
;
if
(addPendingBlockEntity<DRW_Text>(data))
return
;
Constraint c = {};
c.
group
=
SS
.
GW
.
activeGroup
;
c.
workplane
=
SS
.
GW
.
ActiveWorkplane
();
c.
type
= Constraint::Type::
COMMENT
;
if
(data.
alignH
== DRW_Text::HLeft && data.
alignV
== DRW_Text::VBaseLine) {
c.
disp
.
offset
=
toVector
(data.
basePoint
);
}
else
{
c.
disp
.
offset
=
toVector
(data.
secPoint
);
}
c.
comment
= data.
text
;
c.
disp
.
style
=
styleFor
(&data);
Constraint::AddConstraint
(&c,
/*
rememberForUndo=
*/
false
);
}
void
addDimAlign
(
const
DRW_DimAligned *data)
override
{
if
(data->
space
!=
DRW
::ModelSpace)
return
;
if
(addPendingBlockEntity<DRW_DimAligned>(*data))
return
;
Vector p0 =
toVector
(data->
getDef1Point
());
Vector p1 =
toVector
(data->
getDef2Point
());
Vector p2 =
toVector
(data->
getTextPoint
());
hConstraint hc =
Constraint::Constrain
(
Constraint::Type::
PT_PT_DISTANCE
,
createOrGetPoint
(p0),
createOrGetPoint
(p1),
Entity::
NO_ENTITY
);
Constraint *c =
SK
.
GetConstraint
(hc);
if
(data->
hasActualMeasurement
()) {
c->
valA
= data->
getActualMeasurement
();
}
else
{
c->
ModifyToSatisfy
();
}
c->
disp
.
offset
= p2.
Minus
(p0.
Plus
(p1).
ScaledBy
(
0.5
));
}
void
addDimLinear
(
const
DRW_DimLinear *data)
override
{
if
(data->
space
!=
DRW
::ModelSpace)
return
;
if
(addPendingBlockEntity<DRW_DimLinear>(*data))
return
;
Vector p0 =
toVector
(data->
getDef1Point
(),
/*
transform=
*/
false
);
Vector p1 =
toVector
(data->
getDef2Point
(),
/*
transform=
*/
false
);
Vector p2 =
toVector
(data->
getTextPoint
(),
/*
transform=
*/
false
);
double
angle = data->
getAngle
() *
PI
/
180.0
;
Vector dir = {
cos
(angle),
sin
(angle),
0.0
};
Vector p3 = p1.
Minus
(p1.
ClosestPointOnLine
(p2, dir)).
Plus
(p1);
if
(p1.
Minus
(p3).
Magnitude
() <
LENGTH_EPS
) {
p3 = p0.
Minus
(p0.
ClosestPointOnLine
(p2, dir)).
Plus
(p1);
}
Vector p4 = p0.
ClosestPointOnLine
(p1, p3.
Minus
(p1)).
Plus
(p0).
ScaledBy
(
0.5
);
p0 =
blockTransform
(p0);
p1 =
blockTransform
(p1);
p2 =
blockTransform
(p2);
p3 =
blockTransform
(p3);
p4 =
blockTransform
(p4);
hConstraint hc =
Constraint::Constrain
(
Constraint::Type::
PT_LINE_DISTANCE
,
createOrGetPoint
(p0),
Entity::
NO_ENTITY
,
createLine
(p1, p3,
invisibleStyle
())
);
Constraint *c =
SK
.
GetConstraint
(hc);
if
(data->
hasActualMeasurement
()) {
c->
valA
= data->
getActualMeasurement
();
}
else
{
c->
ModifyToSatisfy
();
}
c->
disp
.
offset
= p2.
Minus
(p4);
}
void
addDimAngular
(
const
DRW_DimAngular *data)
override
{
if
(data->
space
!=
DRW
::ModelSpace)
return
;
if
(addPendingBlockEntity<DRW_DimAngular>(*data))
return
;
Vector l0p0 =
toVector
(data->
getFirstLine1
());
Vector l0p1 =
toVector
(data->
getFirstLine2
());
Vector l1p0 =
toVector
(data->
getSecondLine1
());
Vector l1p1 =
toVector
(data->
getSecondLine2
());
hConstraint hc =
Constraint::Constrain
(
Constraint::Type::
ANGLE
,
Entity::
NO_ENTITY
,
Entity::
NO_ENTITY
,
createLine
(l0p0, l0p1,
invisibleStyle
()),
createLine
(l1p1, l1p0,
invisibleStyle
()),
/*
other=
*/
false
,
/*
other2=
*/
false
);
Constraint *c =
SK
.
GetConstraint
(hc);
c->
ModifyToSatisfy
();
if
(data->
hasActualMeasurement
()) {
double
actual = data->
getActualMeasurement
() /
PI
*
180.0
;
if
(
fabs
(
180.0
- actual - c->
valA
) <
fabs
(actual - c->
valA
)) {
c->
other
=
true
;
}
c->
valA
= actual;
}
bool
skew =
false
;
Vector pi =
Vector::AtIntersectionOfLines
(l0p0, l0p1, l1p0, l1p1, &skew);
if
(!skew) {
c->
disp
.
offset
=
toVector
(data->
getTextPoint
()).
Minus
(pi);
}
}
hConstraint
createDiametric
(Vector cp, Quaternion q,
double
r, Vector tp,
double
actual,
bool
asRadius =
false
) {
hEntity he =
createCircle
(cp, q, r,
invisibleStyle
());
hConstraint hc =
Constraint::Constrain
(
Constraint::Type::
DIAMETER
,
Entity::
NO_ENTITY
,
Entity::
NO_ENTITY
,
he
);
Constraint *c =
SK
.
GetConstraint
(hc);
if
(actual >
0.0
) {
c->
valA
= asRadius ? actual *
2.0
: actual;
}
else
{
c->
ModifyToSatisfy
();
}
c->
disp
.
offset
= tp.
Minus
(cp);
if
(asRadius) c->
other
=
true
;
return
hc;
}
void
addDimRadial
(
const
DRW_DimRadial *data)
override
{
if
(data->
space
!=
DRW
::ModelSpace)
return
;
if
(addPendingBlockEntity<DRW_DimRadial>(*data))
return
;
Vector cp =
toVector
(data->
getCenterPoint
());
Vector dp =
toVector
(data->
getDiameterPoint
());
Vector tp =
toVector
(data->
getTextPoint
());
double
actual = -
1.0
;
if
(data->
hasActualMeasurement
()) {
actual = data->
getActualMeasurement
();
}
Vector nz =
toVector
(data->
getExtrusion
());
Quaternion q =
NormalFromExtPoint
(nz);
createDiametric
(cp, q, cp.
Minus
(dp).
Magnitude
(), tp, actual,
/*
asRadius=
*/
true
);
}
void
addDimDiametric
(
const
DRW_DimDiametric *data)
override
{
if
(data->
space
!=
DRW
::ModelSpace)
return
;
if
(addPendingBlockEntity<DRW_DimRadial>(*data))
return
;
Vector dp1 =
toVector
(data->
getDiameter1Point
());
Vector dp2 =
toVector
(data->
getDiameter2Point
());
Vector cp = dp1.
Plus
(dp2).
ScaledBy
(
0.5
);
Vector tp =
toVector
(data->
getTextPoint
());
double
actual = -
1.0
;
if
(data->
hasActualMeasurement
()) {
actual = data->
getActualMeasurement
();
}
Vector nz =
toVector
(data->
getExtrusion
());
Quaternion q =
NormalFromExtPoint
(nz);
createDiametric
(cp, q, cp.
Minus
(dp1).
Magnitude
(), tp, actual,
/*
asRadius=
*/
false
);
}
void
addDimAngular3P
(
const
DRW_DimAngular3p *data)
override
{
if
(data->
space
!=
DRW
::ModelSpace)
return
;
if
(addPendingBlockEntity<DRW_DimAngular3p>(*data))
return
;
DRW_DimAngular dim = *
static_cast
<
const
DRW_Dimension *>(data);
dim.
setFirstLine1
(data->
getVertexPoint
());
dim.
setFirstLine2
(data->
getFirstLine
());
dim.
setSecondLine1
(data->
getVertexPoint
());
dim.
setSecondLine2
(data->
getSecondLine
());
addDimAngular
(&dim);
}
};
class
DxfCheck3D
:
public
DRW_Interface
{
public:
bool
is3d;
void
addEntity
(DRW_Entity *e) {
switch
(e->
eType
) {
case
DRW
::
POINT
:
addPoint
(*
static_cast
<DRW_Point *>(e));
break
;
case
DRW
::
LINE
:
addLine
(*
static_cast
<DRW_Line *>(e));
break
;
case
DRW
::
ARC
:
addArc
(*
static_cast
<DRW_Arc *>(e));
break
;
case
DRW
::
CIRCLE
:
addCircle
(*
static_cast
<DRW_Circle *>(e));
break
;
case
DRW
::
POLYLINE
:
addPolyline
(*
static_cast
<DRW_Polyline *>(e));
break
;
case
DRW
::
LWPOLYLINE
:
addLWPolyline
(*
static_cast
<DRW_LWPolyline *>(e));
break
;
case
DRW
::
SPLINE
:
addSpline
(
static_cast
<DRW_Spline *>(e));
break
;
case
DRW
::
INSERT
:
addInsert
(*
static_cast
<DRW_Insert *>(e));
break
;
case
DRW
::
TEXT
:
addText
(*
static_cast
<DRW_Text *>(e));
break
;
View remainder of file in raw view
Back
|
FazBrowse Home
|
New Git URL