mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
bca8b01860
* Add search to teleport players UI * Change group side icons to look better * Improve teleport UI and add stringtable entries * Add Assign Repair Vehicle module * Add Assign Repair Facility module * Add Assign Engineer module * Add Full Heal module * Add Suicide Bomber module * Make heal module work without ace_medical * Add suicide bomber module translations * Improve attribute cargo to use displayName * Improve set engineer ui * ACE_Curator for repair modules + author array * Add angle param to getModuleDestination * Prevent multiple suicide bomber modules on same target * Heal module: support BI scripted revive system * Requested changes
108 lines
3.8 KiB
Plaintext
108 lines
3.8 KiB
Plaintext
#include "script_component.hpp"
|
|
|
|
[QGVAR(AISection), {
|
|
params [["_units", [], [[]]], ["_sections", [], [[]]], ["_bool", true, [true]]];
|
|
{
|
|
private _section = _x;
|
|
{
|
|
if (_bool) then {
|
|
_x enableAI _section;
|
|
} else {
|
|
_x disableAI _section;
|
|
};
|
|
LOG(format [ARR_4("XEH_postInit: %1 disableAI %2 | ID %3", _x, _section, clientOwner)]);
|
|
} foreach (_units select {local _x});
|
|
} foreach _sections
|
|
}] call CBA_fnc_addEventHandler;
|
|
|
|
[QGVAR(unGarrison), FUNC(unGarrison)] call CBA_fnc_addEventHandler;
|
|
|
|
[QGVAR(doMove), {
|
|
params ["_unitsArray"];
|
|
{
|
|
_x params ["_unit", "_pos"];
|
|
//_unit doFollow leader _unit;
|
|
_unit setDestination [_pos, "LEADER PLANNED", true];
|
|
_unit doMove _pos;
|
|
LOG(format [ARR_4("XEH_postInit: %1 doMove %2 | ID %3", _unit, _pos, clientOwner)]);
|
|
} foreach _unitsArray
|
|
}] call CBA_fnc_addEventHandler;
|
|
|
|
[QGVAR(setBehaviour), {
|
|
params ["_groupsArray", "_behaviour"];
|
|
{
|
|
_x params ["_group"];
|
|
_group setBehaviour _behaviour;
|
|
LOG(format [ARR_4("XEH_postInit: %1 setBehaviour %2 | ID %3", _group, _behaviour, clientOwner)]);
|
|
} foreach _groupsArray
|
|
}] call CBA_fnc_addEventHandler;
|
|
|
|
[QGVAR(enableAttack), {
|
|
params ["_unitsArray", "_mode"];
|
|
{
|
|
_x params ["_unit"];
|
|
_unit enableAttack _mode;
|
|
LOG(format [ARR_4("XEH_postInit: %1 enableAttack %2 | ID %3", _unit, _mode, clientOwner)]);
|
|
} foreach _unitsArray
|
|
}] call CBA_fnc_addEventHandler;
|
|
|
|
[QGVAR(setUnitPos), {
|
|
params ["_unit", "_mode"];
|
|
_unit setUnitPos _mode;
|
|
}] call CBA_fnc_addEventHandler;
|
|
|
|
[QGVAR(setSpeedMode), {
|
|
params ["_unit", "_mode"];
|
|
_unit setSpeedMode _mode;
|
|
}] call CBA_fnc_addEventHandler;
|
|
|
|
[QGVAR(setCombatMode), {
|
|
params ["_unit", "_mode"];
|
|
_unit setCombatMode _mode;
|
|
}] call CBA_fnc_addEventHandler;
|
|
|
|
[QGVAR(allowFleeing), {
|
|
params ["_unit", "_cowardice"];
|
|
_unit allowFleeing _cowardice;
|
|
}] call CBA_fnc_addEventHandler;
|
|
|
|
#ifdef DEBUG_MODE_FULL
|
|
addMissionEventHandler ["Draw3D", {
|
|
private _unitMoveList = missionNameSpace getVariable [QGVAR(garrison_unitMoveList), []];
|
|
|
|
{
|
|
_x params ["_unit", "_pos"];
|
|
|
|
switch true do {
|
|
case (surfaceIsWater (getPos _unit) && {surfaceIsWater _pos}) : {
|
|
for "_i" from 0 to 3 do {
|
|
drawLine3D [_unit modelToWorldVisualWorld [0,0,1], (AGLtoASL _pos), [1,0,0,1]];
|
|
};
|
|
drawIcon3D ["\a3\ui_f\data\map\groupicons\waypoint.paa", [1,0,0,1], (AGLtoASL _pos), 0.75, 0.75, 0.75];
|
|
};
|
|
|
|
case (!surfaceIsWater (getPos _unit) && {!surfaceIsWater _pos}) : {
|
|
for "_i" from 0 to 3 do {
|
|
drawLine3D [_unit modelToWorldVisual [0,0,1], _pos, [1,0,0,1]];
|
|
};
|
|
drawIcon3D ["\a3\ui_f\data\map\groupicons\waypoint.paa", [1,0,0,1], _pos, 0.75, 0.75, 0.75];
|
|
};
|
|
|
|
case (!surfaceIsWater (getPos _unit) && {surfaceIsWater _pos}) : {
|
|
for "_i" from 0 to 3 do {
|
|
drawLine3D [_unit modelToWorldVisual [0,0,1], (AGLToASL _pos), [1,0,0,1]];
|
|
};
|
|
drawIcon3D ["\a3\ui_f\data\map\groupicons\waypoint.paa", [1,0,0,1], (AGLtoASL _pos), 0.75, 0.75, 0.75];
|
|
};
|
|
|
|
case (surfaceIsWater (getPos _unit) && {!surfaceIsWater _pos}) : {
|
|
for "_i" from 0 to 3 do {
|
|
drawLine3D [_unit modelToWorldVisualWorld [0,0,1], _pos, [1,0,0,1]];
|
|
};
|
|
drawIcon3D ["\a3\ui_f\data\map\groupicons\waypoint.paa", [1,0,0,1], _pos, 0.75, 0.75, 0.75];
|
|
};
|
|
};
|
|
} foreach _unitMoveList;
|
|
}];
|
|
#endif
|