feat: 엔진 및 턴 스케줄 관련 인터페이스 및 로직 추가

This commit is contained in:
2025-12-28 17:21:58 +00:00
parent 8a2fc4fec5
commit bfe28773e9
5 changed files with 272 additions and 0 deletions
+85
View File
@@ -0,0 +1,85 @@
export interface TurnScheduleEntry {
startMinute: number;
tickMinutes: number;
}
export interface TurnSchedule {
entries: TurnScheduleEntry[];
}
const MINUTES_PER_DAY = 24 * 60;
const toMinuteOfDay = (date: Date): number =>
date.getHours() * 60 + date.getMinutes();
const toLocalDateAtMinute = (date: Date, minuteOfDay: number, dayOffset = 0): Date => {
const hour = Math.floor(minuteOfDay / 60);
const minute = minuteOfDay % 60;
return new Date(
date.getFullYear(),
date.getMonth(),
date.getDate() + dayOffset,
hour,
minute,
0,
0
);
};
const normalizeEntries = (entries: TurnScheduleEntry[]): TurnScheduleEntry[] => {
const normalized = entries
.map((entry) => ({
startMinute: Math.max(0, Math.min(MINUTES_PER_DAY - 1, entry.startMinute)),
tickMinutes: Math.max(1, entry.tickMinutes),
}))
.sort((a, b) => a.startMinute - b.startMinute);
if (normalized.length === 0) {
throw new Error('Turn schedule needs at least one entry.');
}
return normalized;
};
const findCurrentEntryIndex = (minuteOfDay: number, entries: TurnScheduleEntry[]): number => {
for (let i = entries.length - 1; i >= 0; i -= 1) {
if (entries[i].startMinute <= minuteOfDay) {
return i;
}
}
return -1;
};
export const getTickMinutesAt = (date: Date, schedule: TurnSchedule): number => {
const entries = normalizeEntries(schedule.entries);
const minuteOfDay = toMinuteOfDay(date);
const index = findCurrentEntryIndex(minuteOfDay, entries);
const entry = index >= 0 ? entries[index] : entries[entries.length - 1];
return entry.tickMinutes;
};
export const getNextTurnAt = (date: Date, schedule: TurnSchedule): Date => {
const entries = normalizeEntries(schedule.entries);
const minuteOfDay = toMinuteOfDay(date);
const index = findCurrentEntryIndex(minuteOfDay, entries);
const currentIndex = index >= 0 ? index : entries.length - 1;
const startDayOffset = index >= 0 ? 0 : -1;
const nextIndex = (currentIndex + 1) % entries.length;
const nextDayOffset = startDayOffset + (nextIndex > currentIndex ? 0 : 1);
const currentEntry = entries[currentIndex];
const segmentStart = toLocalDateAtMinute(date, currentEntry.startMinute, startDayOffset);
const segmentEnd = toLocalDateAtMinute(date, entries[nextIndex].startMinute, nextDayOffset);
const elapsedMinutes = (date.getTime() - segmentStart.getTime()) / 60000;
const nextStep = Math.floor(elapsedMinutes / currentEntry.tickMinutes) + 1;
const nextCandidate = new Date(
segmentStart.getTime() + nextStep * currentEntry.tickMinutes * 60000
);
if (nextCandidate.getTime() < segmentEnd.getTime()) {
return nextCandidate;
}
return segmentEnd;
};
+1
View File
@@ -0,0 +1 @@
export * from './calendar.js';