OpenTTD Source  14.0-beta3
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 
13 #include "timer/timer_game_tick.h"
15 #include "vehicle_type.h"
16 
17 static const TimerGameEconomy::Year MAX_TIMETABLE_START_YEARS = 15;
18 
19 enum class TimetableMode : uint8_t {
20  Days,
21  Seconds,
22  Ticks,
23 };
24 
25 TimerGameTick::TickCounter GetStartTickFromDate(TimerGameEconomy::Date start_date);
26 TimerGameEconomy::Date GetDateFromStartTick(TimerGameTick::TickCounter start_tick);
27 
28 void ShowTimetableWindow(const Vehicle *v);
29 void UpdateVehicleTimetable(Vehicle *v, bool travelling);
30 void SetTimetableParams(int param1, int param2, TimerGameTick::Ticks ticks);
31 
32 #endif /* TIMETABLE_H */
UpdateVehicleTimetable
void UpdateVehicleTimetable(Vehicle *v, bool travelling)
Update the timetable for the vehicle.
Definition: timetable_cmd.cpp:469
Ticks
Storage class for Ticks constants.
Definition: timer_game_tick.h:39
GetDateFromStartTick
TimerGameEconomy::Date GetDateFromStartTick(TimerGameTick::TickCounter start_tick)
Get a date from a given start tick of timetable.
Definition: timetable_cmd.cpp:46
Vehicle
Vehicle data structure.
Definition: vehicle_base.h:240
TimerGameTick::TickCounter
uint64_t TickCounter
The type that the tick counter is stored in.
Definition: timer_game_tick.h:25
ShowTimetableWindow
void ShowTimetableWindow(const Vehicle *v)
Show the timetable for a given vehicle.
Definition: timetable_gui.cpp:866
SetTimetableParams
void SetTimetableParams(int param1, int param2, TimerGameTick::Ticks ticks)
Set the timetable parameters in the format as described by the setting.
Definition: timetable_gui.cpp:50
timer_game_tick.h
TimerGameTick::Ticks
int32_t Ticks
The type to store ticks in.
Definition: timer_game_tick.h:24
vehicle_type.h
timer_game_economy.h
GetStartTickFromDate
TimerGameTick::TickCounter GetStartTickFromDate(TimerGameEconomy::Date start_date)
Get the TimerGameTick::TickCounter tick of a given date.
Definition: timetable_cmd.cpp:29
MAX_TIMETABLE_START_YEARS
static const TimerGameEconomy::Year MAX_TIMETABLE_START_YEARS
The maximum start date offset, in economy years.
Definition: timetable.h:17