mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
89e33dc177
* No changes in functionality
23 lines
641 B
Plaintext
23 lines
641 B
Plaintext
/*
|
|
* Author: ACE2 Team
|
|
*
|
|
* Updates GVAR(currentTemperature) based on the map data
|
|
*
|
|
* Argument:
|
|
* Nothing
|
|
*
|
|
* Return value:
|
|
* Nothing
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
private ["_time", "_month", "_hourlyCoef"];
|
|
_time = daytime;
|
|
_month = date select 1;
|
|
|
|
_hourlyCoef = -0.5 * sin(360 * ((3 + (date select 3))/24 + (date select 4)/1440));
|
|
|
|
GVAR(currentTemperature) = (GVAR(TempDay) select (_month - 1)) * (1 - _hourlyCoef) + (GVAR(TempNight) select (_month - 1)) * _hourlyCoef;
|
|
GVAR(currentTemperature) = GVAR(currentTemperature) - 2 * humidity - 4 * overcast;
|
|
GVAR(currentTemperature) = round(GVAR(currentTemperature) * 10) / 10;
|