More refactoring.

This commit is contained in:
Anna Rose Wiggins 2021-07-19 04:03:42 -04:00
parent e0d1c34b46
commit deb46a6430
5 changed files with 10 additions and 7 deletions

17
execnode.ks Normal file
View file

@ -0,0 +1,17 @@
runpathonce("lib/navigation").
runpathonce("lib/throttle").
SAS off.
local n is SHIP:NEXTNODE.
local t is BurnTime(n:MAG)/2.
lock STEERING to n:DELTAV.
wait until VectorAngle(SHIP:VELOCITY, STEERINGMANAGER:TARGET) <= 0.1.
KUNIVERSE:WARP:WarpTo(n:TIME - t - 5).
wait until n:ETA <= t.
lock THROTTLE to 1.0.
wait until n:DELTAV:MAG <= 0.1.
unlock THROTTLE.
unlock STEERING.