2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2015-08-14 00:22:15 +00:00
|
|
|
/*
|
|
|
|
* Author: Ruthberg
|
|
|
|
* Calculate Current Day in the Week
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Year <NUMBER>
|
|
|
|
* 1: Month <NUMBER>
|
|
|
|
* 2: Day <NUMBER>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Day of The Week <NUMBER>
|
|
|
|
*
|
|
|
|
* Example:
|
2020-04-25 06:41:45 +00:00
|
|
|
* [1995, 10, 21] call ace_kestrel4500_fnc_dayOfWeek
|
2015-08-14 00:22:15 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
params ["_year", "_month", "_day"];
|
|
|
|
|
2016-09-04 14:44:22 +00:00
|
|
|
private _table = [0, 3, 2, 5, 0, 3, 5, 1, 4, 6, 2, 4];
|
2015-08-14 00:22:15 +00:00
|
|
|
if (_month < 3) then {
|
|
|
|
_year = _year - 1;
|
|
|
|
};
|
|
|
|
(_year + floor(_year/4) - floor(_year/100) + floor(_year/400) + (_table select (_month - 1)) + _day) % 7
|