2015-03-11 14:21:35 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
2015-08-16 18:14:54 +00:00
|
|
|
* Checks if the vehicles class already has the actions initialized, otherwise add all available repair options. Calleed from init EH.
|
2015-03-11 14:21:35 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
2015-08-16 18:14:54 +00:00
|
|
|
* 0: Vehicle <OBJECT>
|
2015-03-11 14:21:35 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
2015-08-16 18:14:54 +00:00
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [vehicle] call ace_repair_fnc_addRepairActions
|
|
|
|
*
|
|
|
|
* Public: No
|
2015-03-11 14:21:35 +00:00
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
2015-08-09 15:23:32 +00:00
|
|
|
#define TRACK_HITPOINTS ["HitLTrack", "HitRTrack"]
|
2015-03-11 14:21:35 +00:00
|
|
|
|
2015-08-09 06:54:44 +00:00
|
|
|
params ["_vehicle"];
|
|
|
|
TRACE_1("params", _vehicle);
|
2015-03-11 14:21:35 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
private "_hitPoints";
|
2015-03-11 20:52:34 +00:00
|
|
|
_hitPoints = [_vehicle] call EFUNC(common,getHitPointsWithSelections) select 0;
|
2015-03-11 14:21:35 +00:00
|
|
|
|
|
|
|
// get hitpoints of wheels with their selections
|
|
|
|
private ["_wheelHitPointsWithSelections", "_wheelHitPoints", "_wheelHitPointSelections"];
|
|
|
|
|
|
|
|
_wheelHitPointsWithSelections = [_vehicle] call FUNC(getWheelHitPointsWithSelections);
|
|
|
|
|
|
|
|
_wheelHitPoints = _wheelHitPointsWithSelections select 0;
|
|
|
|
_wheelHitPointSelections = _wheelHitPointsWithSelections select 1;
|
|
|
|
|
2015-08-23 23:04:57 +00:00
|
|
|
private ["_hitPointsAddedNames", "_hitPointsAddedStrings", "_hitPointsAddedAmount"];
|
|
|
|
_hitPointsAddedNames = [];
|
|
|
|
_hitPointsAddedStrings = [];
|
|
|
|
_hitPointsAddedAmount = [];
|
|
|
|
|
2015-03-11 14:21:35 +00:00
|
|
|
// 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"];
|
2015-03-11 14:21:35 +00:00
|
|
|
|
2015-03-11 18:54:19 +00:00
|
|
|
_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 />";
|
2015-03-11 14:21:35 +00:00
|
|
|
_selection = _wheelHitPointSelections select (_wheelHitPoints find _x);
|
|
|
|
|
2015-03-28 10:08:17 +00:00
|
|
|
private ["_name", "_text", "_condition", "_statement"];
|
2015-03-11 14:21:35 +00:00
|
|
|
|
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";
|
2015-03-11 14:21:35 +00:00
|
|
|
|
2015-08-09 13:53:52 +00:00
|
|
|
_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-11 14:21:35 +00:00
|
|
|
|
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
|
|
|
|
2015-08-09 13:53:52 +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);
|
2015-03-11 14:21:35 +00:00
|
|
|
|
|
|
|
} else {
|
2015-03-11 20:52:34 +00:00
|
|
|
// exit if the hitpoint is in the blacklist, e.g. glasses
|
|
|
|
if (_x in IGNORED_HITPOINTS) exitWith {};
|
|
|
|
|
2015-03-11 23:12:54 +00:00
|
|
|
// exit if the hitpoint is virtual
|
|
|
|
if (isText (configFile >> "CfgVehicles" >> _type >> "HitPoints" >> _x >> "depends")) exitWith {};
|
|
|
|
|
2015-03-11 14:21:35 +00:00
|
|
|
// add misc repair action
|
|
|
|
|
2015-08-23 23:04:57 +00:00
|
|
|
private ["_name", "_text", "_icon", "_selection", "_condition", "_statement", "_toFind", "_hitPointFoundIndex", "_combinedString"];
|
2015-03-11 14:21:35 +00:00
|
|
|
|
2015-03-27 02:44:04 +00:00
|
|
|
_name = format ["Repair_%1", _x];
|
2015-03-29 11:54:50 +00:00
|
|
|
|
2015-08-23 23:13:42 +00:00
|
|
|
|
2015-08-23 23:04:57 +00:00
|
|
|
// Prepare first part of the string from stringtable
|
|
|
|
_text = LSTRING(Hit);
|
|
|
|
|
|
|
|
// Remove "Hit" from hitpoint name if one exists
|
|
|
|
_toFind = if (_x find "Hit" == 0) then {
|
|
|
|
[_x, 3] call CBA_fnc_substr
|
|
|
|
} else {
|
|
|
|
_x
|
|
|
|
};
|
|
|
|
|
|
|
|
// Loop through always shorter part of the hitpoint name to find the string from stringtable or use an already found one
|
|
|
|
for "_i" from 0 to (count _x) do {
|
|
|
|
// Loop through already added hitpoints and save index
|
|
|
|
_hitPointFoundIndex = -1;
|
|
|
|
{
|
|
|
|
if (_x == _toFind) exitWith {
|
|
|
|
_hitPointFoundIndex = _forEachIndex;
|
|
|
|
};
|
|
|
|
} forEach _hitPointsAddedNames;
|
|
|
|
|
|
|
|
// Use already added hitpoint if one found above and numerize
|
|
|
|
if (_hitPointFoundIndex != -1) exitWith {
|
2015-08-23 23:13:42 +00:00
|
|
|
_text = localize (_hitPointsAddedStrings select _hitPointFoundIndex) + " " + str(_hitPointsAddedAmount select _hitPointFoundIndex);
|
2015-08-23 23:04:57 +00:00
|
|
|
_hitPointsAddedAmount set [_hitPointFoundIndex, (_hitPointsAddedAmount select _hitPointFoundIndex) + 1]; // Set amount
|
|
|
|
TRACE_2("Same hitpoint found",_toFind,_hitPointsAddedNames);
|
|
|
|
};
|
|
|
|
|
|
|
|
// Localize if localization found and save all variables for possible hitpoints of same type
|
|
|
|
_combinedString = _text + _toFind;
|
|
|
|
if (isLocalized _combinedString) exitWith {
|
|
|
|
// Add hitpoint to the list
|
|
|
|
_hitPointsAddedNames pushBack _toFind;
|
|
|
|
_hitPointsAddedStrings pushBack _combinedString;
|
|
|
|
_hitPointsAddedAmount pushBack 2;
|
|
|
|
|
|
|
|
// Localize text
|
|
|
|
_text = localize _combinedString;
|
|
|
|
TRACE_1("Hitpoint localized",_toFind);
|
|
|
|
};
|
|
|
|
|
|
|
|
// Cut off one character
|
|
|
|
_toFind = [_toFind, 0, count _toFind - 1] call CBA_fnc_substr;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Display part name directly if no string is found in stringtable
|
|
|
|
if (_text == LSTRING(Hit)) then {
|
|
|
|
_text = _x;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-08-09 15:23:32 +00:00
|
|
|
_icon = "A3\ui_f\data\igui\cfg\actions\repair_ca.paa";
|
2015-03-11 18:54:19 +00:00
|
|
|
_selection = "";
|
2015-08-09 13:53:52 +00:00
|
|
|
_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)};
|
|
|
|
|
2015-08-11 19:35:13 +00:00
|
|
|
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);
|
|
|
|
[_type, 0, ["ACE_MainActions", QGVAR(Repair)], _action] call EFUNC(interact_menu,addActionToClass);
|
2015-08-11 19:35:13 +00:00
|
|
|
};
|
2015-03-11 14:21:35 +00:00
|
|
|
};
|
|
|
|
} forEach _hitPoints;
|
|
|
|
|
2015-08-14 18:49:51 +00:00
|
|
|
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);
|
2015-03-11 14:21:35 +00:00
|
|
|
// set class as initialized
|
|
|
|
_initializedClasses pushBack _type;
|
|
|
|
|
|
|
|
SETMVAR(GVAR(initializedClasses),_initializedClasses);
|