Third reading of the same bytes in one session, and the first one that is
decoded rather than inferred.
1. concatenate -> 359 s of dialogue for a 137 s movie. Dead on measurement.
2. sum as Q10's two stems -> refuted here: S00A's second full-length chunk is
DIGITAL SILENCE and ADV's is 0.60x the first with 26.8 dB of residual. That
claim was mine, and the Decoder had already adopted it before I tested it;
it is withdrawn in both places.
3. keep ONE stream. Decoded disc-wide by the Decoder, counting stream starts
inside every inter-descriptor span: 258 spans hold one stream, 28 hold
three, nothing holds two. So 359 = 84.55 + 137.32 + 137.32.
Summing was therefore wrong a third time, and for a third reason: a take plus a
0.60x copy of itself is ~4 dB louder and coloured, not a mix of parts. The filter
is now `[0:a]anull` plus the mono fold -- no gain applied at all.
`check` moves `voice` off the strict peak bound as a consequence. It sat with
`bgm` because it was a sum this exporter produced; it is now a single wave off
the disc, mastered near full scale -- ADV's louder presentation measures +0.0003
dBFS at source -- so refusing that would be refusing the disc's own mastering.
The leading chunk is dropped as a DUPLICATE, not a truncation. It is this
movie's own dialogue (the Decoder, 17 of 17) and I measured it to be the TAIL of
the kept stream: sliding envelope correlation r=0.998 / 0.932 with the lag flush
against that stream's end, controls 1.000 self and 0.289 for a different movie,
confirmed in the sample domain at 16.7 / 23.2 dB of residual.
STILL OPEN, and flagged rather than absorbed: WHICH presentation to keep. Highest
byte rate is the Decoder's recommendation and not a decoded field, and on ADV it
selects the QUIETER of two (-8.3 dBFS against 0.0). Said in the manifest with the
consequence, so it is visible and reversible. A capture of the intro with
dialogue audible settles it.
Not converted, and the Decoder has since withdrawn the ask with a better reason
than mine: its 504464 B anchor constant is structural, not proportional --
identical on all 17 regions, and a proportional prediction lands within 8 bytes
on ADV while being 4305 B out on S00A.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01N7FiFFFwbvG2uxdcEh8HyF
367 lines
16 KiB
Rust
367 lines
16 KiB
Rust
//! `sylpheed-export check` — validate an export tree against `docs/FORMAT.md`.
|
|
//!
|
|
//! This is the executable form of FORMAT.md, and the reason it exists is that
|
|
//! "the export is correct" is otherwise an assertion. It reads `export/` the way
|
|
//! the Godot project will — as a stranger, with no access to the disc, the
|
|
//! decoders or this exporter's internals — and fails on anything a consumer
|
|
//! could not act on:
|
|
//!
|
|
//! * a document whose `format` is not the version this build writes;
|
|
//! * a required field missing, or a colour that is not `0x` + 8 hex digits;
|
|
//! * a `paint_order` that is not a permutation of the element indices;
|
|
//! * a `buttons` entry naming an element that is not a button, or out of
|
|
//! resting-Y order;
|
|
//! * a sprite path that does not exist, or a PNG that does not decode;
|
|
//! * a name presented as recovered when it was authored;
|
|
//! * an audio file that is silent or clips -- the two audio failures that pass
|
|
//! every check that is not looking for them.
|
|
//!
|
|
//! It deliberately does **not** check that the export matches the disc. That is
|
|
//! what `sylpheed-cli screen render` is for.
|
|
|
|
use anyhow::{bail, Result};
|
|
use serde_json::Value;
|
|
use std::path::Path;
|
|
|
|
const SCREEN_FORMAT: &str = "sylpheed.screen/3";
|
|
const MANIFEST_FORMAT: &str = "sylpheed.manifest/1";
|
|
|
|
struct Ctx {
|
|
file: String,
|
|
errors: Vec<String>,
|
|
}
|
|
|
|
impl Ctx {
|
|
fn err(&mut self, msg: impl Into<String>) {
|
|
self.errors.push(format!("{}: {}", self.file, msg.into()));
|
|
}
|
|
fn require<'a>(&mut self, v: &'a Value, key: &str) -> Option<&'a Value> {
|
|
match v.get(key) {
|
|
Some(Value::Null) | None => {
|
|
self.err(format!("missing required field `{key}`"));
|
|
None
|
|
}
|
|
Some(x) => Some(x),
|
|
}
|
|
}
|
|
}
|
|
|
|
/// A colour is exported as `0x` + 8 hex digits, with its byte order in the key
|
|
/// name. Anything else means a consumer has to guess, which is the whole thing
|
|
/// the format exists to prevent.
|
|
fn is_hex32(v: Option<&Value>) -> bool {
|
|
v.and_then(Value::as_str)
|
|
.is_some_and(|s| s.len() == 10 && s.starts_with("0x") && s[2..].chars().all(|c| c.is_ascii_hexdigit()))
|
|
}
|
|
|
|
fn check_pose(c: &mut Ctx, where_: &str, p: &Value) {
|
|
for (key, want_len) in [("pos", 2usize), ("scale", 2)] {
|
|
match p.get(key).and_then(Value::as_array) {
|
|
Some(a) if a.len() == want_len && a.iter().all(Value::is_i64) => {}
|
|
_ => c.err(format!("{where_}: `{key}` must be {want_len} integers")),
|
|
}
|
|
}
|
|
for key in ["tint_rgba", "fade_argb"] {
|
|
if !is_hex32(p.get(key)) {
|
|
c.err(format!("{where_}: `{key}` must be 0x + 8 hex digits"));
|
|
}
|
|
}
|
|
}
|
|
|
|
fn check_screen(root: &Path, rel: &str, errors: &mut Vec<String>) -> Result<()> {
|
|
let raw = std::fs::read_to_string(root.join(rel))?;
|
|
let v: Value = serde_json::from_str(&raw)?;
|
|
let mut c = Ctx {
|
|
file: rel.to_string(),
|
|
errors: Vec::new(),
|
|
};
|
|
|
|
if v.get("format").and_then(Value::as_str) != Some(SCREEN_FORMAT) {
|
|
c.err(format!(
|
|
"format is {:?}, expected {SCREEN_FORMAT:?}",
|
|
v.get("format")
|
|
));
|
|
}
|
|
for key in ["exporter", "formats_rev", "name", "name_source"] {
|
|
c.require(&v, key);
|
|
}
|
|
// Rule 2 of the format: a modder must be able to tell a recovered name from
|
|
// an invented one, so the provenance is mandatory and closed.
|
|
match v.get("name_source").and_then(Value::as_str) {
|
|
Some("authored") => {
|
|
if v.get("name_why").and_then(Value::as_str).is_none_or(str::is_empty) {
|
|
c.err("name_source is `authored` but there is no `name_why`");
|
|
}
|
|
}
|
|
Some("index") => {}
|
|
other => c.err(format!("name_source must be `authored` or `index`, got {other:?}")),
|
|
}
|
|
if let Some(s) = v.get("source") {
|
|
for key in ["archive", "entry", "build"] {
|
|
if s.get(key).is_none() {
|
|
c.err(format!("source is missing `{key}`"));
|
|
}
|
|
}
|
|
} else {
|
|
c.err("missing required field `source`");
|
|
}
|
|
match v.get("design").and_then(Value::as_array) {
|
|
Some(d) if d.len() == 2 && d.iter().all(Value::is_u64) => {}
|
|
_ => c.err("`design` must be two positive integers"),
|
|
}
|
|
|
|
let Some(elements) = v.get("elements").and_then(Value::as_array) else {
|
|
c.err("missing required field `elements`");
|
|
errors.append(&mut c.errors);
|
|
return Ok(());
|
|
};
|
|
|
|
let mut indices = Vec::new();
|
|
let mut buttons_by_y: Vec<(i64, String)> = Vec::new();
|
|
for (i, el) in elements.iter().enumerate() {
|
|
let id = el.get("id").and_then(Value::as_str).unwrap_or("<no id>").to_string();
|
|
let at = format!("element {i} ({id})");
|
|
for key in ["index", "id", "declared", "role", "kind_raw", "pivot", "layer_source", "keyframes"] {
|
|
if el.get(key).is_none() {
|
|
c.err(format!("{at}: missing `{key}`"));
|
|
}
|
|
}
|
|
let Some(idx) = el.get("index").and_then(Value::as_u64) else {
|
|
c.err(format!("{at}: `index` is not an integer"));
|
|
continue;
|
|
};
|
|
if idx as usize != i {
|
|
c.err(format!("{at}: `index` {idx} does not match its position {i}"));
|
|
}
|
|
indices.push(idx as usize);
|
|
|
|
let role = el.get("role").and_then(Value::as_str).unwrap_or("");
|
|
if !matches!(role, "button" | "decoration" | "primitive" | "unknown") {
|
|
c.err(format!("{at}: role {role:?} is not one FORMAT.md defines"));
|
|
}
|
|
// A role of `unknown` must still carry the raw kind, or the information
|
|
// is simply lost.
|
|
if role == "unknown" && el.get("kind_raw").is_none() {
|
|
c.err(format!("{at}: role `unknown` without `kind_raw`"));
|
|
}
|
|
// A primitive has no texture, so its quad size has to come from the file.
|
|
if role == "primitive" && el.get("size").is_none() {
|
|
c.err(format!("{at}: primitive without a `size`"));
|
|
}
|
|
|
|
match el.get("layer_source").and_then(Value::as_str) {
|
|
Some("sprite") | Some("implied") => {
|
|
if !is_hex32(el.get("layer")) {
|
|
c.err(format!("{at}: layer_source claims a key but `layer` is not one"));
|
|
}
|
|
}
|
|
Some("none") => {
|
|
if el.get("layer").is_some() {
|
|
c.err(format!("{at}: layer_source `none` but a `layer` is present"));
|
|
}
|
|
}
|
|
other => c.err(format!("{at}: layer_source must be sprite/implied/none, got {other:?}")),
|
|
}
|
|
|
|
for key in ["sprite", "focus_sprite"] {
|
|
if let Some(p) = el.get(key).and_then(Value::as_str) {
|
|
let path = root.join(p);
|
|
if !path.exists() {
|
|
c.err(format!("{at}: `{key}` points at {p}, which does not exist"));
|
|
} else if let Err(e) = image::open(&path) {
|
|
c.err(format!("{at}: `{key}` {p} does not decode as an image: {e}"));
|
|
}
|
|
}
|
|
}
|
|
|
|
if let Some(r) = el.get("rest") {
|
|
check_pose(&mut c, &at, r);
|
|
if role == "button" {
|
|
if let Some(y) = r.get("pos").and_then(Value::as_array).and_then(|a| a[1].as_i64()) {
|
|
buttons_by_y.push((y, id.clone()));
|
|
}
|
|
}
|
|
}
|
|
if let Some(kfs) = el.get("keyframes").and_then(Value::as_array) {
|
|
for (k, kf) in kfs.iter().enumerate() {
|
|
check_pose(&mut c, &format!("{at} keyframe {k}"), kf);
|
|
}
|
|
// The last keyframe of a group carries no time slot on the disc, and
|
|
// an invented one is exactly the kind of value this format refuses.
|
|
if kfs.len() > 1 && kfs.last().is_some_and(|k| k.get("t").is_some()) {
|
|
c.err(format!("{at}: the final keyframe has a `t`; the disc has no time slot there"));
|
|
}
|
|
}
|
|
}
|
|
|
|
// Paint order must be a permutation of the element indices, or the runtime
|
|
// either drops an element or draws one twice.
|
|
match v.get("paint_order").and_then(Value::as_array) {
|
|
Some(po) => {
|
|
let mut got: Vec<usize> = po.iter().filter_map(|x| x.as_u64().map(|v| v as usize)).collect();
|
|
if got.len() != po.len() {
|
|
c.err("`paint_order` holds a non-integer");
|
|
}
|
|
let mut want = indices.clone();
|
|
got.sort_unstable();
|
|
want.sort_unstable();
|
|
if got != want {
|
|
c.err("`paint_order` is not a permutation of the element indices");
|
|
}
|
|
}
|
|
None => c.err("missing required field `paint_order`"),
|
|
}
|
|
|
|
// `buttons` is navigation order and is defined as resting Y, ascending. If
|
|
// it is not sorted, it is not the thing FORMAT.md says it is.
|
|
match v.get("buttons").and_then(Value::as_array) {
|
|
Some(b) => {
|
|
let listed: Vec<&str> = b.iter().filter_map(Value::as_str).collect();
|
|
buttons_by_y.sort_by(|a, b| a.0.cmp(&b.0).then_with(|| a.1.cmp(&b.1)));
|
|
let want: Vec<&str> = buttons_by_y.iter().map(|(_, n)| n.as_str()).collect();
|
|
if listed != want {
|
|
c.err(format!(
|
|
"`buttons` is {listed:?} but resting-Y order is {want:?}"
|
|
));
|
|
}
|
|
}
|
|
None => c.err("missing required field `buttons`"),
|
|
}
|
|
|
|
if v.get("unresolved").and_then(Value::as_array).is_none() {
|
|
c.err("missing required field `unresolved` (an empty list is a claim; absence is a gap)");
|
|
}
|
|
|
|
errors.append(&mut c.errors);
|
|
Ok(())
|
|
}
|
|
|
|
/// Validate a whole export tree. Returns the number of screens checked.
|
|
pub fn run(root: &Path) -> Result<usize> {
|
|
let manifest_path = root.join("manifest.json");
|
|
if !manifest_path.exists() {
|
|
bail!("{} has no manifest.json — is that an export tree?", root.display());
|
|
}
|
|
let m: Value = serde_json::from_str(&std::fs::read_to_string(&manifest_path)?)?;
|
|
let mut errors = Vec::new();
|
|
if m.get("format").and_then(Value::as_str) != Some(MANIFEST_FORMAT) {
|
|
errors.push(format!("manifest.json: format is not {MANIFEST_FORMAT:?}"));
|
|
}
|
|
for key in ["exporter", "formats_rev", "screens", "warnings"] {
|
|
if m.get(key).is_none() {
|
|
errors.push(format!("manifest.json: missing `{key}`"));
|
|
}
|
|
}
|
|
let screens = m
|
|
.get("screens")
|
|
.and_then(Value::as_array)
|
|
.map(|s| s.to_vec())
|
|
.unwrap_or_default();
|
|
for s in &screens {
|
|
let Some(file) = s.get("file").and_then(Value::as_str) else {
|
|
errors.push("manifest.json: a screen entry has no `file`".into());
|
|
continue;
|
|
};
|
|
if !root.join(file).exists() {
|
|
errors.push(format!("manifest.json: lists {file}, which does not exist"));
|
|
continue;
|
|
}
|
|
check_screen(root, file, &mut errors)?;
|
|
}
|
|
|
|
check_audio(root, &m, &mut errors);
|
|
|
|
if !errors.is_empty() {
|
|
for e in &errors {
|
|
eprintln!(" ✗ {e}");
|
|
}
|
|
bail!("{} problem(s) in {}", errors.len(), root.display());
|
|
}
|
|
Ok(screens.len())
|
|
}
|
|
|
|
/// The `audio` array, checked the way a consumer would have to.
|
|
///
|
|
/// Two of these are content checks rather than schema checks, and they are here
|
|
/// on purpose. `docs/port/AUDIO-VERIFICATION.md` names silence as "the failure
|
|
/// that looks like success": a file of exactly the right duration, the right
|
|
/// channel count and the right size, full of zeroes, because something opened
|
|
/// the wrong thing. Every structural check passes it. So does clipping, which
|
|
/// the BGM can produce because it is a **sum of two stems** at unity gain.
|
|
///
|
|
/// The exporter measures both at export time and writes them here; this refuses
|
|
/// the tree if what it wrote is a file nobody would want to play. Neither is a
|
|
/// judgement about whether the audio is the RIGHT audio — nothing in this
|
|
/// binary can know that, and `docs/port/BLOCKED.md` says which parts are still
|
|
/// authored guesses.
|
|
fn check_audio(root: &Path, m: &Value, errors: &mut Vec<String>) {
|
|
let Some(audio) = m.get("audio").and_then(Value::as_array) else {
|
|
// Absent is correct for every export taken before P6.
|
|
return;
|
|
};
|
|
for a in audio {
|
|
let name = a.get("name").and_then(Value::as_str).unwrap_or("?");
|
|
let kind = a.get("kind").and_then(Value::as_str).unwrap_or("");
|
|
if !matches!(kind, "se" | "bgm" | "voice") {
|
|
errors.push(format!(
|
|
"manifest.json: audio `{name}` has kind {kind:?}, which a consumer cannot dispatch on"
|
|
));
|
|
}
|
|
for key in ["file", "command", "why"] {
|
|
if a.get(key).and_then(Value::as_str).is_none_or(str::is_empty) {
|
|
errors.push(format!("manifest.json: audio `{name}` has no `{key}`"));
|
|
}
|
|
}
|
|
let Some(file) = a.get("file").and_then(Value::as_str) else { continue };
|
|
if !root.join(file).exists() {
|
|
errors.push(format!("manifest.json: lists audio {file}, which does not exist"));
|
|
continue;
|
|
}
|
|
match a.get("peak_dbfs").and_then(Value::as_f64) {
|
|
None => errors.push(format!(
|
|
"manifest.json: audio `{name}` carries no `peak_dbfs` -- it was not measured, \
|
|
and silence is the audio failure that passes every check that is not looking \
|
|
for it"
|
|
)),
|
|
Some(p) if p <= -90.0 => errors.push(format!(
|
|
"{file}: peak is {p:.1} dBFS -- this file is silent"
|
|
)),
|
|
// The bound differs by kind, and the difference is the point. A
|
|
// `bgm` is something WE combined -- a sum of stems -- so a peak at
|
|
// or above full scale is our arithmetic and is refused outright. An
|
|
// `se` is a single wave off the disc: it is mastered near full
|
|
// scale, and a lossy decode of a near-full-scale signal overshoots
|
|
// by a fraction of a dB (`confirm` lands at +0.18). Refusing that
|
|
// would be refusing the disc's own mastering, and "fixing" it would
|
|
// mean attenuating a game asset to make a number smaller.
|
|
//
|
|
// 🟡 +1.0 dB is a JUDGEMENT, not a measurement: a few tenths is
|
|
// reconstruction overshoot, a whole dB is not. Nobody has measured
|
|
// the overshoot distribution across a corpus of cues, and if a cue
|
|
// ever trips this the right response is that measurement, not a
|
|
// looser bound.
|
|
// `voice` was on the strict side of this bound while it was a SUM of a
|
|
// region's chunks. It no longer is: a region carries three
|
|
// presentations of one take, so the exporter keeps ONE stream and
|
|
// performs no arithmetic on it. That puts `voice` with `se` -- a
|
|
// single wave off the disc, mastered near full scale, whose lossy
|
|
// decode overshoots by a fraction of a dB. `ADV`'s louder
|
|
// presentation measures +0.0003 dBFS at source; refusing that would
|
|
// be refusing the disc's own mastering.
|
|
Some(p) if kind == "bgm" && p >= 0.0 => errors.push(format!(
|
|
"{file}: peak is {p:.1} dBFS -- a SUM we produced clips"
|
|
)),
|
|
Some(p) if kind != "bgm" && p > 1.0 => errors.push(format!(
|
|
"{file}: peak is {p:.1} dBFS -- too far over full scale to be decode overshoot"
|
|
)),
|
|
Some(_) => {}
|
|
}
|
|
match a.get("duration_s").and_then(Value::as_f64) {
|
|
Some(d) if d > 0.0 => {}
|
|
_ => errors.push(format!(
|
|
"{file}: no positive `duration_s` -- a zero-length asset plays as silence"
|
|
)),
|
|
}
|
|
}
|
|
}
|