You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Wondering if it's possible to determine player starting position from the replay for a given map?
I haven't found any related documentation on the topic from other replay format docs. My current guess would be that the information is potentially in the given 'random seed' for the map?
The text was updated successfully, but these errors were encountered:
The random seed is used to initialize the random number generator across all clients so that everyone can run the same deterministic simulation (if you want more information look up deterministic lockstep in rts games).
As a consequence, the random number generator also determines the player starting positions. What you can do is infer the starting position from the first N actions of a player. Another possible scenario is generating a heatmap that shows game activity over time on the map.
Per request a new issue.
Wondering if it's possible to determine player starting position from the replay for a given map?
I haven't found any related documentation on the topic from other replay format docs. My current guess would be that the information is potentially in the given 'random seed' for the map?
The text was updated successfully, but these errors were encountered: