2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2015-04-13 09:53:19 +00:00
|
|
|
/*
|
|
|
|
* Author: Ruthberg
|
|
|
|
* Updates the Kestrel 4500 Impeller state
|
|
|
|
*
|
|
|
|
* Arguments:
|
2015-08-13 23:55:54 +00:00
|
|
|
* None
|
2015-04-13 09:53:19 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
2015-08-13 23:55:54 +00:00
|
|
|
* None
|
2015-04-13 09:53:19 +00:00
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
2016-09-04 14:44:22 +00:00
|
|
|
private _windSpeed = call FUNC(measureWindSpeed);
|
2015-04-13 09:53:19 +00:00
|
|
|
|
|
|
|
GVAR(ImpellerState) = GVAR(ImpellerState) + (ceil(_windSpeed) min 1) max _windSpeed;
|
|
|
|
if (GVAR(ImpellerState) > 1000) then { GVAR(ImpellerState) = 0 };
|