1. [초기화] — [↶] 왼쪽에 둠. 전체 초기화가 아니라 **마지막 [저장] 시점**이 기준점임 (사용자 지시). 편집 스토어가 저장 시점 편집분(`savedBaseline`)을 들고 있다가 그리로 되돌림 — 저장한 작업은 남고 그 뒤 편집만 버림. 이력에 기록해 [↶]로 되살릴 수 있음. 되돌릴 것이 없으면 버튼은 비활성. 자동 선형까지 지우는 `resetAll`(좌측 [초기화])과는 다른 조작임. 2. [쉬프트]로 고른 직선이 화면에 표시되지 않아 무엇이 잡혔는지 알 수 없었음. 고른 구간을 빨갛게 덧그림 — 범위는 **직선 + 양 끝 라운드(R)** 임. 쉬프트는 직선을 통째로 올리고 내리므로 양 끝 호의 모양까지 함께 바뀜. 구간 시작 라운드의 BVC부터 끝 라운드의 EVC 까지 계획선 샘플을 그대로 덧그려 곡률이 따라옴. 경계에는 점선 세로 표식. 공용 종단 렌더러(`B06_Section_UI_Longitudinal`)는 건드리지 않고 별도 오버레이로 얹음 (`B05_Profile_UI_Profile_RunHighlight.ts`). Y 매핑은 그 렌더러가 넘겨 주는 축 눈금에서 되짚어 같은 스케일을 씀. 편집 버튼층(z-index 4) 아래(3)라 버튼을 가리지 않음. `tsc --noEmit` 통과, 전체 테스트 183건 통과. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
112 lines
5.4 KiB
TypeScript
112 lines
5.4 KiB
TypeScript
/* =============================================================================
|
|
* B05_Profile_UI_Profile_RunHighlight.ts
|
|
* [쉬프트]로 고른 직선 구간 강조 오버레이 (2026-09-03 사용자 지시).
|
|
*
|
|
* 고른 직선을 눌러도 화면에 아무 표시가 없어 무엇이 잡혔는지 알 수 없었다. 강조 범위는
|
|
* **직선 + 양 끝 라운드(R)** 다 — 쉬프트는 직선을 통째로 올리고 내리므로 양 끝 호의
|
|
* 모양까지 함께 바뀌기 때문이다. 그래서 구간 시작 라운드의 BVC부터 끝 라운드의 EVC까지
|
|
* 계획선 위를 그대로 덧그린다.
|
|
*
|
|
* 종단 그래프 SVG(`B06_Section_UI_Longitudinal`)는 B05·B06 공용이라 건드리지 않고,
|
|
* 같은 좌표계 위에 별도 오버레이를 얹는다. Y 매핑은 그 렌더러가 넘겨 준 축 눈금
|
|
* (`onYAxis`)에서 되짚는다 — 두 눈금의 (표고, y) 두 쌍이면 1차식이 정해진다.
|
|
* ========================================================================== */
|
|
|
|
import type { ProfileAlignment } from "./B05_Profile_UI_Profile_Alignment";
|
|
import type { StraightRun } from "./B05_Profile_UI_Profile_Straighten";
|
|
|
|
const SVG_NS = "http://www.w3.org/2000/svg";
|
|
/** 두 chainage를 같은 변화점으로 볼 허용 오차(m). */
|
|
const SAME_NODE_M = 1e-6;
|
|
|
|
export interface RunHighlightOptions {
|
|
alignment: ProfileAlignment;
|
|
/** 강조할 구간들(쉬프트 선택분). 비어 있으면 오버레이를 만들지 않는다. */
|
|
runs: StraightRun[];
|
|
/** 누가거리 → 화면 x(px). 종단 그래프와 같은 매핑이어야 선이 겹친다. */
|
|
x: (chainageM: number) => number;
|
|
/** 종단 렌더러가 넘겨 준 Y축 눈금 — 표고 → y(px) 를 되짚는 근거. */
|
|
axis: { ticks: Array<{ y: number; label: string }> } | null;
|
|
widthPx: number;
|
|
heightPx: number;
|
|
}
|
|
|
|
/** 눈금 라벨(`880m`)에서 표고를 읽는다. 숫자가 아니면 null. */
|
|
function tickElevation(label: string): number | null {
|
|
const value = Number.parseFloat(label);
|
|
return Number.isFinite(value) ? value : null;
|
|
}
|
|
|
|
/**
|
|
* 축 눈금 두 개로 표고 → y(px) 1차식을 만든다. 눈금이 모자라거나 겹치면 null.
|
|
* (렌더러와 같은 스케일을 쓰려는 것이므로 별도로 계산하지 않는다.)
|
|
*/
|
|
function elevationToY(
|
|
axis: { ticks: Array<{ y: number; label: string }> } | null,
|
|
): ((elevationM: number) => number) | null {
|
|
const points = (axis?.ticks ?? [])
|
|
.map((tick) => ({ y: tick.y, elevation: tickElevation(tick.label) }))
|
|
.filter((entry): entry is { y: number; elevation: number } => entry.elevation !== null);
|
|
if (points.length < 2) return null;
|
|
const first = points[0];
|
|
const last = points[points.length - 1];
|
|
const span = last.elevation - first.elevation;
|
|
if (Math.abs(span) < 1e-9) return null;
|
|
const scale = (last.y - first.y) / span;
|
|
return (elevationM: number): number => first.y + (elevationM - first.elevation) * scale;
|
|
}
|
|
|
|
/** 구간 양 끝 라운드까지 넓힌 강조 범위 [시작, 끝] (누가거리 m). */
|
|
function runSpanWithCurves(alignment: ProfileAlignment, run: StraightRun): [number, number] {
|
|
const startCurve = alignment.curves.find(
|
|
(curve) => Math.abs(curve.chainage_m - run.fromM) <= SAME_NODE_M && !curve.omitted,
|
|
);
|
|
const endCurve = alignment.curves.find(
|
|
(curve) => Math.abs(curve.chainage_m - run.toM) <= SAME_NODE_M && !curve.omitted,
|
|
);
|
|
return [startCurve ? startCurve.bvc_m : run.fromM, endCurve ? endCurve.evc_m : run.toM];
|
|
}
|
|
|
|
/**
|
|
* 고른 구간을 계획선 위에 빨갛게 덧그린 오버레이. 고른 것이 없으면 null.
|
|
* 반환한 요소는 종단 차트 래퍼(`b05-profile__chart`) 안에 그대로 붙이면 된다.
|
|
*/
|
|
export function createRunHighlight(options: RunHighlightOptions): SVGElement | null {
|
|
const { alignment, runs, x, widthPx, heightPx } = options;
|
|
if (!runs.length) return null;
|
|
const toY = elevationToY(options.axis);
|
|
if (!toY) return null;
|
|
|
|
const svg = document.createElementNS(SVG_NS, "svg");
|
|
svg.setAttribute("class", "b05-profile-runmark");
|
|
svg.setAttribute("width", String(widthPx));
|
|
svg.setAttribute("height", String(heightPx));
|
|
svg.setAttribute("viewBox", `0 0 ${widthPx} ${heightPx}`);
|
|
|
|
const samples = alignment.samples;
|
|
for (const run of runs) {
|
|
const [fromM, toM] = runSpanWithCurves(alignment, run);
|
|
// 계획선 샘플에는 변화점·BVC·EVC가 모두 들어 있어 라운드 곡률까지 그대로 따라온다.
|
|
const points = samples
|
|
.filter((sample) => sample.chainage_m >= fromM - SAME_NODE_M)
|
|
.filter((sample) => sample.chainage_m <= toM + SAME_NODE_M)
|
|
.map((sample) => `${x(sample.chainage_m).toFixed(2)},${toY(sample.elevation_m).toFixed(2)}`);
|
|
if (points.length < 2) continue;
|
|
const line = document.createElementNS(SVG_NS, "polyline");
|
|
line.setAttribute("class", "b05-profile-runmark__line");
|
|
line.setAttribute("points", points.join(" "));
|
|
svg.append(line);
|
|
// 양 끝 표시 — 어디까지가 이 구간인지(라운드 포함) 한눈에 보이게 세로 표식을 둔다.
|
|
for (const edge of [fromM, toM]) {
|
|
const tick = document.createElementNS(SVG_NS, "line");
|
|
tick.setAttribute("class", "b05-profile-runmark__edge");
|
|
tick.setAttribute("x1", x(edge).toFixed(2));
|
|
tick.setAttribute("x2", x(edge).toFixed(2));
|
|
tick.setAttribute("y1", "0");
|
|
tick.setAttribute("y2", String(heightPx));
|
|
svg.append(tick);
|
|
}
|
|
}
|
|
return svg.childElementCount ? svg : null;
|
|
}
|