Files
@ r16483:49069459064a
Branch filter:
Location: cpp/openttd-patchpack/source/src/engine_func.h - annotation
r16483:49069459064a
1.2 KiB
text/x-c
(svn r21218) -Fix (r21189)[FS#4236]: don't force a minimum speed when braking
r8786:f24a6d1fba34 r8786:f24a6d1fba34 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r9111:983de9c5a848 r8786:f24a6d1fba34 r8786:f24a6d1fba34 r8786:f24a6d1fba34 r8786:f24a6d1fba34 r8786:f24a6d1fba34 r14248:a9050881acd7 r14248:a9050881acd7 r8786:f24a6d1fba34 r8786:f24a6d1fba34 r8786:f24a6d1fba34 r8786:f24a6d1fba34 r9070:e059c65164f3 r9070:e059c65164f3 r9070:e059c65164f3 r8786:f24a6d1fba34 r10207:a1fc2f2a33db r10430:9babbda02879 r9211:ed60710b275b r10631:5682bb21a3e6 r10881:c67980c1ee57 r8786:f24a6d1fba34 r13211:4ba95564ba64 r11311:c4de431f8676 r8786:f24a6d1fba34 | /* $Id$ */
/*
* 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_H
#define ENGINE_H
#include "engine_type.h"
#include "vehicle_type.h"
#include "company_type.h"
void SetupEngines();
void StartupEngines();
/* Original engine data counts and offsets */
extern const uint8 _engine_counts[4];
extern const uint8 _engine_offsets[4];
bool IsEngineBuildable(EngineID engine, VehicleType type, CompanyID company);
bool IsEngineRefittable(EngineID engine);
void SetCachedEngineCounts();
void SetYearEngineAgingStops();
void StartupOneEngine(Engine *e, Date aging_date);
uint GetTotalCapacityOfArticulatedParts(EngineID engine);
#endif /* ENGINE_H */
|