Files
@ r28025:9116d6e411b0
Branch filter:
Location: cpp/openttd-patchpack/source/src/script/api/script_date.cpp - annotation
r28025:9116d6e411b0
2.1 KiB
text/x-c
Codechange: replace x.size() == 0 with x.empty()
r18500:14a481bc4437 r18500:14a481bc4437 r18500:14a481bc4437 r18500:14a481bc4437 r18500:14a481bc4437 r18500:14a481bc4437 r18500:14a481bc4437 r18501:8e3d905ea4bc r18500:14a481bc4437 r18500:14a481bc4437 r18500:14a481bc4437 r27148:4e041ae27b9d r18500:14a481bc4437 r25302:0b3ab5ddb245 r25302:0b3ab5ddb245 r21383:942c32fb8b0e r21383:942c32fb8b0e r21219:7180bb39d4d9 r18500:14a481bc4437 r21219:7180bb39d4d9 r18500:14a481bc4437 r18500:14a481bc4437 r21219:7180bb39d4d9 r18500:14a481bc4437 r27788:71137956fe15 r21219:7180bb39d4d9 r21219:7180bb39d4d9 r26968:c5cd6095d058 r21219:7180bb39d4d9 r21219:7180bb39d4d9 r18500:14a481bc4437 r27229:662da0bb155f r27229:662da0bb155f r27788:71137956fe15 r18500:14a481bc4437 r18500:14a481bc4437 r26968:c5cd6095d058 r18500:14a481bc4437 r21219:7180bb39d4d9 r18500:14a481bc4437 r27229:662da0bb155f r27229:662da0bb155f r18500:14a481bc4437 r18500:14a481bc4437 r18500:14a481bc4437 r26968:c5cd6095d058 r18500:14a481bc4437 r21219:7180bb39d4d9 r18500:14a481bc4437 r27229:662da0bb155f r27229:662da0bb155f r18500:14a481bc4437 r18500:14a481bc4437 r18500:14a481bc4437 r26968:c5cd6095d058 r18500:14a481bc4437 r21219:7180bb39d4d9 r21219:7180bb39d4d9 r27884:803962be0328 r18500:14a481bc4437 r27788:71137956fe15 r18500:14a481bc4437 r18761:4b7ab185eacd r26968:c5cd6095d058 r18761:4b7ab185eacd r18761:4b7ab185eacd r18761:4b7ab185eacd r18761:4b7ab185eacd r18761:4b7ab185eacd | /*
* This file is part of OpenTTD.
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
*/
/** @file script_date.cpp Implementation of ScriptDate. */
#include "../../stdafx.h"
#include "script_date.hpp"
#include "../../timer/timer_game_calendar.h"
#include <time.h>
#include "../../safeguards.h"
/* static */ bool ScriptDate::IsValidDate(Date date)
{
return date >= 0;
}
/* static */ ScriptDate::Date ScriptDate::GetCurrentDate()
{
return (ScriptDate::Date)(int32_t)TimerGameCalendar::date;
}
/* static */ SQInteger ScriptDate::GetYear(ScriptDate::Date date)
{
if (date < 0) return DATE_INVALID;
::TimerGameCalendar::YearMonthDay ymd;
::TimerGameCalendar::ConvertDateToYMD(date, &ymd);
return (int32_t)ymd.year;
}
/* static */ SQInteger ScriptDate::GetMonth(ScriptDate::Date date)
{
if (date < 0) return DATE_INVALID;
::TimerGameCalendar::YearMonthDay ymd;
::TimerGameCalendar::ConvertDateToYMD(date, &ymd);
return ymd.month + 1;
}
/* static */ SQInteger ScriptDate::GetDayOfMonth(ScriptDate::Date date)
{
if (date < 0) return DATE_INVALID;
::TimerGameCalendar::YearMonthDay ymd;
::TimerGameCalendar::ConvertDateToYMD(date, &ymd);
return ymd.day;
}
/* static */ ScriptDate::Date ScriptDate::GetDate(SQInteger year, SQInteger month, SQInteger day_of_month)
{
if (month < 1 || month > 12) return DATE_INVALID;
if (day_of_month < 1 || day_of_month > 31) return DATE_INVALID;
if (year < 0 || year > CalendarTime::MAX_YEAR) return DATE_INVALID;
return (ScriptDate::Date)(int32_t)::TimerGameCalendar::ConvertYMDToDate(year, month - 1, day_of_month);
}
/* static */ SQInteger ScriptDate::GetSystemTime()
{
time_t t;
time(&t);
return t;
}
|