Loading...
  OR  Zero-K Name:    Password:   

Post edit history

Improved (tracking) unit marker widget

To display differences between versions, select one or more edits in the list using checkboxes and click "diff selected"
Post edit history
Date Editor Before After
8/30/2022 11:53:46 AMEErankAdminAnarchid before revert after revert
8/30/2022 11:50:07 AMEErankAdminAnarchid before revert after revert
Before After
1 [q]More generally, I'm confused with the relationships between the following concepts: "game frame", "drawing frame", "sim frame", FPS.[/q] 1 [q]More generally, I'm confused with the relationships between the following concepts: "game frame", "drawing frame", "sim frame", FPS.[/q]
2 The game tries to run simulation (actual physics) at 30 frames per second while drawing the interpolated visuals (eg what you see) of what happens at as many frames as possible. 2 The game tries to run simulation (actual physics) at 30 frames per second while drawing the interpolated visuals (eg what you see) of what happens at as many frames as possible.
3 \n 3 \n
4 A sim frame is the same thing as a game frame, a discrete simulation step. A draw frame is each time the engine redraws the screen. Usually there are a lot more drawframes than simframes per second. 4 A sim frame is the same thing as a game frame, a discrete simulation step. A draw frame is each time the engine redraws the screen. Usually there are a lot more drawframes than simframes per second.
5 \n 5 \n
6 Simulation frames are never skipped, because skipping them would break sync. Drawframes can be skipped altogether with nothing too bad happening (besides nothing being drawn, but who needs pixels anyway). 6 Simulation frames are never skipped, because skipping them would break sync. Drawframes can be skipped altogether with nothing too bad happening (besides nothing being drawn, but who needs pixels anyway).
7 \n 7 \n
8 --
9 \n
10 Markers get saved in replays, so i'm not sure they are exactly user-only non-sync objects. They have to be sent over the network and afaict that happens on a frame-by-frame basis.
8 \n 11 \n
12 But sending new marker creation just one simframe (33ms) after deletion of previous ones should be safe.