Clearing my own debt: I withdrew navigation.md's "boot title accepts a single A" counter-example as confounded by three concurrent emulators and never re-ran it, which left the claim unsupported rather than settled. Clean trial: exactly one emulator verified by count, gated on the plate pulse (glyph in [500,2500] held 12 samples) so the press lands on the BOOT title rather than the attract loop's, delivery confirmed at [file-pad] keystroke vk=5800 down/up. Glyph after the press is 0 at +2 s and +4 s -- the transition -- then 327 steady from +6 s through +39 s. 327 is a proxy and reading a proxy is the habit this corpus keeps cataloguing, so the screen was checked with which_title_screen.py instead: main_menu at RMSE 19.91 and 20.08 with margin ~10, inside the 9.9-11.7 band its control establishes on four known captures. The before frame gives the "neither" signature at margin 0.10, correctly, since the title is neither main_menu nor extras. So the count is 3 of 3, the latency is 4-6 s -- which is why a script that presses and looks 0.5 s later concludes the press was dropped -- and the two earlier failures were the confound, not the game. Refutation attempted: sylpheed-port's leaf segment rates. Derived independently from the disc and they SURVIVE exactly -- pteff03 +4.0000 then +4.0000 then a hold, pteff03a -4.0667 then -4.0625 then a hold. So their inversion stands: my linearity gate fails on the leaf whose declared track is perfectly straight. And records the third structural consequence of main being stale, which they raised: HANDOFF.md is the delivery contract and it lives on an unmerged branch, so their checkout contains none of this week's entries. Findings written into the contract reach them only through messages -- the channel the protocol says does not count as delivery. Writing it in the contract is necessary and not sufficient when the contract lives where the other party cannot see it. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Wuu56cE8vJGTBtn1ppsk8v
38 lines
1.9 KiB
Rust
38 lines
1.9 KiB
Rust
//! The sweep leaves' RAW keyframes, so a segment rate can be checked not assumed.
|
|
//!
|
|
//! `sylpheed-port` reports `pteff03` as +4.0000 px/unit over t 0..150 and +4.0000
|
|
//! again over 150..540 -- perfectly linear -- against `pteff03a` at -4.0667 then
|
|
//! -4.0625. That asymmetry is what makes their "inversion" observation sharp: my
|
|
//! linearity gate fails on the leaf whose source is exactly straight. It is their
|
|
//! number from their export, so it is worth deriving independently.
|
|
//!
|
|
//! cargo run -p sylpheed-formats --example ptloop_leaf_keyframes
|
|
use sylpheed_formats::{pak::PakArchive, ui_layout};
|
|
use std::path::PathBuf;
|
|
|
|
fn main() {
|
|
let root = PathBuf::from(std::env::var("SYLPHEED_DISC").expect("SYLPHEED_DISC"));
|
|
let ar = PakArchive::open(root.join("dat/GP_TITLE.pak")).expect("GP_TITLE.pak");
|
|
let by = ar.read(&ar.entries()[4]).expect("entry 4");
|
|
let b = ui_layout::parse_build(&by).expect("parse");
|
|
for parent in ["ptloop01", "ptloop02"] {
|
|
let Some(el) = b.elements.iter().find(|e| e.name.starts_with(parent)) else { continue };
|
|
let Some(&(off, size)) = b.records.get(&el.name) else { continue };
|
|
let Some(lb) = ui_layout::parse_build(&by[off..off + size]) else { continue };
|
|
for le in &lb.elements {
|
|
println!("\n== {} -> leaf {}", el.name, le.name);
|
|
let ks: Vec<_> = le.keyframes.iter().collect();
|
|
for w in ks.windows(2) {
|
|
let (a, c) = (w[0], w[1]);
|
|
match (a.time, c.time) {
|
|
(Some(t0), Some(t1)) if t1 > t0 => println!(
|
|
" t {t0:>4} -> {t1:<4} x {:>6} -> {:<6} = {:+.4} px/unit",
|
|
a.x, c.x, (c.x - a.x) as f64 / (t1 - t0) as f64),
|
|
_ => println!(" t {:?} -> {:?} x {} -> {} (no rate)", a.time, c.time, a.x, c.x),
|
|
}
|
|
}
|
|
}
|
|
}
|
|
println!("--- END ---");
|
|
}
|