-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGeoLocLines.pas
3780 lines (3438 loc) · 120 KB
/
GeoLocLines.pas
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
unit GeoLocLines;
interface
uses Windows, Classes, Types, Menus, Graphics, XMLIntf,
MathLib, Utility, TBaum, GeoTypes, GeoMakro, GeoTransf,
Unit_LGS, Generics.Collections;
type
TGLocLine = class (TGCurve)
protected
ParentInitData : TPPInitDataList;
FOLStatus : Integer; { -2 : alte 1.4er Ortslinie, statisch }
{ -1 : während der Aufzeichnung }
{ falls >= 0 und < 2^16 : }
{ Bit-Nr. Wert = 0 Wert = 1 }
{=========================================================================}
{ 0 statische Spur dynamische Ortslinie } {00000001h}
{ 1 als Punkte-Serie dargestellt als Spline dargestellt } {00000002h}
{ 2 Punkteliste ist statisch Punkteliste stets neu berechnen } {00000004h} // DEPRECATED!
{ falls >= 2^16 : }
{ 16 --- OL ist Gerade } {00010000h}
{ 17 --- OL ist Kreis } {00020000h}
{ 18 --- OL ist Kegelschnitt (???) } {00040000h}
function DefaultName: WideString; override;
// procedure SetShowsAlways(vis: Boolean); override;
function GetIsDynamic: Boolean;
procedure SetIsDynamic(flag: Boolean);
function GetIsSpline: Boolean;
procedure SetIsSpline(flag: Boolean);
function GetIsStraightLine: Boolean;
procedure SetIsStraightLine(flag: Boolean);
function GetIsCircle: Boolean;
procedure SetIsCircle(flag: Boolean);
function GetIsConic: Boolean;
procedure SetIsConic(flag: Boolean);
function GetIsStandardLine: Boolean;
function GetIsVisible: Boolean; override;
function IsReallySpline: Boolean; virtual;
function GetStandardLineChild: TGLine;
function HasSameDataAs(GO: TGeoObj): Boolean; override;
procedure VirtualizeCoords; override;
procedure RecalculatePointList; virtual;
procedure UpdateScreenCoords; override;
procedure UpdateNameCoordsIn(TextObj: TGTextObj); override;
procedure SetNewNameParamsIn(TextObj: TGTextObj); override;
procedure SetNewTempRelationships;
procedure ResetTempRelationships;
procedure DrawIt; override;
procedure HideIt; override;
procedure Invalidate; override;
procedure Revalidate; override;
public
constructor Create (iObjList: TGeoObjListe; GeneratorPt: TGPoint);
constructor CreateFromI2G(iObjList : TGeoObjListe; GeneratorPt, DraggedObj: TGeoObj; iis_visible: Boolean);
constructor CreateBlueprintOf(GO: TGeoObj; iGeoNum: Integer = -1); override;
constructor CreateFromDomData(iObjList: TGeoObjListe; DE: IXMLNode); override;
constructor Load (S: TFileStream; iObjList: TGeoObjListe);
constructor Load32(R: TReader; iObjList: TGeoObjListe); override;
destructor Destroy; override;
procedure AfterLoading(FromXML: Boolean); override;
function CreateObjNode(DOMDoc: IXMLDocument): IXMLNode; override;
function Check4StandardLine(var SLTyp: Integer): Boolean;
function SLChildrenCount: Integer;
function GetCoordsFromParam(param: Double; var px, py: Double): Boolean; override;
function GetParamFromCoords(px, py: Double; var param: Double): Boolean; override;
procedure ResetOLCPList(PointList : TVector3List); override;
procedure CheckOLState(DraggedObj: TGParentObj);
procedure RebuildPointers; override;
procedure ResetParentList;
procedure UpdateParams; override;
procedure AutoUpdate; virtual;
procedure RegisterAsMacroStartObject; override;
procedure SetNameRefPtCoords;
procedure SetNewName(NewName: WideString); override;
procedure LoadContextMenuEntriesInto(menu: TPopUpMenu); override;
function Includes(xp, yp: Double): Boolean; override;
function GetTangentIn(bx, by: Double; var tanCoeff: TVector3): Boolean; override;
function GetParentPointOnSelf(nr: Integer): TGPoint; override;
function GetInfo: String; override;
property OLStatus : Integer read FOLStatus;
property IsDynamic : Boolean read GetIsDynamic write SetIsDynamic;
property IsSpline : Boolean read GetIsSpline write SetIsSpline;
property IsStraightLine : Boolean read GetIsStraightLine write SetIsStraightLine;
property IsCircle : Boolean read GetIsCircle write SetIsCircle;
property IsConic : Boolean read GetIsConic write SetIsConic;
property IsStandardLine : Boolean read GetIsStandardLine;
end;
TGMappedLocLine = class(TGLocLine)
public
constructor Create (iObjList: TGeoObjListe; iPLL: TGLocLine; iMO: TGTransformation);
function GetCoordsFromParam(param: Double; var px, py: Double): Boolean; override;
function GetParamFromCoords(px, py: Double; var param: Double): Boolean; override;
procedure UpdateParams; override;
function GetInfo: String; override;
end;
TGEnvelopLine = class(TGLocLine)
protected
{ FOLStatus : Integer; geerbt von TGLocLine, (*) <==> neue Interpretation }
{ während der Aufzeichnung des Objekts : = -1 ; }
{ }
{ nach der Aufzeichnung des Objekts: bitweise Interpretation }
{ falls >= 0 und < 2^16 : }
{ Bit-Nr. Wert = 0 Wert = 1 }
{============================================================================}
{ 0 statische Spur dynamische Hüllkurve } {00000001h}
{ 1 als Punkte-Serie dargestellt als Spline dargestellt } {00000002h}
{ 2(*) Hüllkurve unterdrücken Hüllkurve darstellen } {00000004h}
{ 3(*) Geradenschar unterdrücken Geradenschar darstellen } {00000008h}
{ falls >= 2^16 : }
{ 16 --- OL ist Gerade } {00010000h}
{ 17 --- OL ist Kreis } {00020000h}
{ 18 --- OL ist Kegelschnitt (???) } {00040000h}
lines : TVector3List;
function DefaultName: WideString; override;
function GetShowLines: Boolean;
procedure SetShowLines(nv: Boolean);
function GetShowCurve: Boolean;
procedure SetShowCurve(nv: Boolean);
procedure RecalculatePointList; override;
procedure DrawIt; override;
procedure HideIt; override;
public
constructor Create (iObjList: TGeoObjListe; GeneratorLn: TGStraightLine);
constructor CreateFromDomData(iObjList: TGeoObjListe; DE: IXMLNode); override;
procedure AfterLoading(FromXML: Boolean); override;
function CreateObjNode(DOMDoc: IXMLDocument): IXMLNode; override;
destructor Destroy; override;
procedure UpdateParams; override;
procedure LoadContextMenuEntriesInto(menu: TPopUpMenu); override;
function GetCoordsFromParam(param: Double; var px, py: Double): Boolean; override;
function GetInfo: String; override;
property ShowLines: Boolean read GetShowLines write SetShowLines;
property ShowCurve: Boolean read GetShowCurve write SetShowCurve;
end;
TGFunktion = class(TGLocLine)
protected
BufTermStr : WideString;
FTerm,
FDerive1 : TTBaum;
FDerivable : Boolean;
FStepCount : Integer;
FCurLen : Double;
function GetTermString: WideString;
function HasSameDataAs(GO: TGeoObj): Boolean; override;
procedure Rescale; override;
procedure SetTermString(nv: WideString);
function DefaultName: WideString; override;
procedure UpdateScreenCoords; override;
public
constructor Create (iObjList: TGeoObjListe; iFunkTerm: WideString);
constructor CreateFromDomData(iObjList: TGeoObjListe; DE: IXMLNode); override;
destructor Destroy; override;
function CreateObjNode(DOMDoc: IXMLDocument): IXMLNode; override;
procedure AfterLoading(FromXML : Boolean = True); override;
function IsCompatibleWith(ClassGroupId: Integer): Boolean; override;
function IsTrigWithBigVariation: Boolean;
function GetCoordsFromParam(param: Double; var px, py: Double): Boolean; override;
function GetParamFromCoords(px, py: Double; var param: Double): Boolean; override;
function GetLinePtWithMinMouseDist(xm, ym, quant: Double; var px, py: Double): Boolean; override;
function GetLinePtWithDistFrom(EP: TGPoint; r: Double; var px, py: Double): Boolean; override;
function Dist(xm, ym: Double): Double; override;
procedure UpdateParams; override;
procedure AutoUpdate; override;
procedure ResetOLCPList(PointList : TVector3List); override;
procedure ResetStepCount;
procedure RebuildTermStrings; override;
procedure LoadContextMenuEntriesInto(menu: TPopUpMenu); override;
function GetTangentIn(bx, by: Double; var tanCoeff: TVector3): Boolean; override;
function GetFunctionValue(x: Double; var y: Double): Boolean;
function GetDerivationValue(x: Double; n: Integer; var y: Double): Boolean;
function GetMaxValueIn(xmin, xmax: Double; var ymax: Double): Boolean;
function GetMinValueIn(xmin, xmax: Double; var ymin: Double): Boolean;
function GetInfo: String; override;
function GetDataStr: String; override;
function GetHTMLString: String;
property IsDerivable: Boolean read FDerivable;
property TermString: WideString read GetTermString write SetTermString;
end;
TGIPolynomFkt = class(TGFunktion)
private
polyGrad : Integer;
polyCoeff : TEquation;
procedure SetNewTermString(nv: WideString);
function Points2Polynom: Boolean;
public
constructor Create (iObjList: TGeoObjListe; iPList: TList<TGPoint>);
procedure AfterLoading(FromXML : Boolean = True); override;
procedure UpdateParams; override;
function GetParentPointOnSelf(nr: Integer): TGPoint; override;
procedure LoadContextMenuEntriesInto(menu: TPopUpMenu); override;
end;
TGIntArea = class(TGArea)
protected
FxA, y1A, y2A,
FxB, y1B, y2B,
FIntVal : Double;
sxli, sxre,
sylio, syreo,
syliu, syreu : Integer;
DoubleBordered : Boolean;
function SetFillHandle: Boolean; virtual;
function DefaultName: WideString; override;
function AllParentsAreEqual(GO: TGeoObj): Boolean;
function HasSameDataAs(GO: TGeoObj): Boolean; override;
procedure UpdateScreenCoords; override;
procedure AdjustGraphTools(todraw : Boolean); override;
procedure DrawLimitLines; override;
procedure DrawIt; override;
procedure HideIt; override;
public
constructor Create (iObjList: TGeoObjListe; iF1, iF2: TGFunktion; iA, iB: TGPoint);
procedure AfterLoading(FromXML : Boolean = True); override;
procedure SaveState; override;
procedure RestoreState; override;
function GetValue(selector: Integer): Double; override;
procedure UpdateParams; override;
function CanBeDragged: Boolean; override;
function GetInfo: String; override;
property Integral: Double read FIntVal;
end;
TGRiemannArea = class(TGIntArea)
protected
FRType : Integer; { "R"iemann-"Typ":
0 : Untersumme
1 : Obersumme }
FIntCount : Integer; { Anzahl der Teil-Intervalle }
FIntCTerm : TTBaum; { Termbaum für den FIntCount-Wert }
Points : Array of TFloatPoint;
IntPtList : Array of TPoint;
function HasSameDataAs(GO: TGeoObj): Boolean; override;
procedure SetRType(newVal: Integer);
procedure SetIntCount(newVal: Integer);
function SetFillHandle: Boolean; override;
function GetIntCountStr: String;
procedure UpdateScreenCoords; override;
procedure DrawLimitLines; override;
public
constructor Create (iObjList: TGeoObjListe; iF1: TGFunktion; iA, iB: TGPoint;
iRType: Integer; iIntCount: String);
constructor CreateFromDomData(iObjList: TGeoObjListe; DE: IXMLNode); override;
destructor Destroy; override;
function CreateObjNode(DOMDoc: IXMLDocument): IXMLNode; override;
procedure AfterLoading(FromXML: Boolean); override;
procedure SaveState; override;
procedure RestoreState; override;
procedure SortSiblings;
procedure LoadContextMenuEntriesInto(menu: TPopupMenu); override;
function HasSibling(var GO: TGeoObj): Boolean;
function CanBeDragged: Boolean; override;
procedure SetNewIntCountTerm(nt: String);
procedure UpdateParams; override;
function GetInfo: String; override;
property Intervals : Integer read FIntCount;
property IntervalStr : String read GetIntCountStr;
property RiemannType : Integer read FRType write SetRType;
end;
implementation
Uses Forms, Math, SysUtils, Declar, GlobVars, GeoConic;
{-------------------------------------------}
{ TGLocLine's Methods Implementation }
{-------------------------------------------}
constructor TGLocLine.Create(iObjList : TGeoObjListe; GeneratorPt: TGPoint);
begin
Inherited Create(iObjList, False); // zunächst unsichtbar erzeugen !
If GeneratorPt <> Nil then
FMyColour := GeneratorPt.MyColour
else
FMyColour := clRed;
MyPenStyle := psSolid;
If Odd(DefLocLineStyle) then
MyLineWidth := 3
else
MyLineWidth := 1;
F_CCTP := True;
If GeneratorPt <> Nil then begin
BecomesChildOf (GeneratorPt);
ParentInitData := TPPInitDataList.Create;
ParentInitData.Insert(0, TPointParams.CreateWithDataFrom(GeneratorPt));
end;
LastDist := 1.0e300;
points := TVector3List.Create;
FOLStatus := -1; // Ermöglicht die punktweise Aufzeichnung der Ortslinie !
FStatus := FStatus or gs_ShowsAlways; // erst hier sichtbar schalten !
end;
constructor TGLocLine.CreateFromI2G(iObjList : TGeoObjListe; GeneratorPt, DraggedObj: TGeoObj; iis_visible: Boolean);
begin
Inherited Create(iObjList, False);
If GeneratorPt <> Nil then
FMyColour := GeneratorPt.MyColour
else
FMyColour := clRed;
MyPenStyle := psSolid;
If Odd(DefLocLineStyle) then
MyLineWidth := 3
else
MyLineWidth := 1;
F_CCTP := True;
BecomesChildOf (DraggedObj);
BecomesChildOf (GeneratorPt);
ParentInitData := TPPInitDataList.Create;
ParentInitData.Insert(0, TPointParams.CreateWithDataFrom(GeneratorPt));
ParentInitData.Insert(0, TPointParams.CreateWithDataFrom(DraggedObj));
LastDist := 1.0e300;
points := TVector3List.Create;
FOLStatus := 3;
FStatus := FStatus or gs_ShowsAlways; // erst hier sichtbar schalten !
end;
constructor TGLocLine.CreateBlueprintOf(GO: TGeoObj; iGeoNum: Integer = -1);
begin
Halt; // Gewaltsamer Abbruch !!
end;
constructor TGLocLine.Load (S: TFileStream; iObjList: TGeoObjListe);
var id, n, i : Integer;
OldTOLPt : TOLPoint;
begin
Inherited Load(S, iObjList);
F_CCTP := True;
FOLStatus := -2; { Markiert die OL als Vers. 1.4, statisch }
Parent.Clear; { Löscht die Parent-Liste komplett }
points := TVector3List.Create;
id := ReadOldIntFromStream(S);
If id = $32 then begin
n := ReadOldIntFromStream(S);
ReadOldIntFromStream(S);
ReadOldIntFromStream(S);
For i := 0 to Pred(n) do begin
id := ReadOldIntFromStream(S); { muß 169 sein ! }
If id = 169 then begin
OldTOLPt := TOLPoint.Load(S);
points.Add(TVector3.Create(OldTOLPt.X, OldTOLPt.Y, 0));
OldTOLPt.Free;
end
else
Raise EStreamError.Create('OrtsLinienPunkt erwartet!');
end;
end
else
Raise EStreamError.Create('PunkteListe erwartet!');
ParentInitData := TPPInitDataList.Create;
end;
constructor TGLocLine.Load32(R: TReader; iObjList: TGeoObjListe);
begin
Inherited Load32(R, iObjList);
F_CCTP := True;
FOLStatus := R.ReadInteger;
points := TVector3List.Load32(R);
R.ReadInteger; { 23.04.03: Die frühere Variable "NameRefPtIndex" wurde ab-
geschafft. Damit ist hier ein Integer-Puffer entstanden. }
ParentInitData := TPPInitDataList.Load32(R);
end;
constructor TGLocLine.CreateFromDomData(iObjList: TGeoObjListe; DE: IXMLNode);
var dompoints : IXMLNode;
ActParent : TGeoObj;
i : Integer;
begin
Inherited CreateFromDomData(iObjList, DE);
F_CCTP := True;
dompoints := DE.childNodes.findNode('points', '');
points := TVector3List.CreateFromString(dompoints.nodeValue);
If ClassType = TGLocLine then begin
ParentInitData := TPPInitDataList.Create;
For i := 0 to Pred(Parent.Count) do begin
ActParent := iObjList.GetObj(Integer(Parent.Items[i]));
If ActParent is TGPoint then
ParentInitData.Add(TPointParams.CreateWithDataFrom(ActParent))
else
ParentInitData.Add(TPointParams.Create);
end;
end;
If DE.hasAttribute('trace_status') then
FOLStatus := StrToInt(DE.getAttribute('trace_status'))
else
if ClassType = TGLocLine then begin
FOLStatus := 0; { Vorsichtshalber: Statische Spur }
IsMakMarked := True; { Nötig ? Später prüfen ! }
end
else
FOLStatus := 7;
end;
procedure TGLocLine.AfterLoading(FromXML: Boolean);
{ 22.06.08 : Fehlermeldung von Magister Johann Winkler: Aufruf von
"ResetParentList" (für Parent.Count > 0) ersatzlos entfernt,
weil er bei bei Ortslinien, die von Strecken fester Länge abhängen, zu
dauernder Ungültigkeit führen konnte: der zweite Streckenendpunkt wurde
nicht mehr in der Elternliste aufgeführt! (Bug-Datei: "vierblatt.geo")
Dieser Fehler war in der Version "3.0 f" noch nicht vorhanden; es
handelte sich also um einen frisch eingbauten "3.1"-Bug, der auch auf
den Viewer durchschlug !
18.08.08 : Fehlermeldung von Elschenbroich/Henn: Ortslinie "mit Sprung"
kann nicht mehr wiederhergestellt werden. Die Ortslinie wird
dauerhaft ungültig! (Bug-Datei: "beispiel-26.geo" von W. Henn [Regen-
bogen]) Daher "ResetParentList" modifiziert (siehe dort!) und den
Aufruf hier wieder eingefügt, so dass nun beide Dateien korrekt
geladen werden können. }
begin
Inherited AfterLoading(FromXML);
If Self.ClassType = TGLocLine then begin
If Parent.Count = 0 then
FOLStatus := -2 // alte statische Spuren !
else
ResetParentList; // Nun doch wieder !
end;
end;
function TGLocLine.CreateObjNode(DOMDoc: IXMLDocument): IXMLNode;
var DOMPos,
DOMPoints : IXMLNode;
s : String;
begin
Result := Inherited CreateObjNode(DOMDoc);
DOMPos := Result.childNodes.findNode('position', '');
Result.childNodes.remove(DOMPos);
Result.setAttribute('trace_status', IntToStr(OLStatus));
DOMPoints := DOMDoc.createNode('points');
s := points.GetContentsString;
DOMPoints.nodeValue := s;
Result.childNodes.add(DOMPoints);
end;
procedure TGLocLine.RebuildPointers;
{ 12.10.2006: Rekonstruktion der Children-Listen aus den Parent-Listen;
spart die Notwendigkeit des Abspeicherns der eigentlich
redundanten Children-Listen ein.
27.11.2006: Bei Ortslinien wird nur in die Kinderliste des
Generatorpunkts eingetragen.
09.04.2008: "Children.Insert(0, Self)" ersetzt durch "Children.Add(Self)"
(Klement-Bug vom 30.03.08: Namensobjekte von Funktionen
tauchten als 2. Eintrag(!) in der Children-Liste auf
statt als 1. Eintrag, wie es der Standard fordert ) }
var i : Integer;
begin
Parent.ResolveGeoNums(ObjList);
If ClassType = TGLocLine then
TGeoObj(Parent.Last).Children.Add(Self)
else
For i := 0 to Pred(Parent.Count) do
TGeoObj(Parent[i]).Children.Add(Self);
end;
function TGLocLine.HasSameDataAs(GO: TGeoObj): Boolean;
begin
Result := (GO.ClassType = Self.ClassType) and
(TGLocLine(GO).IsDynamic and Self.IsDynamic) and
(GO.Parent.Count = Self.Parent.Count) and
((GO.Parent.Count = 0) or
((GO.Parent[0] = Self.Parent[0]) and
(GO.Parent.Last = Self.Parent.Last)));
end;
function TGLocLine.DefaultName: WideString;
begin
Result := ObjList.GetUniqueName('OL');
end;
procedure TGLocLine.RegisterAsMacroStartObject;
begin
TMakro(ObjList.MakroList.Last).MakroStatus := -8;
end;
function TGLocLine.GetIsSpline: Boolean;
begin
Result := (OLStatus >= 0) and
(OLStatus and ols_IsSpline > 0);
end;
procedure TGLocLine.SetIsSpline(flag: Boolean);
{ Wenn bei einer dynamischen Ortslinie IsSpline eingeschaltet wird,
dann wird automatisch auch IsAutomatic eingeschaltet.
Bei Spuren hingegen hat das Setzen von IsAutomatic keinen Erfolg,
weil diese nicht dynamisch sind. }
begin
If flag <> IsSpline then begin
If IsVisible then
HideIt;
If flag then
FOLStatus := OLStatus or ols_IsSpline
else
FOLStatus := OLStatus and Not ols_IsSpline;
If IsVisible then begin
UpdateScreenCoords;
DrawIt;
end;
end;
end;
function TGLocLine.GetIsDynamic: Boolean;
begin
Result := (OLStatus >= 0) and
(OLStatus and ols_IsDynamic > 0);
end;
procedure TGLocLine.SetIsDynamic(flag: Boolean);
{ Wenn für eine Ortslinie IsDynamic eingeschaltet wird,
dann wird auch gleichzeitig IsAutomatic eingeschaltet. }
begin
If flag <> IsDynamic then
If flag then begin
FOLStatus := OLStatus or ols_IsDynamic;
UpdateParams;
end
else begin
IsStraightLine := False;
IsCircle := False;
FOLStatus := OLStatus and Not ols_IsDynamic;
end;
end;
function TGLocLine.GetIsVisible: Boolean;
begin
Result := (Inherited GetIsVisible) and
Assigned(IntPointLists) and
(High(IntPointLists) >= 0);
end;
function TGLocLine.GetStandardLineChild: TGLine;
var i : Integer;
begin
i := 0;
Result := Nil;
While (Result = Nil) and (i < Children.Count) do
If TGeoObj(Children[i]) is TGLine then
Result := TGeoObj(Children[i]) as TGLine
else
Inc(i);
end;
function TGLocLine.GetIsStraightLine: Boolean;
begin
Result := (OLStatus >= 0) and
(OLStatus and ols_IsStraightLine > 0);
end;
procedure TGLocLine.SetIsStraightLine(flag: Boolean);
var ErrNum : Integer;
SL_Child : TGeoObj;
begin
If IsStraightLine <> flag then
If flag then
If IsDynamic then begin
ObjList.InsertObject
(TGOLLongLine.Create(ObjList, Self, True), ErrNum);
FOLStatus := (OLStatus and $0000FFFF) or ols_IsStraightLine;
end
else
{ Nix machen! }
else begin
SL_Child := GetStandardLineChild;
If SL_Child <> Nil then
ObjList.FreeObject(SL_Child);
FOLStatus := OLStatus and $0000FFFF;
ShowsAlways := True;
end;
end;
function TGLocLine.GetIsCircle: Boolean;
begin
Result := (OLStatus >= 0) and
(OLStatus and ols_IsCircle > 0);
end;
procedure TGLocLine.SetIsCircle(flag: Boolean);
var ErrNum : Integer;
SL_Child: TGeoObj;
begin
If IsCircle <> flag then
If flag then
If IsDynamic then begin
ObjList.InsertObject
(TGOLCircle.Create(ObjList, Self, True), ErrNum);
FOLStatus := (OLStatus and $0000FFFF) or ols_IsCircle;
end
else
{ Nix machen! }
else begin
SL_Child := GetStandardLineChild;
If SL_Child <> Nil then
ObjList.FreeObject(SL_Child);
FOLStatus := OLStatus and $0000FFFF;
ShowsAlways := True;
end;
end;
function TGLocLine.GetIsConic: Boolean;
begin
Result := (OLStatus >= 0) and
(OLStatus and ols_IsConic > 0);
end;
procedure TGLocLine.SetIsConic(flag: Boolean);
var ErrNum : Integer;
SL_Child: TGeoObj;
begin
If IsConic <> flag then
If flag then
If IsDynamic then begin
ObjList.InsertObject
(TGOLConic.Create(ObjList, Self, True), ErrNum);
FOLStatus := (OLStatus and $0000FFFF) or ols_IsConic;
end
else
{ Nix machen! }
else begin
SL_Child := GetStandardLineChild;
If SL_Child <> Nil then
ObjList.FreeObject(SL_Child);
FOLStatus := OLStatus and $0000FFFF;
ShowsAlways := True;
end;
end;
function TGLocLine.GetIsStandardLine: Boolean;
begin
Result := (OLStatus and $FFFF0000) > 0;
end;
function TGLocLine.IsReallySpline: Boolean;
var slc : TGLine;
begin
Result := IsSpline;
If IsStandardLine then begin
slc := GetStandardLineChild;
If Assigned(slc) then
Result := slc.DataValid;
end;
end;
procedure TGLocLine.SetNewTempRelationships;
{ Löscht zunächst in allen Punkten der Parent-Liste die
*temporären* Eltern; ist also ein Punkt über eine Strecke
fester Länge an einen anderen gebunden, dann wird eine daraus
resultierende Elternschaft nun (vorübergehend) aufgelöst.
Dies erledigt der Aufruf von TGPoint.SaveState!
Danach werden die Elternschaften für solche Strecken fester
Länge wieder konstruiert, für die beide Endpunkte Eltern der
Ortslinie sind, wobei automatisch auf die richtige Richtung der
Elternschaft geachtet wird: der Elter kommt in der Parent-Liste
stets *vor* dem Kind! }
var i, k : Integer;
XL_P0, XL_P1 : TGPoint;
begin
For i := 0 to Pred(Parent.Count) do
TGeoObj(Parent[i]).SaveState;
For i := 0 to Pred(Parent.Count) do
If TGeoObj(Parent[i]).ClassType = TGPoint then begin
XL_P0 := TGPoint(Parent[i]);
For k := Succ(i) to Pred(Parent.Count) do
If TGeoObj(Parent[k]).ClassType = TGPoint then begin
XL_P1 := TGPoint(Parent[k]);
If ObjList.GetFixLineLength(XL_P0, XL_P1) >= 0 then
XL_P1.BecomesChildOf(XL_P0);
end;
end;
end;
procedure TGLocLine.ResetTempRelationships;
{ Stellt die ursprünglichen temporären Verwandtschaften zwischen
den Punkten der Parent-Liste wieder her, macht also rückgängig,
was von SetTempRelationships eingerichtet wurde. }
var i : Integer;
begin
For i := 0 to Pred(Parent.Count) do
TGeoObj(Parent[i]).RestoreState;
end;
function TGLocLine.GetCoordsFromParam(param: Double; var px, py: Double): Boolean;
var pv : TVector3;
odbm : TGeoObj; { "O"ld "D"ragged "B"y "M"ouse }
i : Integer;
procedure Simulate(v : TVector3);
var i : Integer;
begin
If TGPoint(Parent.First).SetLinePosition(v.z) then begin
For i := 1 to Pred(Parent.Count) do
TGeoObj(Parent[i]).UpdateParams;
With TGPoint(Parent.Last) do
If DataValid then begin
v.x := X;
v.y := Y;
end
else
v.IsValid := False;
end
else
v.IsValid := False;
end;
begin
Result := False;
If ObjList.IsLoading then Exit;
If Parent.IndexOf(ObjList.DraggedObj) >= 0 then begin
odbm := ObjList.DraggedObj;
ObjList.DraggedObj := Nil;
end
else
odbm := Nil;
pv := TVector3.Create(0, 0, param);
try
SetNewTempRelationships;
For i := 0 to Pred(Parent.Count) do
If TGeoObj(Parent[i]) is TGPoint then
TPointParams(ParentInitData[i]).WriteDataTo(Parent[i])
else
TGeoObj(Parent[i]).SaveState;
Simulate(pv);
For i := 0 to Pred(Parent.Count) do
If TGeoObj(Parent[i]) is TGPoint then
TPointParams(ParentInitData[i]).LoadDataFrom(Parent[i])
else
TGeoObj(Parent[i]).RestoreState;
ResetTempRelationships;
If pv.IsValid then begin
px := pv.x;
py := pv.y;
Result := True;
end;
finally
pv.Free;
end;
If odbm <> Nil then
ObjList.DraggedObj := odbm;
end;
function TGLocLine.GetParamFromCoords(px, py: Double; var param: Double): Boolean;
var n, i : Integer;
p : Array[-1..1] of TVector3;
q : Array[ 0..1] of TVector3;
begin
Result := False;
n := points.GetPtIndexNextToXY(px, py);
If n >= 0 then begin
If (n = 0) or (n = Pred(points.Count)) then
param := TVector3(points.Items[n]).z
else begin
For i := -1 to 1 do
p[i] := TVector3(points.Items[n+i]);
For i := 0 to 1 do begin
q[i] := TVector3.Create(0, 0, 0);
GetPedalPoint(p[i-1].X, p[i-1].Y, p[i].X, p[i].Y,
px, py, q[i].X, q[i].Y);
If not GetTV(p[i-1].X, p[i-1].Y, p[i].X, p[i].Y,
q[i].X, q[i].Y, q[i].Z) then
q[i].Z := -1;
end;
If (q[0].z >= 0) and (q[0].z <= 1) then
If (q[1].z >= 0) and (q[1].z <= 1) then
If Hypot(q[0].x - px, q[0].y - py) < Hypot(q[1].x - px, q[1].y - py) then
param := p[-1].z + (p[0].z - p[-1].z) * q[0].z
else
param := p[ 0].z + (p[1].z - p[ 0].z) * q[1].z
else
param := p[-1].z + (p[0].z - p[-1].z) * q[0].z
else
If (q[1].z >= 0) and (q[1].z <= 1) then
param := p[ 0].z + (p[1].z - p[ 0].z) * q[1].z
else
param := p[ 0].z;
For i := 0 to 1 do
q[i].Free;
end;
Result := True;
end;
end;
procedure TGLocLine.ResetOLCPList(PointList : TVector3List);
var DraggedObj : TGParentObj;
CarrierLine : TGLine;
begin
DraggedObj := TGParentObj(Parent.First);
If DraggedObj.IsLineBound(CarrierLine) then
CarrierLine.ResetOLCPList(PointList)
else
Inherited ResetOLCPList(PointList); { Sollte nie passieren ! }
end;
function TGLocLine.Includes(xp, yp: Double): Boolean;
{ Sehr schwache Bedingung wegen der geringen Messgenauigkeit }
begin
Result := Dist(xp, yp) < 1/act_PixelPerXcm;
end;
procedure TGLocLine.ResetParentList;
{ 18.08.2008 : Wegen Bug-Meldung von Elschenbroich/Henn (siehe
TGLocLine.AfterLoading) werden nun mit einem Elternpunkt
auch dessen Freunde (falls es welche gibt) als Ortslinien-Eltern
verbucht (siehe unten [*]. }
var DraggedObj : TGParentObj;
GeneratorPt : TGPoint;
GO : TGeoObj;
i, k : Integer;
begin
If Not IsDynamic then Exit;
DraggedObj := TGParentObj(Parent.First);{ das von der Maus gezogene Objekt }
GeneratorPt := TGPoint(Parent.Last); { der die Ortslinie erzeugende Punkt }
If (DraggedObj <> Nil) and (GeneratorPt <> Nil) then
If DraggedObj <> GeneratorPt then begin
{ Parent-Liste aktualisieren : }
Parent.Clear;
Parent.Add(DraggedObj);
For i := 0 to Pred(ObjList.Count) do begin
GO := TGeoObj(ObjList[i]);
If DraggedObj.IsAncestorOf(GO) and
GO.IsAncestorOf(GeneratorPt) then begin
Parent.Add(GO);
If (GO is TGPoint) and (TGPoint(GO).friends.Count > 0) then // [*]
For k := 0 to Pred(TGPoint(GO).friends.Count) do // [*]
Parent.Add(TGPoint(GO).friends[k]); // [*]
end;
end;
Parent.Add(GeneratorPt);
{ ParentInitData-Liste aktualisieren : }
While ParentInitData.Count > 2 do begin
TPointParams(ParentInitData.Items[1]).Free;
ParentInitData.Delete(1);
end;
For i := Parent.Count - 2 downTo 1 do begin
GO := Parent[i];
If GO is TGPoint then
ParentInitData.Insert(1, TPointParams.CreateWithDataFrom(GO))
else
ParentInitData.Insert(1, TPointParams.Create);
end;
end
else { statische Spur }
If OLStatus > -2 then
FOLStatus := OLStatus and 2
else
{ nix zu tun: es bleibt bei -2 ! }
else
DataValid := False;
end;
procedure TGLocLine.CheckOLState(DraggedObj: TGParentObj);
{ Falls der Zugpunkt *nicht* an eine Linie gebunden ist,
kann die Ortslinie nicht dynamisch sein ! }
begin
If (Parent.Count > 0) and
(Parent.First = DraggedObj) then begin
IsDynamic := False;
UpdateParams;
end;
end;
procedure TGLocLine.UpdateParams;
var DraggedObj : TGParentObj; { dragged object }
GeneratorPt : TGPoint; { generator point }
old_DragObj : TGeoObj; { Puffer für altes gezogenes Objekt }
PtParams : TPointParams;
i : Integer;
begin { of UpdateParams }
If ObjList.IsLoading then Exit;
If (OLStatus = -2) or { Alte 1.4er Ortslinien kriegen kein Update! }
(ObjList.UpdatingLocLine <> nil) then { Andere Ortslinie wird ge-updatet }
Exit;
ObjList.UpdatingLocLine := Self;
GeneratorPt := TGPoint(Parent.Last); { der die Ortslinie erzeugende Punkt }
{ Zu Beginn der Aufzeichnung: }
If OLStatus = -1 then
With ObjList.DragList do begin { Eltern suchen }
i := Pred(Count);
While (i >= 0) and
(Items[i] <> GeneratorPt) do Dec(i);
Dec(i);
While (i >= 0) do begin
If TGeoObj(Items[i]).IsAncestorOf(GeneratorPt) then begin
Parent.Insert(0, Items[i]); { Dies führt automatisch zur logisch
richtigen Reihenfolge, weil die Objekte schon so
geordnet in Drawing.DragList stehen !!! }
If TGeoObj(Items[i]) is TGPoint then
PtParams := TPointParams.CreateWithDataFrom(Items[i])
else
PtParams := TPointParams.Create;
ParentInitData.Insert(0, PtParams);
end;
Dec(i);
end;
DataValid := True;
FOLStatus := 0;
end;
DraggedObj := TGParentObj(Parent.First); { das von der Maus gezogene Objekt }
old_DragObj := ObjList.dragged_by_mouse;
ObjList.dragged_by_mouse := DraggedObj;
{ Während der laufenden Aufzeichnung : }
If (OLStatus <= 0) then
If (OLineMode = 4) and (DraggedObj <> Nil) and
(GeneratorPt <> Nil) and GeneratorPt.DataValid then
points.InsertZSortedWithXYDist(OLMinDist/act_pixelPerXcm,
GeneratorPt.X, GeneratorPt.Y,
DraggedObj.BoundParam)
else
{ Nach der Aufzeichnung der Ortslinie: }
else
If IsDynamic then { Alles neu bauen bei "Dynamischen + automatischen OL" }
RecalculatePointList;
SetNameRefPtCoords;
UpdateScreenCoords;
ObjList.UpdatingLocLine := Nil; { Vorigen Zustand wieder herstellen }
ObjList.dragged_by_mouse := old_DragObj;
end; { of UpdateParams }
procedure TGLocLine.RecalculatePointList;
var DraggedObj : TGParentObj; { dragged object }
CarrierLine : TGLine; { Trägerlinie }
GeneratorPt : TGPoint; { generator point }
old_MousedObj : TGeoObj;
old_MouseDir : TDirection;
i : Integer;
procedure CalculateOLPoint(v : TVector3);
{ v.tag erhält das Ergebnis der Sichtbarkeitsprüfung:
1 wenn v einen Punkt im sichtbaren Fenster beschreibt;
0 wenn v einen unsichtbaren Punkt dicht beim Rand beschreibt;
-1 wenn v einen unsichtbaren Punkt weit entfernt vom Rand angibt;
-2 wenn v einen ungültigen Punkt beschreibt }
var i : Integer;
begin
If DraggedObj.SetLinePosition(v.z) then
try
For i := 1 to Pred(Parent.Count) do
TGeoObj(Parent[i]).UpdateParams;
If GeneratorPt.DataValid then begin
v.x := GeneratorPt.X;
v.y := GeneratorPt.Y;
v.tag := ObjList.LogWinKnows(GeneratorPt.X, GeneratorPt.Y);
end
else
v.IsValid := False;
except
v.IsValid := False;
end
else
v.IsValid := False;
end;
procedure InsertPointsBetween(v0, v1, v2: TVector3);
{ Ergänzt die Punktliste rekursiv um weitere Punkte, so dass die
Richtungsänderung aufeinanderfolgender Punktpaare nicht zu groß
ist. Ein Klon dieser Routine wird in TGConic.FillList() verwendet! }
var vm, vn : TVector3;
dist : Double;
begin
dist := Hypot(v1.X-v0.X, v1.Y-v0.Y) + Hypot(v2.X - v1.X, v2.Y - v1.Y);
If (dist > ObjList.PixelDist * 5) and
(Abs(v2.Z-v0.Z) > ParamEpsilon) and
TooMuchBending(v0, v1, v2) then begin
vm := TVector3.Create(0, 0, (v0.Z + v1.Z)/2);
CalculateOLPoint(vm);
points.InsertZSorted(vm);
vn := TVector3.Create(0, 0, (v1.Z + v2.Z)/2);
CalculateOLPoint(vn);
points.InsertZSorted(vn);
{ 29.11.03 : Auch wenn der neue Punkt nicht für weitere rekursive
Aufrufe verwendet wird, muss er eingefügt werden!
Andernfalls bleibt der Algorithmus hängen! (Grund noch unklar,
aber Effekt zuverlässig reproduzierbar bei Schwebungs-Kurven) }