-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathcreatePathStep.ts
135 lines (119 loc) · 4.09 KB
/
createPathStep.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
import nextId from 'react-id-generator';
import type { ManageTrainSchedulePathProperties } from 'applications/operationalStudies/types';
import type { TrackRange } from 'common/api/osrdEditoastApi';
import type { IntervalItem } from 'common/IntervalsEditor/types';
import type { PathStep } from 'reducers/osrdconf/types';
import { getPointCoordinates } from 'utils/geometry';
import { mmToM, mToMm } from 'utils/physics';
import { NO_POWER_RESTRICTION } from '../consts';
const findTrackSectionIndex = (position: number, tracksLengthCumulativeSums: number[]) => {
for (let i = 0; i < tracksLengthCumulativeSums.length; i += 1) {
if (position <= tracksLengthCumulativeSums[i]) {
return i;
}
}
return -1;
};
/**
* Return the track offset corresponding to the given position on path, composed of the track section id
* and the offet on this track section in mm
*/
export const findTrackSectionOffset = (
positionOnPath: number, // in mm
tracksLengthCumulativeSums: number[], // in mm
trackRangesOnPath: TrackRange[]
) => {
const index = findTrackSectionIndex(positionOnPath, tracksLengthCumulativeSums);
const trackRange = trackRangesOnPath[index];
if (!trackRange) return null;
// compute offset
const inferiorSum = index > 0 ? tracksLengthCumulativeSums[index - 1] : 0;
const offsetOnTrackRange = positionOnPath - inferiorSum;
const offsetOnTrackSection =
trackRange.direction === 'START_TO_STOP'
? trackRange.begin + offsetOnTrackRange
: trackRange.end - offsetOnTrackRange;
return { track: trackRange.track_section, offset: offsetOnTrackSection };
};
const createPathStep = (
positionOnPathInM: number, // in meters
tracksLengthCumulativeSums: number[],
pathProperties: ManageTrainSchedulePathProperties,
pathSteps: PathStep[]
): PathStep | undefined => {
const positionOnPath = mToMm(positionOnPathInM);
if (
positionOnPath === 0 ||
new Set(pathSteps.map((step) => step?.positionOnPath)).has(positionOnPath)
)
return undefined;
const trackOffset = findTrackSectionOffset(
positionOnPath,
tracksLengthCumulativeSums,
pathProperties.trackSectionRanges
);
if (!trackOffset) return undefined;
const coordinates = getPointCoordinates(
pathProperties.geometry,
pathProperties.length,
positionOnPath
);
return {
id: nextId(),
positionOnPath,
coordinates,
...trackOffset,
// TODO: we should return the offset in mm once it is stored in mm in the store
offset: mmToM(trackOffset.offset),
isFromPowerRestriction: true,
};
};
export const createCutAtPathStep = (
cutAtPositionInM: number,
pathProperties: ManageTrainSchedulePathProperties,
rangesData: IntervalItem[],
cutPositions: number[],
tracksLengthCumulativeSums: number[],
setCutPositions: (newCutPosition: number[]) => void
): PathStep | null => {
const intervalCut = rangesData.find(
(interval) => interval.begin <= cutAtPositionInM && interval.end >= cutAtPositionInM
);
if (!intervalCut || intervalCut.value === NO_POWER_RESTRICTION) {
const newCutPositions = !cutPositions.length
? [cutAtPositionInM]
: cutPositions.flatMap((position, index) => {
if (position > cutAtPositionInM) {
return [cutAtPositionInM, position];
}
if (index === cutPositions.length - 1) {
return [position, cutAtPositionInM];
}
return [position];
});
setCutPositions(newCutPositions);
return null;
}
const cutAtPosition = mToMm(cutAtPositionInM);
const trackOffset = findTrackSectionOffset(
cutAtPosition,
tracksLengthCumulativeSums,
pathProperties.trackSectionRanges
);
if (!trackOffset) return null;
const coordinatesAtCut = getPointCoordinates(
pathProperties.geometry,
pathProperties.length,
cutAtPosition
);
return {
id: nextId(),
positionOnPath: cutAtPosition,
coordinates: coordinatesAtCut,
isFromPowerRestriction: true,
...trackOffset,
// TODO: we should return the offset in mm once it is stored in mm in the store
offset: mmToM(trackOffset.offset),
};
};
export default createPathStep;