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
To achieve that one would need to parse *.dem files, extract player positions and play them.
Some sad facts:
There is no publicly available specs on GoldSrc (most speedruns are made playing original HL, not Source) *.dem format that look legit.
Source *.dem format (https://developer.valvesoftware.com/wiki/DEM_Format) suggests that the file itself contains just network packets, and common sense tells me that those should contain only player commands (input) and not much else. If this is right, then there's no way to extract player position without implementing the rest of the engine. Oh my!
(However, Source SDK sources contain DEM parser that suggests that there really is a way to extract just a player position without processing actual input, but I went no further in my preliminary investigation)
The text was updated successfully, but these errors were encountered:
That would be the best way to do it, but I still have to figure out the DEM format, which I believe is rather different from Quake.
I've recently stumbled upon Xash3D (http://hlfx.ru/forum/showthread.php?s=&threadid=3729), an open source GoldSrc clone, also made by our соотечественник. When I get some time for this project, I think I'll look into that.
To achieve that one would need to parse *.dem files, extract player positions and play them.
Some sad facts:
(However, Source SDK sources contain DEM parser that suggests that there really is a way to extract just a player position without processing actual input, but I went no further in my preliminary investigation)
The text was updated successfully, but these errors were encountered: