2015-01-20 23:18:40 +00:00
|
|
|
//#define DEBUG_MODE_FULL
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
ADDON = false;
|
|
|
|
|
2015-04-20 11:54:22 +00:00
|
|
|
PREP(calculateAirDensity);
|
|
|
|
PREP(calculateBarometricPressure);
|
2015-06-01 14:09:35 +00:00
|
|
|
PREP(calculateDensityAltitude);
|
2015-05-15 17:58:24 +00:00
|
|
|
PREP(calculateDewPoint);
|
2015-05-15 17:00:11 +00:00
|
|
|
PREP(calculateHeatIndex);
|
2015-05-11 08:59:07 +00:00
|
|
|
PREP(calculateRoughnessLength);
|
2015-05-29 09:36:37 +00:00
|
|
|
PREP(calculateSpeedOfSound);
|
2015-05-14 14:07:41 +00:00
|
|
|
PREP(calculateTemperatureAtHeight);
|
2015-05-15 19:10:46 +00:00
|
|
|
PREP(calculateWetBulb);
|
2015-05-15 17:00:11 +00:00
|
|
|
PREP(calculateWindChill);
|
2015-05-11 08:59:07 +00:00
|
|
|
PREP(calculateWindSpeed);
|
2015-04-06 03:02:34 +00:00
|
|
|
PREP(displayWindInfo);
|
2015-01-21 05:12:57 +00:00
|
|
|
PREP(getMapData);
|
2015-01-20 23:18:40 +00:00
|
|
|
PREP(getWind);
|
2015-04-27 10:28:56 +00:00
|
|
|
PREP(initModuleSettings);
|
2015-04-21 18:20:05 +00:00
|
|
|
PREP(initWind);
|
2015-04-06 03:02:34 +00:00
|
|
|
PREP(serverController);
|
2015-04-27 10:28:56 +00:00
|
|
|
PREP(updateAceWeather);
|
2015-04-20 11:54:22 +00:00
|
|
|
PREP(updateHumidity);
|
|
|
|
PREP(updateRain);
|
|
|
|
PREP(updateTemperature);
|
|
|
|
PREP(updateWind);
|
2015-01-20 23:18:40 +00:00
|
|
|
|
2015-04-22 19:16:01 +00:00
|
|
|
// Make sure this data is read before client/server postInit
|
|
|
|
call FUNC(getMapData);
|
|
|
|
|
2015-01-20 23:18:40 +00:00
|
|
|
ADDON = true;
|