forked from IDI-Systems/acre2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfnc_addRackToVehicle.sqf
152 lines (126 loc) · 5.85 KB
/
fnc_addRackToVehicle.sqf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
#include "script_component.hpp"
/*
* Author: ACRE2Team
* Initialises all racks in the vehicle. Must be executed in the server. If no condition is specified,
* the radio will be configured to match the vehicle preset defined using acre_api_fnc_setVehicleRacksPreset
* or the preset of the first player that matches the given condition if the vehicle preset is not defined.
*
* Arguments:
* 0: Vehicle <OBJECT> (default: objNull)
* 1: Rack configuration <ARRAY>
* 0: Base classname of the rack (Without ID) <STRING> (default: "")
* 1: Rackname - this is diplayed to the user. Ideally short <STRING> (default: "")
* 2: Rack short name - displayed in GUI information. Max 4 characters <STRING> (default: "")
* 3: Is mounted radio removable <BOOLEAN> (default: false)
* 4: Access - Determines who can use the rack <ARRAY> (default: ["inside"])
* 5: Disabled positions - Blacklist rack use positions <ARRAY> (default: [])
* 6: Base classname of the mounted radio (Without ID). Empty string for no radio <STRING> (default: "")
* 7: Components <ARRAY> (default: [])
* 8: Connected intercoms <ARRAY> (default: [])
* 2: Force initialisation <BOOL> (default: false)
* 3: Condition called with argument "_unit". If a longer function is given, it should be precompiled. <CODE> (default: {})
*
* Return Value:
* Rack added successfully <BOOL>
*
* Example:
* [cursorTarget, ["ACRE_VRC103", "Upper Dash", "Dash", false, ["external"], [], "ACRE_PRC117F", [], ["intercom_1"]], false] call acre_api_fnc_addRackToVehicle
*
* Public: Yes
*/
params [
["_vehicle", objNull, [objNull]],
["_rackConfiguration", [], [[]]],
["_forceInitialisation", false, []],
["_condition", {}, [{}]]
];
if (!isServer) exitWith {
WARNING("Function must be called on the server.");
false
};
if (isNull _vehicle) exitWith {
WARNING_1("Trying to initialize undefined vehicle %1",_vehicle);
false
};
if (_rackConfiguration isEqualTo []) exitWith {
WARNING_1("Empty rack configuration for vehicle %1",_vehicle);
false
};
private _vehicleInitialized = [_vehicle] call EFUNC(api,areVehicleRacksInitialized);
if (!_vehicleInitialized && !_forceInitialisation) exitWith {
WARNING_1("Vehicle %1 is not initialised. Rack is not being added.",_vehicle);
false
};
private _success = true;
if (_forceInitialisation) then {
if (_vehicleInitialized) then {
WARNING_1("Vehicle %1 is already initialised but function forces it to initialise again",_vehicle);
} else {
TRACE_1("Forcing initialisation of vehicle %1 in order to add a rack",_vehicle);
_success = [_vehicle, _condition] call EFUNC(api,initVehicleRacks);
};
};
if (!_success) exitWith {
WARNING_1("Vehicle %1 failed to initialise",_vehicle);
};
if (count _rackConfiguration != 9) exitWith {
WARNING_1("Invalid number of entries in the rack configuration array for vehicle: %1",_vehicle);
false
};
_rackConfiguration params [["_rackClassname", ""], ["_rackName", ""], ["_rackShortName", ""], ["_isRadioRemovable", false], ["_allowed", ["inside"]], ["_disabled", []], ["_mountedRadio", ""], ["_defaultComponents", []], ["_intercoms", []]];
if (_rackClassname isEqualTo "") exitWith {
WARNING_1("No rack specified for vehicle %1",_vehicle);
false
};
if (_rackName isEqualTo "") exitWith {
WARNING_1("No valid rack specified for vehicle %1",_vehicle);
false
};
if (_rackShortName isEqualTo "") exitWith {
WARNING_2("No valid rack short name specified for vehicle %1 and rack %2",_vehicle,_rackName);
false
};
private _allowed = [_vehicle, _allowed] call EFUNC(sys_core,processVehicleSystemAccessArray);
private _disabled = [_vehicle, _disabled] call EFUNC(sys_core,processVehicleSystemAccessArray);
_intercoms = _intercoms apply {toLower _x};
private _selectPlayer = {
params ["_condition", "_vehicle"];
// A player must do the action of adding a rack
private _player = objNull;
private _vehiclePresetName = [_vehicle] call FUNC(getVehicleRacksPreset);
if (_condition isEqualTo {} && {_vehiclePresetName isNotEqualTo ""}) then {
private _crewPlayers = [_vehicle] call EFUNC(sys_core,getPlayersInVehicle);
if (_crewPlayers isNotEqualTo []) then {
_player = _crewPlayers select 0;
} else {
_player = ([] call CBA_fnc_players) select 0;
};
} else {
// Pick the first player that matches side criteria
{
if ([_x] call _condition) exitWith {
_player = _x;
};
} forEach ([] call CBA_fnc_players);
if (isNull _player) then {
WARNING_1("No unit found for condition %1 - defaulting to first player",_condition);
_player = ([] call CBA_fnc_players) select 0;
};
};
_player
};
[{
params ["_selectPlayer", "_condition", "_vehicle"];
if !([_vehicle] call FUNC(areVehicleRacksInitialized)) exitWith {false};
private _player = [_condition, _vehicle] call _selectPlayer;
!isNil "_player"
}, {
params ["_selectPlayer", "_condition", "_vehicle", "_rackClassname", "_rackName", "_rackShortName", "_isRadioRemovable", "_allowed", "_disabled", "_mountedRadio", "_defaultComponents","_intercoms"];
// A player must do the action of adding a rack
private _player = [_condition, _vehicle] call _selectPlayer;
if (_player != _vehicle getVariable [QEGVAR(sys_rack,initPlayer), objNull]) then {
_vehicle setVariable [QEGVAR(sys_rack,initPlayer), _player, true];
};
[QEGVAR(sys_rack,addVehicleRacks), [_vehicle, _rackClassname, _rackName, _rackShortName, _isRadioRemovable, _allowed, _disabled, _mountedRadio, _defaultComponents, _intercoms], _player] call CBA_fnc_targetEvent;
}, [_selectPlayer, _condition, _vehicle, _rackClassname, _rackName, _rackShortName, _isRadioRemovable, _allowed, _disabled, _mountedRadio, _defaultComponents, _intercoms]] call CBA_fnc_waitUntilAndExecute;
true