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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
|
unit typenunit;
{$mode objfpc}{$H+}
interface
uses
sysutils, agg_2D, FPimage, agg_basics, classes, math, mystringlistunit, lowlevelunit, matheunit;
const speicherHappen = 32768; // Anzahl an mit einem Mal zu reservierender Arrayzellen
myInf = 1e12;
feldGroeszenNamen: array[0..9] of string = ('FP','FM','GP','GM','EX','DENS_E','DENS_I','JX','JY','JZ');
// verbosity: longint = 0;
type
tExtraInfos = class;
tKomplexMachModus = (kmmReNull,kmmImNull,kmmPhZuf);
tLowLevelHintergrundAbzugsArt = (haaKeine,haaRandDurchschnitt,haaRandMinimum,haaRandPerzentil,haaMinimum,haaVertikaleMittel);
tHintergrundAbzugsArt = record
art: tLowLevelHintergrundAbzugsArt;
parameter: tExtendedArray;
end;
tIntegrationsRichtung = (irHorizontal,irEinfall,irAusfall);
tLowLevelEntspringModus = (emKein,emHorizontal,emVertikal);
tEntspringModus = record
modus: tLowLevelEntspringModus;
parameter: tExtendedArray;
end;
tGenerischeInputDateiInfo = class // nur zum Vererben gedacht, nie selbst instanziieren!
name,fehlerBehebungsKommando: string;
gamma,groeszenFaktor,
tStart,tStop,xStart,xStop: extended;
genauigkeit: tGenauigkeit;
xSteps,tSiz,t0Abs: longint;
params: tExtraInfos;
constructor create(vorlage: tGenerischeInputDateiInfo); overload;
constructor create; overload;
destructor destroy; override;
function xMin: longint;
function xMax: longint;
function tMin: longint;
function tMax: longint;
end;
tPhaseSpaceInputDateiInfo = class (tGenerischeInputDateiInfo)
constructor create(vorlage: tGenerischeInputDateiInfo); overload;
constructor create; overload;
destructor destroy; override;
end;
tSpaceTimeInputDateiInfo = class (tGenerischeInputDateiInfo)
constructor create(vorlage: tGenerischeInputDateiInfo); overload;
constructor create; overload;
destructor destroy; override;
end;
tTraceInputDateiInfo = class (tGenerischeInputDateiInfo)
spurNummer,feldNummer: longint;
constructor create(vorlage: tGenerischeInputDateiInfo); overload;
constructor create; overload;
destructor destroy; override;
end;
tSergeyInputDateiInfo = class (tGenerischeInputDateiInfo)
feldNummer: longint;
constructor create(vorlage: tGenerischeInputDateiInfo); overload;
constructor create; overload;
destructor destroy; override;
end;
tPipeInputDateiInfo = class (tGenerischeInputDateiInfo)
analysator: string;
bytesPerSample: longint;
Kodierung: tKodierung;
constructor create(vorlage: tGenerischeInputDateiInfo); overload;
constructor create; overload;
destructor destroy; override;
function executable: string;
function parametersText: string;
function analysatorExecutable: string;
function analysatorParametersText: string;
end;
tAndorInputDateiInfo = class (tGenerischeInputDateiInfo)
temperatur,belichtungsZeit,
zyklusZeit,akkumulierteZyklusZeit,
zyklusStapelZeit,pixelAusleseZeit,
verstaerkungADW: extended;
akkumulierteZyklen,datenStart: int64;
detektorTyp,dateiName,xAchsenTitel,
yAchsenTitel,datenTypTitel: string;
detektorGroesze,bildBereichStapel,
rahmenToepfe: tIntPoint;
bildBereich,rahmenBereich: t2x2Longint;
shutterZeit: tExtPoint;
xAchse: array[0..2] of extended;
constructor create(vorlage: tGenerischeInputDateiInfo); overload;
constructor create; overload;
destructor destroy; override;
function detectorSkipLines: int64;
function detectorSkipLines2: int64;
procedure berechneXStop; // aus xStart, xSteps und xAchse[0..2];
end;
tGenerischeInputDateiInfoArray = specialize tArray<tGenerischeInputDateiInfo>;
tInputDateiInfoVorlagen = class
private
_name,_fehlerBehebungsKommando: string;
_gamma,_groeszenFaktor,
_tStart,_tStop,_xStart,_xStop: extended;
_genauigkeit: tGenauigkeit;
_tSiz,_xSteps,_spurNummer,_t0abs,
_bytesPerSample,_feldNummer: longint;
_analysator: string;
_Kodierung: tKodierung;
_params: tExtraInfos;
procedure wFehlerbehebungskommando(f: string);
procedure wName(n: string);
procedure wGamma(g: extended);
procedure wTStart(t: extended);
procedure wTStop(t: extended);
procedure wXStart(x: extended);
procedure wXStop(x: extended);
procedure wGroeszenFaktor(g: extended);
procedure wGenauigkeit(g: tGenauigkeit);
procedure wTSiz(t: longint);
procedure wXSteps(x: longint);
procedure wT0Abs(t: longint);
procedure wSpurNummer(s: longint);
procedure wFeldNummer(f: longint);
procedure wAnalysator(a: string);
procedure wBytesPerSample(b: longint);
procedure wKodierung(k: tKodierung);
procedure wParams(p: tExtraInfos);
public
phaseSpaceVorlage: tPhaseSpaceInputDateiInfo;
spaceTimeVorlage: tSpaceTimeInputDateiInfo;
traceVorlage: tTraceInputDateiInfo;
sergeyVorlage: tSergeyInputDateiInfo;
pipeVorlage: tPipeInputDateiInfo;
andorVorlage: tAndorInputDateiInfo;
property fehlerBehebungsKommando: string
read _fehlerBehebungsKommando
write wFehlerbehebungskommando;
property name: string
read _name
write wName;
property gamma: extended
read _gamma
write wGamma;
property tStart: extended
read _tStart
write wTStart;
property tStop: extended
read _tStop
write wTStop;
property xStart: extended
read _xStart
write wXStart;
property xStop: extended
read _xStop
write wXStop;
property t0Abs: longint
read _t0abs
write wT0Abs;
property groeszenFaktor: extended
read _groeszenFaktor
write wGroeszenFaktor;
property genauigkeit: tGenauigkeit
read _genauigkeit
write wGenauigkeit;
property spurNummer: longint
read _spurNummer
write wSpurNummer;
property feldNummer: longint
read _feldNummer
write wFeldNummer;
property analysator: string
read _analysator
write wAnalysator;
property bytesPerSample: longint
read _bytesPerSample
write wBytesPerSample;
property tSiz: longint
read _tSiz
write wTSiz;
property xSteps: longint
read _xSteps
write wXSteps;
property Kodierung: tKodierung
read _Kodierung
write wKodierung;
property params: tExtraInfos
read _params
write wParams;
function genauigkeitFromStr(s: string): boolean;
function fehlerBehebungsProgramm: string;
function fehlerBehebungsParameter: string;
constructor create;
destructor destroy; override;
end;
tLLBild = record
farben: tRGBArray;
breite,
hoehe: longint;
end;
tFontRenderer = class
private
agg: agg2D_ptr;
public
constructor create(schriftgroesze: longint);
destructor destroy; override;
function rendere(s: string): tLLBild;
end;
pTBeschriftungen = ^tBeschriftungen;
tLage = (lLinks,lOben,lRechts,lUnten);
tFenster = class
procedure testeFensterDurchschnitt(schlussBeiWenigInhalt: boolean);
public
aktiv: boolean;
werte: tExtendedArray;
constructor create;
destructor destroy; override;
procedure berechneWerte(anzWerte: longint; schlussBeiWenigInhalt: boolean = false); virtual; abstract; overload;
function dumpParams: string; dynamic;
end;
tSin2Fenster = class(tFenster)
breite,rand: longint;
constructor create;
procedure berechneWerte(anzWerte: longint; schlussBeiWenigInhalt: boolean = false); override; overload;
function dumpParams: string; override;
end;
tGauszFenster = class(tFenster)
breite: extended;
constructor create;
procedure berechneWerte(anzWerte: longint; schlussBeiWenigInhalt: boolean = false); override; overload;
function dumpParams: string; override;
end;
tVerlaufTeilFenster = class(tFenster)
eps,tMin,tMax: extended;
constructor create;
constructor create(verlauf: tHintergrundAbzugsArt; epsilon: extended);
procedure berechneWerte(anzWerte: longint; schlussBeiWenigInhalt: boolean = false); override; overload;
function dumpParams: string; override;
end;
tBeschriftung = class
private
_inhalt: string;
procedure wInhalt(s: string);
public
lage: tLage;
fontRend: tFontRenderer;
bBreite,bHoehe: longint;
rahmen: boolean;
position: extended;
bild: tLLBild;
property inhalt: string
read _inhalt
write wInhalt;
constructor create;
destructor destroy; override;
function strich: longint;
function links: longint;
function oben: longint;
function rechts: longint;
function unten: longint;
end;
tBeschriftungen = array of tBeschriftung;
tWaveletTyp = (wtSin2,wtFrequenzfenster);
tTransformation = class;
tExtraInfos = class
private
_transformationen: tTransformation;
procedure wTransformationen(tr: tTransformation);
public
maxW,minW,np,beta: extended;
maxP,minP: tInt64Point;
tSiz,xSteps,tSiz_,xSteps_: longint;
istKomplex: boolean;
knownValues: tKnownValues;
constructor create(globaleWerte: tKnownValues); overload;
constructor create(original: tExtraInfos);
destructor destroy; override;
function xStart: extended;
function xStop: extended;
function tStart: extended;
function tStop: extended;
procedure refreshKnownValues;
property transformationen: tTransformation read _transformationen write wTransformationen;
end;
tTransformationArray = array of tTransformation;
tTransformation = class
// eine generische Transformation von Werten oder Koordinaten
// selbst nicht zum Instanziieren gedacht
private
vorgaenger,nachfolger: array of tTransformation;
inXSTS,outXSTS: tIntPoint;
inAchsen,outAchsen: t2x2Extended;
inWMia,outWMia: tExtPoint;
inPMia,outPMia: t2x2Int64;
wmiaExplizit: boolean; // wMia wurde explizit gesetzt
_anzZugehoerigerDaten: longint;
procedure testeAuszerhalb(input, koordinaten: boolean; p: tExtPoint); overload; inline;
procedure testeAuszerhalb(input, koordinaten: boolean; l: tLage; x: extended); overload; inline;
procedure holeInfosVonVorgaengern; virtual;
procedure aktualisiereAchsen; virtual;
procedure aktualisiereXsTs; virtual;
procedure aktualisiereWmia; virtual;
function transformiereKoordinatenEinzeln(const p: tExtPoint; auszerhalbIstFehler: boolean = true): tExtPoint; virtual;
// wie ändert sich die Position eines Punktes (Paradebeispiel: bei Spiegelung: x -> xSteps-1-x)
// ist für p veranwortlich?
function transformiereKoordinatenEinzelnInvers(const p: tExtPoint; auszerhalbIstFehler: boolean = true): tExtPoint; virtual;
// und die inverse Funktion
function transformiereAchseEinzeln(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended; virtual;
// wie ändert sich der Wert der Achse bei der Transformation (Paradebeispiel: bei lambdaZuOmega: x -> 2*pi*c/x)
function transformiereAchseEinzelnInvers(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended; virtual;
// und die inverse Funktion
function transformiereWertEinzeln(const x: extended): extended; virtual;
// wie ändert sich ein Wert
function rXStart: extended;
procedure wXStart(x: extended);
function rXStop: extended;
procedure wXStop(x: extended);
function rTStart: extended;
procedure wTStart(t: extended);
function rTStop: extended;
procedure wTStop(t: extended);
function rWMin: extended;
procedure wWMin(w: extended);
function rWMax: extended;
procedure wWMax(w: extended);
function rPMin: tInt64Point;
procedure wPMin(p: tInt64Point);
function rPMax: tInt64Point;
procedure wPMax(p: tInt64Point);
function rXSteps: longint;
procedure wXSteps(x: longint);
function rTSiz: longint;
procedure wTSiz(t: longint);
public
constructor create;
destructor destroy; override;
procedure fuegeNachfolgerHinzu(tr: tTransformation);
procedure loescheNachfolger(tr: tTransformation);
procedure fuegeVorgaengerHinzu(tr: tTransformation);
procedure loescheVorgaenger(tr: tTransformation);
function wirdGebraucht: boolean;
procedure aktualisiereAlles; // (inkl. Informieren der Nachfolger)
function ersetzeAnfangDurch(tr: tTransformation): boolean;
function beliebigerVorgaenger: tTransformation;
function werBrauchtDas: string;
procedure erhoeheZugehoerigkeitsanzahl;
procedure verringereZugehoerigkeitsanzahl;
property achsen: t2x2Extended read outAchsen;
// wie lauten xStart,xStop,tStart,tStop?
function transformiereKoordinaten(const p: tExtPoint; const tiefe: longint = -1): tExtPoint; overload;
function transformiereKoordinaten(const x,y: longint; const tiefe: longint = -1): tExtPoint; overload;
function transformiereKoordinatenInvers(const p: tExtPoint; const tiefe: longint = -1): tExtPoint;
function wertZuPositionAufAchse(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended; virtual;
function positionAufAchseZuWert(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended; virtual;
function transformiereWert(const x: extended; const tiefe: longint = -1): extended;
property xStepsTSiz: tIntPoint read outXSTS;
property wMia: tExtPoint read outWMia;
property pMia: t2x2Int64 read outPMia;
function dumpParams: string; virtual; overload;
function dumpParams(tiefe: longint): string; overload;
property xStart: extended
read rXStart
write wXStart;
property xStop: extended
read rXStop
write wXStop;
property tStart: extended
read rTStart
write wTStart;
property tStop: extended
read rTStop
write wTStop;
property wMin: extended
read rWMin
write wWMin;
property wMax: extended
read rWMax
write wWMax;
property pMin: tInt64Point
read rPMin
write wPMin;
property pMax: tInt64Point
read rPMax
write wPMax;
property xSteps: longint
read rXSteps
write wXSteps;
property tSiz: longint
read rTSiz
write wTSiz;
end;
tKeineTransformation = class (tTransformation)
// der Beginn einer Transformationskette, z.B. das Laden von Daten
procedure holeInfosVonVorgaengern; override;
function wertZuPositionAufAchse(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended; override;
function positionAufAchseZuWert(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended; override;
end;
tIdentitaet = class (tTransformation)
// nichts ändert sich
constructor create(original: tTransformation);
end;
tUeberlagerung = class (tTransformation)
// die Überlagerung mehrer gleichformatiger Daten, z.B. Linearkombination
constructor create;
procedure addKomponente(tr: tTransformation);
end;
tKoordinatenTransformation = class (tTransformation)
// eine generische Transformation der Koordinaten
// selbst nicht zum Instanziieren gedacht
end;
tFFTTransformation = class (tKoordinatenTransformation)
// repräsentiert die Transformation der Koordinaten bei einer FFT
horizontal,vertikal: boolean;
constructor create; overload;
constructor create(vorg: tTransformation; hor,ver: boolean);
procedure aktualisiereAchsen; override;
// keine Änderung der Positionen, der Werte(skalierung), der Ausdehnung
function wertZuPositionAufAchse(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended; override;
function positionAufAchseZuWert(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended; override;
function dumpParams: string; override;
end;
tSpiegelungsTransformation = class (tKoordinatenTransformation)
// repräsentiert die horizontale Spiegelung der Koordinaten
constructor create;
constructor create(vorg: tTransformation);
function transformiereKoordinatenEinzeln(const p: tExtPoint; auszerhalbIstFehler: boolean = true): tExtPoint; override;
function transformiereKoordinatenEinzelnInvers(const p: tExtPoint; auszerhalbIstFehler: boolean = true): tExtPoint; override;
// keine Änderung der Achsenbegrenzungen, der Werte(skalierung), der Ausdehnung
function dumpParams: string; override;
end;
tKonkreteKoordinatenTransformation = class (tKoordinatenTransformation)
private
// eine konkrete Verzerrung der Koordinaten (linearer + logarithmischer + exponentieller Anteil)
function findeLineareParameter(syntaxTest: boolean; auszenSkala: char; s: string; xScale,yScale: extended; var off,xl,yl: extended; ueberschreiben: boolean; etf: tExprToFloat): boolean;
public
lnInt, // Faktoren in den ln-Argumenten
expExp, // Exponenten der Exponentialfunktionen
lin: t2x2Extended; // Matrix-faktor des Affinanteils
off, // Offset des Affinanteils
lnFak, // Vorfaktoren der Logarithmen
lnOff, // Offset der ln-Argumente
expFak: tExtPoint; // Vorfaktoren der Exponentialfunktionen
constructor create;
function transformiereKoordinatenEinzeln(const p: tExtPoint; auszerhalbIstFehler: boolean = true): tExtPoint; override;
function transformiereKoordinatenEinzelnInvers(const p: tExtPoint; auszerhalbIstFehler: boolean = true): tExtPoint; override;
function initAbbildung(syntaxTest: boolean; s: string; xScale,yScale: extended; etf: tExprToFloat): boolean;
function zielausdehnung: t2x2Longint;
procedure aktualisiereXsTs; override;
// keine Änderung der Achsenbegrenzungen, der Werte(skalierung)
function dumpParams: string; override;
end;
tLineareAchsenVerzerrTransformation = class (tKoordinatenTransformation)
private
procedure aktualisiereAchsen; override;
// keine Änderung der Punkt-Positionen
function transformiereAchseEinzeln(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended; override;
function transformiereAchseEinzelnInvers(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended; override;
// keine Änderung der Werte
public
fak: tExtPoint;
nullen: array['x'..'y'] of boolean;
constructor create;
function dumpParams: string; override;
end;
tGroeszenVerdopplungsTransformation = class (tKoordinatenTransformation)
private
_horizontal,_vertikal: boolean;
procedure wHorizontal(h: boolean);
procedure wVertikal(v: boolean);
public
constructor create;
property horizontal: boolean
read _horizontal
write wHorizontal;
property vertikal: boolean
read _vertikal
write wVertikal;
procedure aktualisiereAchsen; override;
procedure aktualisiereXsTs; override;
// function transformiereKoordinatenEinzeln(const p: tExtPoint; auszerhalbIstFehler: boolean = true): tExtPoint; override; // das ist erst relevant, wenn
// function transformiereKoordinatenEinzelnInvers(const p: tExtPoint; auszerhalbIstFehler: boolean = true): tExtPoint; override; // man _vorne_ Nullen anfügen kann!
// keine Änderung der Werte(skalierung)
function wertZuPositionAufAchse(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended; override;
function positionAufAchseZuWert(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended; override;
function dumpParams: string; override;
end;
tLambdaZuOmegaTransformation = class (tKoordinatenTransformation)
private
_faktor: extended;
_horizontal,_vertikal: boolean;
function transformiereAchseEinzeln(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended; override;
function transformiereAchseEinzelnInvers(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended; override;
procedure wHorizontal(h: boolean);
procedure wVertikal(v: boolean);
public
constructor create; overload;
constructor create(faktor: extended); overload;
property horizontal: boolean
read _horizontal
write wHorizontal;
property vertikal: boolean
read _vertikal
write wVertikal;
function verhaeltnisHorizontal: extended;
function verhaeltnisVertikal: extended;
procedure aktualisiereAchsen; override;
function transformiereKoordinatenEinzeln(const p: tExtPoint; auszerhalbIstFehler: boolean = true): tExtPoint; override;
function transformiereKoordinatenEinzelnInvers(const p: tExtPoint; auszerhalbIstFehler: boolean = true): tExtPoint; override;
// keine Änderung der Werte(skalierung), der Ausdehnung
function dumpParams: string; override;
end;
tKoordinatenAusschnitt = class (tKoordinatenTransformation)
gr: t2x2Longint;
constructor create; overload;
constructor create(vorg: tTransformation; xMin,xMax,tMin,tMax: longint); overload;
procedure aktualisiereXsTs; override;
procedure aktualisiereAchsen; override;
function transformiereKoordinatenEinzeln(const p: tExtPoint; auszerhalbIstFehler: boolean = true): tExtPoint; override;
function transformiereKoordinatenEinzelnInvers(const p: tExtPoint; auszerhalbIstFehler: boolean = true): tExtPoint; override;
// keine Änderung der Werte(skalierung)
function dumpParams: string; override;
end;
tFitTransformation = class(tKoordinatenTransformation)
private
_senkrecht: boolean;
_adLaenge: longint;
_adStao: tExtPoint;
public
constructor create(daten: tTransformation; senkrecht: boolean; adLaenge: longint; adStart,adStop: extended);
procedure aktualisiereXsTs; override;
procedure aktualisiereAchsen; override;
// keine Änderung der Werte(skalierung)
function wertZuPositionAufAchse(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended; override;
function positionAufAchseZuWert(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended; override;
function dumpParams: string; override;
end;
tAgglomeration = class (tKoordinatenTransformation)
private
_nullposition: extended;
function rNullposition: extended;
procedure wNullposition(n: extended);
public
schritt: extended;
horizontal: boolean;
constructor create;
procedure holeInfosVonVorgaengern; override;
procedure addKomponente(tr: tTransformation);
procedure aktualisiereXsTs; override;
procedure aktualisiereAchsen; override;
// keine Änderung der Werte(skalierung)
function wertZuPositionAufAchse(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended; override;
function positionAufAchseZuWert(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended; override;
property nullposition: extended read rNullposition write wNullposition;
function dumpParams: string; override;
end;
tDiagonaleAgglomeration = class (tKoordinatenTransformation)
function datenRichtung: char; inline;
public
constructor create(vorg: tTransformation);
procedure holeInfosVonVorgaengern; override;
procedure aktualisiereXsTs; override;
procedure aktualisiereAchsen; override;
// keine Änderung der Werte(skalierung)
function wertZuPositionAufAchse(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended; override;
function positionAufAchseZuWert(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended; override;
function dumpParams: string; override;
end;
tBearbeitungstyp = (btUnbekannt,btKnick,btLog,btAbsLog,btAbs);
tWerteTransformation = class (tTransformation)
// eine generische Transformation der Werte
// selbst nicht zum Instanziieren gedacht
end;
tWerteKnickTransformation = class (tWerteTransformation)
// Werte knicken
parameter: tExtendedArray;
constructor create; overload;
destructor destroy; override;
function transformiereWertEinzeln(const x: extended): extended; override;
// keine Änderung der Achsenbegrenzungen, der Positionen, der Ausdehnung
function dumpParams: string; override;
end;
tWerteLogTransformation = class (tWerteTransformation)
// Werte logarithmieren
logMin: extended;
constructor create; overload;
function transformiereWertEinzeln(const x: extended): extended; override;
// keine Änderung der Achsenbegrenzungen, der Positionen, der Ausdehnung
function dumpParams: string; override;
end;
tWerteLogAbsTransformation = class (tWerteTransformation)
// Wertebeträge logarithmieren
logSkala: extended;
constructor create; overload;
function transformiereWertEinzeln(const x: extended): extended; override;
// keine Änderung der Achsenbegrenzungen, der Positionen, der Ausdehnung
function dumpParams: string; override;
end;
tWerteAbsTransformation = class (tWerteTransformation)
// Werte betragen
constructor create;
function transformiereWertEinzeln(const x: extended): extended; override;
// keine Änderung der Achsenbegrenzungen, der Positionen, der Ausdehnung
function dumpParams: string; override;
end;
function liesTWerteTransformationen(sT: boolean; s: string; f: tMyStringList; etf: tExprToFloat; var tr: tTransformation): boolean;
procedure zerstoereTransformationWennObsolet(tr: tTransformation);
function dreheLagePositiv(l: tLage): tLage; inline;
function stringToTHintergrundAbzugsArt(s: string; sT: boolean; kvs: tKnownValues; cbgv: tCallBackGetValue; out hintergrundAbzugsArt: tHintergrundAbzugsArt): boolean;
function tHintergrundAbzugsArtToStr(hintergrundAbzugsArt: tHintergrundAbzugsArt): string;
function strToTEntspringModus(s: string; sT: boolean; kvs: tKnownValues; cbgv: tCallBackGetValue; out entspringModus: tEntspringModus): boolean;
function tEntspringModusToStr(entspringModus: tEntspringModus): string;
const
paralleleRichtung: array[tLage] of char = ('y','x','y','x');
senkrechteRichtung: array[tLage] of char = ('x','y','x','y');
implementation
// tGenerischeInputDateiInfo ***************************************************
constructor tGenerischeInputDateiInfo.create(vorlage: tGenerischeInputDateiInfo);
begin
inherited create;
fillChar(name,sizeOf(name),#0);
name:=vorlage.name;
fillChar(fehlerBehebungsKommando,sizeOf(fehlerBehebungsKommando),#0);
fehlerBehebungsKommando:=vorlage.fehlerBehebungsKommando;
gamma:=vorlage.gamma;
groeszenFaktor:=vorlage.groeszenFaktor;
genauigkeit:=vorlage.genauigkeit;
tSiz:=vorlage.tSiz;
xSteps:=vorlage.xSteps;
tStart:=vorlage.tStart;
tStop:=vorlage.tStop;
xStart:=vorlage.xStart;
xStop:=vorlage.xStop;
params:=vorlage.params;
t0Abs:=vorlage.t0Abs;
end;
constructor tGenerischeInputDateiInfo.create;
begin
inherited create;
fillChar(name,sizeOf(name),#0);
name:='';
fillChar(fehlerBehebungsKommando,sizeOf(fehlerBehebungsKommando),#0);
fehlerBehebungsKommando:='';
gamma:=1;
groeszenFaktor:=1;
genauigkeit:=gSingle;
tSiz:=-1;
t0Abs:=-1;
xSteps:=-1;
tStart:=-myInf;
tStop:=myInf;
xStart:=-myInf;
xStop:=myInf;
params:=nil;
end;
destructor tGenerischeInputDateiInfo.destroy;
begin
name:='';
fehlerBehebungsKommando:='';
inherited destroy;
end;
function tGenerischeInputDateiInfo.xMin: longint;
begin
result:=0;
if assigned(params) and (params.xSteps>1) and (xStart > params.xStart + result/(params.xSteps-1)*(params.xStop-params.xStart)) then
result:=min(xSteps-1,round((xStart-params.xStart)/(params.xStop-params.xStart)/(params.xSteps-1)));
end;
function tGenerischeInputDateiInfo.xMax: longint;
begin
result:=xSteps-1;
if assigned(params) and (params.xSteps>1) and (xStop < params.xStart + result/(params.xSteps-1)*(params.xStop-params.xStart)) then
result:=max(0,round((xStop-params.xStart)/(params.xStop-params.xStart)/(params.xSteps-1)));
end;
function tGenerischeInputDateiInfo.tMin: longint;
begin
result:=t0Abs;
if assigned(params) and (params.tSiz>1) and (tStart > params.tStart + result/(params.tSiz-1)*(params.tStop-params.tStart)) then
result:=round((tStart-params.tStart)/(params.tStop-params.tStart)/(params.tSiz-1));
result:=min(tSiz-1,max(0,result-t0Abs));
end;
function tGenerischeInputDateiInfo.tMax: longint;
begin
result:=t0Abs+tSiz-1;
if assigned(params) and (params.tSiz>1) and (tStop < params.tStart + result/(params.tSiz-1)*(params.tStop-params.tStart)) then
result:=round((tStop-params.tStart)/(params.tStop-params.tStart)/(params.tSiz-1));
result:=min(tSiz-1,max(0,result-t0Abs));
end;
// tPhaseSpaceInputDateiInfo ****************************************************
constructor tPhaseSpaceInputDateiInfo.create(vorlage: tGenerischeInputDateiInfo);
begin
inherited create(vorlage);
end;
constructor tPhaseSpaceInputDateiInfo.create;
begin
inherited create;
end;
destructor tPhaseSpaceInputDateiInfo.destroy;
begin
inherited destroy;
end;
// tSpaceTimeInputDateiInfo ****************************************************
constructor tSpaceTimeInputDateiInfo.create(vorlage: tGenerischeInputDateiInfo);
begin
inherited create(vorlage);
end;
constructor tSpaceTimeInputDateiInfo.create;
begin
inherited create;
end;
destructor tSpaceTimeInputDateiInfo.destroy;
begin
inherited destroy;
end;
// tTraceInputDateiInfo ********************************************************
constructor tTraceInputDateiInfo.create(vorlage: tGenerischeInputDateiInfo);
begin
inherited create(vorlage);
if vorlage is tTraceInputDateiInfo then begin
spurNummer:=(vorlage as tTraceInputDateiInfo).spurNummer;
feldNummer:=(vorlage as tTraceInputDateiInfo).feldNummer;
end
else begin
spurNummer:=0;
feldNummer:=0;
end;
end;
constructor tTraceInputDateiInfo.create;
begin
inherited create;
spurNummer:=0;
feldNummer:=0;
end;
destructor tTraceInputDateiInfo.destroy;
begin
inherited destroy;
end;
// tSergeyInputDateiInfo *******************************************************
constructor tSergeyInputDateiInfo.create(vorlage: tGenerischeInputDateiInfo);
begin
inherited create(vorlage);
if vorlage is tSergeyInputDateiInfo then
feldNummer:=(vorlage as tSergeyInputDateiInfo).feldNummer
else
feldNummer:=0;
end;
constructor tSergeyInputDateiInfo.create;
begin
inherited create;
feldNummer:=0;
end;
destructor tSergeyInputDateiInfo.destroy;
begin
inherited destroy;
end;
// tPipeInputDateiInfo *********************************************************
constructor tPipeInputDateiInfo.create(vorlage: tGenerischeInputDateiInfo);
begin
inherited create(vorlage);
fillChar(analysator,sizeOf(analysator),#0);
if vorlage is tPipeInputDateiInfo then begin
analysator:=(vorlage as tPipeInputDateiInfo).analysator;
bytesPerSample:=(vorlage as tPipeInputDateiInfo).bytesPerSample;
Kodierung:=(vorlage as tPipeInputDateiInfo).Kodierung;
end
else begin
analysator:='/usr/bin/soxi -';
bytesPerSample:=-1;
Kodierung:=kUnbekannt;
end;
end;
constructor tPipeInputDateiInfo.create;
begin
inherited create;
fillChar(analysator,sizeOf(analysator),#0);
analysator:='/usr/bin/soxi -';
bytesPerSample:=-1;
Kodierung:=kUnbekannt;
end;
destructor tPipeInputDateiInfo.destroy;
begin
analysator:='';
inherited destroy;
end;
function tPipeInputDateiInfo.executable: string;
begin
result:=leftStr(name,pos(' ',name+' ')-1);
end;
function tPipeInputDateiInfo.parametersText: string;
begin
result:=copy(name,pos(' ',name+' ')+1,length(name));
while pos(' ',result)>0 do
result[pos(' ',result)]:=#13;
end;
function tPipeInputDateiInfo.analysatorExecutable: string;
begin
result:=leftStr(analysator,pos(' ',analysator+' ')-1);
end;
function tPipeInputDateiInfo.analysatorParametersText: string;
begin
result:=copy(analysator,pos(' ',analysator+' ')+1,length(analysator));
while pos(' ',result)>0 do
result[pos(' ',result)]:=#13;
end;
// tAndorInputDateiInfo *******************************************************
constructor tAndorInputDateiInfo.create(vorlage: tGenerischeInputDateiInfo);
begin
inherited create(vorlage);
if vorlage is tAndorInputDateiInfo then begin
temperatur:=(vorlage as tAndorInputDateiInfo).temperatur;
belichtungsZeit:=(vorlage as tAndorInputDateiInfo).belichtungsZeit;
zyklusZeit:=(vorlage as tAndorInputDateiInfo).zyklusZeit;
akkumulierteZyklusZeit:=(vorlage as tAndorInputDateiInfo).akkumulierteZyklusZeit;
akkumulierteZyklen:=(vorlage as tAndorInputDateiInfo).akkumulierteZyklen;
zyklusStapelZeit:=(vorlage as tAndorInputDateiInfo).zyklusStapelZeit;
pixelAusleseZeit:=(vorlage as tAndorInputDateiInfo).pixelAusleseZeit;
verstaerkungADW:=(vorlage as tAndorInputDateiInfo).verstaerkungADW;
detektorTyp:=(vorlage as tAndorInputDateiInfo).detektorTyp;
dateiName:=(vorlage as tAndorInputDateiInfo).dateiName;
detektorGroesze:=(vorlage as tAndorInputDateiInfo).detektorGroesze;
shutterZeit:=(vorlage as tAndorInputDateiInfo).shutterZeit;
xAchsenTitel:=(vorlage as tAndorInputDateiInfo).xAchsenTitel;
yAchsenTitel:=(vorlage as tAndorInputDateiInfo).yAchsenTitel;
datenTypTitel:=(vorlage as tAndorInputDateiInfo).datenTypTitel;
bildBereichStapel:=(vorlage as tAndorInputDateiInfo).bildBereichStapel;
rahmenToepfe:=(vorlage as tAndorInputDateiInfo).rahmenToepfe;
bildBereich:=(vorlage as tAndorInputDateiInfo).bildBereich;
rahmenBereich:=(vorlage as tAndorInputDateiInfo).rahmenBereich;
end
else begin
temperatur:=0;
belichtungsZeit:=0;
zyklusZeit:=0;
akkumulierteZyklusZeit:=0;
akkumulierteZyklen:=0;
zyklusStapelZeit:=0;
pixelAusleseZeit:=0;
verstaerkungADW:=1;
detektorTyp:='unbekannt';
dateiName:='';
detektorGroesze:=intPoint(0,0);
shutterZeit:=extPoint(0,0);
xAchsenTitel:='';
yAchsenTitel:='';
datenTypTitel:='';
bildBereichStapel:=intPoint(0,0);
rahmenToepfe:=intPoint(0,0);
bildBereich:=_2x2Longint(0,0,0,0);
rahmenBereich:=_2x2Longint(0,0,0,0);
end;
end;
constructor tAndorInputDateiInfo.create;
begin
inherited create;
temperatur:=0;
belichtungsZeit:=0;
zyklusZeit:=0;
akkumulierteZyklusZeit:=0;
akkumulierteZyklen:=0;
zyklusStapelZeit:=0;
pixelAusleseZeit:=0;
verstaerkungADW:=1;
detektorTyp:='unbekannt';
dateiName:='';
detektorGroesze:=intPoint(0,0);
shutterZeit:=extPoint(0,0);
xAchsenTitel:='';
yAchsenTitel:='';
datenTypTitel:='';
bildBereichStapel:=intPoint(0,0);
rahmenToepfe:=intPoint(0,0);
bildBereich:=_2x2Longint(0,0,0,0);
rahmenBereich:=_2x2Longint(0,0,0,0);
end;
destructor tAndorInputDateiInfo.destroy;
begin
detektorTyp:='';
dateiName:='';
inherited destroy;
end;
function tAndorInputDateiInfo.detectorSkipLines: int64;
begin
result:=8; // 15; // woher stammt diese Zahl???
if pos('Luc',detektorTyp)>0 then
result:=result+2;
if (detektorTyp='DU920P_BR,DD') or
(detektorTyp='DV436') then
result:=result+10;
end;
function tAndorInputDateiInfo.detectorSkipLines2: int64;
begin
result:=6;
if detektorTyp='DV436' then
result:=result-1;
end;
procedure tAndorInputDateiInfo.berechneXStop;
var
j: integer;
begin
xStop:=0;
for j:=2 downto 0 do
xStop:=(xStop + xAchse[j])*xSteps;
xStop:=xStop+xStart; // der xStep-ste Punkt
xStart:=xStart+(xStop-xStart)/xSteps; // der 1. Punkt (und nicht der 0.)!
end;
// tInputDateiInfoVorlagen *****************************************************
constructor tInputDateiInfoVorlagen.create;
begin
inherited create;
phaseSpaceVorlage:=tPhaseSpaceInputDateiInfo.create;
spaceTimeVorlage:=tSpaceTimeInputDateiInfo.create;
traceVorlage:=tTraceInputDateiInfo.create;
sergeyVorlage:=tSergeyInputDateiInfo.create;
pipeVorlage:=tPipeInputDateiInfo.create;
andorVorlage:=tAndorInputDateiInfo.create;
fillChar(_name,sizeOf(_name),#0);
name:=spaceTimeVorlage.name;
fillChar(_fehlerBehebungsKommando,sizeOf(_fehlerBehebungsKommando),#0);
fehlerBehebungsKommando:=spaceTimeVorlage.fehlerBehebungsKommando;
gamma:=spaceTimeVorlage.gamma;
groeszenFaktor:=spaceTimeVorlage.groeszenFaktor;
genauigkeit:=spaceTimeVorlage.genauigkeit;
_tSiz:=spaceTimeVorlage.tSiz;
_xSteps:=spaceTimeVorlage.xSteps;
spurNummer:=traceVorlage.spurNummer;
feldNummer:=traceVorlage.feldNummer;
fillChar(_analysator,sizeOf(_analysator),#0);
analysator:=pipeVorlage.analysator;
_bytesPerSample:=pipeVorlage.bytesPerSample;
_Kodierung:=pipeVorlage.Kodierung;
_tStart:=spaceTimeVorlage.tStart;
_tStop:=spaceTimeVorlage.tStop;
_xStart:=spaceTimeVorlage.xStart;
_xStop:=spaceTimeVorlage.xStop;
_t0abs:=spaceTimeVorlage.t0Abs;
end;
destructor tInputDateiInfoVorlagen.destroy;
begin
phaseSpaceVorlage.free;
spaceTimeVorlage.free;
traceVorlage.free;
sergeyVorlage.free;
pipeVorlage.free;
andorVorlage.free;
_name:='';
_fehlerBehebungsKommando:='';
_analysator:='';
inherited destroy;
end;
procedure tInputDateiInfoVorlagen.wFehlerbehebungskommando(f: string);
begin
_fehlerBehebungsKommando:=f;
phaseSpaceVorlage.fehlerBehebungsKommando:=f;
spaceTimeVorlage.fehlerBehebungsKommando:=f;
traceVorlage.fehlerBehebungsKommando:=f;
sergeyVorlage.fehlerBehebungsKommando:=f;
pipeVorlage.fehlerBehebungsKommando:=f;
andorVorlage.fehlerBehebungsKommando:=f;
end;
procedure tInputDateiInfoVorlagen.wName(n: string);
begin
_name:=n;
phaseSpaceVorlage.name:=n;
spaceTimeVorlage.name:=n;
traceVorlage.name:=n;
sergeyVorlage.name:=n;
pipeVorlage.name:=n;
andorVorlage.name:=n;
end;
procedure tInputDateiInfoVorlagen.wGamma(g: extended);
begin
_gamma:=g;
phaseSpaceVorlage.gamma:=g;
spaceTimeVorlage.gamma:=g;
traceVorlage.gamma:=g;
sergeyVorlage.gamma:=g;
pipeVorlage.gamma:=g;
end;
procedure tInputDateiInfoVorlagen.wTStart(t: extended);
begin
_tStart:=t;
phaseSpaceVorlage.tStart:=t;
spaceTimeVorlage.tStart:=t;
traceVorlage.tStart:=t;
sergeyVorlage.tStart:=t;
pipeVorlage.tStart:=t;
andorVorlage.tStart:=t;
end;
procedure tInputDateiInfoVorlagen.wTStop(t: extended);
begin
_tStop:=t;
phaseSpaceVorlage.tStop:=t;
spaceTimeVorlage.tStop:=t;
traceVorlage.tStop:=t;
sergeyVorlage.tStop:=t;
pipeVorlage.tStop:=t;
andorVorlage.tStop:=t;
end;
procedure tInputDateiInfoVorlagen.wXStart(x: extended);
begin
_xStart:=x;
phaseSpaceVorlage.xStart:=x;
spaceTimeVorlage.xStart:=x;
traceVorlage.xStart:=x;
sergeyVorlage.xStart:=x;
pipeVorlage.xStart:=x;
andorVorlage.xStart:=x;
end;
procedure tInputDateiInfoVorlagen.wXStop(x: extended);
begin
_xStop:=x;
phaseSpaceVorlage.xStop:=x;
spaceTimeVorlage.xStop:=x;
traceVorlage.xStop:=x;
sergeyVorlage.xStop:=x;
pipeVorlage.xStop:=x;
andorVorlage.xStop:=x;
end;
procedure tInputDateiInfoVorlagen.wT0Abs(t: longint);
begin
_t0abs:=t;
phaseSpaceVorlage.t0Abs:=t;
spaceTimeVorlage.t0Abs:=t;
traceVorlage.t0Abs:=t;
sergeyVorlage.t0Abs:=t;
pipeVorlage.t0Abs:=t;
andorVorlage.t0Abs:=t;
end;
procedure tInputDateiInfoVorlagen.wGroeszenFaktor(g: extended);
begin
_groeszenFaktor:=g;
phaseSpaceVorlage.groeszenFaktor:=g;
spaceTimeVorlage.groeszenFaktor:=g;
traceVorlage.groeszenFaktor:=g;
sergeyVorlage.groeszenFaktor:=g;
pipeVorlage.groeszenFaktor:=g;
end;
procedure tInputDateiInfoVorlagen.wGenauigkeit(g: tGenauigkeit);
begin
_genauigkeit:=g;
phaseSpaceVorlage.genauigkeit:=g;
spaceTimeVorlage.genauigkeit:=g;
traceVorlage.genauigkeit:=g;
sergeyVorlage.genauigkeit:=g;
pipeVorlage.genauigkeit:=g;
andorVorlage.genauigkeit:=g;
end;
procedure tInputDateiInfoVorlagen.wTSiz(t: longint);
begin
_tSiz:=t;
phaseSpaceVorlage.tSiz:=t;
spaceTimeVorlage.tSiz:=t;
traceVorlage.tSiz:=t;
sergeyVorlage.tSiz:=t;
pipeVorlage.tSiz:=t;
andorVorlage.tSiz:=t;
end;
procedure tInputDateiInfoVorlagen.wXSteps(x: longint);
begin
_xSteps:=x;
phaseSpaceVorlage.xSteps:=x;
spaceTimeVorlage.xSteps:=x;
traceVorlage.xSteps:=x;
sergeyVorlage.xSteps:=x;
pipeVorlage.xSteps:=x;
andorVorlage.xSteps:=x;
end;
procedure tInputDateiInfoVorlagen.wSpurNummer(s: longint);
begin
_spurNummer:=s;
traceVorlage.spurNummer:=s;
end;
procedure tInputDateiInfoVorlagen.wFeldNummer(f: longint);
begin
_feldNummer:=f;
traceVorlage.feldNummer:=f;
sergeyVorlage.feldNummer:=f;
end;
procedure tInputDateiInfoVorlagen.wAnalysator(a: string);
begin
_analysator:=a;
pipeVorlage.analysator:=a;
end;
procedure tInputDateiInfoVorlagen.wBytesPerSample(b: longint);
begin
_bytesPerSample:=b;
pipeVorlage.bytesPerSample:=b;
end;
procedure tInputDateiInfoVorlagen.wKodierung(k: tKodierung);
begin
_Kodierung:=k;
pipeVorlage.Kodierung:=k;
end;
function tInputDateiInfoVorlagen.genauigkeitFromStr(s: string): boolean;
begin
result:=strToGen(_genauigkeit,s);
genauigkeit:=_genauigkeit;
end;
function tInputDateiInfoVorlagen.fehlerBehebungsProgramm: string;
begin
result:=copy(fehlerBehebungsKommando,1,pos(' ',fehlerBehebungsKommando+' ')-1);
end;
function tInputDateiInfoVorlagen.fehlerBehebungsParameter: string;
begin
result:=copy(fehlerBehebungsKommando,pos(' ',fehlerBehebungsKommando+' ')+1,length(fehlerBehebungsKommando));
end;
procedure tInputDateiInfoVorlagen.wParams(p: tExtraInfos);
begin
_params:=p;
phaseSpaceVorlage.params:=p;
spaceTimeVorlage.params:=p;
traceVorlage.params:=p;
sergeyVorlage.params:=p;
pipeVorlage.params:=p;
andorVorlage.params:=p;
end;
// tFenster ********************************************************************
constructor tFenster.create;
begin
inherited create;
setLength(werte,0);
aktiv:=false;
end;
destructor tFenster.destroy;
begin
setLength(werte,0);
inherited destroy;
end;
procedure tFenster.testeFensterDurchschnitt(schlussBeiWenigInhalt: boolean);
var
fenAvg: extended;
i: longint;
begin
fenAvg:=0;
for i:=0 to length(werte)-1 do
fenAvg:=fenAvg+werte[i];
fenAvg:=fenAvg/length(werte);
if fenAvg<0.5 then begin
if schlussBeiWenigInhalt then
fehler('Sehr geringer Fensterdurchschnitt: '+floatToStr(fenAvg)+' ('+dumpParams+')!')
else
gibAus('Sehr geringer Fensterdurchschnitt: '+floatToStr(fenAvg)+' ('+dumpParams+')! Ich mache aber trotzdem weiter.',3);
end;
end;
function tFenster.dumpParams: string;
begin
result:=intToStr(length(werte))+' Werte ';
if not aktiv then
result:=result+'in';
result:=result+'aktiv';
end;
// tSin2Fenster ****************************************************************
constructor tSin2Fenster.create;
begin
inherited create;
breite:=0;
rand:=0;
end;
procedure tSin2Fenster.berechneWerte(anzWerte: longint; schlussBeiWenigInhalt: boolean);
var
i: integer;
begin
setLength(werte,anzWerte);
for i:=0 to length(werte)-1 do begin
if 2*i < anzWerte - breite - rand then begin
werte[i]:=0;
continue;
end;
if 2*i < anzWerte - breite + rand then begin
werte[i]:=sqr(sin((2*i - anzWerte + breite + rand)/2/rand * pi/2));
continue;
end;
if 2*i < anzWerte + breite - rand then begin
werte[i]:=1;
continue;
end;
if 2*i < anzWerte + breite + rand then begin
werte[i]:=sqr(sin((anzWerte + breite + rand - 2*i)/2/rand * pi/2));
continue;
end;
werte[i]:=0;
end;
testeFensterDurchschnitt(schlussBeiWenigInhalt);
end;
function tSin2Fenster.dumpParams: string;
begin
result:=
'Breite: '+intToStr(breite)+', '+
'Rand: '+intToStr(rand)+', '+
inherited dumpParams;
end;
// tGauszFenster ***************************************************************
constructor tGauszFenster.create;
begin
inherited create;
breite:=0;
end;
procedure tGauszFenster.berechneWerte(anzWerte: longint; schlussBeiWenigInhalt: boolean = false);
var
i: integer;
begin
setLength(werte,anzWerte);
for i:=0 to length(werte)-1 do
werte[i]:=power(2,-sqr(2*(i-anzWerte/2)/breite));
testeFensterDurchschnitt(schlussBeiWenigInhalt);
end;
function tGauszFenster.dumpParams: string;
begin
result:=
'Breite: '+floattostrtrunc(breite,2,true)+', '+
'Rand: '+intToStr(rand)+', '+
inherited dumpParams;
end;
// tVerlaufTeilFenster *********************************************************
constructor tVerlaufTeilFenster.create;
begin
fehler('tVerlaufTeilFenster ohne Verlauf kreiert!');
end;
constructor tVerlaufTeilFenster.create(verlauf: tHintergrundAbzugsArt; epsilon: extended);
begin
inherited create;
if (verlauf.art<>haaVertikaleMittel) or
(length(verlauf.parameter)<>2) then
fehler('tVerlaufTeilFenster mit ungültigem Verlauf kreiert - ich brauche haaVertikaleMittel!');
eps:=epsilon;
tMin:=verlauf.parameter[0];
tMax:=verlauf.parameter[1];
end;
procedure tVerlaufTeilFenster.berechneWerte(anzWerte: longint; schlussBeiWenigInhalt: boolean = false);
begin
if anzWerte>length(werte) then
fehler('tVerlaufTeilFenster kann keine neuen Werte berechnen - ich soll aus '+intToStr(length(werte))+' Werten '+intToStr(anzWerte)+' Werte machen!');
setLength(werte,anzWerte);
testeFensterDurchschnitt(schlussBeiWenigInhalt);
end;
function tVerlaufTeilFenster.dumpParams: string;
begin
result:=
'tMin: '+myFloatToStr(tMin)+', '+
'tMax: '+myFloatToStr(tMax)+', '+
'eps: '+myFloatToStr(eps)+', '+
inherited dumpParams;
end;
// tBeschriftung ***************************************************************
constructor tBeschriftung.create;
begin
inherited create;
_inhalt:='';
end;
destructor tBeschriftung.destroy;
begin
_inhalt:='';
inherited destroy;
end;
function tBeschriftung.strich: longint;
begin
result:=round(position);
end;
function tBeschriftung.links: longint;
begin
case lage of
lOben,lUnten: result:=strich-(bild.breite div 2);
lLinks: result:=-bild.breite-4-byte(rahmen);
lRechts: result:=bBreite+3+byte(rahmen);
end{of Case};
end;
function tBeschriftung.oben: longint;
begin
case lage of
lLinks,lRechts: result:=strich-(bild.hoehe div 2);
lUnten: result:=-bild.hoehe-4-byte(rahmen);
lOben: result:=bHoehe+3+byte(rahmen);
end{of Case};
end;
function tBeschriftung.rechts: longint;
begin
result:=links+bild.breite-1;
end;
function tBeschriftung.unten: longint;
begin
result:=oben+bild.hoehe-1;
end;
procedure tBeschriftung.wInhalt(s: string);
begin
_inhalt:=s;
bild:=fontRend.rendere(_inhalt);
end;
// tExtraInfos *****************************************************************
constructor tExtraInfos.create(globaleWerte: tKnownValues);
begin
inherited create;
maxW:=1;
minW:=0;
maxP:=int64Point(-1,-1);
minP:=int64Point(-1,-1);
transformationen:=tTransformation.create;
transformationen.erhoeheZugehoerigkeitsanzahl;
np:=1;
beta:=0;
tSiz:=0;
xSteps:=0;
tSiz_:=0;
xSteps_:=0;
istKomplex:=false;
knownValues:=tKnownValues.create(globaleWerte);
end;
constructor tExtraInfos.create(original: tExtraInfos);
begin
inherited create;
maxW:=original.maxW;
minW:=original.minW;
maxP:=original.maxP;
minP:=original.minP;
transformationen:=tIdentitaet.create(original.transformationen);
np:=original.np;
beta:=original.beta;
tSiz:=original.tSiz;
xSteps:=original.xSteps;
tSiz_:=original.tSiz_;
xSteps_:=original.xSteps_;
istKomplex:=original.istKomplex;
knownValues:=tKnownValues.createFromOriginal(original.knownValues);
end;
destructor tExtraInfos.destroy;
begin
knownValues.free;
if assigned(_transformationen) then begin
_transformationen.verringereZugehoerigkeitsanzahl;
zerstoereTransformationWennObsolet(_transformationen);
end;
inherited destroy;
end;
procedure tExtraInfos.wTransformationen(tr: tTransformation);
begin
if assigned(_transformationen) then begin
_transformationen.verringereZugehoerigkeitsanzahl;
zerstoereTransformationWennObsolet(_transformationen);
end;
_transformationen:=tr;
_transformationen.erhoeheZugehoerigkeitsanzahl;
end;
function tExtraInfos.xStart: extended;
begin
result:=transformationen.xStart;
end;
function tExtraInfos.xStop: extended;
begin
result:=transformationen.xStop;
end;
function tExtraInfos.tStart: extended;
begin
result:=transformationen.tStart;
end;
function tExtraInfos.tStop: extended;
begin
result:=transformationen.tStop;
end;
procedure tExtraInfos.refreshKnownValues;
begin
knownValues.add(knownValue('np',np));
knownValues.add(knownValue('maxW',maxW));
knownValues.add(knownValue('minW',minW));
knownValues.add(knownValue('maxPX', maxP['x']/(xSteps-1)*(xStop-xStart)));
knownValues.add(knownValue('maxPY', maxP['y']/(tSiz-1)*(tStop-tStart)));
knownValues.add(knownValue('minPX', minP['x']/(xSteps-1)*(xStop-xStart)));
knownValues.add(knownValue('minPY', minP['y']/(tSiz-1)*(tStop-tStart)));
knownValues.add(knownValue('beta',beta));
knownValues.add(knownValue('xStart',xStart));
knownValues.add(knownValue('xStop',xStop));
knownValues.add(knownValue('xSteps',xSteps));
knownValues.add(knownValue('tStart',tStart));
knownValues.add(knownValue('tStop',tStop));
knownValues.add(knownValue('tSiz',tSiz));
end;
// tFontRenderer ***************************************************************
constructor tFontRenderer.create(schriftgroesze: longint);
begin
inherited create;
gibAus('FontRenderer erzeugen (Schriftgröße '+intToStr(schriftgroesze)+') ...',1);
New(agg, Construct);
agg^.font('/usr/share/fonts/TTF/DejaVuSans.ttf',schriftgroesze,false,false,RasterFontCache,0.0);
gibAus('... fertig',1);
end;
destructor tFontRenderer.destroy;
begin
Dispose(agg,Destruct);
inherited destroy;
end;
function tFontRenderer.rendere(s: string): tLLBild;
var
buf: array of byte;
ho,br,ymax,ymin,xMax,xMin,i,j: longint;
b: boolean;
begin
while pos('.',s)>0 do
s[pos('.',s)]:=',';
br:=4*round(ceil(agg^.textWidth(char_ptr(s))));
ho:=4*round(ceil(agg^.fontHeight));
setLength(buf,ho*br*4);
agg^.attach(@(buf[0]), br, ho, br * 4);
agg^.clearAll(0, 0, 0);
agg^.lineColor(0, 0, 0, 255);
agg^.fillColor(255, 255, 255, 255);
agg^.rectangle(-2, -2, br+2, ho+2);
agg^.lineColor(255, 0, 0, 255);
agg^.fillColor(0, 0, 0, 255);
agg^.text(br div 2, ho div 2, char_ptr(s));
ymax:=ho;
b:=true;
while b and (ymax>0) do begin
dec(ymax);
for i:=0 to br-1 do
if (buf[4*(i+br*ymax)+0]<>$ff) or
(buf[4*(i+br*ymax)+1]<>$ff) or
(buf[4*(i+br*ymax)+2]<>$ff) then
b:=false;
end;
if b then begin
gibAus('Leeres Bild!',3);
halt(1);
end;
ymin:=-1;
b:=true;
while b and (ymin<ymax) do begin
inc(ymin);
for i:=0 to br-1 do
if (buf[4*(i+br*ymin)+0]<>$ff) or
(buf[4*(i+br*ymin)+1]<>$ff) or
(buf[4*(i+br*ymin)+2]<>$ff) then
b:=false;
end;
if b then begin
gibAus('Leeres Bild!',3);
halt(1);
end;
xMax:=br;
b:=true;
while b and (xMax>0) do begin
dec(xMax);
for i:=ymin to ymax do
if (buf[4*(xMax+br*i)+0]<>$ff) or
(buf[4*(xMax+br*i)+1]<>$ff) or
(buf[4*(xMax+br*i)+2]<>$ff) then
b:=false;
end;
if b then begin
gibAus('Leeres Bild!',3);
halt(1);
end;
xMin:=-1;
b:=true;
while b and (xMin<=xMax) do begin
inc(xMin);
for i:=ymin to ymax do
if (buf[4*(xMin+br*i)+0]<>$ff) or
(buf[4*(xMin+br*i)+1]<>$ff) or
(buf[4*(xMin+br*i)+2]<>$ff) then
b:=false;
end;
if b then begin
gibAus('Leeres Bild!',3);
halt(1);
end;
dec(xMin);
dec(ymin);
inc(xMax);
inc(ymax);
result.breite:=xMax-xMin+1;
result.hoehe:=ymax-ymin+1;
setLength(result.farben,result.breite*result.hoehe);
for i:=0 to result.breite-1 do
for j:=0 to result.hoehe-1 do begin
result.farben[i + j*result.breite].rgbBlue:= byte(buf[4*(i+xMin+br*(j+ymin))+0]);
result.farben[i + j*result.breite].rgbGreen:=byte(buf[4*(i+xMin+br*(j+ymin))+1]);
result.farben[i + j*result.breite].rgbRed:= byte(buf[4*(i+xMin+br*(j+ymin))+2]);
end;
{ for i:=0 to 1 do
for j:=0 to 1 do begin
result.farben[i*(result.breite-1) + j*(result.hoehe-1)*result.breite].rgbRed:=
result.farben[i*(result.breite-1) + j*(result.hoehe-1)*result.breite].rgbRed xor $ff;
result.farben[i*(result.breite-1) + j*(result.hoehe-1)*result.breite].rgbGreen:=
result.farben[i*(result.breite-1) + j*(result.hoehe-1)*result.breite].rgbGreen xor $ff;
result.farben[i*(result.breite-1) + j*(result.hoehe-1)*result.breite].rgbBlue:=
result.farben[i*(result.breite-1) + j*(result.hoehe-1)*result.breite].rgbBlue xor $ff;
end; }
setLength(buf,0);
end;
// tTransformation *************************************************************
constructor tTransformation.create;
begin
inherited create;
fillChar(vorgaenger,sizeOf(vorgaenger),#0);
fillChar(nachfolger,sizeOf(nachfolger),#0);
_anzZugehoerigerDaten:=0;
end;
destructor tTransformation.destroy;
var
i: longint;
begin
for i:=0 to length(vorgaenger)-1 do begin
vorgaenger[i].loescheNachfolger(self);
zerstoereTransformationWennObsolet(vorgaenger[i]);
end;
setLength(vorgaenger,0);
if wirdGebraucht then
fehler('Ich ('+className+') werde noch gebraucht (von '+werBrauchtDas+'), da kann ich mich nicht zerstören!');
inherited destroy;
end;
procedure tTransformation.testeAuszerhalb(input, koordinaten: boolean; p: tExtPoint);
begin
testeAuszerhalb(input,koordinaten,lUnten,p['x']);
testeAuszerhalb(input,koordinaten,lLinks,p['y']);
end;
procedure tTransformation.testeAuszerhalb(input, koordinaten: boolean; l: tLage; x: extended);
begin
if koordinaten then begin
if input then begin
if (x<0) or (x>inXSTS[paralleleRichtung[l]]-1) then
fehler('Wert '+
myFloatToStr(x)+
' liegt außerhalb des gültigen '+paralleleRichtung[l]+'-Eingabebereich (0..'+
intToStr(inXSTS[paralleleRichtung[l]]-1)+')!');
end
else
if (x<0) or (x>outXSTS[paralleleRichtung[l]]-1) then
fehler('Wert '+
myFloatToStr(x)+
' liegt außerhalb des gültigen '+paralleleRichtung[l]+'-Ausgabebereich (0..'+
intToStr(outXSTS[paralleleRichtung[l]]-1)+')!');
end
else begin
if input then begin
if (x<min(inAchsen[paralleleRichtung[l],'x'],inAchsen[paralleleRichtung[l],'y'])) or
(x>max(inAchsen[paralleleRichtung[l],'x'],inAchsen[paralleleRichtung[l],'y'])) then
fehler('Wert '+
myFloatToStr(x)+
' liegt außerhalb des gültigen '+paralleleRichtung[l]+'-Eingabebereich ('+
myFloatToStr(min(inAchsen[paralleleRichtung[l],'x'],inAchsen[paralleleRichtung[l],'y']))+'..'+
myFloatToStr(max(inAchsen[paralleleRichtung[l],'x'],inAchsen[paralleleRichtung[l],'y']))+')!');
end
else
if (x<min(outAchsen[paralleleRichtung[l],'x'],outAchsen[paralleleRichtung[l],'y'])) or
(x>max(outAchsen[paralleleRichtung[l],'x'],outAchsen[paralleleRichtung[l],'y'])) then
fehler('Wert '+
myFloatToStr(x)+
' liegt außerhalb des gültigen '+paralleleRichtung[l]+'-Ausgabebereich ('+
myFloatToStr(min(outAchsen[paralleleRichtung[l],'x'],outAchsen[paralleleRichtung[l],'y']))+'..'+
myFloatToStr(max(outAchsen[paralleleRichtung[l],'x'],outAchsen[paralleleRichtung[l],'y']))+')!');
end;
end;
procedure tTransformation.holeInfosVonVorgaengern;
var
i: longint;
begin
inAchsen:=vorgaenger[0].achsen;
for i:=1 to length(vorgaenger)-1 do
if inAchsen <> vorgaenger[i].achsen then
fehler('Vorgänger haben verschiedene Achsen, was generisch nicht zu verstehen ist!');
inXSTS:=vorgaenger[0].xStepsTSiz;
for i:=1 to length(vorgaenger)-1 do
if inXSTS <> vorgaenger[i].xStepsTSiz then
fehler('Vorgänger haben verschiedene xSteps oder tSiz, was generisch nicht zu verstehen ist!');
if not wmiaExplizit then begin
inWMia:=vorgaenger[0].wMia;
inPMia:=vorgaenger[0].pMia;
for i:=1 to length(vorgaenger)-1 do
if (inWMia <> vorgaenger[i].wMia) or
(inPMia <> vorgaenger[i].pMia) then
fehler('Vorgänger haben verschiedene wmin, wmax, pmin oder pmax, was generisch nicht zu verstehen ist!');
end;
end;
procedure tTransformation.aktualisiereAchsen; // nicht zum direkten Aufrufen
begin
outAchsen:=inAchsen;
end;
procedure tTransformation.aktualisiereXsTs; // nicht zum direkten Aufrufen
begin
outXSTS:=inXSTS;
end;
procedure tTransformation.aktualisiereWmia; // nicht zum direkten Aufrufen
begin
if not wmiaExplizit then begin
outWMia:=inWMia;
outPMia:=inPMia;
end;
end;
function tTransformation.rXStart: extended;
begin
result:=outAchsen['x','x'];
end;
procedure tTransformation.wXStart(x: extended);
begin
if not (self is tKeineTransformation) then
fehler('Will xStart schreiben, aber bin nicht der Anfang einer Transformationskette!');
inAchsen['x','x']:=x;
aktualisiereAlles;
end;
function tTransformation.rXStop: extended;
begin
result:=outAchsen['x','y'];
end;
procedure tTransformation.wXStop(x: extended);
begin
if not (self is tKeineTransformation) then
fehler('Will xStop schreiben, aber bin nicht der Anfang einer Transformationskette!');
inAchsen['x','y']:=x;
aktualisiereAlles;
end;
function tTransformation.rTStart: extended;
begin
result:=outAchsen['y','x'];
end;
procedure tTransformation.wTStart(t: extended);
begin
if not (self is tKeineTransformation) then
fehler('Will tStart schreiben, aber bin nicht der Anfang einer Transformationskette!');
inAchsen['y','x']:=t;
aktualisiereAlles;
end;
function tTransformation.rTStop: extended;
begin
result:=outAchsen['y','y'];
end;
procedure tTransformation.wTStop(t: extended);
begin
if not (self is tKeineTransformation) then
fehler('Will tStop schreiben, aber bin nicht der Anfang einer Transformationskette!');
inAchsen['y','y']:=t;
aktualisiereAlles;
end;
function tTransformation.rWMin: extended;
begin
result:=outWMia['x'];
end;
procedure tTransformation.wWMin(w: extended);
begin
if (self is tAgglomeration) then begin
if outWMia['x']<>w then
fehler('Setzen von wMin für Agglomeration nicht erlaubt ( '+floatToStr(w)+' ≠ '+floatToStr(outWMia['x'])+' )!');
exit;
end;
outWMia['x']:=w;
wmiaExplizit:=true;
aktualisiereAlles;
end;
function tTransformation.rWMax: extended;
begin
result:=outWMia['y'];
end;
procedure tTransformation.wWMax(w: extended);
begin
if (self is tAgglomeration) then begin
if outWMia['y']<>w then
fehler('Setzen von wMax für Agglomeration nicht erlaubt ( '+floatToStr(w)+' ≠ '+floatToStr(outWMia['y'])+' )!');
exit;
end;
wmiaExplizit:=true;
outWMia['y']:=w;
aktualisiereAlles;
end;
function tTransformation.rPMin: tInt64Point;
begin
result:=outPMia['x'];
end;
procedure tTransformation.wPMin(p: tInt64Point);
begin
if (self is tAgglomeration) then begin
if outPMia['x']<>p then
fehler('Setzen von pMin für Agglomeration nicht erlaubt ( '+tInt64PointToStr(p)+' ≠ '+tInt64PointToStr(outPMia['x'])+' )!');
exit;
end;
outPMia['x']:=p;
wmiaExplizit:=true;
aktualisiereAlles;
end;
function tTransformation.rPMax: tInt64Point;
begin
result:=outPMia['y'];
end;
procedure tTransformation.wPMax(p: tInt64Point);
begin
if (self is tAgglomeration) then begin
if outPMia['y']<>p then
fehler('Setzen von pMax für Agglomeration nicht erlaubt ( '+tInt64PointToStr(p)+' ≠ '+tInt64PointToStr(outPMia['y'])+' )!');
exit;
end;
wmiaExplizit:=true;
outPMia['y']:=p;
aktualisiereAlles;
end;
function tTransformation.rXSteps: longint;
begin
result:=outXSTS['x'];
end;
procedure tTransformation.wXSteps(x: longint);
begin
if not (self is tKeineTransformation) then
fehler('Will xSteps schreiben, aber bin nicht der Anfang einer Transformationskette!');
inXSTS['x']:=x;
aktualisiereAlles;
end;
function tTransformation.rTSiz: longint;
begin
result:=outXSTS['y'];
end;
procedure tTransformation.wTSiz(t: longint);
begin
if not (self is tKeineTransformation) then
fehler('Will tSiz schreiben, aber bin nicht der Anfang einer Transformationskette!');
inXSTS['y']:=t;
aktualisiereAlles;
end;
procedure tTransformation.erhoeheZugehoerigkeitsanzahl;
begin
inc(_anzZugehoerigerDaten);
end;
procedure tTransformation.verringereZugehoerigkeitsanzahl;
begin
if _anzZugehoerigerDaten<=0 then
fehler('Die Anzahl zugehöroger Daten ist angeblich negativ!');
dec(_anzZugehoerigerDaten);
end;
procedure tTransformation.fuegeNachfolgerHinzu(tr: tTransformation);
begin
if assigned(tr) then begin
setLength(nachfolger,length(nachfolger)+1);
nachfolger[length(nachfolger)-1]:=tr;
end;
end;
procedure tTransformation.loescheNachfolger(tr: tTransformation);
var
i,j: longint;
begin
for i:=0 to length(nachfolger)-1 do
if nachfolger[i]=tr then begin
for j:=i+1 to length(nachfolger)-1 do
nachfolger[j-1]:=nachfolger[j];
setLength(nachfolger,length(nachfolger)-1);
exit;
end;
fehler('Kann zu löschenden Nachfolger nicht finden!');
end;
procedure tTransformation.fuegeVorgaengerHinzu(tr: tTransformation);
begin
if assigned(tr) then begin
setLength(vorgaenger,length(vorgaenger)+1);
vorgaenger[length(vorgaenger)-1]:=tr;
tr.fuegeNachfolgerHinzu(self);
end;
aktualisiereAlles;
end;
procedure tTransformation.loescheVorgaenger(tr: tTransformation);
var
i,j: longint;
begin
for i:=0 to length(vorgaenger)-1 do
if vorgaenger[i]=tr then begin
for j:=i+1 to length(vorgaenger)-1 do
vorgaenger[j-1]:=vorgaenger[j];
setLength(vorgaenger,length(vorgaenger)-1);
tr.loescheNachfolger(self);
exit;
end;
fehler('Kann zu löschenden Vorgänger nicht finden!');
end;
function tTransformation.wirdGebraucht: boolean;
begin
result:=(length(nachfolger)>0) or (_anzZugehoerigerDaten>0);
end;
procedure tTransformation.aktualisiereAlles; // (inkl. Informieren der Nachfolger)
var
i: longint;
begin
holeInfosVonVorgaengern;
aktualisiereAchsen;
aktualisiereWmia;
aktualisiereXsTs;
for i:=0 to length(nachfolger)-1 do
nachfolger[i].aktualisiereAlles;
end;
function tTransformation.ersetzeAnfangDurch(tr: tTransformation): boolean;
begin
result:=false;
if length(vorgaenger)<>1 then begin
gibAus('Kann Anfang von Transformation nicht ersetzen, da nicht genau ein Vorgänger!',3);
exit;
end;
if vorgaenger[0] is tKeineTransformation then begin
vorgaenger[0].loescheNachfolger(self);
zerstoereTransformationWennObsolet(vorgaenger[0]);
vorgaenger[0]:=tr;
vorgaenger[0].fuegeNachfolgerHinzu(self);
result:=true;
aktualisiereAlles;
end
else
result:=vorgaenger[0].ersetzeAnfangDurch(tr);
end;
function tTransformation.beliebigerVorgaenger: tTransformation;
begin
result:=vorgaenger[0];
end;
function tTransformation.werBrauchtDas: string;
var
i: longint;
begin
if _anzZugehoerigerDaten>0 then
result:=' '+intToStr(_anzZugehoerigerDaten)+' Daten'
else
result:='';
for i:=0 to length(nachfolger)-1 do begin
result:=result+' '+nachfolger[i].className;
if nachfolger[i].wirdGebraucht then
result:=result+' (von'+nachfolger[i].werBrauchtDas+')';
end;
end;
function tTransformation.transformiereKoordinatenEinzeln(const p: tExtPoint; auszerhalbIstFehler: boolean = true): tExtPoint;
begin
if auszerhalbIstFehler then
testeAuszerhalb(true,true,p);
result:=p;
if auszerhalbIstFehler then
testeAuszerhalb(false,true,result);
end;
function tTransformation.transformiereKoordinatenEinzelnInvers(const p: tExtPoint; auszerhalbIstFehler: boolean = true): tExtPoint;
begin
if auszerhalbIstFehler then
testeAuszerhalb(false,true,p);
result:=p;
if auszerhalbIstFehler then
testeAuszerhalb(true,true,result);
end;
function tTransformation.transformiereAchseEinzeln(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended;
begin // generisch passiert nichts mit der Achsenbeschriftung
if auszerhalbIstFehler then
testeAuszerhalb(true,false,l,x);
result:=x;
if auszerhalbIstFehler then
testeAuszerhalb(false,false,l,result);
end;
function tTransformation.transformiereAchseEinzelnInvers(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended;
begin // generisch passiert nichts mit der Achsenbeschriftung
if auszerhalbIstFehler then
testeAuszerhalb(false,false,l,x);
result:=x;
if auszerhalbIstFehler then
testeAuszerhalb(true,false,l,result);
end;
function tTransformation.transformiereKoordinaten(const p: tExtPoint; const tiefe: longint = -1): tExtPoint;
begin
if (length(vorgaenger)>0) and (tiefe<>0) then
result:=beliebigerVorgaenger.transformiereKoordinaten(p,tiefe-1)
else
result:=p;
result:=transformiereKoordinatenEinzeln(result);
end;
function tTransformation.transformiereKoordinaten(const x,y: longint; const tiefe: longint = -1): tExtPoint;
var
p: tExtPoint;
begin
p['x']:=x;
p['y']:=y;
result:=transformiereKoordinaten(p,tiefe);
end;
function tTransformation.transformiereKoordinatenInvers(const p: tExtPoint; const tiefe: longint = -1): tExtPoint;
begin
result:=transformiereKoordinatenEinzelnInvers(p);
if (length(vorgaenger)>0) and (tiefe<>0) then
result:=beliebigerVorgaenger.transformiereKoordinaten(result,tiefe-1);
end;
function tTransformation.wertZuPositionAufAchse(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended;
var
c,d: char;
p: tExtPoint;
begin
if auszerhalbIstFehler then
testeAuszerhalb(false,false,l,x);
// das generische Verhalten ist
c:=paralleleRichtung[l];
d:=senkrechteRichtung[l];
// zuerst den Wert zu transformieren
x:=transformiereAchseEinzelnInvers(l,x,auszerhalbIstFehler);
// dann den Vorgänger nach der Position zu fragen
p[c]:=beliebigerVorgaenger.wertZuPositionAufAchse(l,x,auszerhalbIstFehler);
p[d]:=byte(l in [lRechts,lOben]);
// in Koordinaten umzurechnen
for d:='x' to 'y' do
p[d]:=p[d] * (inXSTS[d]-1);
// zu transformieren
p:=transformiereKoordinatenEinzeln(p,auszerhalbIstFehler);
// und in Anteile zurückzurechnen
result:=p[c]/(outXSTS[c]-1);
if auszerhalbIstFehler then
testeAuszerhalb(false,true,l,result);
end;
function tTransformation.positionAufAchseZuWert(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended;
var
c,d: char;
p: tExtPoint;
begin
if auszerhalbIstFehler then
testeAuszerhalb(false,true,l,x);
// das generische Verhalten ist invers zu oben:
c:=paralleleRichtung[l];
d:=senkrechteRichtung[l];
// Anteile setzen
p[c]:=x;
p[d]:=byte(l in [lRechts,lOben]);
// in Koordinaten umrechnen
for d:='x' to 'y' do
p[d]:=p[d] * (outXSTS[d]-1);
// transformieren
p:=transformiereKoordinatenEinzelnInvers(p,auszerhalbIstFehler);
// und in Anteile zurückrechnen
p[c]:=p[c]/(inXSTS[c]-1);
// vom Vorgänger weiter berechnen lassen
result:=beliebigerVorgaenger.positionAufAchseZuWert(l,p[c],auszerhalbIstFehler);
// und den Wert transformieren
result:=transformiereAchseEinzeln(l,result,auszerhalbIstFehler);
if auszerhalbIstFehler then
testeAuszerhalb(false,false,l,result);
end;
function tTransformation.transformiereWertEinzeln(const x: extended): extended;
begin
result:=x;
end;
function tTransformation.transformiereWert(const x: extended; const tiefe: longint = -1): extended;
begin
if (length(vorgaenger)>0) and (tiefe<>0) then
result:=beliebigerVorgaenger.transformiereWert(x,tiefe-1)
else
result:=x;
result:=transformiereWertEinzeln(result);
end;
function tTransformation.dumpParams: string;
begin
result:=t2x2ExtendedToStr(inAchsen)+' -> '+t2x2ExtendedToStr(outAchsen);
end;
function tTransformation.dumpParams(tiefe: longint): string;
var
i: longint;
begin
if tiefe=0 then
result:=''
else
for i:=0 to length(vorgaenger)-1 do begin
if length(vorgaenger)>1 then
result:=result+#13'< '+intToStr(i)+' >';
result:=result+#13+vorgaenger[i].dumpParams(tiefe-1);
end;
result:=result+intToStr(tiefe+1)+': '+dumpParams;
end;
// tKeineTransformation ********************************************************
procedure tKeineTransformation.holeInfosVonVorgaengern;
begin
end;
function tKeineTransformation.wertZuPositionAufAchse(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended;
var
c: char;
begin
if auszerhalbIstFehler then
testeAuszerhalb(false,false,l,x);
// ein Wert am Anfang ist einfach linear zu interpolieren
c:=paralleleRichtung[l];
if x=outAchsen[c,'x'] then
result:=0
else
result:=(x-outAchsen[c,'x'])/(outAchsen[c,'y']-outAchsen[c,'x'])*(1-1/outXSTS[c]);
if auszerhalbIstFehler then
testeAuszerhalb(false,true,l,result);
end;
function tKeineTransformation.positionAufAchseZuWert(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended;
var
c: char;
begin
if auszerhalbIstFehler then
testeAuszerhalb(false,true,l,x);
// ein Wert am Anfang ist einfach linear zu interpolieren
c:=paralleleRichtung[l];
if x=0 then
result:=outAchsen[c,'x']
else
result:=x/(1-1/outXSTS[c])*(outAchsen[c,'y']-outAchsen[c,'x'])+outAchsen[c,'x'];
if auszerhalbIstFehler then
testeAuszerhalb(false,false,l,result);
end;
// tIdentitaet *****************************************************************
constructor tIdentitaet.create(original: tTransformation);
begin
inherited create;
fuegeVorgaengerHinzu(original);
end;
// tUeberlagerung **************************************************************
constructor tUeberlagerung.create;
begin
inherited create;
wmiaExplizit:=true; // nicht sinnvoll berechenbar
end;
procedure tUeberlagerung.addKomponente(tr: tTransformation);
begin
fuegeVorgaengerHinzu(tr);
end;
// tFFTTransformation **********************************************************
constructor tFFTTransformation.create;
begin
inherited create;
horizontal:=false;
vertikal:=false;
end;
constructor tFFTTransformation.create(vorg: tTransformation; hor,ver: boolean);
begin
inherited create;
horizontal:=hor;
vertikal:=ver;
fuegeVorgaengerHinzu(vorg);
end;
procedure tFFTTransformation.aktualisiereAchsen;
var
c: char;
begin
if horizontal then begin
outAchsen['x','x']:=0;
outAchsen['x','y']:=(inXSTS['x']-1)/(inAchsen['x','y']-inAchsen['x','x']);
end
else
for c:='x' to 'y' do
outAchsen['x',c]:=inAchsen['x',c];
if vertikal then begin
outAchsen['y','x']:=0;
outAchsen['y','y']:=(inXSTS['y']-1)/(inAchsen['y','y']-inAchsen['y','x']);
end
else
for c:='x' to 'y' do
outAchsen['y',c]:=inAchsen['y',c];
end;
function tFFTTransformation.wertZuPositionAufAchse(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended;
var
c: char;
begin
if auszerhalbIstFehler then
testeAuszerhalb(false,false,l,x);
if ((l in [lOben,lUnten]) and not horizontal) or // untransformierte Achse?
((not (l in [lOben,lUnten])) and not vertikal) then
result:=inherited wertZuPositionAufAchse(l,x,auszerhalbIstFehler) // Vorfahren befragen
else begin
// egal, wie die Werte vor der FFT aussahen, wir setzen die Frequenzen danach linear
c:=paralleleRichtung[l];
if x=outAchsen[c,'x'] then
result:=0
else
result:=(x-outAchsen[c,'x'])/(outAchsen[c,'y']-outAchsen[c,'x']);
result:=result*(1-1/outXSTS[c]);
end;
if auszerhalbIstFehler then
testeAuszerhalb(false,true,l,result);
end;
function tFFTTransformation.positionAufAchseZuWert(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended;
var
c: char;
begin
if auszerhalbIstFehler then
testeAuszerhalb(false,true,l,x);
if ((l in [lOben,lUnten]) and not horizontal) or // untransformierte Achse?
((not (l in [lOben,lUnten])) and not vertikal) then
result:=inherited positionAufAchseZuWert(l,x,auszerhalbIstFehler) // Vorfahren befragen
else begin
// egal, wie die Werte vor der FFT aussahen, wir setzen die Frequenzen danach linear
c:=paralleleRichtung[l];
if x=0 then
result:=outAchsen[c,'x']
else
result:=x/(1-1/outXSTS[c])*(outAchsen[c,'y']-outAchsen[c,'x'])+outAchsen[c,'x'];
end;
if auszerhalbIstFehler then
testeAuszerhalb(false,false,l,result);
end;
function tFFTTransformation.dumpParams: string;
begin
result:='FFT: ';
if horizontal then result:=result+'h';
if vertikal then result:=result+'v';
result:=result + ' ' + inherited dumpParams;
end;
// tSpiegelungsTransformation **************************************************
constructor tSpiegelungsTransformation.create;
begin
inherited create;
end;
constructor tSpiegelungsTransformation.create(vorg: tTransformation);
begin
inherited create;
fuegeVorgaengerHinzu(vorg);
end;
function tSpiegelungsTransformation.transformiereKoordinatenEinzeln(const p: tExtPoint; auszerhalbIstFehler: boolean = true): tExtPoint;
begin
if auszerhalbIstFehler then
testeAuszerhalb(true,true,p);
result['x']:=inXSTS['x']-1-p['x'];
result['y']:=p['y'];
if auszerhalbIstFehler then
testeAuszerhalb(false,true,result);
end;
function tSpiegelungsTransformation.transformiereKoordinatenEinzelnInvers(const p: tExtPoint; auszerhalbIstFehler: boolean = true): tExtPoint;
begin
if auszerhalbIstFehler then
testeAuszerhalb(false,true,p);
result['x']:=inXSTS['x']-1-p['x'];
result['y']:=p['y'];
if auszerhalbIstFehler then
testeAuszerhalb(true,true,result);
end;
function tSpiegelungsTransformation.dumpParams: string;
begin
result:='horizontale Spiegelung ' + inherited dumpParams;
end;
// tKonkreteKoordinatenTransformation ******************************************
constructor tKonkreteKoordinatenTransformation.create;
var
c,d: char;
begin
for c:='x' to 'y' do begin
for d:='x' to 'y' do begin
lin[c,d]:=byte(c=d);
lnInt[c,d]:=0;
expExp[c,d]:=0;
end;
off[c]:=0;
lnFak[c]:=0;
expFak[c]:=0;
lnOff[c]:=1;
end;
end;
function tKonkreteKoordinatenTransformation.findeLineareParameter(syntaxTest: boolean; auszenSkala: char; s: string; xScale,yScale: extended; var off,xl,yl: extended; ueberschreiben: boolean; etf: tExprToFloat): boolean;
var
t: string;
c: char;
tmp: extended;
begin
result:=false;
if ueberschreiben then begin
off:=0;
xl:=0;
yl:=0;
end;
while length(s)>0 do begin
t:=leftStr(s,max(binOpPos('+',s),binOpPos('-',s))-1);
if (binOpPos('+',t)>0) or (binOpPos('-',t)>0) then
t:=leftStr(s,min(binOpPos('+',s),binOpPos('-',s))-1);
if t='' then begin
t:=s;
s:='';
end
else
delete(s,1,length(t));
if t='' then exit;
c:=rightStr(t,1)[1];
if c in ['x','y'] then delete(t,length(t),1);
if leftStr(t,1)='+' then delete(t,1,1);
if t='' then tmp:=1
else if t='-' then tmp:=-1
else try
tmp:=etf(syntaxTest,t);
case c of
'x': tmp:=tmp*xScale;
'y': tmp:=tmp*yScale;
end;
case auszenSkala of
'x': tmp:=tmp/xScale;
'y': tmp:=tmp/yScale;
end;
except
exit;
end;
case c of
'x':
xl:=xl+tmp;
'y','t':
yl:=yl+tmp;
else
off:=off+tmp;
end{of case};
end;
result:=true;
end;
function tKonkreteKoordinatenTransformation.transformiereKoordinatenEinzeln(const p: tExtPoint; auszerhalbIstFehler: boolean = true): tExtPoint;
var
c,d: char;
lt,et: extended;
begin
if auszerhalbIstFehler then
testeAuszerhalb(true,true,p);
for c:='x' to 'y' do begin
result[c]:=off[c];
lt:=lnOff[c];
et:=0;
for d:='x' to 'y' do begin
result[c]:=
result[c] + p[d]*lin[c,d];
lt:=lt+p[d]*lnInt[c,d];
et:=et+p[d]*expExp[c,d];
end;
result[c]:=
result[c] + lnFak[c] * ln(lt) + expFak[c] * exp(et);
end;
if auszerhalbIstFehler then
testeAuszerhalb(false,true,result);
end;
function tKonkreteKoordinatenTransformation.transformiereKoordinatenEinzelnInvers(const p: tExtPoint; auszerhalbIstFehler: boolean = true): tExtPoint;
begin
if auszerhalbIstFehler then
testeAuszerhalb(false,true,p);
fehler('tKonkreteKoordinatenTransformation: transformiereKoordinatenEinzelnInvers kann es nicht geben, weil transformiereKoordinatenEinzeln nicht umkehrbar sein muss!');
result:=extPoint(0,0);
if auszerhalbIstFehler then
testeAuszerhalb(true,true,result);
end;
function tKonkreteKoordinatenTransformation.initAbbildung(syntaxTest: boolean; s: string; xScale,yScale: extended; etf: tExprToFloat): boolean;
var
c,d: char;
i: longint;
t,u,v: string;
tmp: extended;
begin
result:=false;
if not assigned(etf) then exit;
for c:='x' to 'y' do begin
for d:='x' to 'y' do begin
lin[c,d]:=0;
lnInt[c,d]:=0;
expExp[c,d]:=0;
end;
off[c]:=0;
lnFak[c]:=0;
expFak[c]:=0;
lnOff[c]:=1;
end;
while pos(' ',s)>0 do
delete(s,pos(' ',s),1);
if (not startetMit('(',s)) or
(not endetMit(')',s)) then exit;
if pos(';',s)=0 then exit;
t:=erstesArgument(s,';');
if (t='') or (s='') then exit;
for c:='x' to 'y' do begin
while pos('(',t)>0 do begin
u:=t;
delete(u,1,pos('(',u));
if pos(')',u)=0 then exit;
u:=leftStr(u,pos(')',u)-1);
i:=pos('(',t);
while (i>=1) and not (t[i] in ['+','-']) do
dec(i);
if i=0 then i:=1;
v:=copy(t,i,pos('(',t)-i-3);
if leftStr(v,1)='+' then delete(v,1,1);
if v='' then tmp:=1
else if v='-' then tmp:=-1
else try
tmp:=etf(syntaxTest,v);
if c='x' then tmp:=tmp/xScale
else tmp:=tmp/yScale;
except
exit;
end;
if copy(t,pos('(',t)-3,3)='log' then begin
lnFak[c]:=tmp;
if not findeLineareParameter(syntaxTest,' ',u,xScale,yScale,lnOff[c],lnInt[c,'x'],lnInt[c,'y'],true,etf) then exit;
end
else if copy(t,pos('(',t)-3,3)='exp' then begin
expFak[c]:=tmp;
tmp:=0;
if not findeLineareParameter(syntaxTest,' ',u,xScale,yScale,tmp,expExp[c,'x'],expExp[c,'y'],true,etf) then exit;
if tmp<>0 then exit;
end
else exit;
delete(t,i,pos(')',t)-i+1);
end;
if t<>'' then
if not findeLineareParameter(syntaxTest,c,t,xScale,yScale,off[c],lin[c,'x'],lin[c,'y'],false,etf) then exit;
t:=s;
end;
result:=true;
end;
function tKonkreteKoordinatenTransformation.dumpParams: string;
var
c,d: char;
begin
result:='';
for c:='x' to 'y' do begin
result:=result+#13#10+c+' = ';
if off[c]<>0 then
result:=result + floatToStr(off[c]) + ' ';
for d:='x' to 'y' do
if lin[c,d]<>0 then
result:=result + '+ ' + floatToStr(lin[c,d]) + ' ' + d + ' ';
if lnFak[c]<>0 then begin
result:=result + '+ ' + floatToStr(lnFak[c])+' log ( ';
if lnOff[c]<>0 then
result:=result + floatToStr(lnOff[c]) + ' ';
for d:='x' to 'y' do
if lnInt[c,d]<>0 then
result:=result + '+ ' + floatToStr(lnInt[c,d]) + ' ' + d + ' ';
result:=result + ') ';
end;
if expFak[c]<>0 then begin
result:=result + '+ ' + floatToStr(expFak[c])+' exp ( ';
for d:='x' to 'y' do
if expExp[c,d]<>0 then
result:=result + '+ ' + floatToStr(expExp[c,d]) + ' ' + d + ' ';
result:=result + ') ';
end;
end;
delete(result,1,2);
result:=result + ' ' + inherited dumpParams;
end;
function tKonkreteKoordinatenTransformation.zielausdehnung: t2x2Longint;
var
RandPkt: tExtPoint;
i,j,k: longint;
c,d: char;
begin
for c:='x' to 'y' do
for d:='x' to 'y' do
result[c,d]:=-1;
for k:=0 to 1 do
for i:=0 to (inXSTS['x']*(1-k)+inXSTS['y']*k)-1 do
for j:=0 to 1 do begin
RandPkt:=transformiereKoordinaten(
i*(1-k) + j*k*(inXSTS['x']-1),
j*(1-k)*(inXSTS['y']-1) + i*k);
for c:='x' to 'y' do
for d:='x' to 'y' do
if ((i=0) and (j=0)) or ((d='y') xor (result[c,d]>floor(RandPkt[c]) + byte(d='y'))) then
result[c,d]:=floor(RandPkt[c]) + byte(d='y');
end;
end;
procedure tKonkreteKoordinatenTransformation.aktualisiereXsTs;
var
gr: t2x2Longint;
c: char;
begin
gr:=zielausdehnung;
for c:='x' to 'y' do
outXSTS[c]:=gr[c,'y']-gr[c,'x']+1;
end;
// tLineareAchsenVerzerrTransformation *****************************************
procedure tLineareAchsenVerzerrTransformation.aktualisiereAchsen;
var
c,d: char;
begin
for c:='x' to 'y' do
for d:='x' to 'y' do
outAchsen[c,d]:=(inAchsen[c,d] - inAchsen[c,'x']*byte(nullen[c]))*fak[c];
end;
function tLineareAchsenVerzerrTransformation.transformiereAchseEinzeln(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended;
begin
if auszerhalbIstFehler then
testeAuszerhalb(true,false,l,x);
result:=(x - inAchsen[paralleleRichtung[l],'x'] * byte(nullen[paralleleRichtung[l]])) * fak[paralleleRichtung[l]];
if auszerhalbIstFehler then
testeAuszerhalb(false,false,l,result);
end;
function tLineareAchsenVerzerrTransformation.transformiereAchseEinzelnInvers(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended;
begin
if auszerhalbIstFehler then
testeAuszerhalb(false,false,l,x);
result:=x/fak[paralleleRichtung[l]] + inAchsen[paralleleRichtung[l],'x'] * byte(nullen[paralleleRichtung[l]]);
if auszerhalbIstFehler then
testeAuszerhalb(true,false,l,result);
end;
constructor tLineareAchsenVerzerrTransformation.create;
var
c: char;
begin
inherited create;
for c:='x' to 'y' do begin
fak[c]:=1;
nullen[c]:=false;
end;
end;
function tLineareAchsenVerzerrTransformation.dumpParams: string;
var
c: char;
begin
result:='* ' + tExtPointToStr(fak) + ' ' + inherited dumpParams;
for c:='y' downto 'x' do
if nullen[c] then
result:=c+'-zentriert '+result;
end;
// tGroeszenVerdopplungsTransformation *****************************************
constructor tGroeszenVerdopplungsTransformation.create;
begin
inherited create;
_horizontal:=false;
_vertikal:=false;
end;
procedure tGroeszenVerdopplungsTransformation.wHorizontal(h: boolean);
begin
_horizontal:=h;
aktualisiereXsTs;
aktualisiereAchsen;
end;
procedure tGroeszenVerdopplungsTransformation.wVertikal(v: boolean);
begin
_vertikal:=v;
aktualisiereXsTs;
aktualisiereAchsen;
end;
procedure tGroeszenVerdopplungsTransformation.aktualisiereAchsen;
begin
outAchsen:=inAchsen;
if horizontal then
outAchsen['x','y']:=2*outAchsen['x','y']-outAchsen['x','x'];
if vertikal then
outAchsen['y','y']:=2*outAchsen['y','y']-outAchsen['y','x'];
end;
procedure tGroeszenVerdopplungsTransformation.aktualisiereXsTs;
begin
outXSTS:=inXSTS;
if horizontal then
outXSTS['x']:=2*outXSTS['x'];
if vertikal then
outXSTS['y']:=2*outXSTS['y'];
end;
function tGroeszenVerdopplungsTransformation.wertZuPositionAufAchse(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended;
var
extra: extended;
begin
if auszerhalbIstFehler then
testeAuszerhalb(false,false,l,x);
if (((l in [lOben,lUnten]) and horizontal) or // wenn in der abgefragten Richtung
((l in [lLinks,lRechts]) and vertikal)) and // verdoppelt wurde und
(x > inAchsen[paralleleRichtung[l],'y']) then begin // der Wert in der 2. Hälfte liegt
// dann verschieben wir den Wert um die Hälfte
x:=x-(inAchsen[paralleleRichtung[l],'y']-inAchsen[paralleleRichtung[l],'x']) * (1+1/(inXSTS[paralleleRichtung[l]]-1));
// und addieren diese danach wieder
extra:=inXSTS[paralleleRichtung[l]];
end
else
extra:=0;
result:=beliebigerVorgaenger.wertZuPositionAufAchse(l,x,auszerhalbIstFehler)+extra;
if auszerhalbIstFehler then
testeAuszerhalb(false,true,l,result);
end;
function tGroeszenVerdopplungsTransformation.positionAufAchseZuWert(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended;
var
extra: extended;
begin
if auszerhalbIstFehler then
testeAuszerhalb(false,true,l,x);
if (((l in [lOben,lUnten]) and horizontal) or // wenn in der abgefragten Richtung
((l in [lLinks,lRechts]) and vertikal)) and // verdoppelt wurde und
(x >= inXSTS[paralleleRichtung[l]]) then begin // der Wert in der 2. Hälfte liegt
// dann verschieben wir den Wert um die Hälfte
x:=x-inXSTS[paralleleRichtung[l]];
// und addieren diese danach wieder
extra:=(inAchsen[paralleleRichtung[l],'y']-inAchsen[paralleleRichtung[l],'x'])*(1+1/(inXSTS[paralleleRichtung[l]]-1));
end
else
extra:=0;
result:=beliebigerVorgaenger.wertZuPositionAufAchse(l,x,auszerhalbIstFehler)+extra;
if auszerhalbIstFehler then
testeAuszerhalb(false,false,l,result);
end;
function tGroeszenVerdopplungsTransformation.dumpParams: string;
begin
result:=inherited dumpParams;
if horizontal then
result:='horizontal verdoppeln, '+result;
if horizontal then
result:='vertikal verdoppeln, '+result;
end;
// tLambdaZuOmegaTransformation ************************************************
constructor tLambdaZuOmegaTransformation.create;
begin
create(2*pi*299792458);
end;
constructor tLambdaZuOmegaTransformation.create(faktor: extended);
begin
inherited create;
_horizontal:=false;
_vertikal:=false;
_faktor:=faktor;
aktualisiereAchsen;
end;
function tLambdaZuOmegaTransformation.transformiereAchseEinzeln(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended;
begin
if auszerhalbIstFehler then
testeAuszerhalb(true,false,l,x);
if ((l in [lOben,lUnten]) and horizontal) or // transformierte Achse?
((l in [lLinks,lRechts]) and vertikal) then
result:=_faktor/x
else
result:=x;
if auszerhalbIstFehler then
testeAuszerhalb(false,false,l,result);
end;
function tLambdaZuOmegaTransformation.transformiereAchseEinzelnInvers(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended;
begin
if auszerhalbIstFehler then
testeAuszerhalb(false,false,l,x);
if ((l in [lOben,lUnten]) and horizontal) or // transformierte Achse?
((l in [lLinks,lRechts]) and vertikal) then
result:=_faktor/x
else
result:=x;
if auszerhalbIstFehler then
testeAuszerhalb(true,false,l,result);
end;
procedure tLambdaZuOmegaTransformation.wHorizontal(h: boolean);
begin
_horizontal:=h;
aktualisiereAlles;
end;
procedure tLambdaZuOmegaTransformation.wVertikal(v: boolean);
begin
_vertikal:=v;
aktualisiereAlles;
end;
function tLambdaZuOmegaTransformation.verhaeltnisHorizontal: extended;
begin
if horizontal then
result:=inAchsen['x','x']/(inAchsen['x','y']-inAchsen['x','x'])
else
result:=0;
end;
function tLambdaZuOmegaTransformation.verhaeltnisVertikal: extended;
begin
if vertikal then
result:=inAchsen['y','x']/(inAchsen['y','y']-inAchsen['y','x'])
else
result:=0;
end;
procedure tLambdaZuOmegaTransformation.aktualisiereAchsen;
var
c: char;
begin
if horizontal then begin
outAchsen['x','x']:=_faktor/inAchsen['x','y'];
outAchsen['x','y']:=_faktor/inAchsen['x','x'];
end
else
for c:='x' to 'y' do
outAchsen['x',c]:=inAchsen['x',c];
if vertikal then begin
outAchsen['y','x']:=_faktor/inAchsen['y','y'];
outAchsen['y','y']:=_faktor/inAchsen['y','x'];
end
else
for c:='x' to 'y' do
outAchsen['y',c]:=inAchsen['y',c];
end;
function tLambdaZuOmegaTransformation.transformiereKoordinatenEinzeln(const p: tExtPoint; auszerhalbIstFehler: boolean = true): tExtPoint;
var
verh: extended;
begin
if auszerhalbIstFehler then
testeAuszerhalb(true,true,p);
if horizontal then begin
verh:=verhaeltnisHorizontal;
result['x']:=
(inXSTS['x']-1-p['x'])/
(p['x']/verh/(inXSTS['x']-1)+1);
end
else
result['x']:=p['x'];
if vertikal then begin
verh:=verhaeltnisVertikal;
result['y']:=
(inXSTS['y']-1-p['y'])/
(p['y']/verh/(inXSTS['y']-1)+1);
end
else
result['y']:=p['y'];
if auszerhalbIstFehler then
testeAuszerhalb(false,true,result);
end;
function tLambdaZuOmegaTransformation.transformiereKoordinatenEinzelnInvers(const p: tExtPoint; auszerhalbIstFehler: boolean = true): tExtPoint;
var
verh: extended;
begin
if auszerhalbIstFehler then
testeAuszerhalb(false,true,p);
if horizontal then begin
verh:=verhaeltnisHorizontal;
result['x']:=
(inXSTS['x']-1-p['x'])/
(p['x']/verh/(inXSTS['x']-1)+1);
end
else
result['x']:=p['x'];
if vertikal then begin
verh:=verhaeltnisVertikal;
result['y']:=
(inXSTS['y']-1-p['y'])/
(p['y']/verh/(inXSTS['y']-1)+1);
end
else
result['y']:=p['y'];
if auszerhalbIstFehler then
testeAuszerhalb(true,true,result);
end;
function tLambdaZuOmegaTransformation.dumpParams: string;
begin
result:='';
if horizontal then
result:='horizontal';
if vertikal then
result:=result+' und vertikal';
startetMit(' und ',result);
result:=result+' ('+floatToStr(_faktor)+')';
result:=result + ' ' + inherited dumpParams;
end;
// tKoordinatenAusschnitt ******************************************************
constructor tKoordinatenAusschnitt.create;
var
c,d: char;
begin
inherited create;
for c:='x' to 'y' do
for d:='x' to 'y' do
gr[c,d]:=0;
end;
constructor tKoordinatenAusschnitt.create(vorg: tTransformation; xMin,xMax,tMin,tMax: longint);
begin
inherited create;
gr['x','x']:=xMin;
gr['x','y']:=xMax;
gr['y','x']:=tMin;
gr['y','y']:=tMax;
fuegeVorgaengerHinzu(vorg);
end;
procedure tKoordinatenAusschnitt.aktualisiereXsTs;
var
c: char;
begin
for c:='x' to 'y' do
outXSTS[c]:=max(0,min(inXSTS[c],gr[c,'y']+1)-gr[c,'x']);
end;
procedure tKoordinatenAusschnitt.aktualisiereAchsen;
var
c,d: char;
begin
for c:='x' to 'y' do
if inXSTS[c]<=1 then begin
for d:='x' to 'y' do
outAchsen[c,d]:=inAchsen[c,d];
if inAchsen[c,'x']<>inAchsen[c,'y'] then
fehler('Nur eine Koordinate, aber '+floatToStr(inAchsen[c,'x'])+' = '+c+'start <> '+c+'stop = '+floatToStr(inAchsen[c,'y'])+'!');
end
else
for d:='x' to 'y' do
outAchsen[c,d]:=inAchsen[c,'x'] + gr[c,d]/(inXSTS[c]-1)*(inAchsen[c,'y']-inAchsen[c,'x']);
end;
function tKoordinatenAusschnitt.transformiereKoordinatenEinzeln(const p: tExtPoint; auszerhalbIstFehler: boolean = true): tExtPoint;
var
c: char;
begin
if auszerhalbIstFehler then
testeAuszerhalb(true,true,p);
for c:='x' to 'y' do
result[c]:=max(0,min(outXSTS[c]-1,p[c]-gr[c,'x']));
if auszerhalbIstFehler then
testeAuszerhalb(false,true,result);
end;
function tKoordinatenAusschnitt.transformiereKoordinatenEinzelnInvers(const p: tExtPoint; auszerhalbIstFehler: boolean = true): tExtPoint;
var
c: char;
begin
if auszerhalbIstFehler then
testeAuszerhalb(false,true,p);
for c:='x' to 'y' do
result[c]:=p[c]+gr[c,'x'];
if auszerhalbIstFehler then
testeAuszerhalb(true,true,result);
end;
function tKoordinatenAusschnitt.dumpParams: string;
begin
result:='Koordinatenausschnitt: '+intToStr(gr['x','x'])+'..'+intToStr(gr['x','y'])+' x '+intToStr(gr['y','x'])+'..'+intToStr(gr['y','y']);
result:=result + ' ' + inherited dumpParams;
end;
// tFitTransformation **********************************************************
constructor tFitTransformation.create(daten: tTransformation; senkrecht: boolean; adLaenge: longint; adStart,adStop: extended);
begin
inherited create;
wmiaExplizit:=true; // nicht sinnvoll berechenbar
_senkrecht:=senkrecht; // die Richtung, in der gefittet wurde ("andere Dimension") - also senkrecht zur übernommenen Ausdehnung
_adLaenge:=adLaenge; // Größe in der "anderen Dimension"
_adStao['x']:=adStart; // Start und
_adStao['y']:=adStop; // Stopp in der "anderen Dimension"
if (_adLaenge=1) xor (_adStao['x']=_adStao['y']) then
fehler('Die gefitteten Daten müssen genau dann eindimensional sein, wenn Start = Stopp ist. ('+intToStr(_adLaenge)+'-d vs. '+floatToStr(_adStao['x'])+'..'+floatToStr(_adStao['y'])+')');
fuegeVorgaengerHinzu(daten);
end;
procedure tFitTransformation.aktualisiereXsTs;
var
c: char;
begin
for c:='x' to 'y' do
outXSTS[c]:=_adLaenge+(inXSTS[c]-_adLaenge)*byte(_senkrecht xor (c='y'));
end;
procedure tFitTransformation.aktualisiereAchsen;
var
c: char;
begin
for c:='x' to 'y' do begin
outAchsen[char(ord('x')+byte(_senkrecht)),c]:=
inAchsen[char(ord('x')+byte(_senkrecht)),c];
outAchsen[char(ord('y')-byte(_senkrecht)),c]:=
_adStao[c];
end;
end;
function tFitTransformation.wertZuPositionAufAchse(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended;
begin
if auszerhalbIstFehler then
testeAuszerhalb(false,false,l,x);
if (l in [lOben,lUnten]) xor _senkrecht then
result:=0 // keine Ausdehnung in dieser Richtung!
else
result:=beliebigerVorgaenger.wertZuPositionAufAchse(l,x,auszerhalbIstFehler);
if auszerhalbIstFehler then
testeAuszerhalb(false,true,l,result);
end;
function tFitTransformation.positionAufAchseZuWert(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended;
begin
if auszerhalbIstFehler then
testeAuszerhalb(false,true,l,x);
if (l in [lOben,lUnten]) xor _senkrecht then
fehler('Eine fit-Transformation hat keine Ausdehnung in dieser Richtung!')
else
result:=beliebigerVorgaenger.positionAufAchseZuWert(l,x,auszerhalbIstFehler);
if auszerhalbIstFehler then
testeAuszerhalb(false,false,l,result);
end;
function tFitTransformation.dumpParams: string;
begin
result:='FitTransformation: ';
if _senkrecht then
result:=result+'vertik'
else
result:=result+'horizont';
result:=result+'al ' + inherited dumpParams;
end;
// tAgglomeration **************************************************************
constructor tAgglomeration.create;
begin
inherited create;
schritt:=-1;
_nullposition:=nan;
horizontal:=false;
end;
function tAgglomeration.rNullposition: extended;
begin
if isNaN(_nullposition) then
result:=inAchsen[char(ord('y')-byte(horizontal)),'x']
else
result:=_nullposition;
end;
procedure tAgglomeration.wNullposition(n: extended);
begin
_nullposition:=n;
aktualisiereAlles;
end;
procedure tAgglomeration.holeInfosVonVorgaengern;
var
i: longint;
begin
if length(vorgaenger)=0 then exit;
inAchsen:=vorgaenger[0].achsen;
for i:=1 to length(vorgaenger)-1 do
if inAchsen <> vorgaenger[i].achsen then
fehler('Vorgänger haben verschiedene Achsen, was bei Agglomeration nicht geht!');
inXSTS:=vorgaenger[0].xStepsTSiz;
for i:=1 to length(vorgaenger)-1 do
if inXSTS <> vorgaenger[i].xStepsTSiz then
fehler('Vorgänger haben verschiedene xSteps oder tSiz, was bei Agglomeration nicht geht!');
inWMia:=vorgaenger[0].wMia;
inPMia:=vorgaenger[0].pMia;
for i:=1 to length(vorgaenger)-1 do begin
if inWMia['x'] > vorgaenger[i].wMia['x'] then begin
inWMia['x']:=vorgaenger[i].wMia['x'];
inPMia['x']:=vorgaenger[i].pMia['x'];
end;
if inWMia['y'] < vorgaenger[i].wMia['y'] then begin
inWMia['y']:=vorgaenger[i].wMia['y'];
inPMia['y']:=vorgaenger[i].pMia['y'];
end;
end;
end;
procedure tAgglomeration.addKomponente(tr: tTransformation);
begin
fuegeVorgaengerHinzu(tr);
end;
procedure tAgglomeration.aktualisiereXsTs;
var
c: char;
begin
for c:='x' to 'y' do
outXSTS[c]:=inXSTS[c]*(1+(length(vorgaenger)-1)*byte(horizontal xor (c='y')));
end;
procedure tAgglomeration.aktualisiereAchsen;
var
c,d: char;
begin
for c:='x' to 'y' do
if inXSTS[c]<=1 then begin // diese Dimension gibt es in der Quelle nicht
if (horizontal xor (c='y')) and (schritt<0) then
fehler('Die Richtung einer Agglomeration ohne explizite Schrittweite kann nicht senkrecht zur Dimension eindimensionaler Daten sein!');
for d:='x' to 'y' do
outAchsen[c,d]:=
inAchsen[c,d] +
byte(horizontal xor (c='y')) * ( // in Agglomerationsrichtung
nullposition-inAchsen[c,'x'] + // Verschiebung durch explizite Nullposition
byte(d='y') * schritt*(length(vorgaenger)-1) // das Ende
);
if inAchsen[c,'x']<>inAchsen[c,'y'] then
fehler('Nur eine Koordinate, aber '+floatToStr(inAchsen[c,'x'])+' = '+c+'start <> '+c+'stop = '+floatToStr(inAchsen[c,'y'])+'!');
end
else // diese Dimension gibt es in der Quelle
for d:='x' to 'y' do
outAchsen[c,d]:=
inAchsen[c,d] +
(inAchsen[c,'y']-inAchsen[c,'x'])/
(1+1/inXSTS[c]) *
(length(vorgaenger)-1) *
byte((horizontal xor (c='y')) and (d='y'));
end;
function tAgglomeration.wertZuPositionAufAchse(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended;
var
i: longint;
c: char;
s: extended;
begin
if auszerhalbIstFehler then
testeAuszerhalb(false,false,l,x);
// man muss zuerst herausfinden, welcher Vorfahr für den Wert verantwortlich ist:
i:=0;
c:=paralleleRichtung[l];
if horizontal xor not (l in [lOben,lUnten]) then begin // aber nur, wenn der Wert auf einer Achse in Agglomerationsrichtung liegt
x:=x+inAchsen[c,'x']-nullposition;
if schritt<0 then // Schrittlänge berechnen
s:=(vorgaenger[0].achsen[c,'y']-vorgaenger[0].achsen[c,'x'])*(1+1/vorgaenger[0].xStepsTSiz[c])
else
s:=schritt;
while (i<length(vorgaenger)) and (vorgaenger[i].achsen[c,'y']<x) do begin
x:=x-s;
inc(i);
end;
end;
if (i>=length(vorgaenger)) or // kein Vorfahr verantwortlich?
(vorgaenger[i].achsen[c,'x']>x) then result:=0 // dann lag der Wert direkt vor dem i-ten,
else result:=vorgaenger[i].wertZuPositionAufAchse(l,x,auszerhalbIstFehler); // der dann genaueres weiß
if horizontal xor not (l in [lOben,lUnten]) then // in Agglomerationsrichtung
result:=(result+i)/length(vorgaenger); // muss verschoben und gestaucht werden
if auszerhalbIstFehler then
testeAuszerhalb(false,true,l,result);
end;
function tAgglomeration.positionAufAchseZuWert(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended;
begin
if auszerhalbIstFehler then // intentionally wrong!
testeAuszerhalb(false,false,l,x);
fehler('tAgglomeration: positionAufAchseZuWert ist noch nicht implementiert');
result:=0;
if auszerhalbIstFehler then
testeAuszerhalb(false,true,l,result);
end;
function tAgglomeration.dumpParams: string;
begin
result:='Agglomeration: '+intToStr(length(vorgaenger))+'x ';
if horizontal then
result:=result+'horizont'
else
result:=result+'vertik';
result:=result+'al um '+floatToStr(schritt)+' versetzt ' + inherited dumpParams;
end;
// tDiagonaleAgglomeration *****************************************************
constructor tDiagonaleAgglomeration.create(vorg: tTransformation);
begin
inherited create;
fuegeVorgaengerHinzu(vorg);
end;
function tDiagonaleAgglomeration.datenRichtung: char;
begin
if not (inXSTS['x']=1) xor (inXSTS['y']=1) then
fehler('Diagonal zu agglomerierende Daten müssen eindimensional sein und nicht '+intToStr(inXSTS['x'])+'x'+intToStr(inXSTS['y'])+'!');
result:=char(ord('x')+byte(inXSTS['y']<>1));
end;
procedure tDiagonaleAgglomeration.holeInfosVonVorgaengern;
begin
if length(vorgaenger)=0 then exit;
inAchsen:=beliebigerVorgaenger.achsen;
if length(vorgaenger)>1 then
fehler('Diagonale Agglomeration kann nur einen Vorgänger haben!');
inXSTS:=beliebigerVorgaenger.xStepsTSiz;
inWMia:=beliebigerVorgaenger.wMia;
inPMia:=beliebigerVorgaenger.pMia;
end;
procedure tDiagonaleAgglomeration.aktualisiereXsTs;
var
c: char;
begin
for c:='x' to 'y' do
outXSTS[c]:=inXSTS[datenRichtung];
end;
procedure tDiagonaleAgglomeration.aktualisiereAchsen;
var
c,d: char;
begin
for c:='x' to 'y' do
for d:='x' to 'y' do
outAchsen[c,d]:=inAchsen[datenRichtung,d];
end;
function tDiagonaleAgglomeration.wertZuPositionAufAchse(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended;
begin
if auszerhalbIstFehler then
testeAuszerhalb(false,false,l,x);
if (datenRichtung='x') xor (l in [lOben,lUnten]) then
result:=beliebigerVorgaenger.wertZuPositionAufAchse(dreheLagePositiv(l),x,auszerhalbIstFehler)
else
result:=beliebigerVorgaenger.wertZuPositionAufAchse(l,x,auszerhalbIstFehler);
if auszerhalbIstFehler then
testeAuszerhalb(false,true,l,result);
end;
function tDiagonaleAgglomeration.positionAufAchseZuWert(const l: tLage; x: extended; auszerhalbIstFehler: boolean = true): extended;
begin
if auszerhalbIstFehler then // intentionally wrong
testeAuszerhalb(false,true,l,x);
fehler('tDiagonaleAgglomeration: positionAufAchseZuWert ist noch nicht implementiert!');
result:=0;
if auszerhalbIstFehler then
testeAuszerhalb(false,false,l,result);
end;
function tDiagonaleAgglomeration.dumpParams: string;
begin
result:='diagonale Agglomeration ' + inherited dumpParams;
end;
// tWerteKnickTransformation ***************************************************
constructor tWerteKnickTransformation.create;
begin
inherited create;
setLength(parameter,0);
end;
destructor tWerteKnickTransformation.destroy;
begin
setLength(parameter,0);
inherited destroy;
end;
function tWerteKnickTransformation.transformiereWertEinzeln(const x: extended): extended;
var
i: longint;
begin
if x>=parameter[length(parameter)-2] then begin
result:=parameter[length(parameter)-1];
exit;
end;
i:=0;
while (i<length(parameter)-2) and (x>=parameter[i+2]) do
inc(i,2);
result:=x-parameter[i];
result:=result/(parameter[i+2]-parameter[i]);
result:=parameter[i+1]+result*(parameter[i+3]-parameter[i+1])
end;
function tWerteKnickTransformation.dumpParams: string;
var
i: longint;
begin
result:='Knick:';
for i:=0 to length(parameter) div 2 - 1 do
result:=result + ' (' + floatToStr(parameter[2*i])+';'+floatToStr(parameter[2*i+1])+')';
result:=result + ' ' + inherited dumpParams;
end;
// tWerteLogTransformation *****************************************************
constructor tWerteLogTransformation.create;
begin
inherited create;
logMin:=0.1;
end;
function tWerteLogTransformation.transformiereWertEinzeln(const x: extended): extended;
begin
result:=ln(max(x/logMin,1))/ln(max(1/logMin,1));
end;
function tWerteLogTransformation.dumpParams: string;
begin
result:='Logarithmus: '+floatToStr(logMin)+' ' + inherited dumpParams;
end;
// tWerteLogAbsTransformation **************************************************
constructor tWerteLogAbsTransformation.create;
begin
inherited create;
logSkala:=0.1;
end;
function tWerteLogAbsTransformation.transformiereWertEinzeln(const x: extended): extended;
begin
result:=(1+sign(x-0.5)*ln(logSkala*abs(x-0.5)+1)/ln(logSkala*0.5+1))/2;
end;
function tWerteLogAbsTransformation.dumpParams: string;
begin
result:='Betragslogarithmus: '+floatToStr(logSkala) + ' ' + inherited dumpParams;
end;
// tWerteAbsTransformation *****************************************************
constructor tWerteAbsTransformation.create;
begin
inherited create;
end;
function tWerteAbsTransformation.transformiereWertEinzeln(const x: extended): extended;
begin
result:=2*abs(x-0.5);
end;
function tWerteAbsTransformation.dumpParams: string;
begin
result:='Betrag ' + inherited dumpParams;
end;
function liesTWerteTransformationen(sT: boolean; s: string; f: tMyStringList; etf: tExprToFloat; var tr: tTransformation): boolean;
var
i: longint;
tmp: tTransformation;
bekannteTransformationen: tMyStringList;
begin
result:=false;
bekannteTransformationen:=tMyStringList.create;
if istDasBefehl('Knick',s,bekannteTransformationen,false) then begin
tmp:=tWerteKnickTransformation.create;
with (tmp as tWerteKnickTransformation) do begin
setLength(parameter,2);
parameter[0]:=0;
parameter[1]:=0;
repeat
if not f.metaReadln(s,true) then begin
gibAus('Unerwartetes Dateiende!',3);
bekannteTransformationen.free;
exit;
end;
if s='Ende' then break;
setLength(parameter,length(parameter)+2);
parameter[length(parameter)-2]:=
etf(sT,erstesArgument(s,' '));
if s='' then s:=intToStr(length(parameter) div 2 - 1);
parameter[length(parameter)-1]:=
etf(sT,s);
until false;
for i:=0 to length(parameter)-1 do
if odd(i) then
parameter[i]:=
parameter[i]/
(length(parameter) div 2);
setLength(parameter,length(parameter)+2);
parameter[length(parameter)-2]:= 1;
parameter[length(parameter)-1]:= 1;
end;
result:=true;
tmp.fuegeVorgaengerHinzu(tr);
tr:=tmp;
bekannteTransformationen.free;
exit;
end;
if istDasBefehl('Log:',s,bekannteTransformationen,true) then begin
tmp:=tWerteLogTransformation.create;
(tmp as tWerteLogTransformation).logMin:=etf(sT,s);
result:=true;
tmp.fuegeVorgaengerHinzu(tr);
tr:=tmp;
bekannteTransformationen.free;
exit;
end;
if istDasBefehl('AbsLog:',s,bekannteTransformationen,true) then begin
tmp:=tWerteLogAbsTransformation.create;
(tmp as tWerteLogAbsTransformation).logSkala:=etf(sT,s);
result:=true;
tmp.fuegeVorgaengerHinzu(tr);
tr:=tmp;
bekannteTransformationen.free;
exit;
end;
if istDasBefehl('Abs',s,bekannteTransformationen,false) then begin
tmp:=tWerteAbsTransformation.create;
result:=true;
tmp.fuegeVorgaengerHinzu(tr);
tr:=tmp;
bekannteTransformationen.free;
exit;
end;
bekannteTransformationen.sort;
gibAus('Kenne Bearbeitungsmethode '''+s+''' nicht!'#10'Ich kenne:'#10+bekannteTransformationen.text,3);
bekannteTransformationen.free;
end;
procedure zerstoereTransformationWennObsolet(tr: tTransformation);
begin
if assigned(tr) and not tr.wirdGebraucht then
tr.free;
end;
function dreheLagePositiv(l: tLage): tLage;
begin
case l of
lLinks:
result:=lUnten;
lOben:
result:=lLinks;
lRechts:
result:=lOben;
lUnten:
result:=lRechts;
end{of case};
end;
function stringToTHintergrundAbzugsArt(s: string; sT: boolean; kvs: tKnownValues; cbgv: tCallBackGetValue; out hintergrundAbzugsArt: tHintergrundAbzugsArt): boolean;
var
bekannteArten: tMyStringList;
begin
result:=true;
bekannteArten:=tMyStringList.create;
if istDasBefehl('keine',s,bekannteArten,false) then begin
hintergrundAbzugsArt.art:=haaKeine;
setLength(hintergrundAbzugsArt.parameter,0);
bekannteArten.free;
exit;
end;
if istDasBefehl('Rand-Durchschnitt',s,bekannteArten,false) then begin
hintergrundAbzugsArt.art:=haaRandDurchschnitt;
setLength(hintergrundAbzugsArt.parameter,0);
bekannteArten.free;
exit;
end;
if istDasBefehl('Rand-Minimum',s,bekannteArten,false) then begin
hintergrundAbzugsArt.art:=haaRandMinimum;
setLength(hintergrundAbzugsArt.parameter,0);
bekannteArten.free;
exit;
end;
if istDasBefehl('Rand-Perzentil',s,bekannteArten,true) then begin
hintergrundAbzugsArt.art:=haaRandPerzentil;
setLength(hintergrundAbzugsArt.parameter,1);
hintergrundAbzugsArt.parameter[0]:=exprToFloat(false,s,nil,nil);
bekannteArten.free;
exit;
end;
if istDasBefehl('Minimum',s,bekannteArten,false) then begin
hintergrundAbzugsArt.art:=haaMinimum;
setLength(hintergrundAbzugsArt.parameter,0);
bekannteArten.free;
exit;
end;
if istDasBefehl('vertikale Mittel von',s,bekannteArten,true) then begin
bekannteArten.free;
result:=false;
setLength(hintergrundAbzugsArt.parameter,2);
hintergrundAbzugsArt.parameter[0]:=exprToFloat(sT,erstesArgument(s),kvs,cbgv);
if not startetMit('bis ',s) then begin
gibAus('Syntaxfehler in Hintergrundabzugsart, ich erwarte: ''vertikale Mittel von $minT bis $maxT''!',3);
setLength(hintergrundAbzugsArt.parameter,0);
exit;
end;
hintergrundAbzugsArt.parameter[1]:=exprToFloat(sT,erstesArgument(s),kvs,cbgv);
hintergrundAbzugsArt.art:=haaVertikaleMittel;
result:=true;
exit;
end;
result:=false;
hintergrundAbzugsArt.art:=haaKeine;
setLength(hintergrundAbzugsArt.parameter,0);
bekannteArten.sort;
gibAus('Unbekannte Art, den Hintergrund abzuziehen: '''+s+'''!'#10+bekannteArten.text,3);
bekannteArten.free;
end;
function tHintergrundAbzugsArtToStr(hintergrundAbzugsArt: tHintergrundAbzugsArt): string;
begin
case hintergrundAbzugsArt.art of
haaKeine:
result:='keine';
haaMinimum:
result:='Minimum';
haaRandMinimum:
result:='Rand-Minimum';
haaRandPerzentil:
result:='Rand-Perzentil ('+floatToStr(hintergrundAbzugsArt.parameter[0])+')';
haaRandDurchschnitt:
result:='Rand-Durchschnitt';
haaVertikaleMittel:
result:='vertikale Mittel von '+floatToStr(hintergrundAbzugsArt.parameter[0])+' bis '+floatToStr(hintergrundAbzugsArt.parameter[1]);
else
result:='UNBEKANNT';
end{of case};
end;
function strToTEntspringModus(s: string; sT: boolean; kvs: tKnownValues; cbgv: tCallBackGetValue; out entspringModus: tEntspringModus): boolean;
var
bekannteModi: tMyStringList;
begin
bekannteModi:=tMyStringList.create;
result:=true;
if istDasBefehl('kein',s,bekannteModi,false) then begin
entspringModus.modus:=emKein;
setLength(entspringModus.parameter,0);
end
else if istDasBefehl('horizontal',s,bekannteModi,true) then begin
entspringModus.modus:=emHorizontal;
setLength(entspringModus.parameter,1);
entspringModus.parameter[0]:=exprToFloat(sT,s,kvs,cbgv);
end
else if istDasBefehl('vertikal',s,bekannteModi,true) then begin
entspringModus.modus:=emVertikal;
setLength(entspringModus.parameter,1);
entspringModus.parameter[0]:=exprToFloat(sT,s,kvs,cbgv);
end
else begin
entspringModus.modus:=emKein;
setLength(entspringModus.parameter,0);
result:=false;
bekannteModi.sort;
gibAus('Unbekannter Entspringmodus '''+s+''' - ich kenne nur:'#10+bekannteModi.text,3);
end;
bekannteModi.free;
end;
function tEntspringModusToStr(entspringModus: tEntspringModus): string;
begin
case entspringModus.modus of
emKein:
result:='kein';
emHorizontal:
result:='horizontal '+myFloatToStr(entspringModus.parameter[0]);
emVertikal:
result:='vertikal '+myFloatToStr(entspringModus.parameter[0]);
else
result:='UNBEKANNT';
end{of case};
end;
end.
|