userDaniel Pcancel
reporust_rebootcancel

1,623 Commits over 396 Days - 0.17cph!

19 Days Ago
Update: SendEntityUpdates - don't try to skip occlusion explicitly Bit of a 180 turn. Current code is problematic to optimize at high level - but it will be easier if we introduce a global occlusion pair cache. At least I hope. Tests: compiles in editor
19 Days Ago
Buildfix: TryRemove -> Remove Tests: editor compiles
19 Days Ago
Update: bring back non-concurrent dict for BasePlayer.lastPlayerVisibility Tests: none, trivial change
19 Days Ago
Update: OcclusionSendUpdates - rewrite lost pair handling to gather->send form Should enable to revert back to non-concurrect dictionary for BasePlayer.lastPlayerVisibility Tests: 2p session on craggy with UsePlayerUpdateJobs 0 and 2
19 Days Ago
Clean: OcclusionSendUpdates - factor out SendEntitySnapshotsWithChildren Decided against merging SendEntitySnapshotsWithChildren and SendEntitySnapshots, as -WithChildren relies on grouped sending - it would complicate the code unnecessarily. Tests: 2p session on Craggy with UsePlayerUpdateJobs 2
19 Days Ago
Clean: SendEntityUpdates - refactor out SendEntitySnapshots Prepping for server occlusion unification Tests: none, simple change
19 Days Ago
Update: SendEntityUpdates - add parallel sending of snapshots It's incomplete, but now the similarities with OcclusionSendUpdates are more clear and can be unified. Also revelaed a bunch of concerns with ShouldNetworkTo and deferring to parent choice. Tests: 2p on Craggy with UsePlayerUpdateJobs 2. Observed animal desync, but weirdly it was still there after setting UsePlayerUpdateJobs 0 and reconnecting - will investigate later.
19 Days Ago
Bugfix: OcclusionSendUpdates - fix up wrong last batch size calculation - also removed dead variables - removed FoundMain/Worker to SendAsSnapshotMain/Worker Tests: none, trivial changes
19 Days Ago
Update: SendEntityUpdates - plug in occlusion fast path - use-after-free bugfix Tests: 2p on Craggy with UsePlayerUpdateJobs 2
22 Days Ago
Update: shaping up SendEntityUpdates, not complete I'll need to refactor out sending logic from parallel server occlusion, and reuse some previous results, but at this point the direction is clear Tests: compiles in editor
22 Days Ago
Update: slightly more landscaping Tests: none, trivial changes
22 Days Ago
Update: being brave and replacing an if-continue with an assert Tests: none, read through code to confirm it should hold
22 Days Ago
Update: start on BasePlayer.ConnectedPlayersUpdate - Inlined BasePlayer.ConnectedPlayerUpdate and cleaned up the styling - Annotated potential loops to optimize/offload - Removed dead IsReceivingSnapshot check Tests: none, trivial changes
22 Days Ago
Bugfix: Parallel ServerOcclusion - get rid of extra ShouldNetworkTo checks - Added a note explaining why we're not offloading network-cached children to worker threads Tehnically previous version added an extra check due to APIs being used - this brings it back in line with serial count. Tests: 2p session on craggy with UsePlayerUpdateJobs 2
22 Days Ago
Clean: simplify SendAsSnapshotWIthChildren - remove includeChildrensChildren - it was always set to true - remove the children null check - it's always created/set Tests: compiles in editor
22 Days Ago
Bugfix: Parallel ServerOcclusion - serialization now happens only on main thread - main thread doesn't try to process lost pairs and already-serialized found pairs tasks anymore - serializing work is longest Previously serialization was offloaded to worker threads, but after investigation discovered that it would kaboom due to accessing scripting API. So instead, we offload to worker threads only players + entities that we can guarantee won't trigger serialization. Tests: 2p session on craggy with UsePlayerUpdateJobs 0, 1, 2 - ran around, switched weapons, disconnected
23 Days Ago
Bugfix: Parallel Occlusion marks entity snapshots as out of order Since we can send them from muiltiple threads, they are unordered - this would cause a client disconnect previously. Not anymore Tests: none yet, need to try validating with server demos
23 Days Ago
Update: Escape hatch for Server sending entity messages out of order - Client skips ordering validation based on message contents Needed for the parallel server occlusion, useful for other places Tests: local SERVER+CLIENT session, though no code uses this yet
23 Days Ago
Clean: removing dead param from SendAsSnapshot I need the param for different logic, and it's been lost in the sauce since 2015. Tests: editor compiles
23 Days Ago
Update: Test.ServerOcclusion - rewrite perf tests - Also added ParallelJob perf test covering recent Shows that 1k pairs case goes from 2ms to 0.2ms with ParallelJob - hoping it'll carry over to live env. Tests: ran the perf tests
23 Days Ago
Update: Test.ServerOcclusion - update stale cases with new ones This was much more painful than expected. Need to update the perf test next Tests: ran the unit tests
23 Days Ago
Bugfix: replacing old occlusion cache to unblock unit tests All expect-true tests are currently failing - need updating the query locations Tests: ran the Server Occlusion tests
23 Days Ago
Update: batched OcclusionLineOfSight now handles sending updates internally (like serial) - driven by OcclusionLineOfSightNoBroadcast - this thing we can test Don't like this encapsulation, but it should prevent issues like missing foundPairs. Tests: none, trivial change
24 Days Ago
Bugfix: player replication no longer stutters with UsePlayerUpdateJobs 2 Was iterating over wrong occlusion results - need to refactor to avoid future confusion Tests: 2p session on Craggy with UsePlayerUpdateJobs 2
24 Days Ago
Bugfix: rewrite batched OcclusionLineOfSight to supports sleepers Tests: 2p session on Craggy with UsePlayerUpdateJobs 2, disconnected multiple times - no more out-of-bounds exceptions
24 Days Ago
Update: BasePlayer.NetworkPositionTick now uses batched server occlusion Tests: 2p session on Craggy with UsePlayerUpdateJobs 0 and 2. Saw a bug on disconnect, will fix next.
24 Days Ago
Update: moving occlusion notification logic to it's own utility func Realized I'll need it for the task-enabled SendNetworkPositions Tests: none, trivial change
24 Days Ago
Update: change OcclusionLineOfSight interface to use (int, int) instead if deconstructed pairs - Also fixed invalid allocator use for a native list - TempJob was wastefull In the middle of writing SendNetworkPositions, and realized previous interface could be error prone Tests: none, trivial change
24 Days Ago
Update: starting work on batched BasePlayer.NetworkPositionTick Doesn't do any batching/tasks yet, just preliminary clean of non-player logic. Goal is to batch underlying server occlusion Tests: 2p session on craggy with UsePlayerUpdateJobs 2
24 Days Ago
Update: Refactor FinalizeTickParallel to isolate ApplyChanges logic Should help with profiling, and sets up for batched BasePlayer.NetworkPositionTick Tests: local 2 palyer session on craggy with UsePlayerUpdateJobs 1 and 2
24 Days Ago
Bugfix: ensure we update player eyes before we kick off various jobs Previously this would cause cached state to have stale eye positions. Tests: none, trivial change
25 Days Ago
Update: refactor ServerUpdateParallel to only contain high-level calls This should improve profiling view by clearly delineating logic Tests: 2p session on craggy with UsePlayerUpdateJobs 2
25 Days Ago
Clean: mark with comments when each player cache is last updated Tests: none, trivial change
25 Days Ago
Update: remove CachedState.IsValid - it was misleading and unnecessary Reimplemented logic that used to rely it to instead rely on nullable values Tests: editor compiles
25 Days Ago
Update: move CachedStates growth to ServerUpdateParallel - also using zeroed memory to have sensible defaults for users that haven't yet being processed Makes it clearer that they are in sync with playerCache Tests: none, trivial change
25 Days Ago
Merge: from main Tests: editor compiles
25 Days Ago
▉▅▉▇▇: █▍▉▍ ▌▌▅▇▌▆▇▅▇▌▆_▄▉▊▉▅ - ▍▌▆▇▅▋: ▍▋▋▋▄▅▋▇▆▌█▅▌▉▉▉▍▅█ ▅ ▍█▍ ▆▍▉▄ ▆█▊▊▆▌▄▍█▊ ▅▅▅█▄ ▉▇▊█▋: ▄▉▇▍▅ ▌▍▌█ ▌▉▋▉ ▅▉▍▉▅▆▆▌▉▅▍▌▍▇▋▍▌▉▉ ▉, ▋▄ ▊▄▋▉▇▌▅ ▉▊ ▅ ▇▉▍▌▅▍ ▅█ ▅▍█▇█▄▅▉
25 Days Ago
▍▌▌▅▍▊: ▉▄▌ █▅▇ ▋▇▉▊▋▋▋▌▍▆ █▅▄▇▍ ▊▄▇█ ▊▇▋█▄▇▄▅▊▅▅▉▋▍▋▆▍▄▇ ▄█▋ ▋▄▋▇▊▄▊ ▊▌▍▉▄: █▄▍▍█ ▇▊▉▅▋▋▋ ▋▅▇▄ ▄▊▋▇▍▍▊▊▋▊▊▍▉▄▆▅▄▋█ ▊, ▆▍▉▄▇ ▍▊▍▆▍▊ █▋▉ ▉ ▆▆▆▅▉█, ▆▆▌ ▊▋▄ ▄█▊▋▍▋▊ ▌▄ ▄▋▍ ▄▆▊█
25 Days Ago
Merge: from main
25 Days Ago
Optim: use cached pos to avoid transform access Tests: none, trivial change
25 Days Ago
Update: UsePlayerUpdateJobs server var is now a mode, not a bool - rolled in UsePlayerTasks Will make it easier to test new modes in the future and avoid weird servervar dependency mess Tests: compiles in editor
25 Days Ago
Bugfix: cache missing state player analytics when jobs are disabled Tests: none, trivial change
25 Days Ago
Update: take world pos out of CacheState This partially fixes cached state missing for players whos ticks weren't processed yet. Tests: 2p local session on craggy
26 Days Ago
Merge: from main Tests: none
26 Days Ago
Merge: from occlusion_rework - UsePlayerTasks runs occlusion checks using batched burst jobs - UsePlayerTasks - any visibility changes are processed using tasks distributed amongst worker threads - UsePlayerUpdateJobs - more use of CachedState Tests: a bunch of local 2 player sessions on Craggy
26 Days Ago
Update: move serial server occlusion update code to the relevant partial class file - Use ReadOnly interface for lists to avoid read-write access violations Tests: compiles in editor
26 Days Ago
Optim: avoid player's world transform querying and use cached pos instead Hoping it'll help reduce the 50% self time of ServerUpdateParallel on 200pop server Tests: none, trivial change
26 Days Ago
Optim: OcclusionCache store sorted pairs - Don't store SubGrids in the cache, just their indices - saves a bit of mem Allows to double the effective capacity of the cache Tests: 2 player session in editor with occlusion behind the hill
26 Days Ago
Clean: Move all of the player server occlusion logic to it's own file - Removed now resolved TODOs Now that it has both task and serial modes of operation, it takes too much space in server partition file. Tests: compiles in CLIENT+SERVER editor
26 Days Ago
Update: use ConcurrentDictionary for BasePlayer.lastPlayerVisibility Trying the simplest approach first, lets see how it scales on release pop. Tests: 2 player local session with occlusion culling de-/spawning player