ModernUO/Projects/UOContent/Engines/Bulk Orders
Kamron Batman 73f9688083
feat: adopt serialization generator v4 (field-side linkage, anchored timers) (#2586)
## Summary

Adopts ModernUO.Serialization 4.0.0 across the engine. Three commits, reviewable independently:

1. **Package + tool bump to 4.0.0** (`Server.csproj`, `UOContent.csproj`, `dotnet-tools.json`).
2. **Timers → `[DeserializeTimer]`** — the 8 drifting timers (BaseLight, TreasureMapChest, MarkContainer, FillableContainer, DeathRobe, DecayedCorpse, Corpse, BaseEscortable) now store their next tick as **anchored time**: server downtime no longer consumes the remaining delay, and idle-world saves are byte-stable. This changes their wire format, so each class bumps its serialization version with a `MigrateFrom` that replays the old delta-time read through the migration schema (the new `vN.json` files carry `@AnchoredTimer`; the old ones keep `@TimerDrift`, which the generator reads forever). The 2 wall-clock timers (Aquarium, FountainOfLife) keep their exact format via `wallClock: true` — no bump. Restart methods drop their `TimeSpan.MinValue` sentinel checks: v4 invokes them **only when a timer was actually running at save**.
3. **Linkage → field-side declarations** — 175 conversions across 25 files: `[SerializableFieldSaveFlag(order)]`/`[SerializableFieldDefault(order)]` become `[SaveFlag(nameof(...), nameof(...))]` on the field, and `[SerializableFieldChanged(order)]` becomes the `fieldChanged:` argument of `[SerializableField]`. **Wire-neutral: zero migration schemas changed.**

## Verification

- Solution builds with **0 errors, 0 warnings**; all three 4.0.0 packages verified indexed on nuget.org (no local feed needed).
- **835 + 708 tests green.**
- Generated output inspected: old-version content structs replay `ReadDeltaTime` (e.g. `V3Content.DecayTimerNext = reader.ReadDeltaTime()`), current versions write/read anchored time with the gated restart, and the wall-clock classes emit byte-identical `Write`/`ReadDateTime` framing.
- Schema tool run is committed (CI's `git diff --exit-code` schema check passes): exactly the 8 expected new `vN.json` files, nothing else touched.
- The conversion was scripted with a class-scoped resolver (order → same-class `[SerializableField(order)]`/`[SerializableProperty(order)]`); it planned 175/175 with zero ambiguities before applying.

## Notes

- New `MigrateFrom`s use the content structs' provided `XxxDelay` property, matching the pre-existing idiom in Corpse's and TreasureMapChest's older migrations.
- Follow-up candidate (separate PR, wire-neutral, any time): fold the ~150 eligible hand-written `[SerializableProperty]` setters (clamps, post-change side effects) down to `[SerializableField]` with `allowFieldChange`/`fieldChanged` hooks.
2026-08-22 17:54:02 -07:00
..
Books feat: adopt serialization generator v4 (field-side linkage, anchored timers) (#2586) 2026-08-22 17:54:02 -07:00
BaseBOD.cs fix: Optimizes items to use default weights. (Part 1) (#2240) 2025-07-24 14:44:39 -07:00
BODTarget.cs fix(core): Converts more packets and switches to Moq (#415) 2021-01-16 22:09:05 -08:00
BulkMaterialType.cs cleanup: Fixes bugs and cleans up code (#660) 2021-07-19 20:49:59 -07:00
LargeBOD.cs feat: Adds Feature Flag System (#2328) 2026-02-07 12:02:57 -08:00
LargeBODAcceptGump.cs chore: Use var everywhere (#2294) 2025-12-27 16:47:28 -08:00
LargeBODGump.cs chore: Use var everywhere (#2294) 2025-12-27 16:47:28 -08:00
LargeBulkEntry.cs fix(codegen): Fixes bulk order deed hue and codegens (#647) 2021-06-11 19:51:03 -07:00
LargeSmithBOD.cs fix: Updates serialization to use v2.0 (#998) 2022-04-17 08:02:15 -07:00
LargeTailorBOD.cs fix: Updates serialization to use v2.0 (#998) 2022-04-17 08:02:15 -07:00
Rewards.cs chore: Cleans up pattern checks. (#892) 2021-12-24 15:53:59 -08:00
SmallBOD.cs fix: Fixes PlayerConstructed stacking/BODs (#2579) 2026-08-14 17:14:38 -07:00
SmallBODAcceptGump.cs chore: Use var everywhere (#2294) 2025-12-27 16:47:28 -08:00
SmallBODGump.cs chore: Use var everywhere (#2294) 2025-12-27 16:47:28 -08:00
SmallBulkEntry.cs fix(core): Fixes type caching & cleanup (#422) 2021-01-20 00:10:33 -08:00
SmallSmithBOD.cs chore: Use var everywhere (#2294) 2025-12-27 16:47:28 -08:00
SmallTailorBOD.cs chore: Use var everywhere (#2294) 2025-12-27 16:47:28 -08:00