Tagged Questions
The dead-reckoning tag has no wiki summary.
17
votes
4answers
2k views
Dealing with Latency in Networked Games
I'm thinking about making a networked game. I'm a little new to this, and have already run into a lot of issues trying to put together a good plan for dead reckoning and network latency, so I'd love ...
3
votes
2answers
416 views
How to implement dead reckoning when turning is involved?
"Dead reckoning is the process of estimating one's current position based upon a previously determined position and advancing that position based upon known or estimated speeds over elapsed time, ...
2
votes
1answer
193 views
Synchronizing AI NPCs on a multiplayer game
I've started developing a small multiplayer racing game, obviously we're using all the player prediction, dead reckoninng and lag compensation techniques that Half Life, Quake and Unreal use - however ...
2
votes
5answers
657 views
If I am here and heading towards there and I've covered this much ground, where am I?
I need help writing the following method:
def get_new_location(current_location, target_location, distance_travelled):
...
...
return new_location
where all locations are (lat,long)
I ...
1
vote
1answer
492 views
GeoTools - How to do Dead Reckoning and course calculations using GeoTools classes
I'm currently using the GeoTools toolkit to do calculations on marine vessel data, such as calculating the Great Circle distance between two lon/lat points. I have two other requirements that I need ...