docs(physics): hand off initial placement admission
This commit is contained in:
parent
30012361e1
commit
4a8f74dc72
5 changed files with 365 additions and 13 deletions
|
|
@ -225,8 +225,14 @@ src/
|
|||
RuntimeEntityObjectLifetime.cs -> one entity/object lifetime root
|
||||
RuntimeEntityObjectEventStream.cs -> canonical ordered entity/object deltas
|
||||
RuntimeEntityObjectViews.cs -> direct allocation-free borrowed views
|
||||
InboundPhysicsStateController.cs -> retail timestamp/snapshot authority
|
||||
ParentAttachmentState.cs -> generation-exact parent relations
|
||||
InboundPhysicsStateController.cs -> retail timestamp/snapshot authority,
|
||||
including gate-only dormant acceptance
|
||||
ParentAttachmentState.cs -> generation-exact parent relations plus raw
|
||||
missing-parent Create admission
|
||||
RuntimeInitialCreateAdmissionFreezer.cs -> immutable parser-payload copy
|
||||
boundary for dormant initial placement
|
||||
RuntimeInitialCreateResidenceState.cs -> exact-incarnation initial
|
||||
placement lease and accepted mixed-update FIFO
|
||||
Gameplay/
|
||||
RuntimeCommunicationState.cs -> one chat/social owner + ordered stream
|
||||
RuntimeInventoryState.cs -> exact object-table borrower + inventory
|
||||
|
|
@ -591,6 +597,21 @@ server-GUID/incarnation map, Runtime local-ID allocation/reverse lookup,
|
|||
accepted snapshots and timestamp gates, parent state, session/operation
|
||||
versions, and exact tombstones. `RuntimeEntityRecord` is presentation-free.
|
||||
|
||||
Initial world placement has one deliberate dormant exception to ordinary
|
||||
snapshot publication. While an exact `RuntimeInitialCreateResidenceState`
|
||||
lease is waiting for its first canonical placement, retail timestamp gates may
|
||||
accept later same-incarnation Create, ObjDesc, Parent, Pickup, Position,
|
||||
Movement, State, and Vector packets, but neither the canonical record, public
|
||||
accepted snapshot, event stream, nor presentation changes. Runtime retains
|
||||
deep-frozen typed actions in one monotonic arrival-ordered FIFO under the exact
|
||||
entity key. A Create whose parent is not yet addressable is retained even
|
||||
earlier as a complete raw packet, before child timestamp admission, and is
|
||||
guarded by a non-reused admission token. Delete, generation replacement,
|
||||
reset, GUID reuse, and reentrant teardown discard only the matching ownership.
|
||||
This checkpoint (`30012361`) intentionally stops before executing the FIFO or
|
||||
switching graphical/no-window production routes; that later cutover must use
|
||||
this owner rather than create another snapshot or placement path.
|
||||
|
||||
`LiveEntityRuntime` is the App projection/lifecycle host.
|
||||
`RegisterLiveEntity` first creates or refreshes canonical Runtime state without
|
||||
an App record. `MaterializeLiveEntity` claims the Runtime local ID and creates
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue