-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
Description
It would be great to display the number of jumps made for "Travelled (total)" and "Travelled (session)".
And maybe you could "estimate" the number of jumps to the goals as well (either the ship's jump range or a user-set value).
Maybe something like:
Distance (Goal 1): 2,567.35 ly (~ 62 J)
Travelled (total): 13,715.54 ly (327 J)
Travelled (session): 42.15 ly (1 J)
To do an estimation, there are multiple approaches possible:
- Simply divide distance by jump range. (eg. 1000 ly / 40 ly = 25 J).
- Divide distance by jump range, then apply a "multiplicator" to simulate a "non-perfect" route (eg. 1000 ly / 40 ly = 25 J, then 25J * 1.15 = 29J).
- Use a routing calculator such as spansh.co.uk (with efficiency set to 100%), which is very accurate, but requires more work to implement.
For the "Travelled" jumps, well, it's simply an integer you increment each time you get a jump event.