推进 INI 面板运行摘要结果计数

This commit is contained in:
2026-06-14 17:35:14 +08:00
parent f96329d67f
commit ccd6b67e35
3 changed files with 116 additions and 7 deletions

View File

@@ -282,9 +282,8 @@ function showRunSnapshot(snapshot, index, total) {
);
}
function playRunMotion(resultText, programText) {
function playRunMotion(resultText, programText, snapshots = parseRunMotion(resultText, programText)) {
clearRunPlayback();
const snapshots = parseRunMotion(resultText, programText);
if (snapshots.length === 0) {
setRunMonitor(100, "100%", {}, "complete; no axis motion");
return;
@@ -303,6 +302,10 @@ function playRunMotion(resultText, programText) {
}, 220);
}
function countCanonicalEvents(resultText) {
return resultText.split("\n").filter((line) => line.startsWith("canon_event=")).length;
}
function requireIniSdk() {
if (!iniSdk) {
throw new Error("INI WASM module is not ready yet.");
@@ -364,15 +367,19 @@ function clearLastRunSummary() {
setField("runWasmPath", "-");
}
function setLastRunSummary(program, snapshot = restoredSessionSnapshot) {
function setLastRunSummary(program, runtime = {}, snapshot = restoredSessionSnapshot) {
const snapshotLabel = snapshot ? sessionSnapshotLabel(snapshot.sessionId) : null;
const metadata = snapshot?.metadata ?? {};
const summary = {
runStatus: runtime.runStatus ?? "ok",
programSource: program.source,
snapshotLabel,
workflow: metadata.workflow ?? null,
programOpfsPath: program.opfsPath,
programWasmPath: program.wasmPath,
iniWasmPath: runtime.iniWasmPath ?? null,
canonicalEventCount: runtime.canonicalEventCount ?? 0,
motionSnapshotCount: runtime.motionSnapshotCount ?? 0,
};
window.linuxCncIniPanelLastRunSummary = summary;
setField("runSource", summary.programSource);
@@ -664,17 +671,24 @@ document.getElementById("run-gcode").addEventListener("click", async () => {
setRunMonitor(5, "running", {}, "running");
await nextFrame();
const result = interp.runFileWithIni(program.wasmPath, loadedSession.ini.wasmPath);
const trimmedResult = result.trim();
const motionSnapshots = parseRunMotion(trimmedResult, program.text);
setField("sessionGcode", program.opfsPath);
setField("runStatus", "ok");
setLastRunSummary(program);
setCanonicalEvents(result.trim());
playRunMotion(result.trim(), program.text);
setLastRunSummary(program, {
runStatus: "ok",
iniWasmPath: loadedSession.ini.wasmPath,
canonicalEventCount: countCanonicalEvents(trimmedResult),
motionSnapshotCount: motionSnapshots.length,
});
setCanonicalEvents(trimmedResult);
playRunMotion(trimmedResult, program.text, motionSnapshots);
setLog(
[
"Ran G-code through LinuxCNC interpreter WASM.",
...runSessionContextLogLines(program),
`INI: ${loadedSession.ini.wasmPath}`,
result.trim(),
trimmedResult,
].join("\n"),
);
} catch (error) {