-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSaxSchedulesTypedNachberechnung.ts
821 lines (687 loc) · 37.3 KB
/
SaxSchedulesTypedNachberechnung.ts
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
module SaxSchedulesTyped{
// functions filling SingleDirectionScheduleTyped value
export class Nachberechnung{
public static berechneZugLaeufe(s: SingleDirectionScheduleTyped) : SingleDirectionScheduleTyped
{
// 0) bestimme Spaltenzahl
var tLen = 0;
s.Zeilen.forEach((z)=>{
switch (z.kind){
case ZEILE_NORMAL:
tLen = z.Zeiteintraege.length;
break;
//case ZEILE_ANSCHLUSS_AUS:
//case ZEILE_ANSCHLUSS_NACH_IN:
case ZEILE_ANSCHLUSS_ZUBRINGER_AB:
case ZEILE_ANSCHLUSS_ZUBRINGER_IN:
case ZEILE_ANSCHLUSS_WEITER_AB:
case ZEILE_ANSCHLUSS_WEITER_IN:
case ZEILE_KLASSEN:
case ZEILE_ZUGNR:
// ignored for counting columns
break;
default:
return Importer.assertNever(z);
}
});
//spaltenweise Zuglauf suchen
//TODO
for (var sp = 0;sp < tLen ; sp++){
var tZugNr = "";
// folgende 3 variablen fuer ueberschreiben der zugnummer mit * beginn .... * ende vgl. seite 103
var tZugNrRefKey: string | null = null;
var tZugNrAlt = "";
var tZugZweiterStern = false;
//console.log("--- ",sp);
s.Zeilen.forEach((z)=>{
switch (z.kind){
case ZEILE_ZUGNR:
var tZNEintrag = z.ZugNummern[sp];
switch(tZNEintrag.kind){
case BLOCK_BLOCK:
if (tZNEintrag.Blockinhalt){
tZugNr = tZNEintrag.Blockinhalt.ZugNrOderKlasse.Zugnr!; //force not undefined ?? TODO error handling
// Neuer Zugnummereintrag bekommt seine eigene Zugnummer auch als berechneter wert
tZNEintrag.BerechneterZugLauf = {
kind: ZUGLAUF_BERECHNET,
isStart: false,
isEnd: false,
isDeleted: false,
everyDay: true, //todo fill
ZugNr: tZugNr
};
}else{
// blockfreier inhalt braucht auch eine gueltige zugnummer ( -- > anaberg werdau zug 1871)
tZNEintrag.BerechneterZugLauf = {
kind: ZUGLAUF_BERECHNET,
isStart: false,
isEnd: false,
isDeleted: false,
everyDay: true, //todo fill
ZugNr: tZugNr
};
}
break;
case BLOCK_LEER:
case BLOCK_DICKERSTRICH:
tZNEintrag.BerechneterZugLauf = {
kind: ZUGLAUF_BERECHNET,
isStart: false,
isEnd: false,
isDeleted: false,
everyDay: true, //todo fill
ZugNr: tZugNr
};
}
break;
//case ZEILE_ANSCHLUSS_AUS:
//case ZEILE_ANSCHLUSS_NACH_IN:
case ZEILE_ANSCHLUSS_ZUBRINGER_AB:
case ZEILE_ANSCHLUSS_ZUBRINGER_IN:
case ZEILE_ANSCHLUSS_WEITER_AB:
case ZEILE_ANSCHLUSS_WEITER_IN:
case ZEILE_KLASSEN:
case ZEILE_NORMAL:
var tEintrag : TNormalZeileEintrag = {kind: BLOCK_ERROR, Grund: "temp"};
if (z.kind == ZEILE_KLASSEN) {
tEintrag = z.KlassenNummern[sp];
}
else{
tEintrag = z.Zeiteintraege[sp];
}
//zugriff nur auf einen eintrag
//falls der aktuelle eintrag einen fernverweis (z.b. * oder ? oder !) hat, wird dessen zugnummer ab jetzt verwendet
switch(tEintrag.kind){
case BLOCK_ZEITEINTRAG:
if (tEintrag.Referenzkey){
var tZeitEintrag = tEintrag;
s.ZusatzBloecke.forEach((fe)=>{
switch (fe.Verweistyp.kind){
case SaxSchedulesZusatzBase.VERWEIS_FERN:
if(fe.Verweistyp.ReferenzKey === tZeitEintrag.Referenzkey){
if (tZugNrRefKey != null){
//2 tes auftreten des key -> zugnr beenden
tZugZweiterStern = true;
} else {
if (fe.ZugNrOderKlasse.Zugnr){
//1 tes auftreten
tZugNrAlt = tZugNr;
tZugNr = fe.ZugNrOderKlasse.Zugnr;
tZugNrRefKey = tZeitEintrag.Referenzkey;
}
}
}
}
});
}
case BLOCK_LEER:
case BLOCK_KEINHALT:
case BLOCK_DICKERSTRICH:
case BLOCK_KEINHALT:
case BLOCK_ANKUNFT:
case BLOCK_BLOCK:
if (tEintrag.kind === BLOCK_BLOCK){
if (tEintrag.Blockinhalt){
if((tEintrag.Blockinhalt.Verweistyp.kind === SaxSchedulesZusatzBase.VERWEIS_PASSEND) ||
(tEintrag.Blockinhalt.Verweistyp.kind === SaxSchedulesZusatzBase.VERWEIS_EMBEDDED)) {
if (tEintrag.Blockinhalt.ZugNrOderKlasse.Zugnr){
tZugNr = tEintrag.Blockinhalt.ZugNrOderKlasse.Zugnr;
}
}
}
}
tEintrag.BerechneterZugLauf = {
kind: ZUGLAUF_BERECHNET,
isStart: false,
isEnd: false,
isDeleted: false,
everyDay: true, //todo fill
ZugNr: tZugNr
};
if (tZugZweiterStern){
tZugZweiterStern = false;
tZugNr = tZugNrAlt;
tZugNrRefKey = null;
}
break;
// TODO * external blocks and intern blocks
case BLOCK_ERROR:
//nothing to fill for these entries
break;
default:
return Importer.assertNever(tEintrag);
}
break;
//z.KlassenNummern[sp].
//break;
default:
return Importer.assertNever(z);
}
});
}
//start und end jedes einzelnen Zuglauf passend eintragen
//pro spalte von unten nach oben
//gehe von unten nach oben und markiere enden
for (var sp = 0; sp < tLen; sp++){
var tCurrentZugNr :string | undefined;
//var tLoesche = true;
var tZeilenZahl = s.Zeilen.length;
for (var zei = tZeilenZahl -1; zei >= 0; zei--){
var tZeile = s.Zeilen[zei];
switch (tZeile.kind){
//case ZEILE_NORMAL:
//case ZEILE_ANSCHLUSS_AUS:
//case ZEILE_ANSCHLUSS_NACH_IN:
case ZEILE_ANSCHLUSS_ZUBRINGER_AB:
case ZEILE_ANSCHLUSS_ZUBRINGER_IN:
case ZEILE_NORMAL:
case ZEILE_ANSCHLUSS_WEITER_AB:
case ZEILE_ANSCHLUSS_WEITER_IN:
case ZEILE_KLASSEN:
//case ZEILE_ZUGNR:
var tEintrag : TNormalZeileEintrag = {kind: BLOCK_ERROR, Grund: "temp"};
if (tZeile.kind == ZEILE_KLASSEN) {
tEintrag = tZeile.KlassenNummern[sp];
}
else{
tEintrag = tZeile.Zeiteintraege[sp];
}
if ((tEintrag.kind != BLOCK_ERROR) && (tEintrag.BerechneterZugLauf.kind == ZUGLAUF_BERECHNET)){
if ((tCurrentZugNr != tEintrag.BerechneterZugLauf.ZugNr) /* || (tLoesche) */ ){
//if ((tCurrentZugNr != undefined)&&(tCurrentZugNr.length > 0)) {
var TEb = tEintrag.BerechneterZugLauf;
if (tEintrag.BerechneterZugLauf.ZugNr){
tEintrag.BerechneterZugLauf.isEnd = true;
}
//if ((tEintrag.kind == BLOCK_LEER) && (TEb.ZugNr) && (tLoesche)){
// TEb.isEnd = false;
// TEb.isDeleted = true;
// tLoesche = true;
//}else{
// tLoesche = false;
//}
//}
tCurrentZugNr = TEb.ZugNr;
}
//}else{
// tLoesche = false;
//}
}
break;
case ZEILE_ZUGNR:
//tZeile.ZugNummern
//TODO
}
}
}
// gehe von oben nach unten
for (var sp = 0; sp < tLen; sp++){
var tCurrentZugNr :string | undefined;
var tZeilenZahl = s.Zeilen.length;
for (var zei = 0; zei < tZeilenZahl; zei++){
var tZeile = s.Zeilen[zei];
switch (tZeile.kind){
//case ZEILE_NORMAL:
//case ZEILE_ANSCHLUSS_AUS:
//case ZEILE_ANSCHLUSS_NACH_IN:
case ZEILE_ANSCHLUSS_ZUBRINGER_AB:
case ZEILE_ANSCHLUSS_ZUBRINGER_IN:
case ZEILE_NORMAL:
case ZEILE_ANSCHLUSS_WEITER_AB:
case ZEILE_ANSCHLUSS_WEITER_IN:
case ZEILE_KLASSEN:
case ZEILE_ZUGNR:
var tEintrag : TNormalZeileEintrag = {kind: BLOCK_ERROR, Grund: "temp"};
if (tZeile.kind == ZEILE_KLASSEN) {
tEintrag = tZeile.KlassenNummern[sp];
}else
if(tZeile.kind == ZEILE_ZUGNR)
{
tEintrag = tZeile.ZugNummern[sp];
}
else{
tEintrag = tZeile.Zeiteintraege[sp];
}
if ((tEintrag.kind != BLOCK_ERROR) && (tEintrag.BerechneterZugLauf.kind == ZUGLAUF_BERECHNET)){
if (tCurrentZugNr != tEintrag.BerechneterZugLauf.ZugNr){
//if ((tCurrentZugNr != undefined)&&(tCurrentZugNr.length > 0)) {
if (tEintrag.BerechneterZugLauf.ZugNr){
tEintrag.BerechneterZugLauf.isStart = true;
}
//}
tCurrentZugNr = tEintrag.BerechneterZugLauf.ZugNr;
}
}
break;
//case ZEILE_ZUGNR:
// //tZeile.ZugNummern
// //TODO
}
}
}
// gehe von unten nach oben und bewege enden nach oben
for (var sp = 0; sp < tLen; sp++){
//var tCurrentZugNr :string | undefined;
//var tLoesche = true;
var tNeedEnd = false;
var tZeilenZahl = s.Zeilen.length;
for (var zei = tZeilenZahl -1; zei >= 0; zei--){
var tZeile = s.Zeilen[zei];
switch (tZeile.kind){
//case ZEILE_NORMAL:
//case ZEILE_ANSCHLUSS_AUS:
//case ZEILE_ANSCHLUSS_NACH_IN:
case ZEILE_ANSCHLUSS_ZUBRINGER_AB:
case ZEILE_ANSCHLUSS_ZUBRINGER_IN:
case ZEILE_NORMAL:
case ZEILE_ANSCHLUSS_WEITER_AB:
case ZEILE_ANSCHLUSS_WEITER_IN:
case ZEILE_KLASSEN:
//case ZEILE_ZUGNR:
var tEintrag : TNormalZeileEintrag = {kind: BLOCK_ERROR, Grund: "temp"};
if (tZeile.kind == ZEILE_KLASSEN) {
tEintrag = tZeile.KlassenNummern[sp];
}
else{
tEintrag = tZeile.Zeiteintraege[sp];
}
if ((tEintrag.kind != BLOCK_ERROR) && (tEintrag.BerechneterZugLauf.kind == ZUGLAUF_BERECHNET))
{
var teb = tEintrag.BerechneterZugLauf;
if (((teb.isEnd == true) || tNeedEnd ) &&
( (tEintrag.kind == BLOCK_LEER)
|| ((tEintrag.kind == BLOCK_BLOCK) && (tEintrag.Start == false)))) // trag end in obersten sa / wa block ein, d.h der welche start ist und ggf die anderen im tabellenrenderer ueberlappt
{
teb.isEnd = false;
teb.isDeleted = true;
tNeedEnd = true;
}else
{ if (tNeedEnd){
teb.isEnd = true;
tNeedEnd = false;
}
}
}else{
//do nothing
}
}
}
}
// todo suche jedentaggueltigkeit
// JETZT WERDEN DIE ZUGLAUEFE EXTRAHIERT (wenn exctrahiert werden die taggueltigkeiten DARAUS gefuellt)
// siehe zugextraktor weiter unten
return s;
}
}
}
// beschreibt einen konkreten Zuglauf an einem Konkreten Tag
// inkl Zeitabweichung, Klassenabweichung etc
module SaxSchedulesTyped{
export const LAUFEINTRAG_NORMAL: "LAUFEINTRAG_NORMAL" = "LAUFEINTRAG_NORMAL";
export const LAUFEINTRAG_KEINHALT: "LAUFEINTRAG_KEINHALT" = "LAUFEINTRAG_KEINHALT";
export const LAUFEINTRAG_AN: "LAUFEINTRAG_AN" = "LAUFEINTRAG_AN";
export const LAUFEINTRAG_GELOESCHT: "LAUFEINTRAG_GELOESCHT" = "LAUFEINTRAG_GELOESCHT";
export type LaufEintragIncomplete = LaufEintragNormal | LaufEintragAn | LaufEintragGeloescht | LaufEintragKeinHalt |LaufEintragKommeAusKbs|LaufEintragVerlasseNachKbs;
export interface LaufEintragNormal{
kind: typeof LAUFEINTRAG_NORMAL,
BhfTag: string,
AnZeit: SaxSchedulesTyped.TZeit24 | null,
AbZeit: SaxSchedulesTyped.TZeit24 | null
}
export interface LaufEintragKeinHalt{
kind: typeof LAUFEINTRAG_KEINHALT,
BhfTag: string
}
export interface LaufEintragAn{
kind: typeof LAUFEINTRAG_AN
}
export interface LaufEintragGeloescht{
kind: typeof LAUFEINTRAG_GELOESCHT
}
//ankommen / verlassen der kbs
export const LAUFEINTRAG_KOMMEAUSKBS: "LAUFEINTRAG_KOMMEAUSKBS" = "LAUFEINTRAG_KOMMEAUSKBS";
export const LAUFEINTRAG_VERLASSENACHKBS: "LAUFEINTRAG_VERLASSENACHKBS" = "LAUFEINTRAG_VERLASSENACHKBS";
export interface LaufEintragKommeAusKbs {
kind: typeof LAUFEINTRAG_KOMMEAUSKBS;
}
export interface LaufEintragVerlasseNachKbs {
kind: typeof LAUFEINTRAG_VERLASSENACHKBS;
}
export interface Lauf{
Nummer: string;
TagAbhaengig: Array<{
Gueltig: SaxSchedulesZusatzBase.TFahrtage;
Ablauf: Array<LaufEintragNormal | LaufEintragKeinHalt |LaufEintragKommeAusKbs|LaufEintragVerlasseNachKbs>
}>
}
export class ZugExtraktor{
public static printZuglauf(arr: Array<LaufEintragNormal | LaufEintragKeinHalt|LaufEintragKommeAusKbs|LaufEintragVerlasseNachKbs>){
arr.forEach((a)=>{
var ae = a;
switch (ae.kind){
case LAUFEINTRAG_KEINHALT:
console.log(ae.BhfTag + " kein Halt");
break;
case LAUFEINTRAG_NORMAL:
console.log(ae.BhfTag +" "+ (ae.AnZeit ? "an " + ae.AnZeit.src :"" ) + (ae.AbZeit ? "ab " + ae.AbZeit.src :"" ) );
break;
case LAUFEINTRAG_KOMMEAUSKBS:
console.log(" komme aus kbs");
break;
case LAUFEINTRAG_VERLASSENACHKBS:
console.log(" verlasse nach kbs");
break;
default:
return Importer.assertNever(ae);
}
});
}
public static fixZugLauf(z: Array<LaufEintragIncomplete>): Array<LaufEintragNormal | LaufEintragKeinHalt|LaufEintragKommeAusKbs|LaufEintragVerlasseNachKbs>{
//TODO ank in vorherige einbauen, geloeschte entfernen
//var tAnk = false;
var tResultReversed:Array<LaufEintragNormal | LaufEintragKeinHalt|LaufEintragKommeAusKbs|LaufEintragVerlasseNachKbs>= [];
for (let i = z.length - 1; i >= 0; i--){
var en = z[i];
switch(en.kind){
case LAUFEINTRAG_NORMAL:
case LAUFEINTRAG_KEINHALT:
case LAUFEINTRAG_KOMMEAUSKBS:
case LAUFEINTRAG_VERLASSENACHKBS:
tResultReversed.push(en);
break;
case LAUFEINTRAG_GELOESCHT:
//nicht rauskopieren
break;
case LAUFEINTRAG_AN:
var tVor = z[i-1];
switch(tVor.kind){
case LAUFEINTRAG_NORMAL:
tVor.AnZeit = tVor.AbZeit;
tVor.AbZeit = null;
break;
default:
//ignore
}
// nicht rauskopieren
break;
}
}
var tRes = tResultReversed.reverse();
console.log("fixfolge:",z,tRes)
return tRes;
}
//lese Zuglaeufe aus Tabelle aus
public static findeZuglaeufe(s:SaxSchedulesTyped.SingleDirectionScheduleTyped): Array<Lauf>{
var tResult:Array<Lauf> = [];
var tZugNr : string | null = null;
// 0) bestimme Spaltenzahl
var tLen = 0;
s.Zeilen.forEach((z)=>{
switch (z.kind){
case ZEILE_NORMAL:
tLen = z.Zeiteintraege.length;
break;
//case ZEILE_ANSCHLUSS_AUS:
//case ZEILE_ANSCHLUSS_NACH_IN:
case ZEILE_ANSCHLUSS_ZUBRINGER_AB:
case ZEILE_ANSCHLUSS_ZUBRINGER_IN:
case ZEILE_ANSCHLUSS_WEITER_AB:
case ZEILE_ANSCHLUSS_WEITER_IN:
case ZEILE_KLASSEN:
case ZEILE_ZUGNR:
// ignored for counting columns
break;
default:
return Importer.assertNever(z);
}
});
var tCurrentZugNr :string | undefined;
var tCurrentFolge: Array<LaufEintragIncomplete> = [];
var tCurrentFahrtage: SaxSchedulesZusatzBase.TFahrtage = {
kind: SaxSchedulesZusatzBase.FAEHRT_IMMER
};
// gehe von oben nach unten
for (var sp = 0; sp < tLen; sp++){
//var tCurrentLauf: Lauf | null = null;
var tZeilenZahl = s.Zeilen.length;
for (var zei = 0; zei < tZeilenZahl; zei++){
var tZeile = s.Zeilen[zei];
switch (tZeile.kind){
//case ZEILE_NORMAL:
//case ZEILE_ANSCHLUSS_AUS:
//case ZEILE_ANSCHLUSS_NACH_IN:
case ZEILE_ANSCHLUSS_ZUBRINGER_AB:
case ZEILE_ANSCHLUSS_ZUBRINGER_IN:
case ZEILE_NORMAL:
case ZEILE_ANSCHLUSS_WEITER_AB:
case ZEILE_ANSCHLUSS_WEITER_IN:
case ZEILE_KLASSEN:
case ZEILE_ZUGNR:
var tEintrag : TNormalZeileEintrag = {kind: BLOCK_ERROR, Grund: "temp"};
if (tZeile.kind == ZEILE_KLASSEN) {
tEintrag = tZeile.KlassenNummern[sp];
}else
if(tZeile.kind == ZEILE_ZUGNR)
{
tEintrag = tZeile.ZugNummern[sp];
}
else{
tEintrag = tZeile.Zeiteintraege[sp];
}
//todo speicherlogik von fuellogik entkoppeln, speichern kann auch bei zeit unbekannt notwendig sein
//bestimme ob gespeichert werden muss, d.h. zuglauf zuende
var tJetztSpeichern = false;
if (tCurrentZugNr){
// d.h es gibt was zu speichern
if ((tEintrag.kind != BLOCK_ERROR) && (tEintrag.BerechneterZugLauf.kind == ZUGLAUF_BERECHNET)){
if ((tCurrentZugNr != tEintrag.BerechneterZugLauf.ZugNr)){
tJetztSpeichern = true;
}
}else{
tJetztSpeichern = true;
}
}
if (tJetztSpeichern && tCurrentZugNr){
var tL: Array<any> = [];
var tTagAbh = [{ // Eintrag 0 TODO auslesen
Gueltig: tCurrentFahrtage, // { kind: SaxSchedulesZusatzBase.FAEHRT_IMMER },
Ablauf: tL
}];
//var tOldZugnr = tCurrentZugNr;
var tCurrentLauf : Lauf = {
Nummer: tCurrentZugNr,
TagAbhaengig: tTagAbh
};
var tCurrentFolgeCompl = ZugExtraktor.fixZugLauf(tCurrentFolge);
console.log("save New ", tCurrentLauf.Nummer, "len raw:",tCurrentFolge.length, " len (fixed) : ", tCurrentFolgeCompl.length );
tCurrentLauf.TagAbhaengig[0].Ablauf = tCurrentFolgeCompl;
tResult.push(tCurrentLauf);
//console.log("tResult: ",JSON.stringify(tResult));
tCurrentFolge = [];
// reset and wait for new
tCurrentZugNr = undefined;
tCurrentFahrtage = { kind: SaxSchedulesZusatzBase.FAEHRT_IMMER };
}
if ((tEintrag.kind != BLOCK_ERROR) && (tEintrag.BerechneterZugLauf.kind == ZUGLAUF_BERECHNET))
{
if ((tCurrentZugNr == undefined)) {
if ((tEintrag.BerechneterZugLauf.ZugNr != null) && (tEintrag.BerechneterZugLauf.ZugNr.length > 0))
{
tCurrentFolge = [];
tCurrentFahrtage = { kind: SaxSchedulesZusatzBase.FAEHRT_IMMER };
tCurrentZugNr = tEintrag.BerechneterZugLauf.ZugNr;
console.log("start new ", tCurrentZugNr);
}
}
/*
if ((tCurrentZugNr != tEintrag.BerechneterZugLauf.ZugNr)){
//
console.log("ungleich",tCurrentZugNr, tEintrag.BerechneterZugLauf.ZugNr );
var tTagAbh = [{ // Eintrag 0 TODO auslesen
Gueltig: { kind: SaxSchedulesZusatzBase.FAEHRT_IMMER },
Ablauf: []
}];
//var tOldZugnr = tCurrentZugNr;
if (tCurrentZugNr){
tCurrentLauf = {
Nummer: tCurrentZugNr,
TagAbhaengig: tTagAbh
};
}else{
tCurrentLauf = null;
}
tCurrentZugNr = tEintrag.BerechneterZugLauf.ZugNr;
if ((tCurrentLauf) && (tCurrentLauf.Nummer.length > 0)){
console.log("save ", tCurrentLauf.Nummer, " len (raw) : ", tCurrentFolge.length );
var tCurrentFolgeCompl = ZugExtraktor.fixZugLauf(tCurrentFolge);
tCurrentLauf.TagAbhaengig[0].Ablauf = tCurrentFolgeCompl;
tResult.push(tCurrentLauf);
console.log("tResult: ",JSON.stringify(tResult));
tCurrentFolge = [];
}else{
//empty number zuglauf not pushed into result
//tCurrentFolge = [];
}
}else
{
//console.log("save ",tCurrentFolge);
//fortsetzung bestehender eintrag braucht nichts spezielles
}
*/
switch (tEintrag.kind){
case BLOCK_ZEITEINTRAG:
switch (tZeile.kind){
case ZEILE_NORMAL:
var tEnt : LaufEintragNormal = {
kind: LAUFEINTRAG_NORMAL,
BhfTag: tZeile.BhfTag,
AnZeit: null,
AbZeit:null
};
if (tEintrag.Zeit.kind == ZEIT_24){
if ((tZeile.AnAb == EAnAb.FirstAb) || (tZeile.AnAb == EAnAb.FollowAb)){
tEnt.AbZeit = tEintrag.Zeit;
}
if ((tZeile.AnAb == EAnAb.An)){
tEnt.AnZeit = tEintrag.Zeit;
}
}else{
console.error("Rohzeit sollte hier nicht mehr vorkommen !!!");
}
// TODO Laufeintrag eintragen
//if (tCurrentFolge){
tCurrentFolge.push(tEnt);
//console.log(tCurrentFolge);
//}
break;
}
//todo
break;
case BLOCK_LEER:
break;
case BLOCK_KEINHALT:
switch (tZeile.kind){
case ZEILE_NORMAL:
var tEntK : LaufEintragKeinHalt ={
kind: LAUFEINTRAG_KEINHALT,
BhfTag: tZeile.BhfTag
};
tCurrentFolge.push(tEntK);
break;
}
break;
case BLOCK_ANKUNFT: // darueberliegendes war eigentlich eine ankunft, vgl posteintrag in rkb 1914 nr 90 1240 zug endet in wilkau, nicht in silberstrasse
console.warn("Todo handle ankunft, soll vorherigen eintrag auf an wechseln");
if(tCurrentFolge){ //???
var tEntAn:LaufEintragAn = {
kind:LAUFEINTRAG_AN
};
tCurrentFolge.push(tEntAn);
}
break;
case BLOCK_BLOCK:
console.warn("todo auszulesender blockinhalt: ", tEintrag.Blockinhalt);
if (tEintrag.Passend){
if (tEintrag.Blockinhalt){
//aus / nach andere kursbuchstrecke
switch (tEintrag.Blockinhalt.KbsAbweichung.kind){
case SaxSchedulesZusatzBase.KBS_ABWEICHUNG_AUS:
var tEntKo:LaufEintragKommeAusKbs = {
kind:LAUFEINTRAG_KOMMEAUSKBS
};
tCurrentFolge.push(tEntKo);
break;
case SaxSchedulesZusatzBase.KBS_ABWEICHUNG_NACH:
var tEntN:LaufEintragVerlasseNachKbs = {
kind:LAUFEINTRAG_VERLASSENACHKBS
};
tCurrentFolge.push(tEntN);
break;
case SaxSchedulesZusatzBase.KBS_ABWEICHUNG_KEINE:
break;
default:
return Importer.assertNever(tEintrag.Blockinhalt.KbsAbweichung);
}
// gueltigkeit
switch (tEintrag.Blockinhalt.Fahrtage.kind){
case SaxSchedulesZusatzBase.FAEHRT_WERKTAGS:
tCurrentFahrtage = { kind: SaxSchedulesZusatzBase.FAEHRT_WERKTAGS };
break;
case SaxSchedulesZusatzBase.FAEHRT_SONNUNDFESTTAGS:
tCurrentFahrtage = { kind: SaxSchedulesZusatzBase.FAEHRT_SONNUNDFESTTAGS };
break;
}
}
}
break;
case BLOCK_DICKERSTRICH:
break;
default:
return Importer.assertNever(tEintrag);
}
}
else{
console.log("save block error or zuglauf unbekannt: save should save zuglauf unbekannt? zei: ",zei," sp: ",sp, JSON.stringify(tEintrag));
}
/*
if ((tEintrag.kind != BLOCK_ERROR) && (tEintrag.BerechneterZugLauf.kind == ZUGLAUF_BERECHNET)){
if (tCurrentZugNr != tEintrag.BerechneterZugLauf.ZugNr){
//if ((tCurrentZugNr != undefined)&&(tCurrentZugNr.length > 0)) {
if (tEintrag.BerechneterZugLauf.ZugNr){
tEintrag.BerechneterZugLauf.isStart = true;
}
//}
tCurrentZugNr = tEintrag.BerechneterZugLauf.ZugNr;
}
}
*/
break;
//case ZEILE_ZUGNR:
// //tZeile.ZugNummern
// //TODO
}
}
}
if (tCurrentZugNr != undefined){
// todo save last entry of last column
// code copied from above for now
var tL:Array<any>=[];
var tTagAbh2 = [{ // Eintrag 0 TODO auslesen
Gueltig: tCurrentFahrtage, // { kind: SaxSchedulesZusatzBase.FAEHRT_IMMER },
Ablauf: tL
}];
//var tOldZugnr = tCurrentZugNr;
var tCurrentLauf : Lauf = {
Nummer: tCurrentZugNr,
TagAbhaengig: tTagAbh2
};
var tCurrentFolgeCompl = ZugExtraktor.fixZugLauf(tCurrentFolge);
console.log("save New ", tCurrentLauf.Nummer, " len (fixed) : ", tCurrentFolgeCompl.length );
tCurrentLauf.TagAbhaengig[0].Ablauf = tCurrentFolgeCompl;
tResult.push(tCurrentLauf);
}
//
return tResult;
}
}
}