Page 1 of 1

Acceleration while docked

Posted: Sat Dec 15, 2012 2:42 pm
by PhilHibbs
If you dock while time is accelerated, it isn't possible to change acceleration. Can this be fixed? If not, how about resetting acceleration to 1:1 when docking?

Re: Acceleration while docked

Posted: Sat Dec 15, 2012 3:22 pm
by Diziet Sma
I think this has already been fixed in trunk (along with making it only possible to manually alter TAF when the framerate is being displayed, to avoid oopses)

Re: Acceleration while docked

Posted: Sat Dec 15, 2012 3:52 pm
by PhilHibbs
Diziet Sma wrote:
(along with making it only possible to manually alter TAF when the framerate is being displayed, to avoid oopses)
Oh, not sure I like that. I use TAF a lot, like when flying to the sun to refuel on long delivery runs. I suppose I could write an AutoIt script to 1. Turn on FPS, 2. Pause, 3. Set TAF to x16, 4. Un-pause, 5. Turn off FPS, and another script to set it back to 1x again.

Re: Acceleration while docked

Posted: Sat Dec 15, 2012 3:57 pm
by Cody
In future, I think TAF will only be available in the developer version anyway, not in the deployment version of Oolite.

Re: Acceleration while docked

Posted: Sat Dec 15, 2012 4:14 pm
by Diziet Sma
PhilHibbs wrote:
Diziet Sma wrote:
(along with making it only possible to manually alter TAF when the framerate is being displayed, to avoid oopses)
Oh, not sure I like that. I use TAF a lot, like when flying to the sun to refuel on long delivery runs. I suppose I could write an AutoIt script to 1. Turn on FPS, 2. Pause, 3. Set TAF to x16, 4. Un-pause, 5. Turn off FPS, and another script to set it back to 1x again.
The idea was to prevent the accidental speeding up of the TAF while paused (as happened to a number of people, who were then mystified when subsequent combat bouts seemed so much more frantic than usual)

Re: Acceleration while docked

Posted: Sat Dec 15, 2012 5:03 pm
by Wildeblood
PhilHibbs wrote:
Diziet Sma wrote:
(along with making it only possible to manually alter TAF when the framerate is being displayed, to avoid oopses)
Oh, not sure I like that. I use TAF a lot, like when flying to the sun to refuel on long delivery runs. I suppose I could write an AutoIt script to 1. Turn on FPS, 2. Pause, 3. Set TAF to x16, 4. Un-pause, 5. Turn off FPS, and another script to set it back to 1x again.

Code: Select all

alertConditionChanged = function (new, old)
{ if (new == 1) timeAccelerationFactor = 16;
else timeAccelerationFactor = 1;
}

Re: Acceleration while docked

Posted: Sat Dec 15, 2012 5:17 pm
by Commander McLane
PhilHibbs wrote:
If you dock while time is accelerated, it isn't possible to change acceleration. Can this be fixed? If not, how about resetting acceleration to 1:1 when docking?
Isn't there an OXP which does exactly that?

TAF Reset OXP is what you want to install.

Re: Acceleration while docked

Posted: Sat Dec 15, 2012 5:40 pm
by PhilHibbs
Commander McLane wrote:
TAF Reset OXP is what you want to install.
Thanks!