OpenTTD Source 20241224-master-gf74b0cf984
timetable.h
Go to the documentation of this file.
1/*
2 * This file is part of OpenTTD.
3 * 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.
4 * 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.
5 * 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/>.
6 */
7
10#ifndef TIMETABLE_H
11#define TIMETABLE_H
12
15#include "vehicle_type.h"
16
17static const TimerGameEconomy::Year MAX_TIMETABLE_START_YEARS = 15;
18
19enum class TimetableMode : uint8_t {
20 Days,
21 Seconds,
22 Ticks,
23};
24
25TimerGameTick::TickCounter GetStartTickFromDate(TimerGameEconomy::Date start_date);
26TimerGameEconomy::Date GetDateFromStartTick(TimerGameTick::TickCounter start_tick);
27
28void ShowTimetableWindow(const Vehicle *v);
29void UpdateVehicleTimetable(Vehicle *v, bool travelling);
30void SetTimetableParams(int param1, int param2, TimerGameTick::Ticks ticks);
31
32#endif /* TIMETABLE_H */
Storage class for Ticks constants.
uint64_t TickCounter
The type that the tick counter is stored in.
int32_t Ticks
The type to store ticks in.
Vehicle data structure.
Definition of the game-economy-timer.
Definition of the tick-based game-timer.
void ShowTimetableWindow(const Vehicle *v)
Show the timetable for a given vehicle.
void UpdateVehicleTimetable(Vehicle *v, bool travelling)
Update the timetable for the vehicle.
static const TimerGameEconomy::Year MAX_TIMETABLE_START_YEARS
The maximum start date offset, in economy years.
Definition timetable.h:17
TimerGameTick::TickCounter GetStartTickFromDate(TimerGameEconomy::Date start_date)
Get the TimerGameTick::TickCounter tick of a given date.
TimerGameEconomy::Date GetDateFromStartTick(TimerGameTick::TickCounter start_tick)
Get a date from a given start tick of timetable.
void SetTimetableParams(int param1, int param2, TimerGameTick::Ticks ticks)
Set the timetable parameters in the format as described by the setting.
Types related to vehicles.