mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
b489750d5b
* Optimizations with private, params, and isEqualType * Fixed tab being used instead of space * Fixed tabs inserted by notepad++ * More usage of new private syntax and params - changed a few checks for an array being empty to `_arr isEqualTo []` rather than `count _arr == 0` - added more uses of `private` on the same line as the variable is declared - added more uses of params to assign variables passed as parameters - removed unnecessary parentheses - removed several unnecessary variable declarations with private array syntax * clean up and formatting
65 lines
1.7 KiB
Plaintext
65 lines
1.7 KiB
Plaintext
/*
|
|
* Author: commy2
|
|
* Handle XEH Init Post on Server.
|
|
* Execution on server only.
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [ACE_Player] call ace_respawn_fnc_handleInitPostServer
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_unit"];
|
|
|
|
private ["_groupUnit", "_rallypoint", "_leaderVarName"];
|
|
|
|
_groupUnit = group _unit; // _group is a reserved veriable and shouldn't be used
|
|
|
|
_rallypoint = [
|
|
objNull,
|
|
missionNamespace getVariable ["ACE_Rallypoint_West", objNull],
|
|
missionNamespace getVariable ["ACE_Rallypoint_East", objNull],
|
|
missionNamespace getVariable ["ACE_Rallypoint_Independent", objNull]
|
|
] select ([west, east, independent] find side _groupUnit) + 1;
|
|
|
|
// exit if no moveable rallypoint is placed for that side
|
|
if (isNull _rallypoint) exitWith {};
|
|
|
|
// find leader
|
|
_leaderVarName = _groupUnit getVariable [QGVAR(leaderVarName), ""];
|
|
|
|
// exit if group already has a playable slot assigned as rallypoint leader
|
|
if (_leaderVarName != "") exitWith {
|
|
// assign JIP unit as rallypoint leader
|
|
if (str _unit == _leaderVarName) then {
|
|
_unit setVariable ["ACE_canMoveRallypoint", true, true];
|
|
};
|
|
};
|
|
|
|
// treat group leader
|
|
_unit = leader _groupUnit;
|
|
|
|
_leaderVarName = vehicleVarName _unit;
|
|
|
|
if (_leaderVarName == "") then {
|
|
private _leaderID = GETGVAR(NextLeaderID,0);
|
|
|
|
_leaderVarName = format [QUOTE(ACE_Rallypoint_Leader_%1), _leaderID];
|
|
|
|
_unit setVehicleVarName _leaderVarName;
|
|
|
|
GVAR(NextLeaderID) = _leaderID + 1;
|
|
};
|
|
|
|
// prevent group from getting multiple leaders; use this to assign rallypoint moving ability on JIP
|
|
_groupUnit setVariable [QGVAR(leaderVarName), _leaderVarName];
|
|
|
|
_unit setVariable ["ACE_canMoveRallypoint", true, true];
|