Files
@ r27852:2937e4e53677
Branch filter:
Location: cpp/openttd-patchpack/source/src/engine_func.h - annotation
r27852:2937e4e53677
1.3 KiB
text/x-c
Add: [Script] Custom news message text for industry SetProductionLevel.
r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r9111:983de9c5a848 r8786:f24a6d1fba34 r16851:b5784600e35e r16851:b5784600e35e r8786:f24a6d1fba34 r8786:f24a6d1fba34 r14248:a9050881acd7 r14248:a9050881acd7 r27166:64e04a3ef9b1 r8786:f24a6d1fba34 r8786:f24a6d1fba34 r8786:f24a6d1fba34 r20529:0f109e7afe90 r8786:f24a6d1fba34 r9070:e059c65164f3 r27737:728d55b97775 r27737:728d55b97775 r8786:f24a6d1fba34 r10207:a1fc2f2a33db r10430:9babbda02879 r10631:5682bb21a3e6 r26684:bd3e30073232 r27737:728d55b97775 r8786:f24a6d1fba34 r13211:4ba95564ba64 r11311:c4de431f8676 r16851:b5784600e35e | /*
* 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 engine_func.h Functions related to engines. */
#ifndef ENGINE_FUNC_H
#define ENGINE_FUNC_H
#include "engine_type.h"
#include "vehicle_type.h"
#include "company_type.h"
#include "timer/timer_game_calendar.h"
void SetupEngines();
void StartupEngines();
void CheckEngines();
/* Original engine data counts and offsets */
extern const uint8_t _engine_counts[4];
extern const uint8_t _engine_offsets[4];
bool IsEngineBuildable(EngineID engine, VehicleType type, CompanyID company);
bool IsEngineRefittable(EngineID engine);
void SetYearEngineAgingStops();
void CalcEngineReliability(Engine *e, bool new_month);
void StartupOneEngine(Engine *e, TimerGameCalendar::Date aging_date, uint32_t seed);
uint GetTotalCapacityOfArticulatedParts(EngineID engine);
#endif /* ENGINE_FUNC_H */
|