mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-10 09:53:48 +00:00
35347e8d63
* refactor: split event data and state data * refactor: calculate the start time insted of until * cleanup * send next flag expected start from server * refactor: render * fix test * use same icon * refactor: group duration * Optimize (#1711) * refactor: consolidate block, flag and end loading and expected times * work on test * cal end value * lint * fix test * remove todo
63 lines
2.1 KiB
TypeScript
63 lines
2.1 KiB
TypeScript
import type { MaybeNumber, OntimeEvent } from 'ontime-types';
|
|
import { OffsetMode } from 'ontime-types';
|
|
|
|
import { dayInMs } from './conversionUtils.js';
|
|
|
|
/**
|
|
* @param event the event that we are counting to
|
|
* @param currentDay the day offset of the currently running event
|
|
* @param totalGap accumulated gap from the current event
|
|
* @param isLinkedToLoaded is this event part of a chain linking back to the current loaded event
|
|
* @param clock
|
|
* @param offset
|
|
* @returns
|
|
*/
|
|
export function getExpectedStart(
|
|
event: Pick<OntimeEvent, 'timeStart' | 'dayOffset' | 'delay'>,
|
|
state: {
|
|
currentDay: number;
|
|
totalGap: number;
|
|
isLinkedToLoaded: boolean;
|
|
offset: number;
|
|
offsetMode: OffsetMode;
|
|
actualStart: MaybeNumber;
|
|
plannedStart: MaybeNumber;
|
|
},
|
|
): number {
|
|
const { timeStart, dayOffset, delay } = event;
|
|
const { currentDay, totalGap, isLinkedToLoaded, offset, offsetMode, actualStart, plannedStart } = state;
|
|
|
|
//How many days from the currently running event to this one
|
|
const relativeDayOffset = dayOffset - currentDay;
|
|
|
|
const delayedStart = Math.max(0, timeStart + delay);
|
|
|
|
//The normalised start time of this event relative to the currently running event
|
|
const normalisedTimeStart = delayedStart + relativeDayOffset * dayInMs;
|
|
|
|
let relativeStartOffset = 0;
|
|
|
|
if (offsetMode === OffsetMode.Relative) {
|
|
relativeStartOffset = (actualStart ?? 0) - (plannedStart ?? 0);
|
|
}
|
|
|
|
const scheduledStartTime = normalisedTimeStart + relativeStartOffset;
|
|
|
|
const offsetStartTime = scheduledStartTime - offset;
|
|
|
|
if (isLinkedToLoaded) {
|
|
//if we are directly linked back to the loaded event we just follow the offset
|
|
return offsetStartTime;
|
|
}
|
|
|
|
const gapsCanCompensateForOffset = totalGap + offset >= 0;
|
|
if (gapsCanCompensateForOffset) {
|
|
// if we are ahead of schedule or the gap can compensate for the amount we are behind then expect to start at the scheduled time
|
|
return scheduledStartTime;
|
|
}
|
|
|
|
// otherwise consume as much of the offset as possible with the gap
|
|
const offsetStartTimeBufferedByGaps = offsetStartTime - totalGap;
|
|
return offsetStartTimeBufferedByGaps;
|
|
}
|