Update TODO.md
This commit is contained in:
parent
1b1598dbb7
commit
a0a8c0a89d
223
TODO.md
223
TODO.md
|
|
@ -2,148 +2,193 @@
|
||||||
|
|
||||||
## Goal
|
## Goal
|
||||||
|
|
||||||
Implement the networking MVP described in [MobaSyncMVP.md](D:/Learn/GameLearn/UnityProjects/NetworkFW/MobaSyncMVP.md):
|
Make the current project actually satisfy the MVP described in [MobaSyncMVP.md](D:/Learn/GameLearn/UnityProjects/NetworkFW/MobaSyncMVP.md):
|
||||||
|
|
||||||
- Client sends only movement and shooting inputs
|
- Client sends only `MoveInput` and `ShootInput`
|
||||||
- Server is authoritative for gameplay state
|
- Server owns gameplay truth for position, HP, combat resolution, and validation
|
||||||
- Server sends authoritative state and combat events
|
- Server sends authoritative `PlayerState` and `CombatEvent`
|
||||||
- Client performs local prediction for movement and interpolation/reconciliation for presentation
|
- Client predicts only local movement
|
||||||
|
- Client reconciles local state and interpolates remote state for presentation
|
||||||
|
|
||||||
|
## Current Audit Summary
|
||||||
|
|
||||||
|
Already in place:
|
||||||
|
|
||||||
|
- [x] `MoveInput` / `ShootInput` / `CombatEvent` protocol split is done
|
||||||
|
- [x] Delivery policy mapping is aligned with sync lane vs reliable lane
|
||||||
|
- [x] High-frequency stale filtering is limited to `MoveInput` and `PlayerState`
|
||||||
|
- [x] Client prediction buffer is narrowed to movement
|
||||||
|
- [x] Dual-transport runtime wiring exists in the shared network layer
|
||||||
|
- [x] Network-layer regression tests exist for routing and stale filtering
|
||||||
|
|
||||||
|
Still missing for MVP:
|
||||||
|
|
||||||
|
- [ ] Client-side `ShootInput` send path
|
||||||
|
- [ ] Client-side `CombatEvent` receive/apply path
|
||||||
|
- [ ] Server startup path that actually uses `ServerNetworkHost`
|
||||||
|
- [ ] Server-authoritative movement/state loop
|
||||||
|
- [ ] Server-authoritative shooting/combat resolution loop
|
||||||
|
- [ ] Full `PlayerState` field application for rotation / HP / velocity
|
||||||
|
- [ ] Remote-player snapshot buffering and interpolation strategy
|
||||||
|
- [ ] Explicit movement-stop handling via zero-input `MoveInput`
|
||||||
|
- [ ] End-to-end gameplay regression coverage
|
||||||
|
- [ ] Re-run build/test in an environment with the required .NET runtime installed
|
||||||
|
|
||||||
## Checklist
|
## Checklist
|
||||||
|
|
||||||
### 1. Split Network Message Types
|
### 1. Keep The Shared Networking Foundation Stable
|
||||||
|
|
||||||
- [x] Add `MoveInput`, `ShootInput`, and `CombatEvent` to [`Assets/Scripts/Network/Defines/MessageType.cs`](D:/Learn/GameLearn/UnityProjects/NetworkFW/Assets/Scripts/Network/Defines/MessageType.cs)
|
- [x] Keep `MoveInput`, `ShootInput`, `PlayerState`, and `CombatEvent` as the MVP gameplay messages
|
||||||
- [x] Add matching protobuf definitions in the source `.proto` file
|
- [x] Keep `MoveInput` and `PlayerState` on `HighFrequencySync`
|
||||||
- [x] Regenerate [`Assets/Scripts/Network/Defines/Message.cs`](D:/Learn/GameLearn/UnityProjects/NetworkFW/Assets/Scripts/Network/Defines/Message.cs)
|
- [x] Keep `ShootInput` and `CombatEvent` on `ReliableOrdered`
|
||||||
- [x] Stop using one broad `PlayerInput` message to carry both movement and shooting
|
- [x] Keep stale-drop logic only for `MoveInput` and `PlayerState`
|
||||||
|
- [x] Keep client prediction buffering limited to `MoveInput`
|
||||||
|
- [x] Keep dual-transport runtime construction in [`Assets/Scripts/Network/NetworkApplication/NetworkIntegrationFactory.cs`](D:/Learn/GameLearn/UnityProjects/NetworkFW/Assets/Scripts/Network/NetworkApplication/NetworkIntegrationFactory.cs)
|
||||||
|
|
||||||
Acceptance:
|
Acceptance:
|
||||||
|
|
||||||
- [x] `MoveInput`, `ShootInput`, and `CombatEvent` can be referenced independently in code
|
- [x] Network-layer message routing still matches the MVP transport mapping
|
||||||
- [x] The project builds successfully after regeneration
|
- [x] Sequence filtering still matches the MVP tick rules
|
||||||
|
- [x] Shared runtime and host still support separate reliable and sync transports
|
||||||
|
|
||||||
### 2. Update Delivery Policy Mapping
|
### 2. Align Client Input Flow With MVP
|
||||||
|
|
||||||
- [x] Update [`Assets/Scripts/Network/NetworkApplication/DefaultMessageDeliveryPolicyResolver.cs`](D:/Learn/GameLearn/UnityProjects/NetworkFW/Assets/Scripts/Network/NetworkApplication/DefaultMessageDeliveryPolicyResolver.cs)
|
- [ ] Update [`Assets/Scripts/MovementComponent.cs`](D:/Learn/GameLearn/UnityProjects/NetworkFW/Assets/Scripts/MovementComponent.cs) so movement intent can send an explicit zero-vector stop message when the player releases input
|
||||||
- [x] Map `MoveInput` to `HighFrequencySync`
|
- [ ] Keep local prediction immediate for the controlled player
|
||||||
- [x] Map `PlayerState` to `HighFrequencySync`
|
- [ ] Add a client shooting input capture path
|
||||||
- [x] Map `ShootInput` to `ReliableOrdered`
|
- [ ] Add `NetworkManager.SendShootInput(...)`
|
||||||
- [x] Map `CombatEvent` to `ReliableOrdered`
|
- [ ] Ensure the client sends only `MoveInput` and `ShootInput` for gameplay actions
|
||||||
|
- [ ] Keep local shooting presentation optional and purely cosmetic
|
||||||
|
|
||||||
Acceptance:
|
Acceptance:
|
||||||
|
|
||||||
- [x] `MessageManager` routes movement/state messages to the sync lane
|
- [ ] Releasing movement input produces a final `MoveInput` that stops authoritative movement
|
||||||
- [x] `MessageManager` routes shooting/combat-result messages to the reliable lane
|
- [ ] Firing produces a `ShootInput` sent on the reliable lane
|
||||||
|
- [ ] No MVP gameplay action depends on legacy broad messages such as `PlayerAction`
|
||||||
|
|
||||||
### 3. Update Sequence Filtering For High-Frequency Messages
|
### 3. Apply Full Authoritative `PlayerState` On The Client
|
||||||
|
|
||||||
- [x] Modify [`Assets/Scripts/Network/NetworkApplication/SyncSequenceTracker.cs`](D:/Learn/GameLearn/UnityProjects/NetworkFW/Assets/Scripts/Network/NetworkApplication/SyncSequenceTracker.cs)
|
- [ ] Extend the player-side presentation model to consume authoritative `position`, `rotation`, `hp`, and optional `velocity`
|
||||||
- [x] Replace `PlayerInput`-based stale filtering with `MoveInput`
|
- [ ] Keep local-player reconciliation driven by authoritative `PlayerState.Tick`
|
||||||
- [x] Keep stale filtering for `PlayerState`
|
- [ ] Use authoritative HP instead of any local guesswork
|
||||||
- [x] Do not apply stale-drop logic to `ShootInput`
|
- [ ] Decide where authoritative player state lives on the client side and keep that ownership explicit
|
||||||
- [x] Do not apply stale-drop logic to `CombatEvent`
|
- [ ] Update UI or diagnostics so authoritative HP/state changes are observable during development
|
||||||
|
|
||||||
Acceptance:
|
Acceptance:
|
||||||
|
|
||||||
- [x] Older `MoveInput` packets are dropped
|
- [ ] Local player corrects to server truth for position and rotation
|
||||||
- [x] Older `PlayerState` packets are dropped
|
- [ ] Local and remote players expose authoritative HP from `PlayerState`
|
||||||
- [x] `ShootInput` is not silently discarded by sequence filtering
|
- [ ] The client does not finalize gameplay truth outside authoritative messages
|
||||||
|
|
||||||
### 4. Narrow Prediction Buffer To Movement
|
### 4. Replace Ad-Hoc Remote Movement Smoothing With Snapshot Interpolation
|
||||||
|
|
||||||
- [x] Modify [`Assets/Scripts/Network/NetworkApplication/ClientPredictionBuffer.cs`](D:/Learn/GameLearn/UnityProjects/NetworkFW/Assets/Scripts/Network/NetworkApplication/ClientPredictionBuffer.cs)
|
- [ ] Add a small `PlayerState` snapshot buffer for remote players
|
||||||
- [x] Store `MoveInput` instead of broad `PlayerInput`
|
- [ ] Interpolate between buffered snapshots instead of lerping directly to the latest state
|
||||||
- [x] Continue pruning buffered inputs using authoritative `PlayerState.Tick`
|
- [ ] Discard stale snapshots by tick
|
||||||
- [x] Keep shooting outside the prediction replay path
|
- [ ] Keep remote players non-predicted
|
||||||
|
- [ ] Document the interpolation delay / sample strategy in code comments or docs if it is non-obvious
|
||||||
|
|
||||||
Acceptance:
|
Acceptance:
|
||||||
|
|
||||||
- [x] Local movement prediction still works
|
- [ ] Remote movement is based on buffered authoritative snapshots
|
||||||
- [x] Authoritative `PlayerState` still prunes acknowledged movement inputs
|
- [ ] Out-of-order remote `PlayerState` packets do not corrupt presentation
|
||||||
- [x] Shooting does not depend on prediction buffer replay
|
- [ ] Remote players are smoothed without becoming locally authoritative
|
||||||
|
|
||||||
### 5. Preserve And Use Dual-Transport Runtime Wiring
|
### 5. Add Client-Side `CombatEvent` Handling
|
||||||
|
|
||||||
- [x] Verify [`Assets/Scripts/Network/NetworkApplication/SharedNetworkRuntime.cs`](D:/Learn/GameLearn/UnityProjects/NetworkFW/Assets/Scripts/Network/NetworkApplication/SharedNetworkRuntime.cs) is used with both reliable and sync transports
|
- [ ] Register a `CombatEvent` handler in [`Assets/Scripts/NetworkManager.cs`](D:/Learn/GameLearn/UnityProjects/NetworkFW/Assets/Scripts/NetworkManager.cs)
|
||||||
- [x] Verify [`Assets/Scripts/Network/NetworkHost/ServerNetworkHost.cs`](D:/Learn/GameLearn/UnityProjects/NetworkFW/Assets/Scripts/Network/NetworkHost/ServerNetworkHost.cs) is used with both reliable and sync transports
|
- [ ] Route combat results to the relevant player or combat presentation components
|
||||||
- [x] Keep the current dual-transport constructor shape for MVP
|
- [ ] Apply hit / damage / death / shoot-rejected results from server truth
|
||||||
- [x] Do not expand `ITransport` yet unless MVP proves it is necessary
|
- [ ] Keep local fire FX separate from authoritative damage and death resolution
|
||||||
|
- [ ] Add UI or debug output for combat-result visibility during MVP development
|
||||||
|
|
||||||
Acceptance:
|
Acceptance:
|
||||||
|
|
||||||
- [x] Client runtime can start with two distinct transport instances
|
- [ ] `CombatEvent` updates HP, death state, or hit feedback on clients
|
||||||
- [x] Server host can start with two distinct transport instances
|
- [ ] `ShootRejected` can be surfaced without client-side authoritative rollback logic
|
||||||
- [x] `MoveInput` / `PlayerState` can flow through the sync transport
|
- [ ] Combat results are driven by server messages, not speculative client outcomes
|
||||||
- [x] `ShootInput` / `CombatEvent` can flow through the reliable transport
|
|
||||||
|
|
||||||
### 6. Finalize MVP Message Fields
|
### 6. Add A Real Server Startup / Integration Entry Point
|
||||||
|
|
||||||
- [x] Define `MoveInput` fields: `playerId`, `tick`, `moveX`, `moveY`
|
- [ ] Add or update the runtime server bootstrap so production code actually constructs [`ServerNetworkHost`](D:/Learn/GameLearn/UnityProjects/NetworkFW/Assets/Scripts/Network/NetworkHost/ServerNetworkHost.cs)
|
||||||
- [x] Define `ShootInput` fields: `playerId`, `tick`, `dirX`, `dirY`, optional `targetId`
|
- [ ] Start both reliable and sync transports from the server integration layer
|
||||||
- [x] Define `PlayerState` fields: `playerId`, `tick`, `position`, `rotation`, `hp`, optional `velocity`
|
- [ ] Drain server pending messages on a regular loop
|
||||||
- [x] Define `CombatEvent` fields: `tick`, `eventType`, `attackerId`, `targetId`, `damage`, optional `hitPosition`
|
- [ ] Hook server lifecycle logging/diagnostics in the same way the client runtime does
|
||||||
- [x] Add `CombatEventType` if needed
|
- [ ] Make the startup path easy to locate and test
|
||||||
|
|
||||||
Acceptance:
|
Acceptance:
|
||||||
|
|
||||||
- [x] MVP gameplay data can be expressed without ad hoc payload extensions
|
- [ ] There is a concrete server startup path in production code, not only shared infrastructure and tests
|
||||||
- [x] Position, HP, and combat results all have explicit authoritative messages
|
- [ ] Server runtime uses two distinct transport instances when sync port is configured
|
||||||
|
- [ ] Server can receive gameplay traffic on both lanes
|
||||||
|
|
||||||
### 7. Add Message Routing Tests
|
### 7. Implement Server-Authoritative Movement And State Broadcast
|
||||||
|
|
||||||
- [x] Extend [`Assets/Tests/EditMode/Network/MessageManagerTests.cs`](D:/Learn/GameLearn/UnityProjects/NetworkFW/Assets/Tests/EditMode/Network/MessageManagerTests.cs)
|
- [ ] Register `MoveInput` handling on the server
|
||||||
- [x] Add `SendMessage_MoveInput_UsesSyncLanePolicy`
|
- [ ] Maintain authoritative per-player movement state on the server
|
||||||
- [x] Add `SendMessage_ShootInput_UsesReliableLanePolicy`
|
- [ ] Validate and apply move input before mutating authoritative state
|
||||||
- [x] Add `SendMessage_CombatEvent_UsesReliableLanePolicy`
|
- [ ] Use tick-aware stale filtering per peer without cross-peer interference
|
||||||
- [x] Add `Receive_StaleMoveInput_IsDropped`
|
- [ ] Broadcast authoritative `PlayerState` snapshots on the sync lane at a fixed cadence
|
||||||
- [x] Add `Receive_ShootInput_IsNotDroppedBySequenceTracker`
|
- [ ] Ensure zero-vector movement input stops authoritative movement
|
||||||
|
|
||||||
Acceptance:
|
Acceptance:
|
||||||
|
|
||||||
- [x] Lane selection is covered by tests for all new MVP messages
|
- [ ] Server owns final position and movement resolution
|
||||||
- [x] High-frequency stale-drop behavior is covered by tests
|
- [ ] Clients receive authoritative `PlayerState` snapshots for reconciliation/interpolation
|
||||||
|
- [ ] Movement stop is reflected by server-authoritative state, not just local client visuals
|
||||||
|
|
||||||
### 8. Add Sync Strategy Tests
|
### 8. Implement Server-Authoritative Shooting And Combat Resolution
|
||||||
|
|
||||||
- [x] Extend [`Assets/Tests/EditMode/Network/SyncStrategyTests.cs`](D:/Learn/GameLearn/UnityProjects/NetworkFW/Assets/Tests/EditMode/Network/SyncStrategyTests.cs)
|
- [ ] Register `ShootInput` handling on the server
|
||||||
- [x] Add `ClientPredictionBuffer_AuthoritativeState_PrunesAcknowledgedMoveInputs`
|
- [ ] Validate shoot requests before accepting them
|
||||||
- [x] Add `ServerNetworkHost_RejectsStaleMoveInputPerPeerWithoutCrossPeerInterference`
|
- [ ] Resolve hit, damage, death, and rejection on the server
|
||||||
|
- [ ] Broadcast `CombatEvent` on the reliable lane
|
||||||
|
- [ ] Reflect authoritative HP changes in subsequent `PlayerState` snapshots
|
||||||
|
- [ ] Keep server combat resolution independent from cosmetic client preplay
|
||||||
|
|
||||||
Acceptance:
|
Acceptance:
|
||||||
|
|
||||||
- [x] Prediction buffer still behaves correctly after switching to `MoveInput`
|
- [ ] Server decides whether shooting is valid
|
||||||
- [x] Multi-session stale filtering remains isolated per peer
|
- [ ] Server emits authoritative `CombatEvent` for damage/death/rejection
|
||||||
|
- [ ] Clients update combat state from server truth
|
||||||
|
|
||||||
### 9. Wire Dual Transports In The Integration Layer
|
### 9. Expand Regression Coverage From Network Layer To Gameplay Flow
|
||||||
|
|
||||||
- [x] Update the client integration entry point, likely [`Assets/Scripts/NetworkManager.cs`](D:/Learn/GameLearn/UnityProjects/NetworkFW/Assets/Scripts/NetworkManager.cs)
|
- [ ] Extend [`Assets/Tests/EditMode/Network/MessageManagerTests.cs`](D:/Learn/GameLearn/UnityProjects/NetworkFW/Assets/Tests/EditMode/Network/MessageManagerTests.cs) only as needed for lane policy regressions
|
||||||
- [x] Update the server startup integration point
|
- [ ] Add tests that cover explicit zero-input movement stop behavior
|
||||||
- [x] Instantiate one reliable transport and one sync transport
|
- [ ] Add tests for client `ShootInput` send routing
|
||||||
- [x] Ensure runtime construction uses both transports instead of a single shared instance
|
- [ ] Add tests for `CombatEvent` receive/apply behavior
|
||||||
|
- [ ] Add tests for remote `PlayerState` buffering / interpolation decisions where practical
|
||||||
|
- [ ] Add tests for server-authoritative movement processing
|
||||||
|
- [ ] Add tests for server-authoritative shooting/combat result generation
|
||||||
|
- [ ] Add at least one end-to-end fake-transport test that covers `MoveInput -> PlayerState` and `ShootInput -> CombatEvent`
|
||||||
|
|
||||||
Acceptance:
|
Acceptance:
|
||||||
|
|
||||||
- [x] Runtime uses logical dual-lane routing backed by two transport instances
|
- [ ] MVP gameplay flow is covered beyond transport-only assertions
|
||||||
- [x] Logging or tests confirm movement/state traffic and reliable event traffic are separated
|
- [ ] Both client single-session and server multi-session behaviors remain protected
|
||||||
|
- [ ] Regression tests fail if movement/combat authority accidentally drifts back to the client
|
||||||
|
|
||||||
### 10. Build And Test
|
### 10. Re-Verify Build And Test
|
||||||
|
|
||||||
- [x] Run `dotnet build Network.EditMode.Tests.csproj -v minimal`
|
- [ ] Install or use an environment that contains the required .NET runtime for this repository
|
||||||
- [x] Run `dotnet test Network.EditMode.Tests.csproj --no-build -v minimal`
|
- [ ] Run `dotnet build Network.EditMode.Tests.csproj -v minimal`
|
||||||
|
- [ ] Run `dotnet test Network.EditMode.Tests.csproj --no-build -v minimal`
|
||||||
|
- [ ] Record the actual result after the environment issue is resolved
|
||||||
|
|
||||||
Acceptance:
|
Acceptance:
|
||||||
|
|
||||||
- [x] Build succeeds
|
- [ ] Build succeeds in a runnable local environment
|
||||||
- [x] Edit-mode network tests succeed
|
- [ ] Edit-mode network tests succeed
|
||||||
- [x] New MVP regression tests succeed
|
- [ ] New MVP gameplay regression tests succeed
|
||||||
|
|
||||||
## Recommended Order
|
## Recommended Order
|
||||||
|
|
||||||
1. Split protocol and message types
|
1. Keep the shared networking foundation unchanged
|
||||||
2. Update delivery policy mapping
|
2. Fix client input flow, especially stop movement and `ShootInput`
|
||||||
3. Update sequence filtering
|
3. Add real server startup and authoritative movement/state broadcast
|
||||||
4. Narrow prediction buffer
|
4. Add authoritative shooting/combat resolution and `CombatEvent`
|
||||||
5. Add and update tests
|
5. Apply full authoritative state and combat results on the client
|
||||||
6. Wire dual transports in integration
|
6. Upgrade remote interpolation from direct lerp to snapshot buffering
|
||||||
7. Build and run tests
|
7. Add gameplay-flow regression tests
|
||||||
|
8. Re-run build and test once the .NET runtime issue is resolved
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue