ACE3/addons/repair/functions/fnc_addRepairActions.sqf

152 lines
6.6 KiB
Plaintext
Raw Normal View History

/*
* Author: commy2
* Checks if the vehicles class already has the actions initialized, otherwise add all available repair options. Calleed from init EH.
*
* Arguments:
* 0: Vehicle <OBJECT>
*
* Return Value:
* None
*
* Example:
* [vehicle] call ace_repair_fnc_addRepairActions
*
* Public: No
*/
#include "script_component.hpp"
2015-08-09 15:23:32 +00:00
#define TRACK_HITPOINTS ["HitLTrack", "HitRTrack"]
2015-08-09 06:54:44 +00:00
params ["_vehicle"];
TRACE_1("params", _vehicle);
private ["_type", "_initializedClasses"];
_type = typeOf _vehicle;
_initializedClasses = GETMVAR(GVAR(initializedClasses),[]);
// do nothing if the class is already initialized
if (_type in _initializedClasses) exitWith {};
// get all hitpoints and selections
([_vehicle] call EFUNC(common,getHitPointsWithSelections)) params ["_hitPoints", "_hitPointsSelections"];
// get hitpoints of wheels with their selections
([_vehicle] call FUNC(getWheelHitPointsWithSelections)) params ["_wheelHitPoints", "_wheelHitPointSelections"];
// add repair events to this vehicle class
{
if (_x in _wheelHitPoints) then {
// add wheel repair action
2015-03-28 10:08:17 +00:00
private ["_icon", "_selection"];
_icon = QUOTE(PATHTOF(ui\tire_ca.paa));
2015-08-09 15:23:32 +00:00
_icon = "A3\ui_f\data\igui\cfg\actions\repair_ca.paa";
// textDefault = "<img image='\A3\ui_f\data\igui\cfg\actions\repair_ca.paa' size='1.8' shadow=2 />";
_selection = _wheelHitPointSelections select (_wheelHitPoints find _x);
2015-03-28 10:08:17 +00:00
private ["_name", "_text", "_condition", "_statement"];
2015-03-28 10:08:17 +00:00
// remove wheel action
_name = format ["Remove_%1", _x];
2015-03-29 11:54:50 +00:00
_text = localize "STR_ACE_Repair_RemoveWheel";
_condition = {[_this select 1, _this select 0, _this select 2 select 0, "RemoveWheel"] call DFUNC(canRepair)};
_statement = {[_this select 1, _this select 0, _this select 2 select 0, "RemoveWheel"] call DFUNC(repair)};
2015-03-27 02:44:04 +00:00
private "_action";
2015-03-28 10:08:17 +00:00
_action = [_name, _text, _icon, _statement, _condition, {}, [_x], _selection, 2] call EFUNC(interact_menu,createAction);
2015-03-27 02:44:04 +00:00
[_type, 0, [], _action] call EFUNC(interact_menu,addActionToClass);
2015-03-28 10:08:17 +00:00
// replace wheel action
_name = format ["Replace_%1", _x];
2015-08-09 06:54:44 +00:00
_text = localize LSTRING(ReplaceWheel);
2015-03-28 10:08:17 +00:00
_condition = {[_this select 1, _this select 0, _this select 2 select 0, "ReplaceWheel"] call DFUNC(canRepair)};
_statement = {[_this select 1, _this select 0, _this select 2 select 0, "ReplaceWheel"] call DFUNC(repair)};
2015-03-28 10:08:17 +00:00
_action = [_name, _text, _icon, _statement, _condition, {}, [_x], _selection, 2] call EFUNC(interact_menu,createAction);
2015-03-27 02:44:04 +00:00
[_type, 0, [], _action] call EFUNC(interact_menu,addActionToClass);
} else {
2015-08-24 15:56:34 +00:00
// exit if the hitpoint is in the blacklist, e.g. glasses
- if (_x in IGNORED_HITPOINTS) exitWith {};
// exit if the hitpoint is virtual
if (isText (configFile >> "CfgVehicles" >> _type >> "HitPoints" >> _x >> "depends")) exitWith {};
// add misc repair action
private ["_name", "_text", "_icon", "_selection", "_customSelectionsCfg", "_customSelectionsIndex", "_customSelection", "_condition", "_statement"];
2015-03-27 02:44:04 +00:00
_name = format ["Repair_%1", _x];
2015-03-29 11:54:50 +00:00
_text = format ["STR_ACE_Repair_%1", _x];
if (isLocalized _text) then {
2015-08-09 06:54:44 +00:00
_text = format [localize LSTRING(RepairHitpoint), localize _text];
2015-03-29 11:54:50 +00:00
} else {
2015-08-09 06:54:44 +00:00
_text = format [localize LSTRING(RepairHitpoint), _x];
2015-03-29 11:54:50 +00:00
};
2015-08-09 15:23:32 +00:00
_icon = "A3\ui_f\data\igui\cfg\actions\repair_ca.paa";
_selection = "";
// Get custom position if available
_customSelectionsCfg = configFile >> "CfgVehicles" >> _type >> QGVAR(hitpointPositions);
if (isArray _customSelectionsCfg) then {
_customSelectionsCfg = getArray _customSelectionsCfg;
_customSelectionsIndex = _customSelectionsCfg find _x;
if (_customSelectionsIndex != -1) then {
_customSelection = _customSelectionsCfg select (_customSelectionsIndex + 1);
// If comma is present assume position in array, else selection name
if (_customSelection find "," != -1) then {
_selection = call compile ("[" + _customSelection + "]")
} else {
_selection = _vehicle selectionPosition _customSelection;
};
};
};
// If position still empty (not a position array or selection name) try extracting from model
if (typeName _selection == "STRING" && {_selection == ""}) then {
_selection = _vehicle selectionPosition (_hitPointsSelections select (_hitPoints find _x));
};
_condition = {[_this select 1, _this select 0, _this select 2 select 0, _this select 2 select 1] call DFUNC(canRepair)};
2015-08-09 15:23:32 +00:00
_statement = {[_this select 1, _this select 0, _this select 2 select 0, _this select 2 select 1] call DFUNC(repair)};
if (_x in TRACK_HITPOINTS) then {
if (_x == "HitLTrack") then {
_selection = [-1.75, 0, -1.75];
} else {
_selection = [1.75, 0, -1.75];
};
private "_action";
_action = [_name, _text, _icon, _statement, _condition, {}, [_x, "RepairTrack"], _selection, 4] call EFUNC(interact_menu,createAction);
[_type, 0, [], _action] call EFUNC(interact_menu,addActionToClass);
} else {
2015-08-09 15:23:32 +00:00
private "_action";
_action = [_name, _text, _icon, _statement, _condition, {}, [_x, "MiscRepair"], _selection, 4] call EFUNC(interact_menu,createAction);
// Put inside main actions if no other position was found above
if (_selection isEqualTo [0, 0, 0]) then {
[_type, 0, ["ACE_MainActions", QGVAR(Repair)], _action] call EFUNC(interact_menu,addActionToClass);
} else {
[_type, 0, [], _action] call EFUNC(interact_menu,addActionToClass);
};
};
};
} forEach _hitPoints;
private ["_action", "_condition", "_statement"];
_condition = {[_this select 1, _this select 0, _this select 2 select 0, _this select 2 select 1] call DFUNC(canRepair)};
_statement = {[_this select 1, _this select 0, _this select 2 select 0, _this select 2 select 1] call DFUNC(repair)};
_action = [QGVAR(fullRepair), localize LSTRING(fullRepair), "A3\ui_f\data\igui\cfg\actions\repair_ca.paa", _statement, _condition, {}, ["", "fullRepair"], "", 4] call EFUNC(interact_menu,createAction);
[_type, 0, ["ACE_MainActions", QGVAR(Repair)], _action] call EFUNC(interact_menu,addActionToClass);
// set class as initialized
_initializedClasses pushBack _type;
SETMVAR(GVAR(initializedClasses),_initializedClasses);