slicerPrinterMatch.ts 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  1. // Printer-compatibility matching for the SliceModal's process / filament
  2. // dropdowns (#1325).
  3. //
  4. // Compatibility is resolved in this order, stopping on the first non-unknown
  5. // answer:
  6. //
  7. // 1. Imported (local-tier) presets carry the slicer's own
  8. // `compatible_printers` list — an exact list of printer-preset names.
  9. // 2. The `@<printer>` naming convention, in both shapes the slicer
  10. // writes: `@BBL <model>` on shipped cloud / standard presets, and
  11. // `@Bambu Lab <model> <size> nozzle` on presets a user saved for a
  12. // specific printer (#2628). The token → printer-fragment table is
  13. // derived from the backend's canonical PRINTER_MODEL_MAP (fetched via
  14. // /slicer/printer-models), not duplicated here.
  15. //
  16. // Only a definite 'mismatch' is acted on: the dropdown holds those back
  17. // behind a "Show all" link. A preset no rule covers classifies as 'unknown'
  18. // and always stays in the list — absence of evidence is not evidence of
  19. // incompatibility, and hiding an untagged preset would make a user's own
  20. // imported profiles disappear. That asymmetry is why every parse failure
  21. // below returns 'unknown' rather than guessing a mismatch.
  22. export type PrinterCompatibility = 'match' | 'mismatch' | 'unknown';
  23. // Lookup tables consumed by `presetCompatibility`. `bambuModelByShortCode`
  24. // is the @BBL token → printer-preset fragment map derived from the backend's
  25. // PRINTER_MODEL_MAP — e.g. `X1C` → `X1 Carbon`. An empty map means the @BBL
  26. // fallback still works when token and printer-name fragment match directly
  27. // (raw-token comparison), and gracefully degrades otherwise.
  28. export interface PrinterCompatibilityIndex {
  29. bambuModelByShortCode: Record<string, string>;
  30. }
  31. /** An empty index — used when the model map hasn't loaded yet. */
  32. export const EMPTY_COMPATIBILITY_INDEX: PrinterCompatibilityIndex = {
  33. bambuModelByShortCode: {},
  34. };
  35. // Bambu cloud started shipping terse model codes in `@BBL <code>` suffixes
  36. // mid-2026 — the most visible one is "A1 Mini" → "A1M" (#1649, reported by
  37. // @technopaw). User-authored profiles still use the long display name, so
  38. // both shapes have to match the same printer. The table is uppercase-normalised
  39. // for case-insensitive lookups; add a row when a future rename is spotted via
  40. // `/api/v1/cloud/settings`. Keep narrow on purpose — wide-net aliasing
  41. // (e.g. "X1" ⇄ "X1C") would silently group truly distinct printers.
  42. const PRINTER_MODEL_SUFFIX_ALIASES: Record<string, readonly string[]> = {
  43. 'A1 MINI': ['A1M'],
  44. // Same shape, spotted while tracing #2982: the bundle names every H2D Pro
  45. // process and filament preset "@BBL H2DP" while the printer preset — and
  46. // PRINTER_MODEL_MAP with it — spells the model "H2D Pro". Without the alias
  47. // the H2D Pro classified all 198 bundled processes as belonging to another
  48. // printer.
  49. 'H2D PRO': ['H2DP'],
  50. };
  51. /**
  52. * True when ``presetSuffix`` (the token extracted from a "@BBL <code>" or
  53. * preset-name suffix) refers to the same printer as ``printerModel``
  54. * (the display name selected in the picker). Case-insensitive; consults
  55. * the alias table for short codes Bambu introduced after the long forms
  56. * shipped (#1649).
  57. */
  58. export function matchesPrinterModelSuffix(presetSuffix: string, printerModel: string): boolean {
  59. const p = presetSuffix.toUpperCase();
  60. const m = printerModel.toUpperCase();
  61. if (p === m) return true;
  62. const aliasesOfM = PRINTER_MODEL_SUFFIX_ALIASES[m];
  63. if (aliasesOfM && aliasesOfM.includes(p)) return true;
  64. const aliasesOfP = PRINTER_MODEL_SUFFIX_ALIASES[p];
  65. if (aliasesOfP && aliasesOfP.includes(m)) return true;
  66. return false;
  67. }
  68. /**
  69. * Invert the backend's PRINTER_MODEL_MAP into the shape the @BBL fallback
  70. * needs: short code → printer-preset fragment (the part of "Bambu Lab X1
  71. * Carbon" the user sees in a printer preset name, minus the "Bambu Lab "
  72. * brand prefix).
  73. *
  74. * Backend ships e.g. `{"Bambu Lab X1 Carbon": "X1C", "Bambu Lab A1 mini":
  75. * "A1 Mini", "Bambu Lab A1 Mini": "A1 Mini"}` — multiple long forms can map
  76. * to the same short. We pick the first long-form encountered for each short
  77. * code; case normalisation happens at match time so "A1 mini" vs "A1 Mini"
  78. * never matters.
  79. */
  80. function buildShortCodeMap(
  81. printerModels: Record<string, string>,
  82. ): Record<string, string> {
  83. const out: Record<string, string> = {};
  84. for (const [longName, shortCode] of Object.entries(printerModels)) {
  85. if (shortCode in out) continue;
  86. out[shortCode] = longName.replace(/^Bambu Lab\s+/, '');
  87. }
  88. return out;
  89. }
  90. /**
  91. * Build the compatibility index from the backend printer-model registry.
  92. */
  93. export function buildCompatibilityIndex(
  94. printerModels: Record<string, string> = {},
  95. ): PrinterCompatibilityIndex {
  96. return {
  97. bambuModelByShortCode: buildShortCodeMap(printerModels),
  98. };
  99. }
  100. function normalizeModelFragment(s: string): string {
  101. return s.replace(/\s+/g, '').toLowerCase();
  102. }
  103. /**
  104. * Drop BambuStudio's ``"# "`` user-clone prefix.
  105. *
  106. * Editing a system preset saves a copy named ``"# Bambu Lab X1 Carbon 0.4
  107. * nozzle"``, and `.bbscfg` bundle exports use the same convention. Two places
  108. * need it off:
  109. *
  110. * 1. ``extractPrinterPresetModel`` — the prefix fails its "Bambu Lab …"
  111. * test, so a cloned *printer* made every preset classify as 'unknown'
  112. * and the dropdown filter silently did nothing.
  113. * 2. The ``compatible_printers`` comparison, where a prefix on one side
  114. * alone reads as a mismatch against the very printer the preset was
  115. * cloned from — and a mismatch now hides the preset.
  116. *
  117. * The ``@`` tag extractors need no such handling: they scan for "@BBL " or
  118. * the last "@", both of which skip a leading prefix already.
  119. *
  120. * The backend normalises the same prefix in ``_canonical_printer_model``.
  121. */
  122. function stripUserClonePrefix(name: string): string {
  123. return name.replace(/^#\s*/, '').trim();
  124. }
  125. // Bambu Studio's naming convention for bundled presets: the 0.4 nozzle is
  126. // the default and its variants drop the nozzle suffix; 0.2 / 0.6 / 0.8
  127. // carry an explicit "<size> nozzle" segment. So a process with no suffix
  128. // is implicitly a 0.4 process — required to compare correctly against a
  129. // 0.4 printer preset, which DOES carry the suffix.
  130. const DEFAULT_NOZZLE = '0.4';
  131. // Strip a trailing "<size> nozzle" segment, returning the nozzle string
  132. // (e.g. "0.6") or null when absent. Used by both BBL-token and printer-
  133. // preset extractors so the suffix is parsed identically on both sides.
  134. function takeNozzleSuffix(s: string): { stripped: string; nozzle: string | null } {
  135. const m = s.match(/^(.*?)\s+([\d.]+)\s*nozzle\s*$/i);
  136. if (!m) return { stripped: s.trim(), nozzle: null };
  137. return { stripped: m[1].trim(), nozzle: m[2] };
  138. }
  139. // Pull the model token and nozzle out of a "@BBL <token> [<size> nozzle]"
  140. // suffix. The token may contain a space (e.g. "A1 mini"), so we strip a
  141. // trailing nozzle segment rather than splitting on the first whitespace.
  142. function extractBblToken(presetName: string): { token: string; nozzle: string | null } | null {
  143. const marker = '@BBL ';
  144. const idx = presetName.indexOf(marker);
  145. if (idx < 0) return null;
  146. const rest = presetName.slice(idx + marker.length).trim();
  147. const { stripped, nozzle } = takeNozzleSuffix(rest);
  148. return stripped ? { token: stripped, nozzle } : null;
  149. }
  150. // Pull the model fragment and nozzle out of a "Bambu Lab <model> [<size>
  151. // nozzle]" printer preset name. Returns null for non-Bambu printer
  152. // presets — there is no reliable name-based match against those.
  153. function extractPrinterPresetModel(printerPresetName: string): { model: string; nozzle: string | null } | null {
  154. const m = stripUserClonePrefix(printerPresetName).match(/^Bambu Lab\s+(.+)$/i);
  155. if (!m) return null;
  156. const { stripped, nozzle } = takeNozzleSuffix(m[1]);
  157. return stripped ? { model: stripped, nozzle } : null;
  158. }
  159. // Trailing parenthetical the slicer appends to user-saved presets —
  160. // "… @Bambu Lab H2D 0.4 nozzle (Custom)". Dropped before the nozzle suffix
  161. // is parsed, or the tag would resolve to a nonsense model token and the
  162. // preset would be branded a mismatch against its OWN printer.
  163. function stripTrailingParenthetical(s: string): string {
  164. return s.replace(/\s*\([^)]*\)\s*$/, '').trim();
  165. }
  166. // Nozzle sizes Bambu ships run 0.2 – 0.8. The range guard keeps a tag that
  167. // merely looks numeric ("PLA @2026") from being read as a nozzle and branded
  168. // incompatible with every printer.
  169. const MIN_NOZZLE_MM = 0.1;
  170. const MAX_NOZZLE_MM = 2.0;
  171. // Compare two nozzle strings numerically, so "0.20" and "0.2" are the same
  172. // size. Unparseable values never match — a size we can't read is not evidence.
  173. function sameNozzle(a: string, b: string): boolean {
  174. const x = Number.parseFloat(a);
  175. const y = Number.parseFloat(b);
  176. if (Number.isNaN(x) || Number.isNaN(y)) return false;
  177. return x === y;
  178. }
  179. // Pull the model token and nozzle out of a preset name's printer tag.
  180. // Three shapes exist in the wild (#2628):
  181. //
  182. // "0.20mm Standard @BBL X1C" — short code, the form
  183. // Bambu ships its own cloud / standard presets under.
  184. // "SUNLU TPU 95A @Bambu Lab H2D 0.4 nozzle" — the full printer-preset
  185. // name, the form the slicer writes when a user saves their own preset
  186. // for a printer. Handling only the short form left these classified
  187. // 'unknown', so an H2D-scoped filament was offered (and auto-picked)
  188. // for an A1 slice, which the CLI then rejected.
  189. // "Overture PLA Matte @0.2" — nozzle only, no model.
  190. // Returned with a null token: the size can rule a printer OUT, but
  191. // says nothing about which models the profile belongs to.
  192. //
  193. // The first two shapes are also parsed in ConfigureAmsSlotModal (#1623).
  194. function extractPrinterTag(presetName: string): { token: string | null; nozzle: string | null } | null {
  195. const cleaned = stripTrailingParenthetical(presetName);
  196. const bbl = extractBblToken(cleaned);
  197. if (bbl) return bbl;
  198. // The printer tag is a suffix by convention, so read from the LAST '@' —
  199. // a stray earlier one ("My @work PLA @Bambu Lab H2D 0.4 nozzle") must not
  200. // swallow it. Anything that doesn't parse as a Bambu printer preset name
  201. // falls through to 'unknown', never to a guessed mismatch.
  202. const at = cleaned.lastIndexOf('@');
  203. if (at < 0) return null;
  204. const suffix = cleaned.slice(at + 1).trim();
  205. const longForm = extractPrinterPresetModel(suffix);
  206. if (longForm) return { token: longForm.model, nozzle: longForm.nozzle };
  207. const nozzleOnly = suffix.match(/^([\d.]+)\s*(?:mm)?\s*(?:nozzle)?$/i);
  208. if (nozzleOnly) {
  209. const size = Number.parseFloat(nozzleOnly[1]);
  210. if (!Number.isNaN(size) && size >= MIN_NOZZLE_MM && size <= MAX_NOZZLE_MM) {
  211. return { token: null, nozzle: nozzleOnly[1] };
  212. }
  213. }
  214. return null;
  215. }
  216. /**
  217. * Name-based fallback for presets carrying a printer tag — BambuStudio's own
  218. * `@BBL <model>` (#1325 follow-up), the full `@Bambu Lab <model> <size>
  219. * nozzle` form user-saved presets get, or a bare `@<size>` (#2628).
  220. * Used only after `compatible_printers` has returned `'unknown'`.
  221. *
  222. * Compares BOTH model AND nozzle. The nozzle filter is required because
  223. * Bambu ships per-nozzle process / filament variants (0.2 / 0.4 / 0.6 /
  224. * 0.8) — a 0.6-nozzle process is unusable on a 0.4-nozzle printer.
  225. * 0.4 is Bambu's default and its variants drop the nozzle suffix, so a
  226. * preset with no suffix counts as 0.4.
  227. */
  228. function classifyByBambuName(
  229. presetName: string,
  230. selectedPrinterName: string,
  231. bambuModelByShortCode: Record<string, string>,
  232. ): PrinterCompatibility {
  233. const parsed = extractPrinterTag(presetName);
  234. if (!parsed) return 'unknown';
  235. const selectedParts = extractPrinterPresetModel(selectedPrinterName);
  236. if (!selectedParts) return 'unknown';
  237. if (parsed.token === null) {
  238. // Nozzle-only tag ("Overture PLA Matte @0.2"). The size can rule a
  239. // printer OUT, but a matching size proves nothing about the model, so
  240. // the best this can ever return is 'unknown' — never 'match'.
  241. if (
  242. selectedParts.nozzle !== null
  243. && parsed.nozzle !== null
  244. && !sameNozzle(parsed.nozzle, selectedParts.nozzle)
  245. ) {
  246. return 'mismatch';
  247. }
  248. return 'unknown';
  249. }
  250. // If the token isn't in the table (a brand-new Bambu model whose short
  251. // code the backend registry hasn't added yet, or the model map hasn't
  252. // loaded yet), fall back to comparing the raw token. That keeps the
  253. // matcher working when token and printer-name fragment happen to be
  254. // identical — e.g. "Q1" preset against "Bambu Lab Q1 0.4 nozzle" —
  255. // without us having to ship a code update. When they differ in form
  256. // (X1C vs "X1 Carbon"), the registry is what makes the match work.
  257. const inferredModel = bambuModelByShortCode[parsed.token] ?? parsed.token;
  258. // The raw inferred model and the printer-preset fragment may differ only by
  259. // the Bambu short-code rename (e.g. preset token "A1M" vs printer "A1 Mini").
  260. // ``matchesPrinterModelSuffix`` consults the alias table before declaring a
  261. // mismatch — see #1649.
  262. if (
  263. normalizeModelFragment(selectedParts.model) !== normalizeModelFragment(inferredModel)
  264. && !matchesPrinterModelSuffix(parsed.token, selectedParts.model)
  265. ) {
  266. return 'mismatch';
  267. }
  268. // Nozzle compare — only when we have a usable size from the printer
  269. // side. A Bambu printer preset always carries one, so this branch is
  270. // taken in practice; the null path is defensive degrade for hand-typed
  271. // or non-Bambu printer names that happened to match the model.
  272. if (selectedParts.nozzle !== null) {
  273. const presetNozzle = parsed.nozzle ?? DEFAULT_NOZZLE;
  274. if (!sameNozzle(presetNozzle, selectedParts.nozzle)) return 'mismatch';
  275. }
  276. return 'match';
  277. }
  278. /**
  279. * Classify a process / filament preset against the selected printer.
  280. *
  281. * - 'match' — the preset is compatible with the selected printer.
  282. * - 'mismatch' — the preset resolves to a *different* printer.
  283. * - 'unknown' — compatibility can't be determined (no `compatible_printers`,
  284. * no recognizable `@BBL` tag, or no printer is selected);
  285. * the caller must not hide it.
  286. */
  287. export function presetCompatibility(
  288. preset: { name: string; compatible_printers?: string[] | null },
  289. _slot: 'process' | 'filament',
  290. selectedPrinterName: string | null,
  291. index: PrinterCompatibilityIndex,
  292. ): PrinterCompatibility {
  293. if (!selectedPrinterName) return 'unknown';
  294. // (1) Imported presets carry the slicer's own compatible_printers list —
  295. // authoritative when set.
  296. const compat = preset.compatible_printers;
  297. if (compat && compat.length > 0) {
  298. // Compared with the clone prefix off both sides: a preset cloned from a
  299. // system printer lists the *unprefixed* name, and comparing that raw
  300. // against a selected "# Bambu Lab …" reads as a mismatch — which now
  301. // hides the preset rather than merely demoting it.
  302. const selected = stripUserClonePrefix(selectedPrinterName);
  303. return compat.some((name) => stripUserClonePrefix(name) === selected) ? 'match' : 'mismatch';
  304. }
  305. // (2) BambuStudio's `@BBL <model>` name convention — covers cloud /
  306. // standard presets that don't carry compatible_printers.
  307. return classifyByBambuName(preset.name, selectedPrinterName, index.bambuModelByShortCode);
  308. }
  309. // model token compiles to a flexible-whitespace word-boundary regex.
  310. function _tokenToRegex(token: string): RegExp {
  311. const escaped = token.replace(/[.*+?^${}()|[\]\\]/g, '\\$&').replace(/\s+/g, '\\s+');
  312. return new RegExp(`\\b${escaped}\\b`, 'i');
  313. }
  314. // Extract printer model from a preset name → normalized short code
  315. // (e.g. "X1C", "H2D"). Two strategies in order:
  316. //
  317. // (1) ``@`` suffix — the BambuStudio naming convention. Two shapes:
  318. // - "@BBL X1C 0.4 nozzle" → "X1C" (short-code form,
  319. // Bambu Cloud system presets)
  320. // - "@Bambu Lab X1 Carbon 0.4 nozzle" → "X1C" (long-form, used by
  321. // user-renamed Bambu Cloud presets and most Orca Cloud profiles —
  322. // reverse-looked-up via the backend printer-model registry)
  323. //
  324. // (2) Body scan — many user-authored / Orca Cloud presets put the printer
  325. // model at the START of the name with no @ suffix at all (the literal
  326. // shape that surfaced #1623: "X1C eSUN PETG-Basic Filament"). Scan the
  327. // name for any known model token (every long-name fragment + every short
  328. // code from the registry) and return the first match. Long-first sort
  329. // keeps "A1 Mini" / "X1 Carbon" / "H2D Pro" from being eaten by their
  330. // shorter sibling ("A1" / "X1" / "H2D"). Word-boundary regex prevents
  331. // false-positives on partial substrings (e.g. "PA1" doesn't match "A1",
  332. // "X1Box" doesn't match "X1").
  333. //
  334. // Returns null when neither strategy resolves; the caller keeps such
  335. // presets visible (can't filter what we can't classify).
  336. //
  337. // ``printerModelsLongToShort`` is the backend's PRINTER_MODEL_MAP shape:
  338. // keys are "Bambu Lab <long>", values are short codes.
  339. export function extractPresetModel(
  340. name: string,
  341. printerModelsLongToShort: Record<string, string>,
  342. ): string | null {
  343. const atIdx = name.indexOf('@');
  344. if (atIdx >= 0) {
  345. const suffix = name.slice(atIdx + 1).trim();
  346. const bblMatch = suffix.match(/^BBL\s+(.+?)(?:\s+[\d.]+\s*nozzle)?$/i);
  347. if (bblMatch) return bblMatch[1].trim();
  348. const longMatch = suffix.match(/^Bambu Lab\s+(.+?)(?:\s+[\d.]+\s*nozzle)?$/i);
  349. if (longMatch) {
  350. const longFragment = longMatch[1].trim();
  351. const fullKey = `Bambu Lab ${longFragment}`;
  352. if (printerModelsLongToShort[fullKey]) return printerModelsLongToShort[fullKey];
  353. const lower = fullKey.toLowerCase();
  354. for (const [k, v] of Object.entries(printerModelsLongToShort)) {
  355. if (k.toLowerCase() === lower) return v;
  356. }
  357. return longFragment;
  358. }
  359. }
  360. // Body scan — accumulate {token, short} pairs and try long-first.
  361. const tokens: Array<{ token: string; short: string }> = [];
  362. const seen = new Set<string>();
  363. for (const [longName, short] of Object.entries(printerModelsLongToShort)) {
  364. const fragment = longName.replace(/^Bambu Lab\s+/, '');
  365. const key = fragment.toLowerCase();
  366. if (!seen.has(key)) {
  367. tokens.push({ token: fragment, short });
  368. seen.add(key);
  369. }
  370. const shortKey = short.toLowerCase();
  371. if (!seen.has(shortKey)) {
  372. tokens.push({ token: short, short });
  373. seen.add(shortKey);
  374. }
  375. }
  376. tokens.sort((a, b) => b.token.length - a.token.length);
  377. for (const { token, short } of tokens) {
  378. if (_tokenToRegex(token).test(name)) return short;
  379. }
  380. return null;
  381. }