Skip to content

Commit

Permalink
Add keep engine of vehicles running after getting out (#6885)
Browse files Browse the repository at this point in the history
Adds a feature which leaves the vehicle engine running after getting out. So, it requires the driver to switch off the engine of the vehicle.
  • Loading branch information
brainslush authored and jonpas committed Apr 1, 2019
1 parent 4fce115 commit 64bdc4e
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 0 deletions.
33 changes: 33 additions & 0 deletions addons/vehicles/XEH_preInit.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,37 @@ PREP_RECOMPILE_START;
#include "XEH_PREP.hpp"
PREP_RECOMPILE_END;

#include "initSettings.sqf"

[
"AllVehicles",
"initPost",
{
params ["_vehicle"];
_vehicle setVariable [QGVAR(engineState), isEngineOn _vehicle];
}
] call CBA_fnc_addClassEventHandler;
[
"AllVehicles",
"engine",
{
params ["_vehicle", "_state"];
_vehicle setVariable [QGVAR(engineState), _state];
}
] call CBA_fnc_addClassEventHandler;
[
"AllVehicles",
"getout",
{
params ["_vehicle", "_position", "_unit"];
if (!GVAR(keepEngineRunning)) exitWith {};
if (_unit == ACE_player && {_position == "driver" && {_vehicle getVariable [QGVAR(engineState), false]}}) then {
[{
params ["_vehicle"];
[QEGVAR(common,engineOn), _this, _vehicle] call CBA_fnc_targetEvent;
}, [_vehicle, true]] call CBA_fnc_execNextFrame;
};
}
] call CBA_fnc_addClassEventHandler;

ADDON = true;
9 changes: 9 additions & 0 deletions addons/vehicles/initSettings.sqf
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@

[
QGVAR(keepEngineRunning),
"CHECKBOX",
[LSTRING(SettingKeepEngineRunningName), LSTRING(SettingKeepEngineRunningDesc)],
localize ELSTRING(common,ACEKeybindCategoryVehicles),
false, // default value
true // isGlobal
] call CBA_settings_fnc_init;
8 changes: 8 additions & 0 deletions addons/vehicles/stringtable.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,13 @@
<Japanese>速度制限を減らす</Japanese>
<Polish>Zmniejsz ograniczenie prędkości</Polish>
</Key>
<Key ID="STR_ACE_Vehicles_SettingKeepEngineRunningName">
<English>Disable automatic engine shut-off</English>
<German>Motor nach Verlassen laufen lassen</German>
</Key>
<Key ID="STR_ACE_Vehicles_SettingKeepEngineRunningDesc">
<English>Prevent the automatic shut-off of the engine when exiting vehicles.</English>
<German>Verhindere das automatische Abschalten des Motors beim Verlassen des Fahrzeugs.</German>
</Key>
</Package>
</Project>

0 comments on commit 64bdc4e

Please sign in to comment.