mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Merged main
This commit is contained in:
commit
0ec391a3a5
@ -191,3 +191,4 @@ YetheSamartaka
|
||||
xrufix
|
||||
Zakant <Zakant@gmx.de>
|
||||
zGuba
|
||||
Zman6258
|
||||
|
@ -17,7 +17,7 @@
|
||||
*/
|
||||
|
||||
//IGNORE_PRIVATE_WARNING ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile", "_vehicle", "_gunner", "_turret"];
|
||||
TRACE_10("firedEH:",_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile, _vehicle, _gunner, _turret);
|
||||
TRACE_10("firedEH:",_unit,_weapon,_muzzle,_mode,_ammo,_magazine,_projectile,_vehicle,_gunner,_turret);
|
||||
|
||||
if (!(_ammo isKindOf "BulletBase")) exitWith {};
|
||||
if (!alive _projectile) exitWith {};
|
||||
|
@ -22,7 +22,7 @@ private _initStartTime = diag_tickTime;
|
||||
private _mapSize = worldSize;
|
||||
|
||||
if (("ace_advanced_ballistics" callExtension format["init:%1:%2", worldName, _mapSize]) == "Terrain already initialized") exitWith {
|
||||
INFO_1("Terrain already initialized [world: %1]", worldName);
|
||||
INFO_1("Terrain already initialized [world: %1]",worldName);
|
||||
#ifdef DEBUG_MODE_FULL
|
||||
systemChat "AdvancedBallistics: Terrain already initialized";
|
||||
#endif
|
||||
@ -33,14 +33,14 @@ private _gridCells = _mapGrids * _mapGrids;
|
||||
|
||||
GVAR(currentGrid) = 0;
|
||||
|
||||
INFO_2("Starting Terrain Extension [cells: %1] [world: %2]", _gridCells, worldName);
|
||||
INFO_2("Starting Terrain Extension [cells: %1] [world: %2]",_gridCells,worldName);
|
||||
|
||||
[{
|
||||
params ["_args","_idPFH"];
|
||||
_args params ["_mapGrids", "_gridCells", "_initStartTime"];
|
||||
|
||||
if (GVAR(currentGrid) >= _gridCells) exitWith {
|
||||
INFO_2("Finished terrain initialization in %1 seconds [world: %2]", (diag_tickTime - _initStartTime) toFixed 2, worldName);
|
||||
INFO_2("Finished terrain initialization in %1 seconds [world: %2]",(diag_tickTime - _initStartTime) toFixed 2,worldName);
|
||||
#ifdef DEBUG_MODE_FULL
|
||||
systemChat format["AdvancedBallistics: Finished terrain initialization in %1 seconds", (diag_tickTime - _initStartTime) toFixed 2];
|
||||
#endif
|
||||
@ -53,7 +53,7 @@ INFO_2("Starting Terrain Extension [cells: %1] [world: %2]", _gridCells, worldNa
|
||||
private _gridCenter = [_x + 25, _y + 25];
|
||||
private _gridHeight = round(getTerrainHeightASL _gridCenter);
|
||||
private _gridNumObjects = count (_gridCenter nearObjects ["Building", 50]);
|
||||
private _gridSurfaceIsWater = if (surfaceIsWater _gridCenter) then {1} else {0};
|
||||
private _gridSurfaceIsWater = parseNumber (surfaceIsWater _gridCenter);
|
||||
"ace_advanced_ballistics" callExtension format["set:%1:%2:%3", _gridHeight, _gridNumObjects, _gridSurfaceIsWater];
|
||||
GVAR(currentGrid) = GVAR(currentGrid) + 1;
|
||||
if (GVAR(currentGrid) >= _gridCells) exitWith {};
|
||||
|
@ -66,7 +66,7 @@ if ((_typicalSpeed > 0) && {_typicalSpeed < 360}) then {
|
||||
if (_inheritedBarrelConfig || _inheritedTempConfig) then {
|
||||
private _parentConfig = inheritsFrom _ammoConfig;
|
||||
private _parentSpeed = getNumber (_parentConfig >> "typicalSpeed");
|
||||
WARNING_4("Subsonic Ammo %1 (%2 m/s) missing `ACE_muzzleVelocities` or `ACE_ammoTempMuzzleVelocityShifts` configs, attempting to use parent %3 (%4m/s)",_this,_typicalSpeed,configName _parentConfig, _parentSpeed);
|
||||
WARNING_4("Subsonic Ammo %1 (%2 m/s) missing `ACE_muzzleVelocities` or `ACE_ammoTempMuzzleVelocityShifts` configs, attempting to use parent %3 (%4m/s)",_this,_typicalSpeed,configName _parentConfig,_parentSpeed);
|
||||
if (_parentSpeed <= 0) exitWith {//Handle weird or null parent
|
||||
_muzzleVelocityTable = [];
|
||||
_ammoTempMuzzleVelocityShifts = [];
|
||||
|
@ -21,7 +21,7 @@
|
||||
private _weaponConfig = (configFile >> "CfgWeapons" >> _this);
|
||||
|
||||
private _barrelTwist = 0 max getNumber(_weaponConfig >> "ACE_barrelTwist");
|
||||
private _twistDirection = [0, 1] select (_barrelTwist != 0);
|
||||
private _twistDirection = parseNumber (_barrelTwist != 0);
|
||||
if (isNumber (_weaponConfig >> "ACE_twistDirection")) then {
|
||||
_twistDirection = getNumber (_weaponConfig >> "ACE_twistDirection");
|
||||
if !(_twistDirection in [-1, 0, 1]) then {
|
||||
|
@ -128,7 +128,7 @@ switch (_fillingType) do {
|
||||
} else {
|
||||
private _pos = _building select 0;
|
||||
private _nearestUnits = (_pos nearEntities ["CAManBase", 2]);
|
||||
LOG(format [ARR_3("fnc_garrison: Unit detection | %1 units nearby | %2 units within height",count _nearestUnits, {floor ((getPos _x) select 2) == floor (_pos select 2)} count _nearestUnits)]);
|
||||
LOG(format [ARR_3("fnc_garrison: Unit detection | %1 units nearby | %2 units within height",count _nearestUnits,{floor ((getPos _x) select 2) == floor (_pos select 2)} count _nearestUnits)]);
|
||||
|
||||
if (count _nearestUnits > 0 && {[_nearestUnits, _pos] call _fnc_comparePos}) then {
|
||||
LOG(format [ARR_2("fnc_garrison: Unit present | removing position | %1 positions remaining for this building",count (_buildingsIndex select (_buildingsIndex find _building)) - 1)]);
|
||||
@ -177,7 +177,7 @@ switch (_fillingType) do {
|
||||
} else {
|
||||
private _pos = _building select 0;
|
||||
private _nearestUnits = (_pos nearEntities ["CAManBase", 2]);
|
||||
LOG(format [ARR_3("fnc_garrison: Unit detection | %1 units nearby | %2 units within height",count _nearestUnits, {floor ((getPos _x) select 2) == floor (_pos select 2)} count _nearestUnits)]);
|
||||
LOG(format [ARR_3("fnc_garrison: Unit detection | %1 units nearby | %2 units within height",count _nearestUnits,{floor ((getPos _x) select 2) == floor (_pos select 2)} count _nearestUnits)]);
|
||||
|
||||
if (count _nearestUnits > 0 && {[_nearestUnits, _pos] call _fnc_comparePos}) then {
|
||||
LOG(format [ARR_2("fnc_garrison: Unit present | removing position | %1 positions remaining for this building",count (_buildingsIndex select (_buildingsIndex find _building)) - 1)]);
|
||||
@ -224,7 +224,7 @@ switch (_fillingType) do {
|
||||
} else {
|
||||
private _pos = selectRandom _building;
|
||||
private _nearestUnits = (_pos nearEntities ["CAManBase", 2]);
|
||||
LOG(format [ARR_3("fnc_garrison: Unit detection | %1 units nearby | %2 units within height",count _nearestUnits, {floor ((getPos _x) select 2) == floor (_pos select 2)} count _nearestUnits)]);
|
||||
LOG(format [ARR_3("fnc_garrison: Unit detection | %1 units nearby | %2 units within height",count _nearestUnits,{floor ((getPos _x) select 2) == floor (_pos select 2)} count _nearestUnits)]);
|
||||
|
||||
if (count _nearestUnits > 0 && {[_nearestUnits, _pos] call _fnc_comparePos}) then {
|
||||
LOG(format [ARR_2("fnc_garrison: Unit present | removing position | %1 positions remaining for this building",count (_buildingsIndex select (_buildingsIndex find _building)) - 1)]);
|
||||
@ -258,7 +258,7 @@ switch (_fillingType) do {
|
||||
};
|
||||
};
|
||||
|
||||
TRACE_1(format [ARR_2("fnc_garrison: while loop ended | %1 units ready to be treated by PFH",count _unitMoveList)], _teleport);
|
||||
TRACE_1(format [ARR_2("fnc_garrison: while loop ended | %1 units ready to be treated by PFH",count _unitMoveList)],_teleport);
|
||||
|
||||
// Update the unit list and remove duplicate positions and units
|
||||
private _garrison_unitMoveList = missionNameSpace getVariable [QGVAR(garrison_unitMoveList), []];
|
||||
@ -279,5 +279,5 @@ if (_teleport) then {
|
||||
[_unitMoveList] call FUNC(garrisonMove);
|
||||
};
|
||||
|
||||
TRACE_1(format [ARR_3("fnc_garrison: End | %1 units left | %2 buildings left", count _unitsArray, count _buildingsIndex)], _unitsArray);
|
||||
TRACE_1(format [ARR_3("fnc_garrison: End | %1 units left | %2 buildings left",count _unitsArray,count _buildingsIndex)],_unitsArray);
|
||||
_unitsArray
|
||||
|
@ -81,13 +81,13 @@ if (isNil QGVAR(garrison_moveUnitPFH)) then {
|
||||
[QGVAR(enableAttack), [[_unit], true], _unit] call CBA_fnc_targetEvent;
|
||||
};
|
||||
|
||||
LOG(format [ARR_2("garrisonMove PFH: unit in position | %1 units left", count _unitMoveList)]);
|
||||
LOG(format [ARR_2("garrisonMove PFH: unit in position | %1 units left",count _unitMoveList)]);
|
||||
};
|
||||
|
||||
// Check if unit is alive or even existing
|
||||
if (!alive _unit || {_unit getVariable [QGVAR(garrisoned), false]}) then {
|
||||
_unitMoveList deleteAt (_unitMoveList find _x);
|
||||
LOG(format [ARR_2("garrisonMove PFH: unit dead, deleted or garrisoned via TP | %1 units left", count _unitMoveList)]);
|
||||
LOG(format [ARR_2("garrisonMove PFH: unit dead, deleted or garrisoned via TP | %1 units left",count _unitMoveList)]);
|
||||
|
||||
} else {
|
||||
private _unitPos = getPos _unit;
|
||||
|
@ -28,7 +28,7 @@ _units = _units select {local _x};
|
||||
|
||||
private _leader = leader _unit;
|
||||
|
||||
TRACE_3("fnc_ungarrison: unit and leader",_unit , _leader, (_leader == _unit));
|
||||
TRACE_3("fnc_ungarrison: unit and leader",_unit,_leader,(_leader == _unit));
|
||||
|
||||
_unit setVariable [QGVAR(garrisonned), false, true];
|
||||
|
||||
|
@ -29,7 +29,10 @@ private _currentLoiterRadius = waypointLoiterRadius _waypoint;
|
||||
private _currentLoiterType = waypointLoiterType _waypoint;
|
||||
|
||||
// Set pos to ATL
|
||||
_pos set [2, if (_currentHeight >= 50) then { _currentHeight } else { 0 }];
|
||||
_pos set [
|
||||
2,
|
||||
[0, _currentHeight] select (_currentHeight >= 50)
|
||||
];
|
||||
|
||||
// [_group] call CBA_fnc_clearWaypoints;
|
||||
_waypoint = _group addWaypoint [_pos, 0];
|
||||
|
@ -22,7 +22,8 @@ GVAR(lastSortDirectionRight) = DESCENDING;
|
||||
params ["_object"];
|
||||
|
||||
// If the arsenal is already open, refresh arsenal display
|
||||
if (!isNil QGVAR(currentBox) && {GVAR(currentBox) isEqualTo _object}) then {
|
||||
// Deliberate == check, fail on objNull
|
||||
if (!isNil QGVAR(currentBox) && {GVAR(currentBox) == _object}) then {
|
||||
[true, true] call FUNC(refresh);
|
||||
};
|
||||
}] call CBA_fnc_addEventHandler;
|
||||
|
@ -38,13 +38,13 @@ call FUNC(compileActions);
|
||||
|
||||
// Skip if not allowed in editor and in editor
|
||||
if (is3DEN && {_scopeEditor != 2}) exitWith {
|
||||
TRACE_1("Skipping action because in editor", _rootClass);
|
||||
TRACE_1("Skipping action because in editor",_rootClass);
|
||||
[]
|
||||
};
|
||||
|
||||
// Class can't contain ~, because it's used for formatting result
|
||||
if ("~" in _rootClass) exitWith {
|
||||
TRACE_1("Classname can't contain '~'", _rootClass);
|
||||
TRACE_1("Classname can't contain '~'",_rootClass);
|
||||
[]
|
||||
};
|
||||
|
||||
@ -65,7 +65,7 @@ private _fnc_addToGroup = {
|
||||
|
||||
// Don't allow two of the same class
|
||||
if (_group findIf {(_x select 0) == _class} != -1) then {
|
||||
TRACE_1("An action with this ID already exists", _class);
|
||||
TRACE_1("An action with this ID already exists",_class);
|
||||
continue;
|
||||
};
|
||||
|
||||
|
@ -72,7 +72,7 @@ private _fnc_addToTabs = {
|
||||
_currentTab pushBack _sort;
|
||||
_return pushBack _sortName;
|
||||
} else {
|
||||
TRACE_1("A sort with this ID already exists", _sortName);
|
||||
TRACE_1("A sort with this ID already exists",_sortName);
|
||||
};
|
||||
} forEach _tabsToAddTo;
|
||||
};
|
||||
|
@ -77,7 +77,7 @@ private _fnc_addToTabs = {
|
||||
|
||||
// Find if there is an entry with same ID
|
||||
if (_currentTab findIf {_x select 5 == _statName} != -1) then {
|
||||
TRACE_1("A stat with this ID already exists", _statName);
|
||||
TRACE_1("A stat with this ID already exists",_statName);
|
||||
} else {
|
||||
_stat = +_finalArray;
|
||||
_stat set [5, _statName];
|
||||
@ -109,11 +109,10 @@ private _tabToChange = [];
|
||||
{
|
||||
_x params ["_tab", "_tabSide"];
|
||||
|
||||
_tabToChange = if (_tabSide == "R") then {
|
||||
_tabToChange = [
|
||||
GVAR(statsListLeftPanel),
|
||||
GVAR(statsListRightPanel)
|
||||
} else {
|
||||
GVAR(statsListLeftPanel)
|
||||
};
|
||||
] select (_tabSide == "R");
|
||||
|
||||
_stats = _tabToChange select _tab;
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
params ["_display", "_control", "_nextPage"];
|
||||
|
||||
TRACE_1("control enabled", ctrlEnabled _control);
|
||||
TRACE_1("control enabled",ctrlEnabled _control);
|
||||
if !(ctrlEnabled _control) exitWith {};
|
||||
|
||||
GVAR(currentActionPage) = GVAR(currentActionPage) + ([-1, 1] select _nextPage);
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
params ["_display", "_control", "_nextPage"];
|
||||
|
||||
TRACE_1("control enabled", ctrlEnabled _control);
|
||||
TRACE_1("control enabled",ctrlEnabled _control);
|
||||
if !(ctrlEnabled _control) exitWith {};
|
||||
|
||||
GVAR(currentStatPage) = GVAR(currentStatPage) + ([-1, 1] select _nextPage);
|
||||
|
@ -101,7 +101,7 @@ private _priority = 0;
|
||||
(_finalArray select 4) set [1, compile (getText (_x >> "textStatement"))];
|
||||
};
|
||||
|
||||
TRACE_3("stats array", _finalArray, _leftTabsList, _rightTabsList);
|
||||
TRACE_3("stats array",_finalArray,_leftTabsList,_rightTabsList);
|
||||
|
||||
if (_leftTabsList isNotEqualTo []) then {
|
||||
[_statsListLeftPanel, _leftTabsList, "L"] call _fnc_addToTabs;
|
||||
|
@ -196,7 +196,7 @@ private _selectedItem = switch (true) do {
|
||||
_lbAdd = _ctrlPanel lbAdd _displayName;
|
||||
_ctrlPanel lbSetData [_lbAdd, _x];
|
||||
_ctrlPanel lbSetTooltip [_lbAdd, format ["%1\n%2", _displayName, _x]];
|
||||
_ctrlPanel lbSetPictureRight [_lbAdd, _modPicture];
|
||||
_ctrlPanel lbSetPictureRight [_lbAdd, ["", _modPicture] select GVAR(enableModIcons)];
|
||||
} forEach (uiNamespace getVariable QGVAR(faceCache));
|
||||
|
||||
GVAR(currentFace)
|
||||
|
@ -87,7 +87,7 @@ private _fnc_fillRightContainer = {
|
||||
_ctrlPanel lnbSetText [[_lbAdd, 1], _displayName];
|
||||
_ctrlPanel lnbSetData [[_lbAdd, 0], _className];
|
||||
_ctrlPanel lnbSetPicture [[_lbAdd, 0], _picture];
|
||||
_ctrlPanel lnbSetValue [[_lbAdd, 2], [0, 1] select _isUnique];
|
||||
_ctrlPanel lnbSetValue [[_lbAdd, 2], parseNumber _isUnique];
|
||||
_ctrlPanel lnbSetTooltip [[_lbAdd, 0], format ["%1\n%2", _displayName, _className]];
|
||||
if ((toLower _className) in GVAR(favorites)) then {
|
||||
_ctrlPanel lnbSetColor [[_lbAdd, 1], FAVORITES_COLOR];
|
||||
|
@ -147,7 +147,7 @@ if (!isNull _loadoutsDisplay) then {
|
||||
// Right panel lnb + and - buttons
|
||||
case (_keyPressed in [DIK_LEFT, DIK_RIGHT]): {
|
||||
if (GVAR(rightTabLnBFocus)) then {
|
||||
[_display, [1, 0] select (_keyPressed == DIK_LEFT)] call FUNC(buttonCargo);
|
||||
[_display, parseNumber (_keyPressed != DIK_LEFT)] call FUNC(buttonCargo);
|
||||
};
|
||||
};
|
||||
};
|
||||
|
@ -25,6 +25,11 @@ if (canSuspend) exitWith {
|
||||
[{_this call FUNC(refresh)}, _this] call CBA_fnc_directCall;
|
||||
};
|
||||
|
||||
private _display = findDisplay IDD_ace_arsenal;
|
||||
|
||||
// Exit quietly if no display found
|
||||
if (isNull _display) exitWith {};
|
||||
|
||||
if (_updateItems) then {
|
||||
// Update current item list
|
||||
call FUNC(updateCurrentItemsList);
|
||||
@ -65,6 +70,4 @@ if (!_animate) then {
|
||||
[{GVAR(refreshing) = false}, nil, 3] call CBA_fnc_execAfterNFrames;
|
||||
};
|
||||
|
||||
private _display = findDisplay IDD_ace_arsenal;
|
||||
|
||||
[_display, _display displayCtrl GVAR(currentLeftPanel), _animate] call FUNC(fillLeftPanel);
|
||||
|
@ -42,8 +42,14 @@ if (_global && {isMultiplayer} && {!isNil "_id"}) then {
|
||||
};
|
||||
|
||||
// If the arsenal is already open and not ignoring content (see FUNC(openBox)), close arsenal display
|
||||
if (!isNil QGVAR(currentBox) && {GVAR(currentBox) isEqualTo _object} && {isNil QGVAR(ignoredVirtualItems)}) then {
|
||||
[LLSTRING(noVirtualItems), false, 5, 1] call EFUNC(common,displayText);
|
||||
// Delay a frame in case this is running on display open
|
||||
[{(findDisplay IDD_ace_arsenal) closeDisplay 0}] call CBA_fnc_execNextFrame;
|
||||
// Deliberate == check, fail on objNull
|
||||
if (!isNil QGVAR(currentBox) && {GVAR(currentBox) == _object} && {isNil QGVAR(ignoredVirtualItems)}) then {
|
||||
// Delay a frame in case this is running on display open/close
|
||||
[{
|
||||
private _display = findDisplay IDD_ace_arsenal;
|
||||
if (isNull _display) exitWith {};
|
||||
|
||||
[LLSTRING(noVirtualItems), false, 5, 1] call EFUNC(common,displayText);
|
||||
_display closeDisplay 0;
|
||||
}] call CBA_fnc_execNextFrame;
|
||||
};
|
||||
|
@ -31,9 +31,9 @@ if (_allItems isEqualTo []) then { _allItems = [configName _config] };
|
||||
|| {_illum && {([_xCfg >> "Flashlight" >> "irLight", "NUMBER", 0] call CBA_fnc_getConfigEntry) == 1}};
|
||||
|
||||
private _text = switch (true) do { // shorthand roughly based on PEQ-15
|
||||
case (_laser && _illum): { if (_isIR) then { "IR-DUAL" } else { "VIS-DUAL" } };
|
||||
case (_laser): { if (_isIR) then { "IR-AIM" } else { "VIS-AIM" } }; // AIM
|
||||
case (_illum): { if (_isIR) then { "IR-ILM" } else { "VIS-ILM" } }; // ILLUMIATION
|
||||
case (_laser && _illum): { ["VIS-DUAL", "IR-DUAL"] select _isIR }; // DUAL
|
||||
case (_laser): { ["VIS-AIM", "IR-AIM"] select _isIR }; // AIM
|
||||
case (_illum): { ["VIS-ILM", "IR-ILM"] select _isIR }; // ILLUMIATION
|
||||
default { "_" }; // there are some purely cosmetic attachements
|
||||
};
|
||||
_allModes pushBackUnique _text;
|
||||
|
@ -46,11 +46,7 @@ private _fnc_toConfigCase = {
|
||||
|
||||
// If item doesn't exist in config, "" is returned
|
||||
// Just return unaltered item name in that case, so it can be documented as being unavailable
|
||||
if (_name != "") then {
|
||||
_name
|
||||
} else {
|
||||
_x
|
||||
};
|
||||
[_x, _name] select (_name != "");
|
||||
} else {
|
||||
_x
|
||||
};
|
||||
|
@ -65,7 +65,7 @@ GVAR(magModeData) = [];
|
||||
{
|
||||
_x params ["_xDisplayNameShort", "_xDisplayName", "_xInitSpeed", "_xAirFriction"];
|
||||
if (_allSameCharge) then {
|
||||
_ctrlChargeList lbAdd format ["%1", _xDisplayNameShort];
|
||||
_ctrlChargeList lbAdd _xDisplayNameShort;
|
||||
_ctrlChargeList lbSetTooltip [count GVAR(magModeData), format ["%1\n%2 m/s\n%3", _xDisplayName, _xInitSpeed toFixed 1, _xAirFriction]];
|
||||
GVAR(magModeData) pushBack [_xInitSpeed, _xAirFriction];
|
||||
} else {
|
||||
|
@ -15,7 +15,7 @@
|
||||
* Public: No
|
||||
*/
|
||||
|
||||
LOG_2("Trying to load gunlist from profile [Version: %1][Count: %2]", profileNamespace getVariable [ARR_2(QGVAR(profileNamespaceVersion), 'none')], count (profileNamespace getVariable [ARR_2(QGVAR(gunList), [])]));
|
||||
LOG_2("Trying to load gunlist from profile [Version: %1][Count: %2]",profileNamespace getVariable [ARR_2(QGVAR(profileNamespaceVersion),'none')],count (profileNamespace getVariable [ARR_2(QGVAR(gunList),[])]));
|
||||
|
||||
private _resetGunList = true;
|
||||
if ((profileNamespace getVariable ["ACE_ATragMX_profileNamespaceVersion", 0]) == ATRAGMX_PROFILE_NAMESPACE_VERSION && {count (profileNamespace getVariable ["ACE_ATragMX_gunList", []]) > 0}) then {
|
||||
|
@ -90,7 +90,7 @@ if (GVAR(showWind2)) then {
|
||||
|
||||
_elevationAbs = Round(_elevationAbs * 100) / 100;
|
||||
if (_elevationAbs > 0) then {
|
||||
ctrlSetText [400, format["%1", abs(_elevationAbs)]];
|
||||
ctrlSetText [400, str abs _elevationAbs];
|
||||
} else {
|
||||
if (_elevationAbs < 0) then {
|
||||
ctrlSetText [400, format["%1D", abs(_elevationAbs)]];
|
||||
@ -100,7 +100,7 @@ if (_elevationAbs > 0) then {
|
||||
};
|
||||
_elevationRel = Round(_elevationRel * 100) / 100;
|
||||
if (_elevationRel > 0) then {
|
||||
ctrlSetText [401, format["%1", abs(_elevationRel)]];
|
||||
ctrlSetText [401, str abs _elevationRel];
|
||||
} else {
|
||||
if (_elevationRel < 0) then {
|
||||
ctrlSetText [401, format["%1D", abs(_elevationRel)]];
|
||||
@ -110,7 +110,7 @@ if (_elevationRel > 0) then {
|
||||
};
|
||||
_elevationCur = Round(_elevationCur * 100) / 100;
|
||||
if (_elevationCur > 0) then {
|
||||
ctrlSetText [402, format["%1", abs(_elevationCur)]];
|
||||
ctrlSetText [402, str abs _elevationCur];
|
||||
} else {
|
||||
if (_elevationCur < 0) then {
|
||||
ctrlSetText [402, format["%1D", abs(_elevationCur)]];
|
||||
|
@ -16,7 +16,7 @@
|
||||
*/
|
||||
|
||||
params ["_vehicle"];
|
||||
TRACE_1("params", _vehicle);
|
||||
TRACE_1("params",_vehicle);
|
||||
|
||||
scopeName "main";
|
||||
|
||||
|
@ -44,7 +44,7 @@ if (_item getVariable [QGVAR(initObject),false]) exitWith {};
|
||||
if (_canLoadConfig) then {
|
||||
GVAR(initializedItemClasses) pushBack _type;
|
||||
|
||||
TRACE_1("Adding load cargo action to class", _type);
|
||||
TRACE_1("Adding load cargo action to class",_type);
|
||||
|
||||
{
|
||||
[_type, 0, ["ACE_MainActions"], _x] call EFUNC(interact_menu,addActionToClass);
|
||||
@ -52,7 +52,7 @@ if (_canLoadConfig) then {
|
||||
} else {
|
||||
_item setVariable [QGVAR(initObject), true];
|
||||
|
||||
TRACE_1("Adding load cargo action to object", _item);
|
||||
TRACE_1("Adding load cargo action to object",_item);
|
||||
|
||||
{
|
||||
[_item, 0, ["ACE_MainActions"], _x] call EFUNC(interact_menu,addActionToObject);
|
||||
|
@ -16,7 +16,7 @@
|
||||
*/
|
||||
|
||||
params ["_vehicle"];
|
||||
TRACE_1("params", _vehicle);
|
||||
TRACE_1("params",_vehicle);
|
||||
|
||||
private _type = typeOf _vehicle;
|
||||
private _config = configOf _vehicle;
|
||||
@ -68,13 +68,13 @@ if (_type in GVAR(initializedVehicleClasses)) exitWith {};
|
||||
if (_hasCargoConfig) then {
|
||||
GVAR(initializedVehicleClasses) pushBack _type;
|
||||
|
||||
TRACE_1("Adding unload cargo action to class", _type);
|
||||
TRACE_1("Adding unload cargo action to class",_type);
|
||||
|
||||
[_type, 0, ["ACE_MainActions"], GVAR(vehicleAction)] call EFUNC(interact_menu,addActionToClass);
|
||||
} else {
|
||||
_vehicle setVariable [QGVAR(initVehicle), true];
|
||||
|
||||
TRACE_1("Adding unload cargo action to object", _vehicle);
|
||||
TRACE_1("Adding unload cargo action to object",_vehicle);
|
||||
|
||||
[_vehicle, 0, ["ACE_MainActions"], GVAR(vehicleAction)] call EFUNC(interact_menu,addActionToObject);
|
||||
};
|
||||
|
@ -96,7 +96,7 @@
|
||||
_object setVariable ["acre_sys_core_isDisabled", _set > 0, true];
|
||||
};
|
||||
if (["task_force_radio"] call FUNC(isModLoaded)) then {
|
||||
_object setVariable ["tf_voiceVolume", [1, 0] select (_set > 0), true];
|
||||
_object setVariable ["tf_voiceVolume", parseNumber (_set == 0), true];
|
||||
};
|
||||
}] call CBA_fnc_addEventHandler;
|
||||
|
||||
@ -142,7 +142,7 @@ if (isServer) then {
|
||||
if ((!isNil "_zeusLogic") && {!isNull _zeusLogic}) then {
|
||||
{
|
||||
if ((_x getvariable ["bis_fnc_moduleRemoteControl_owner", objnull]) isEqualTo _dcPlayer) exitWith {
|
||||
INFO_3("[%1] DC - Was Zeus [%2] while controlling unit [%3] - manually clearing `bis_fnc_moduleRemoteControl_owner`", [_x] call FUNC(getName), _dcPlayer, _x);
|
||||
INFO_3("[%1] DC - Was Zeus [%2] while controlling unit [%3] - manually clearing `bis_fnc_moduleRemoteControl_owner`",[_x] call FUNC(getName),_dcPlayer,_x);
|
||||
_x setVariable ["bis_fnc_moduleRemoteControl_owner", nil, true];
|
||||
};
|
||||
nil
|
||||
|
@ -5,7 +5,7 @@
|
||||
if (isFilePatchingEnabled) then {
|
||||
private _notLoaded = configProperties [configfile >> "ace_notLoaded", "isText _x"];
|
||||
{
|
||||
INFO_2("%1 not loaded because %2",configName _x, getText _x);
|
||||
INFO_2("%1 not loaded because %2",configName _x,getText _x);
|
||||
} forEach _notLoaded;
|
||||
};
|
||||
|
||||
|
@ -18,11 +18,11 @@ private _allUnits = [];
|
||||
{
|
||||
private _class = configFile >> "CfgVehicles" >> _x;
|
||||
if (isNull _class) then {
|
||||
WARNING_1("in units[] but null - %1", _x);
|
||||
WARNING_1("in units[] but null - %1",_x);
|
||||
_testPass = false;
|
||||
} else {
|
||||
// if (((getNumber (_class >> "scope")) != 2) && {((getNumber (_class >> "scopeCurator")) != 2)}) then {
|
||||
// WARNING_2("in units[] but not public - %1 from %2", configName _class, configSourceMod _class);
|
||||
// WARNING_2("in units[] but not public - %1 from %2",configName _class,configSourceMod _class);
|
||||
// _testPass = false;
|
||||
// };
|
||||
};
|
||||
@ -36,11 +36,11 @@ private _allWeapons = [];
|
||||
{
|
||||
private _class = configFile >> "CfgWeapons" >> _x;
|
||||
if (isNull _class) then {
|
||||
WARNING_1("in weapons[] but null - %1", _x);
|
||||
WARNING_1("in weapons[] but null - %1",_x);
|
||||
_testPass = false;
|
||||
} else {
|
||||
// if (((getNumber (_class >> "scope")) != 2) && {((getNumber (_class >> "scopeCurator")) != 2)}) then {
|
||||
// WARNING_2("in weapons[] but not public - %1 from %2", configName _class, configSourceMod _class);
|
||||
// WARNING_2("in weapons[] but not public - %1 from %2",configName _class,configSourceMod _class);
|
||||
// _testPass = false;
|
||||
// };
|
||||
};
|
||||
@ -51,7 +51,7 @@ private _vics = "(configName _x) select [0,3] == 'ace'" configClasses (configFil
|
||||
{
|
||||
if (((getNumber (_x >> "scope")) == 2) || {((getNumber (_x >> "scopeCurator")) == 2)}) then {
|
||||
if (!((toLower configName _x) in _allUnits)) then {
|
||||
WARNING_2("Not in any units[] - %1 from %2", configName _x, configSourceMod _x);
|
||||
WARNING_2("Not in any units[] - %1 from %2",configName _x,configSourceMod _x);
|
||||
_testPass = false;
|
||||
};
|
||||
};
|
||||
@ -63,7 +63,7 @@ private _weapons = "(configName _x) select [0,3] == 'ace'" configClasses (config
|
||||
private _type = toLower configName _x;
|
||||
if (((getNumber (_x >> "scope")) == 2) || {((getNumber (_x >> "scopeCurator")) == 2)}) then {
|
||||
if (!((toLower configName _x) in _allWeapons)) then {
|
||||
WARNING_2("Not in any weapons[] - %1 from %2", configName _x, configSourceMod _x);
|
||||
WARNING_2("Not in any weapons[] - %1 from %2",configName _x,configSourceMod _x);
|
||||
_testPass = false;
|
||||
};
|
||||
};
|
||||
|
@ -27,7 +27,7 @@ if (isServer) then {
|
||||
params ["_eventName", "_client"];
|
||||
|
||||
if !(_eventName in GVAR(syncedEvents)) exitWith {
|
||||
ERROR_1("Request for synced event - key [%1] not found.", _eventName);
|
||||
ERROR_1("Request for synced event - key [%1] not found.",_eventName);
|
||||
false
|
||||
};
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
params ["_name", "_args", "_ttl"];
|
||||
|
||||
if !(_name in GVAR(syncedEvents)) exitWith {
|
||||
ERROR_1("Synced event key [%1] not found (_handleSyncedEvent).", _name);
|
||||
ERROR_1("Synced event key [%1] not found (_handleSyncedEvent).",_name);
|
||||
false
|
||||
};
|
||||
|
||||
|
@ -22,7 +22,7 @@ private _output = [format ["// CBA Settings [ADDON: %1]:", _addon]];
|
||||
|
||||
private _addonSearch = _addon + "_";
|
||||
private _addonSearchCount = count _addonSearch;
|
||||
TRACE_2("",_addonSearch, _addonSearchCount);
|
||||
TRACE_2("",_addonSearch,_addonSearchCount);
|
||||
|
||||
private _settings = configProperties [configFile >> "ACE_Settings", "(isClass _x) && {((configName _x) select [0, _addonSearchCount]) == _addonSearch}"];
|
||||
|
||||
|
@ -34,7 +34,7 @@ private _aceSettings = configProperties [configFile >> "ACE_Settings", "isClass
|
||||
if (_isClientSettable && {_currentValue isNotEqualTo _profileVar}) then {
|
||||
// CBA_settings_fnc_set will do type checking for the old profile var
|
||||
private _ret = [_settingName, _profileVar, 0, "client", true] call CBA_settings_fnc_set;
|
||||
INFO_3("Transfering setting [%1: %2] returned %3", _settingName, _profileVar, _ret);
|
||||
INFO_3("Transfering setting [%1: %2] returned %3",_settingName,_profileVar,_ret);
|
||||
};
|
||||
};
|
||||
} forEach _aceSettings;
|
||||
|
@ -80,7 +80,7 @@ if (_oldCompats isNotEqualTo []) then {
|
||||
_oldCompats = _oldCompats apply {format ["%1 (%2)", _x select 0, _x select 1]};
|
||||
[{
|
||||
// Lasts for ~10 seconds
|
||||
ERROR_WITH_TITLE_3("The following ACE compatiblity PBOs are outdated", "%1. ACE Main version is %2 from %3.",_this select 0,_this select 1,_this select 2);
|
||||
ERROR_WITH_TITLE_3("The following ACE compatiblity PBOs are outdated","%1. ACE Main version is %2 from %3.",_this select 0,_this select 1,_this select 2);
|
||||
}, [_oldCompats, _mainVersion, _mainSource], 1] call CBA_fnc_waitAndExecute;
|
||||
};
|
||||
|
||||
|
@ -219,7 +219,7 @@ if (_state) then {
|
||||
_keyPressedInfo set [1, ((_keyPressedInfo select 1) - 1) max 0];
|
||||
|
||||
if (_keyPressedInfo isEqualTo [false, 0]) then {
|
||||
GVAR(keyboardInputMain) deleteAt _key,
|
||||
GVAR(keyboardInputMain) deleteAt _key;
|
||||
};
|
||||
}, _key, 0.5] call CBA_fnc_waitAndExecute;
|
||||
}];
|
||||
|
@ -24,7 +24,7 @@
|
||||
BEGIN_COUNTER(firedEH);
|
||||
|
||||
params ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile"];
|
||||
TRACE_7("firedEH:",_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile);
|
||||
TRACE_7("firedEH:",_unit,_weapon,_muzzle,_mode,_ammo,_magazine,_projectile);
|
||||
|
||||
if (_unit isKindOf "CAManBase") then {
|
||||
// The unit it on foot
|
||||
|
@ -27,7 +27,7 @@ if (getNumber (_unitAnimationCfg >> "terminal") == 1) exitWith {_animationState}
|
||||
|
||||
private _unitActionsCfg = configFile >> "CfgMovesBasic" >> "Actions" >> getText (_unitAnimationCfg >> "actions");
|
||||
|
||||
TRACE_2("Animation/Action", configName _unitAnimationCfg, configName _unitActionsCfg);
|
||||
TRACE_2("Animation/Action",configName _unitAnimationCfg,configName _unitActionsCfg);
|
||||
|
||||
if (vehicle _unit != _unit) then {
|
||||
private _interpolateArray = getArray (_unitAnimationCfg >> "interpolateTo");
|
||||
|
@ -25,7 +25,7 @@ private _pov = getText (_turret >> "memoryPointGunnerOptics");
|
||||
private _gunBeg = getText (_turret >> "gunBeg");
|
||||
private _gunEnd = getText (_turret >> "gunEnd");
|
||||
|
||||
TRACE_3("", _pov, _gunBeg, _gunEnd);
|
||||
TRACE_3("",_pov,_gunBeg,_gunEnd);
|
||||
|
||||
// Pull the PIP pov or barrel direction, depending on how the model is set up
|
||||
private _povPos = _vehicle modelToWorldVisualWorld (_vehicle selectionPosition _pov);
|
||||
|
@ -5,10 +5,10 @@
|
||||
*
|
||||
* Arguments:
|
||||
* 0: The Unit (usually the player) <OBJECT>
|
||||
* 1: Force a return type <NUMBER, BOOLEAN>
|
||||
* 1: Return imperial units <NUMBER, BOOLEAN>
|
||||
*
|
||||
* Return Value:
|
||||
* The return value <NUMBER>
|
||||
* Weight string <STRING>
|
||||
*
|
||||
* Example:
|
||||
* [player] call ace_common_fnc_getWeight
|
||||
|
@ -22,7 +22,7 @@ params ["_soundClass", "_posASL", "_volume", "_distance"];
|
||||
|
||||
private _sound = getArray (configFile >> "CfgSounds" >> _soundClass >> "sound");
|
||||
if (_sound isEqualTo []) exitWith {
|
||||
ERROR_1("CfgSounds class [%1] does not exist or contains empty sound array", _soundClass);
|
||||
ERROR_1("CfgSounds class [%1] does not exist or contains empty sound array",_soundClass);
|
||||
};
|
||||
TRACE_2("sound",_soundClass,_sound);
|
||||
|
||||
|
@ -23,7 +23,7 @@ params ["_logic", "_settingName", "_moduleVariable"];
|
||||
|
||||
// Check if the variable is already defined
|
||||
if (isNil _settingName) exitWith {
|
||||
ERROR_1("readSettingFromModule - param [%1] is not an ace_setting", _settingName);
|
||||
ERROR_1("readSettingFromModule - param [%1] is not an ace_setting",_settingName);
|
||||
};
|
||||
|
||||
// Check if the parameter is defined in the module
|
||||
|
@ -32,7 +32,7 @@ TRACE_1("Reading missionConfigFile params",_paramsArray);
|
||||
|
||||
// Check if the variable is already defined
|
||||
if (isNil _settingName) exitWith {
|
||||
ERROR_1("readSettingsFromParamsArray - param [%1] is not an ace_setting", _settingName);
|
||||
ERROR_1("readSettingsFromParamsArray - param [%1] is not an ace_setting",_settingName);
|
||||
};
|
||||
|
||||
// The setting is not forced, so update the value
|
||||
@ -52,7 +52,7 @@ TRACE_1("Reading missionConfigFile params",_paramsArray);
|
||||
};
|
||||
|
||||
if (!_validValue) exitWith {
|
||||
WARNING_3("readSettingsFromParamsArray - param [%1] type not valid [%2] - expected type [%3]", _settingName,_settingValue,_settingType);
|
||||
WARNING_3("readSettingsFromParamsArray - param [%1] type not valid [%2] - expected type [%3]",_settingName,_settingValue,_settingType);
|
||||
};
|
||||
|
||||
if ([_settingName, "mission"] call CBA_settings_fnc_isForced) then {
|
||||
|
@ -31,7 +31,7 @@ if (isLocalized _requestMessage) then {
|
||||
_requestMessage = format [_requestMessage, [_caller, false, true] call FUNC(getName)];
|
||||
};
|
||||
|
||||
hint format ["%1", _requestMessage]; // @todo ?
|
||||
hint str _requestMessage; // @todo ?
|
||||
|
||||
if (!isNil QGVAR(RECIEVE_REQUEST_TIME_OUT_SCRIPT)) then {
|
||||
terminate GVAR(RECIEVE_REQUEST_TIME_OUT_SCRIPT);
|
||||
|
@ -18,7 +18,7 @@
|
||||
params ["_name"];
|
||||
|
||||
if !(_name in GVAR(syncedEvents)) exitWith {
|
||||
ERROR_1("Synced event key [%1] not found (removeSyncedEventHandler).", _name);
|
||||
ERROR_1("Synced event key [%1] not found (removeSyncedEventHandler)",_name);
|
||||
false
|
||||
};
|
||||
|
||||
|
@ -22,7 +22,7 @@ private _startTime = diag_tickTime;
|
||||
private _fails = [];
|
||||
private _total = 0;
|
||||
|
||||
INFO_1("ace_common_fnc_runTests starting for [%1]", _specificTest);
|
||||
INFO_1("ace_common_fnc_runTests starting for [%1]",_specificTest);
|
||||
|
||||
{
|
||||
private _testName = configName _x;
|
||||
@ -41,8 +41,8 @@ INFO_1("ace_common_fnc_runTests starting for [%1]", _specificTest);
|
||||
};
|
||||
} forEach (configProperties [configFile >> "ACE_Tests"]);
|
||||
|
||||
INFO_1("ace_common_fnc_runTests finished in %1 ms", (1000 * (diag_tickTime - _startTime)) toFixed 1);
|
||||
INFO_2("[%1 / %2] Tests Passed", (_total - (count _fails)), _total);
|
||||
INFO_1("ace_common_fnc_runTests finished in %1 ms",(1000 * (diag_tickTime - _startTime)) toFixed 1);
|
||||
INFO_2("[%1 / %2] Tests Passed",(_total - (count _fails)),_total);
|
||||
if (_fails isNotEqualTo []) then {
|
||||
INFO_1("Failed: %1", _fails);
|
||||
INFO_1("Failed: %1",_fails);
|
||||
};
|
||||
|
@ -38,4 +38,4 @@ if (abs(_value - _oldValue) < _tolerance) exitWith {};
|
||||
_object setVariable [_varName, _value, true];
|
||||
_object setVariable [_oldVarName, _value];
|
||||
|
||||
TRACE_2("Published variable:", _varName, _value);
|
||||
TRACE_2("Published variable:",_varName,_value);
|
||||
|
@ -34,7 +34,7 @@ if (_object isEqualTo (_object getVariable [format ["ACE_onEmbargo_%1", _varName
|
||||
_object setVariable [_varName, _value, true];
|
||||
_object setVariable [format ["ACE_onEmbargo_%1", _varName], _object];
|
||||
|
||||
TRACE_2("Starting Embargo", _varName, _delay);
|
||||
TRACE_2("Starting Embargo",_varName,_delay);
|
||||
|
||||
[{
|
||||
params ["_object", "_varName", "_value"];
|
||||
@ -43,7 +43,7 @@ TRACE_2("Starting Embargo", _varName, _delay);
|
||||
_object setVariable [format ["ACE_onEmbargo_%1", _varName], nil]; //Remove Embargo
|
||||
private _curValue = _object getVariable _varName;
|
||||
|
||||
TRACE_4("End of embargo", _object, _varName, _value, _curValue);
|
||||
TRACE_4("End of embargo",_object,_varName,_value,_curValue);
|
||||
|
||||
//If value at start of embargo doesn't equal current, then broadcast and start new embargo
|
||||
if (_value isNotEqualTo _curValue) then {
|
||||
|
@ -41,11 +41,11 @@ if (isArray (missionConfigFile >> "showHUD")) then {
|
||||
if (_reason != "") then {
|
||||
_reason = toLower _reason;
|
||||
if (_mask isEqualTo []) then {
|
||||
TRACE_2("Removing", _reason, _mask);
|
||||
TRACE_2("Removing",_reason,_mask);
|
||||
GVAR(showHudHash) deleteAt _reason;
|
||||
} else {
|
||||
while {(count _mask) < 10} do { _mask pushBack true; };
|
||||
TRACE_2("Setting", _reason, _mask);
|
||||
TRACE_2("Setting",_reason,_mask);
|
||||
GVAR(showHudHash) set [_reason, _mask];
|
||||
};
|
||||
};
|
||||
@ -63,7 +63,7 @@ for "_index" from 0 to 9 do {
|
||||
_resultMask pushBack _set;
|
||||
};
|
||||
|
||||
TRACE_2("showHud", _resultMask, keys GVAR(showHudHash));
|
||||
TRACE_2("showHud",_resultMask,keys GVAR(showHudHash));
|
||||
showHud _resultMask;
|
||||
|
||||
_resultMask
|
||||
|
@ -21,8 +21,8 @@
|
||||
params [["_name", "", [""]], ["_isGlobal", false, [false]], ["_commonReasonsArray", [], [[]]], ["_sendJIP", false, [false]]];
|
||||
TRACE_3("params",_name,_isGlobal,_commonReasonsArray);
|
||||
|
||||
if (_name == "") exitWith {ERROR_1("addStatusEffect - Bad Name %1", _this)};
|
||||
if (_name in GVAR(statusEffect_Names)) exitWith {WARNING_1("addStatusEffect - Effect Already Added (note, will not update global bit) %1", _this)};
|
||||
if (_name == "") exitWith {ERROR_1("addStatusEffect - Bad Name %1",_this)};
|
||||
if (_name in GVAR(statusEffect_Names)) exitWith {WARNING_1("addStatusEffect - Effect Already Added (note, will not update global bit) %1",_this)};
|
||||
if (_sendJIP && !_isGlobal) exitWith {WARNING_1("addStatusEffect - Trying to add non-global JIP effect %1",_this)};
|
||||
|
||||
GVAR(statusEffect_Names) pushBack _name;
|
||||
|
@ -22,12 +22,12 @@ TRACE_2("params",_object,_isLocal);
|
||||
//Only run this after the settings are initialized
|
||||
//Need to wait for all EH to be installed (local event will happen between pre and post init)
|
||||
if !(GVAR(settingsInitFinished)) exitWith {
|
||||
TRACE_1("pushing to runAtSettingsInitialized", _this);
|
||||
TRACE_1("pushing to runAtSettingsInitialized",_this);
|
||||
GVAR(runAtSettingsInitialized) pushBack [FUNC(statusEffect_localEH), _this];
|
||||
};
|
||||
|
||||
if (!_isLocal) exitWith {TRACE_1("object no longer local", _this)};
|
||||
if (isNull _object) exitWith {TRACE_1("object null", _this)};
|
||||
if (!_isLocal) exitWith {TRACE_1("object no longer local",_this)};
|
||||
if (isNull _object) exitWith {TRACE_1("object null",_this)};
|
||||
|
||||
//Reset any variables because of respawn
|
||||
[_object, false] call FUNC(statusEffect_resetVariables);
|
||||
|
@ -21,12 +21,12 @@ TRACE_1("params",_object);
|
||||
//Only run this after the settings are initialized
|
||||
//Need to wait for all EH to be installed (local event will happen between pre and post init)
|
||||
if !(GVAR(settingsInitFinished)) exitWith {
|
||||
TRACE_1("pushing to runAtSettingsInitialized", _this);
|
||||
TRACE_1("pushing to runAtSettingsInitialized",_this);
|
||||
GVAR(runAtSettingsInitialized) pushBack [FUNC(statusEffect_respawnEH), _this];
|
||||
};
|
||||
|
||||
if (!local _object) exitWith {TRACE_1("object no longer local", _this)};
|
||||
if (isNull _object) exitWith {TRACE_1("object null", _this)};
|
||||
if (!local _object) exitWith {TRACE_1("object no longer local",_this)};
|
||||
if (isNull _object) exitWith {TRACE_1("object null",_this)};
|
||||
|
||||
//Reset any variables on "real" respawn
|
||||
[_object, false] call FUNC(statusEffect_resetVariables);
|
||||
|
@ -32,17 +32,17 @@ if (isNull _object) exitWith {};
|
||||
private _eventName = format [QGVAR(%1), _x];
|
||||
switch (true) do {
|
||||
case (GVAR(statusEffect_sendJIP) select _forEachIndex): {
|
||||
TRACE_2("Sending Global JIP Event", _object, _effectNumber);
|
||||
TRACE_2("Sending Global JIP Event",_object,_effectNumber);
|
||||
private _jipID = format [QGVAR(effect_%1_%2), _eventName, hashValue _object];
|
||||
[_eventName, [_object, _effectNumber], _jipID] call CBA_fnc_globalEventJIP;
|
||||
[_jipID, _object] call CBA_fnc_removeGlobalEventJIP;
|
||||
};
|
||||
case (GVAR(statusEffect_isGlobal) select _forEachIndex): {
|
||||
TRACE_2("Sending Global Event", _object, _effectNumber);
|
||||
TRACE_2("Sending Global Event",_object,_effectNumber);
|
||||
[_eventName, [_object, _effectNumber]] call CBA_fnc_globalEvent;
|
||||
};
|
||||
default {
|
||||
TRACE_2("Sending Target Event", _object, _effectNumber);
|
||||
TRACE_2("Sending Target Event",_object,_effectNumber);
|
||||
[_eventName, [_object, _effectNumber], _object] call CBA_fnc_targetEvent;
|
||||
};
|
||||
};
|
||||
|
@ -23,7 +23,7 @@ TRACE_4("params",_object,_effectName,_ID,_set);
|
||||
|
||||
//Only run this after the settings are initialized
|
||||
if !(GVAR(settingsInitFinished)) exitWith {
|
||||
TRACE_1("pushing to runAtSettingsInitialized", _this);
|
||||
TRACE_1("pushing to runAtSettingsInitialized",_this);
|
||||
GVAR(runAtSettingsInitialized) pushBack [FUNC(statusEffect_set), _this];
|
||||
};
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
params ["_name", "_args", ["_ttl", 0]];
|
||||
|
||||
if !(_name in GVAR(syncedEvents)) exitWith {
|
||||
ERROR_1("Synced event key [%1] not found (syncedEvent).", _name);
|
||||
ERROR_1("Synced event key [%1] not found (syncedEvent)",_name);
|
||||
false
|
||||
};
|
||||
|
||||
|
@ -35,7 +35,7 @@ if (_emptyPos isEqualTo []) then {
|
||||
};
|
||||
|
||||
if (count _emptyPos != 3) exitwith {
|
||||
WARNING_4("Could not find unload pos %1-ASL: %2 isTouchingGround: %3 Speed: %4",_vehicle, getPosASL _vehicle, isTouchingGround _vehicle, speed _vehicle);
|
||||
WARNING_4("Could not find unload pos %1-ASL: %2 isTouchingGround: %3 Speed: %4",_vehicle,getPosASL _vehicle,isTouchingGround _vehicle,speed _vehicle);
|
||||
if ((!isNull _unloader) && {[_unloader] call FUNC(isPlayer)}) then {
|
||||
//display text saying there are no safe places to exit the vehicle
|
||||
[QGVAR(displayTextStructured), [localize LSTRING(NoRoomToUnload)], [_unloader]] call CBA_fnc_targetEvent;
|
||||
|
1
addons/compat_cup_terrains/$PBOPREFIX$
Normal file
1
addons/compat_cup_terrains/$PBOPREFIX$
Normal file
@ -0,0 +1 @@
|
||||
z\ace\addons\compat_cup_terrains
|
5
addons/compat_cup_terrains/CfgEventHandlers.hpp
Normal file
5
addons/compat_cup_terrains/CfgEventHandlers.hpp
Normal file
@ -0,0 +1,5 @@
|
||||
class Extended_PostInit_EventHandlers {
|
||||
class ADDON {
|
||||
init = QUOTE(call COMPILE_SCRIPT(XEH_postInit));
|
||||
};
|
||||
};
|
48
addons/compat_cup_terrains/CfgVehicles.hpp
Normal file
48
addons/compat_cup_terrains/CfgVehicles.hpp
Normal file
@ -0,0 +1,48 @@
|
||||
class CfgVehicles {
|
||||
class House;
|
||||
class House_Small_F;
|
||||
class Strategic;
|
||||
class House_EP1: House {};
|
||||
|
||||
class Land_Benzina_schnell: House {
|
||||
transportFuel = 0;
|
||||
EGVAR(refuel,hooks)[] = {{-1.5,-3.93,-1.25}, {2.35,-3.93,-1.25}};
|
||||
EGVAR(refuel,fuelCargo) = REFUEL_INFINITE_FUEL;
|
||||
class ACE_Actions {
|
||||
class ACE_MainActions {
|
||||
displayName = ECSTRING(interaction,MainAction);
|
||||
position = "[0,-3.93,-1.25]";
|
||||
distance = 5;
|
||||
condition = "true";
|
||||
};
|
||||
};
|
||||
};
|
||||
class Land_A_FuelStation_Feed: Strategic {
|
||||
transportFuel = 0;
|
||||
EGVAR(refuel,hooks)[] = {{-0.34,0,0}, {0.34,0,0}};
|
||||
EGVAR(refuel,fuelCargo) = REFUEL_INFINITE_FUEL;
|
||||
};
|
||||
class Land_Ind_FuelStation_Feed_EP1: House_EP1 {
|
||||
transportFuel = 0;
|
||||
EGVAR(refuel,hooks)[] = {{-0.34,0,0}, {0.34,0,0}};
|
||||
EGVAR(refuel,fuelCargo) = REFUEL_INFINITE_FUEL;
|
||||
};
|
||||
class Land_FuelStation_Feed_PMC: Strategic {
|
||||
transportFuel = 0;
|
||||
EGVAR(refuel,hooks)[] = {{-0.34,0,0}, {0.34,0,0}};
|
||||
EGVAR(refuel,fuelCargo) = REFUEL_INFINITE_FUEL;
|
||||
};
|
||||
class FuelStation: House_Small_F {
|
||||
transportFuel = 0;
|
||||
EGVAR(refuel,hooks)[] = {{1.25, .2, -1.1}};
|
||||
EGVAR(refuel,fuelCargo) = REFUEL_INFINITE_FUEL;
|
||||
class ACE_Actions {
|
||||
class ACE_MainActions {
|
||||
displayName = ECSTRING(interaction,MainAction);
|
||||
position = "[1.25, .2, -1]";
|
||||
distance = 5;
|
||||
condition = "true";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
5
addons/compat_cup_terrains/XEH_postInit.sqf
Normal file
5
addons/compat_cup_terrains/XEH_postInit.sqf
Normal file
@ -0,0 +1,5 @@
|
||||
#include "script_component.hpp"
|
||||
|
||||
if (["CUP_Terrains_ACE_compat"] call EFUNC(common,isModLoaded)) exitWith {
|
||||
ERROR_WITH_TITLE("Duplicate CUP/ACE Compats","Compats are now part of ACE - Uninstall 'CUP ACE3 Compatibility Addon - Terrains'");
|
||||
};
|
27
addons/compat_cup_terrains/config.cpp
Normal file
27
addons/compat_cup_terrains/config.cpp
Normal file
@ -0,0 +1,27 @@
|
||||
#include "script_component.hpp"
|
||||
#include "\z\ace\addons\refuel\defines.hpp"
|
||||
|
||||
class CfgPatches {
|
||||
class ADDON {
|
||||
name = COMPONENT_NAME;
|
||||
units[] = {};
|
||||
weapons[] = {};
|
||||
requiredVersion = REQUIRED_VERSION;
|
||||
requiredAddons[] = {
|
||||
"CABuildings",
|
||||
"CAStructuresHouse_A_FuelStation",
|
||||
"CAStructures_E_Ind_Ind_FuelStation",
|
||||
"CAStructures_PMC_FuelStation",
|
||||
"CUP_Buildings_Config",
|
||||
"ace_refuel" // not a sub-component because it's all this compat does
|
||||
};
|
||||
skipWhenMissingDependencies = 1;
|
||||
author = ECSTRING(common,ACETeam);
|
||||
authors[] = {"Community Upgrade Project", "Mike"};
|
||||
url = ECSTRING(main,URL);
|
||||
VERSION_CONFIG;
|
||||
};
|
||||
};
|
||||
|
||||
#include "CfgVehicles.hpp"
|
||||
#include "CfgEventHandlers.hpp"
|
5
addons/compat_cup_terrains/script_component.hpp
Normal file
5
addons/compat_cup_terrains/script_component.hpp
Normal file
@ -0,0 +1,5 @@
|
||||
#define COMPONENT compat_cup_terrains
|
||||
#define COMPONENT_BEAUTIFIED CUP Terrains Compatibility
|
||||
|
||||
#include "\z\ace\addons\main\script_mod.hpp"
|
||||
#include "\z\ace\addons\main\script_macros.hpp"
|
@ -1,7 +1,14 @@
|
||||
class CfgWeapons {
|
||||
// Last update: RHSAFRF 0.5.6
|
||||
class rhs_acc_perst3;
|
||||
class rhs_acc_perst3_2dp: rhs_acc_perst3 {
|
||||
baseWeapon = "rhs_acc_perst3_2dp";
|
||||
class rhs_acc_perst3_2dp_light;
|
||||
class rhs_acc_perst3_2dp_light_h: rhs_acc_perst3_2dp_light {
|
||||
baseWeapon = "rhs_acc_perst3_2dp_h";
|
||||
};
|
||||
|
||||
class acc_pointer_IR;
|
||||
class rhs_acc_perst1ik: acc_pointer_IR {
|
||||
MRT_SwitchItemHintText = ""; // prevent false info for illuminator stat
|
||||
MRT_SwitchItemNextClass = "";
|
||||
MRT_SwitchItemPrevClass = "";
|
||||
};
|
||||
};
|
||||
|
@ -15,4 +15,4 @@ class CfgPatches {
|
||||
};
|
||||
};
|
||||
|
||||
//#include "CfgWeapons.hpp"
|
||||
#include "CfgWeapons.hpp"
|
||||
|
@ -3,6 +3,9 @@ class CfgWeapons {
|
||||
class acc_pointer_IR;
|
||||
class rhsusf_acc_anpeq15: acc_pointer_IR {
|
||||
baseWeapon = "rhsusf_acc_anpeq15";
|
||||
MRT_SwitchItemHintText = ""; // prevent false info for illuminator stat
|
||||
MRT_SwitchItemNextClass = "";
|
||||
MRT_SwitchItemPrevClass = "";
|
||||
};
|
||||
class rhsusf_acc_anpeq15_bk: rhsusf_acc_anpeq15 {
|
||||
baseWeapon = "rhsusf_acc_anpeq15_bk";
|
||||
@ -28,8 +31,12 @@ class CfgWeapons {
|
||||
class rhsusf_acc_wmx_bk: rhsusf_acc_M952V {
|
||||
baseWeapon = "rhsusf_acc_wmx_bk";
|
||||
};
|
||||
|
||||
class rhsusf_acc_anpeq15A: acc_pointer_IR {
|
||||
baseWeapon = "rhsusf_acc_anpeq15A";
|
||||
MRT_SwitchItemHintText = ""; // prevent false info for illuminator stat
|
||||
MRT_SwitchItemNextClass = "";
|
||||
MRT_SwitchItemPrevClass = "";
|
||||
};
|
||||
class rhsusf_acc_anpeq15_top: rhsusf_acc_anpeq15A {
|
||||
baseWeapon = "rhsusf_acc_anpeq15_top";
|
||||
@ -37,8 +44,12 @@ class CfgWeapons {
|
||||
class rhsusf_acc_anpeq15_bk_top: rhsusf_acc_anpeq15_top {
|
||||
baseWeapon = "rhsusf_acc_anpeq15_bk_top";
|
||||
};
|
||||
|
||||
class rhsusf_acc_anpeq15side: acc_pointer_IR {
|
||||
baseWeapon = "rhsusf_acc_anpeq15side";
|
||||
MRT_SwitchItemHintText = ""; // prevent false info for illuminator stat
|
||||
MRT_SwitchItemNextClass = "";
|
||||
MRT_SwitchItemPrevClass = "";
|
||||
};
|
||||
class rhsusf_acc_anpeq15side_bk: rhsusf_acc_anpeq15side {
|
||||
baseWeapon = "rhsusf_acc_anpeq15side_bk";
|
||||
|
@ -7,7 +7,7 @@ INFO("Checking static weapons");
|
||||
|
||||
private _staticWeaponConfigs = configProperties [configFile >> "CfgVehicles", "(isClass _x) && {(configName _x) isKindOf 'StaticWeapon'}", true];
|
||||
private _staticPublic = _staticWeaponConfigs select {(getNumber (_x >> "scope")) == 2};
|
||||
INFO_2("Static Weapons [%1] - CSW Enabled [%2]",count _staticPublic, {(getNumber (_x >> "ace_csw" >> "enabled")) == 1} count _staticPublic);
|
||||
INFO_2("Static Weapons [%1] - CSW Enabled [%2]",count _staticPublic,{(getNumber (_x >> "ace_csw" >> "enabled")) == 1} count _staticPublic);
|
||||
|
||||
INFO("------ Checking static weapons inheritance ------");
|
||||
private _explicitBases = [];
|
||||
|
@ -24,7 +24,7 @@
|
||||
params ["_vehicle", "_turret", "_magSource", "_carryMag", "_ammoReceived", ["_returnTo", _magSource]];
|
||||
TRACE_6("reload_handleAddTurretMag",_vehicle,_turret,_magSource,_carryMag,_ammoReceived,_returnTo);
|
||||
|
||||
TRACE_2("",local _vehicle, _vehicle turretLocal _turret);
|
||||
TRACE_2("",local _vehicle,_vehicle turretLocal _turret);
|
||||
if (!(_vehicle turretLocal _turret)) exitWith {};
|
||||
|
||||
([_vehicle, _turret, _carryMag] call FUNC(reload_canLoadMagazine)) params ["_canAdd", "_loadedMag", "_neededAmmo", "_isBeltLinking"];
|
||||
@ -43,10 +43,10 @@ if (_canAdd) then {
|
||||
|
||||
// setMagazineTurretAmmo is broken on split locality, use setAmmo for now (this may not work for multi turret vehicles)
|
||||
private _weapon = (_vehicle weaponsTurret _turret) param [0, ""];
|
||||
TRACE_3("setAmmo",_vehicle,_weapon, _currentAmmo);
|
||||
TRACE_3("setAmmo",_vehicle,_weapon,_currentAmmo);
|
||||
_vehicle setAmmo [_weapon, _currentAmmo];
|
||||
private _currentAmmo = _vehicle magazineTurretAmmo [_loadedMag, _turret];
|
||||
if ((_weapon == "") || {_currentAmmo != _currentAmmo}) then { ERROR_1("failed to setAmmo - %1", _this); };
|
||||
if ((_weapon == "") || {_currentAmmo != _currentAmmo}) then { ERROR_1("failed to setAmmo - %1",_this); };
|
||||
} else {
|
||||
if (_loadedMag != "") then {
|
||||
TRACE_1("Removing emtpy mag",_loadedMag);
|
||||
|
@ -23,7 +23,7 @@
|
||||
params ["_vehicle", "_turretPath", "_carryMag", "_vehMag", "_unloadTo"];
|
||||
TRACE_5("removeTurretMag EH",_vehicle,_turretPath,_carryMag,_vehMag,_unloadTo);
|
||||
|
||||
TRACE_3("",local _vehicle, _vehicle turretLocal _turretPath,local _unloadTo);
|
||||
TRACE_3("",local _vehicle,_vehicle turretLocal _turretPath,local _unloadTo);
|
||||
if (!(_vehicle turretLocal _turretPath)) exitWith {};
|
||||
|
||||
private _magsInWeapon = []; // Check how much ammo it has now:
|
||||
@ -55,10 +55,10 @@ if ((_magsInWeapon isEqualTo []) && {_ammoInFirstMag > _ammoRemoved}) then {
|
||||
|
||||
// setMagazineTurretAmmo is broken on split locality, use setAmmo for now
|
||||
private _weapon = (_vehicle weaponsTurret _turretPath) param [0, ""];
|
||||
TRACE_3("setAmmo",_vehicle,_weapon, _ammoLeft);
|
||||
TRACE_3("setAmmo",_vehicle,_weapon,_ammoLeft);
|
||||
_vehicle setAmmo [_weapon, _ammoLeft];
|
||||
private _currentAmmo = _vehicle magazineTurretAmmo [_vehMag, _turretPath];
|
||||
if ((_weapon == "") || {_currentAmmo != _ammoLeft}) then { ERROR_1("failed to setAmmo - %1", _this); };
|
||||
if ((_weapon == "") || {_currentAmmo != _ammoLeft}) then { ERROR_1("failed to setAmmo - %1",_this); };
|
||||
|
||||
|
||||
} else {
|
||||
|
@ -51,7 +51,7 @@ private _onFinish = {
|
||||
[_magSource, _carryMag, _bestAmmoToSend] call EFUNC(common,removeSpecificMagazine);
|
||||
if (_bestAmmoToSend == 0) exitWith {};
|
||||
|
||||
TRACE_6("calling addTurretMag event",_vehicle,_turret,_magSource,_carryMag,_bestAmmoToSend, _unit);
|
||||
TRACE_6("calling addTurretMag event",_vehicle,_turret,_magSource,_carryMag,_bestAmmoToSend,_unit);
|
||||
[QGVAR(addTurretMag), [_vehicle, _turret, _magSource, _carryMag, _bestAmmoToSend, _unit]] call CBA_fnc_globalEvent;
|
||||
};
|
||||
|
||||
|
@ -541,7 +541,7 @@ GVAR(menuRun) = true;
|
||||
};
|
||||
case "options": {
|
||||
(__dsp displayCtrl __Option0) ctrlSetText "Signal Delay";
|
||||
(__dsp displayCtrl __Option1) ctrlSetText (if (GVAR(useDegrees)) then { "Direction: Deg" } else { "Direction: MIL" });
|
||||
(__dsp displayCtrl __Option1) ctrlSetText (["Direction: MIL", "Direction: Deg"] select GVAR(useDegrees));
|
||||
(__dsp displayCtrl (__Selection0 + GVAR(selection))) ctrlSetText QPATHTOF(UI\DAGR_Selection.paa);
|
||||
if (GVAR(SEL)) then {
|
||||
GVAR(vectorConnected) = false;
|
||||
|
@ -65,10 +65,10 @@ GVAR(outputPFH) = [{
|
||||
private _dagrTime = [daytime, "HH:MM"] call bis_fnc_timeToString;
|
||||
|
||||
// Output
|
||||
__gridControl ctrlSetText format ["%1", _dagrGrid];
|
||||
__speedControl ctrlSetText format ["%1", _dagrSpeed];
|
||||
__elevationControl ctrlSetText format ["%1", _dagrElevation];
|
||||
__headingControl ctrlSetText (if (!GVAR(useDegrees)) then { format ["%1", _dagrHeading] } else { format ["%1 <20>", _dagrHeading] });
|
||||
__timeControl ctrlSetText format ["%1", _dagrTime];
|
||||
__gridControl ctrlSetText _dagrGrid;
|
||||
__speedControl ctrlSetText _dagrSpeed;
|
||||
__elevationControl ctrlSetText _dagrElevation;
|
||||
__headingControl ctrlSetText (if (!GVAR(useDegrees)) then { str _dagrHeading } else { format ["%1 <20>", _dagrHeading] });
|
||||
__timeControl ctrlSetText _dagrTime;
|
||||
|
||||
}, GVAR(updateInterval), []] call CBA_fnc_addPerFrameHandler;
|
||||
|
@ -89,8 +89,8 @@ private _dagrDist = str GVAR(LAZDIST) + "m";
|
||||
GVAR(vectorGrid) = _dagrGrid;
|
||||
|
||||
// OUTPUT
|
||||
__gridControl ctrlSetText format ["%1", _dagrGrid];
|
||||
__speedControl ctrlSetText format ["%1", _dagrDist];
|
||||
__elevationControl ctrlSetText format ["%1", _dagrElevation];
|
||||
__headingControl ctrlSetText (if (!GVAR(useDegrees)) then { format ["%1", _bearing] } else { format ["%1°", _bearing] });
|
||||
__timeControl ctrlSetText format ["%1", _dagrTime];
|
||||
__gridControl ctrlSetText _dagrGrid;
|
||||
__speedControl ctrlSetText _dagrDist;
|
||||
__elevationControl ctrlSetText _dagrElevation;
|
||||
__headingControl ctrlSetText (if (!GVAR(useDegrees)) then { str _bearing } else { format ["%1°", _bearing] });
|
||||
__timeControl ctrlSetText _dagrTime;
|
||||
|
@ -85,10 +85,10 @@ GVAR(outputPFH) = [{
|
||||
});
|
||||
|
||||
// Output
|
||||
__gridControl ctrlSetText format ["%1", _dagrGrid];
|
||||
__speedControl ctrlSetText format ["%1", _bearing];
|
||||
__elevationControl ctrlSetText format ["%1", _dagrGrid2];
|
||||
__headingControl ctrlSetText (if (!GVAR(useDegrees)) then { format ["%1", _dagrHeading] } else { format ["%1°", _dagrHeading] });
|
||||
__timeControl ctrlSetText format ["%1", _dagrDistance];
|
||||
__gridControl ctrlSetText _dagrGrid;
|
||||
__speedControl ctrlSetText str _bearing;
|
||||
__elevationControl ctrlSetText _dagrGrid2;
|
||||
__headingControl ctrlSetText (if (!GVAR(useDegrees)) then { str _dagrHeading } else { format ["%1°", _dagrHeading] });
|
||||
__timeControl ctrlSetText _dagrDistance;
|
||||
|
||||
}, GVAR(updateInterval), []] call CBA_fnc_addPerFrameHandler;
|
||||
|
@ -55,7 +55,7 @@ params ["_listBoxCtrl", "_itemsCountArray"];
|
||||
};
|
||||
};
|
||||
|
||||
_listBoxCtrl lbAdd format ["%1", _displayName];
|
||||
_listBoxCtrl lbAdd _displayName;
|
||||
_listBoxCtrl lbSetData [((lbSize _listBoxCtrl) - 1), _classname];
|
||||
_listBoxCtrl lbSetPicture [((lbSize _listBoxCtrl) - 1), _picture];
|
||||
_listBoxCtrl lbSetTextRight [((lbSize _listBoxCtrl) - 1), str _count];
|
||||
|
@ -50,7 +50,7 @@ if (isServer) then {
|
||||
["ace_unconscious", {
|
||||
params ["_unit", "_isUnconscious"];
|
||||
if (!_isUnconscious) exitWith {};
|
||||
TRACE_1("Knocked Out, Doing Deadman", _unit);
|
||||
TRACE_1("Knocked Out, Doing Deadman",_unit);
|
||||
[_unit] call FUNC(onIncapacitated);
|
||||
}] call CBA_fnc_addEventHandler;
|
||||
};
|
||||
|
@ -161,7 +161,7 @@ GVAR(TweakedAngle) = 0;
|
||||
private _placeAngle = 0;
|
||||
private _expSetupVehicle = _setupObjectClass createVehicle (_virtualPosASL call EFUNC(common,ASLToPosition));
|
||||
|
||||
TRACE_1("Planting Mass", (getMass _expSetupVehicle));
|
||||
TRACE_1("Planting Mass",(getMass _expSetupVehicle));
|
||||
//If the object is too heavy, it can kill a player if it colides
|
||||
if ((getMass _expSetupVehicle) > 5) then {_expSetupVehicle setMass 5;};
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
*/
|
||||
|
||||
//IGNORE_PRIVATE_WARNING ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile", "_vehicle", "_gunner", "_turret"];
|
||||
TRACE_10("firedEH:",_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile, _vehicle, _gunner, _turret);
|
||||
TRACE_10("firedEH:",_unit,_weapon,_muzzle,_mode,_ammo,_magazine,_projectile,_vehicle,_gunner,_turret);
|
||||
|
||||
private _FCSMagazines = _vehicle getVariable [format ["%1_%2", QGVAR(Magazines), _turret], []];
|
||||
|
||||
@ -50,7 +50,7 @@ if (_zeroDistance > 0) then {
|
||||
private _antiOffset = _gunner getVariable QGVAR(lastAntiOffset);
|
||||
|
||||
_offset = _offset - _antiOffset;
|
||||
TRACE_4("fired",_gunner, currentZeroing _gunner, _antiOffset, _offset);
|
||||
TRACE_4("fired",_gunner,currentZeroing _gunner,_antiOffset,_offset);
|
||||
};
|
||||
|
||||
[_projectile, (_vehicle getVariable format ["%1_%2", QGVAR(Azimuth), _turret]), _offset, 0] call EFUNC(common,changeProjectileDirection);
|
||||
|
@ -4,7 +4,7 @@ if (!hasInterface) exitWith {};
|
||||
|
||||
["CBA_settingsInitialized", {
|
||||
//If not enabled, dont't bother adding eventhandler
|
||||
TRACE_1("CBA_settingsInitialized eh", GVAR(enabled));
|
||||
TRACE_1("CBA_settingsInitialized eh",GVAR(enabled));
|
||||
if (!GVAR(enabled)) exitWith {};
|
||||
|
||||
GVAR(lastFPTime) = -1;
|
||||
|
@ -25,12 +25,12 @@ private _fingerPos = if (_sourceUnit == ACE_player) then {
|
||||
_fingerPosPrecise vectorAdd ([random (2 * FP_RANDOMIZATION_X) - FP_RANDOMIZATION_X, random (2 * FP_RANDOMIZATION_X) - FP_RANDOMIZATION_X, random (2 * FP_RANDOMIZATION_Y) - FP_RANDOMIZATION_Y] vectorMultiply _distance)
|
||||
};
|
||||
|
||||
TRACE_3("incoming finger:", _sourceUnit, _fingerPosPrecise, _fingerPos);
|
||||
TRACE_3("incoming finger:",_sourceUnit,_fingerPosPrecise,_fingerPos);
|
||||
|
||||
private _data = [diag_tickTime, _fingerPos, ([_sourceUnit, false, true] call EFUNC(common,getName)), _sourceUnit];
|
||||
GVAR(fingersHash) set [hashValue _sourceUnit, _data];
|
||||
|
||||
if (GVAR(pfeh_id) == -1) then {
|
||||
GVAR(pfeh_id) = [DFUNC(perFrameEH), 0, []] call CBA_fnc_addPerFrameHandler;
|
||||
TRACE_1("Started PFEH", GVAR(pfeh_id));
|
||||
TRACE_1("Started PFEH",GVAR(pfeh_id));
|
||||
};
|
||||
|
@ -44,7 +44,7 @@ private _iconBaseSize = GVAR(sizeCoef) * BASE_SIZE * 0.10713 * (call EFUNC(commo
|
||||
} forEach GVAR(fingersHash);
|
||||
|
||||
if (GVAR(fingersHash) isEqualTo createHashMap) then {
|
||||
TRACE_1("Ending PFEH", GVAR(pfeh_id));
|
||||
TRACE_1("Ending PFEH",GVAR(pfeh_id));
|
||||
[GVAR(pfeh_id)] call CBA_fnc_removePerFrameHandler;
|
||||
GVAR(pfeh_id) = -1;
|
||||
};
|
||||
|
@ -10,7 +10,7 @@
|
||||
}] call CBA_fnc_addEventHandler;
|
||||
|
||||
["ace_settingsInitialized", {
|
||||
TRACE_1("settingsInit", GVAR(enabled));
|
||||
TRACE_1("settingsInit",GVAR(enabled));
|
||||
if (!GVAR(enabled)) exitWith {};
|
||||
|
||||
if (isServer) then {
|
||||
|
@ -189,7 +189,7 @@ if (_isBurning) exitWith {};
|
||||
if ((_unit isEqualTo vehicle _unit) && (_sdr || ({ 0.05 > random 1 }))) then {
|
||||
_unit setVariable [QGVAR(stopDropRoll), true];
|
||||
if !(_sdr) then {
|
||||
TRACE_1("stop, drop, roll!", _unit);
|
||||
TRACE_1("stop,drop,roll!",_unit);
|
||||
_unit setUnitPos "DOWN";
|
||||
doStop _unit;
|
||||
};
|
||||
@ -203,7 +203,7 @@ if (_isBurning) exitWith {};
|
||||
private _vehicle = vehicle _unit;
|
||||
|
||||
if (_vehicle != _unit) then {
|
||||
TRACE_1("Ejecting", _unit);
|
||||
TRACE_1("Ejecting",_unit);
|
||||
_unit leaveVehicle _vehicle;
|
||||
unassignVehicle _unit;
|
||||
_unit action ["eject",_vehicle];
|
||||
|
@ -29,7 +29,7 @@ private _direction = getDir _object;
|
||||
|
||||
// Marker name unique to this object
|
||||
private _markerNameStr = format [QGVAR(marker_%1), hashValue _object];
|
||||
private _channel = if (GVAR(markObjectsOnMap) == 2) then { 0 } else { 1 };
|
||||
private _channel = parseNumber (GVAR(markObjectsOnMap) != 2);
|
||||
|
||||
private _marker = createMarkerLocal [_markerNameStr, _object, _channel, _unit];
|
||||
TRACE_2("created",_marker,_channel);
|
||||
|
@ -67,7 +67,7 @@ if (alive _round) then {
|
||||
getNumber (configFile >> "CfgAmmo" >> _type >> QGVAR(force)),
|
||||
getNumber (configFile >> "CfgAmmo" >> _type >> "indirecthit") * (sqrt (getNumber (configFile >> "CfgAmmo" >> _type >> "indirectHitRange")))
|
||||
];
|
||||
TRACE_1("Initializing track", _round);
|
||||
TRACE_1("Initializing track",_round);
|
||||
GVAR(objects) pushBack _round;
|
||||
GVAR(arguments) pushBack _args;
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
*/
|
||||
|
||||
//IGNORE_PRIVATE_WARNING ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile", "_vehicle", "_gunner", "_turret"];
|
||||
TRACE_10("firedEH:",_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile, _vehicle, _gunner, _turret);
|
||||
TRACE_10("firedEH:",_unit,_weapon,_muzzle,_mode,_ammo,_magazine,_projectile,_vehicle,_gunner,_turret);
|
||||
|
||||
private _shouldAdd = GVAR(cacheRoundsTypesToTrack) getVariable _ammo;
|
||||
if (isNil "_shouldAdd") then {
|
||||
|
@ -144,7 +144,7 @@ if (_objects isNotEqualTo []) then {
|
||||
private _vel = _vec vectorMultiply _fp;
|
||||
|
||||
private _fragObj = (selectRandom _fragTypes) createVehicleLocal [0,0,10000];
|
||||
// TRACE_4("targeted",_fp, typeOf _fragObj,_lastPos vectorDistance _targetPos,typeOf _x);
|
||||
// TRACE_4("targeted",_fp,typeOf _fragObj,_lastPos vectorDistance _targetPos,typeOf _x);
|
||||
_fragObj setPosASL _lastPos;
|
||||
_fragObj setVectorDir _vec;
|
||||
_fragObj setVelocity _vel;
|
||||
|
@ -45,7 +45,7 @@ while {_objectCount > 0 && {_iter < (GVAR(maxTrackPerFrame) min _objectCount)}}
|
||||
// Clean up dead object references
|
||||
private _deletionCount = 0;
|
||||
{
|
||||
TRACE_1("GC Projectile", _x);
|
||||
TRACE_1("GC Projectile",_x);
|
||||
private _deleteIndex = _x - _deletionCount;
|
||||
GVAR(objects) deleteAt _deleteIndex;
|
||||
GVAR(arguments) deleteAt _deleteIndex;
|
||||
|
@ -16,7 +16,7 @@
|
||||
*/
|
||||
|
||||
//IGNORE_PRIVATE_WARNING ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile", "_vehicle", "_gunner", "_turret"];
|
||||
TRACE_10("firedEH:",_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile, _vehicle, _gunner, _turret);
|
||||
TRACE_10("firedEH:",_unit,_weapon,_muzzle,_mode,_ammo,_magazine,_projectile,_vehicle,_gunner,_turret);
|
||||
|
||||
// no dust in rain
|
||||
if (rain > 0.1) exitWith {true};
|
||||
|
@ -16,7 +16,7 @@
|
||||
*/
|
||||
|
||||
//IGNORE_PRIVATE_WARNING ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile", "_vehicle", "_gunner", "_turret"];
|
||||
TRACE_10("firedEH:",_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile, _vehicle, _gunner, _turret);
|
||||
TRACE_10("firedEH:",_unit,_weapon,_muzzle,_mode,_ammo,_magazine,_projectile,_vehicle,_gunner,_turret);
|
||||
|
||||
if (_weapon != "Throw") exitWith {};
|
||||
|
||||
|
@ -132,7 +132,7 @@ private _numTransferredHC3 = 0;
|
||||
};
|
||||
};
|
||||
default {
|
||||
TRACE_1("No Valid HC to transfer to", _currentHC);
|
||||
TRACE_1("No Valid HC to transfer to",_currentHC);
|
||||
};
|
||||
};
|
||||
};
|
||||
@ -140,7 +140,7 @@ private _numTransferredHC3 = 0;
|
||||
|
||||
if (XGVAR(log)) then {
|
||||
private _numTransferredTotal = _numTransferredHC1 + _numTransferredHC2 + _numTransferredHC3;
|
||||
INFO_4("Groups Transferred: Total: %1 - HC1: %2 - HC2: %3 - HC3: %4", _numTransferredTotal, _numTransferredHC1, _numTransferredHC2, _numTransferredHC3);
|
||||
INFO_4("Groups Transferred: Total: %1 - HC1: %2 - HC2: %3 - HC3: %4",_numTransferredTotal,_numTransferredHC1,_numTransferredHC2,_numTransferredHC3);
|
||||
};
|
||||
|
||||
// Allow rebalance flag
|
||||
|
@ -48,7 +48,7 @@ _caliber = call {
|
||||
if (_ammo isKindOf ["RocketBase", (configFile >> "CfgAmmo")]) exitWith { 200 };
|
||||
if (_ammo isKindOf ["MissileBase", (configFile >> "CfgAmmo")]) exitWith { 600 };
|
||||
if (_ammo isKindOf ["SubmunitionBase", (configFile >> "CfgAmmo")]) exitWith { 80 };
|
||||
if (_caliber <= 0) then { 6.5 } else { _caliber };
|
||||
[_caliber, 6.5] select (_caliber <= 0);
|
||||
};
|
||||
private _loudness = (_caliber ^ 1.25 / 10) * (_initspeed / 1000) / 5;
|
||||
|
||||
|
@ -27,7 +27,9 @@ params ["_object", "_firer", "_distance", "_weapon", "", "", "_ammo"];
|
||||
if (_weapon in ["Throw", "Put"]) exitWith {};
|
||||
if (_distance > 50) exitWith {};
|
||||
|
||||
private _vehAttenuation = if ((ACE_player == (vehicle ACE_player)) || {isTurnedOut ACE_player}) then {1} else {GVAR(playerVehAttenuation)};
|
||||
private _vehAttenuation = [GVAR(playerVehAttenuation), 1] select (
|
||||
(ACE_player == (vehicle ACE_player)) || {isTurnedOut ACE_player}
|
||||
);
|
||||
private _distance = 1 max _distance;
|
||||
|
||||
private _silencer = switch (_weapon) do {
|
||||
@ -78,7 +80,7 @@ if (isNil "_loudness") then {
|
||||
if (_ammo isKindOf ["RocketBase", (configFile >> "CfgAmmo")]) exitWith { 200 };
|
||||
if (_ammo isKindOf ["MissileBase", (configFile >> "CfgAmmo")]) exitWith { 600 };
|
||||
if (_ammo isKindOf ["SubmunitionBase", (configFile >> "CfgAmmo")]) exitWith { 80 };
|
||||
if (_caliber <= 0) then { 6.5 } else { _caliber };
|
||||
[_caliber, 6.5] select (_caliber <= 0)
|
||||
};
|
||||
|
||||
_loudness = (_caliber ^ 1.25 / 10) * (_initspeed / 1000) / 5;
|
||||
|
@ -93,5 +93,5 @@ if (_attackStage >= 3 && { _seekerType isEqualTo "ARH" }) then {
|
||||
};
|
||||
};
|
||||
|
||||
// TRACE_1("Adjusted target position", _returnTargetPos);
|
||||
// TRACE_1("Adjusted target position",_returnTargetPos);
|
||||
_returnTargetPos;
|
||||
|
@ -31,11 +31,10 @@ private _configLaunchHeightClear = getNumber (_attackConfig >> QGVAR(launchHeigh
|
||||
private _startingStage = if (_configLaunchHeightClear > 0) then {
|
||||
STAGE_LAUNCH; // LOAL-HI / LO
|
||||
} else {
|
||||
if (_seekerTargetPos isEqualTo [0,0,0]) then {
|
||||
STAGE_SEEK_CRUISE; // LOAL-DIR
|
||||
} else {
|
||||
STAGE_ATTACK_CRUISE // LOBL
|
||||
};
|
||||
[
|
||||
STAGE_ATTACK_CRUISE,
|
||||
STAGE_SEEK_CRUISE
|
||||
] select (_seekerTargetPos isEqualTo [0,0,0]);
|
||||
};
|
||||
|
||||
// Set data in param array
|
||||
|
@ -145,7 +145,7 @@ GVAR(no_cams) sort true;
|
||||
GVAR(cam) camCommit 0;
|
||||
|
||||
ctrlSetText [1, format["%1 m", round(GVAR(pos) select 2)]];
|
||||
ctrlSetText [2, format["%1", GVAR(cur_cam) + 1]];
|
||||
ctrlSetText [2, str (GVAR(cur_cam) + 1)];
|
||||
private _cam_time = CBA_missionTime - (GVAR(huntIR) getVariable [QGVAR(startTime), CBA_missionTime]);
|
||||
ctrlSetText [3, format["%1 s", round(_cam_time)]];
|
||||
private _cam_pos = getPosVisual GVAR(huntIR);
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
if (!hasInterface) exitWith { [] };
|
||||
if (!params [["_parentPath", [], [[]]], ["_action", [], [[]], 11]]) exitWith {ERROR("Bad Params"); []};
|
||||
if ((_parentPath param [0, ""]) != "ACE_ZeusActions") exitWith {ERROR_1("Bad path %1 - should have ACE_ZeusActions as base", _parentPath); []};
|
||||
if ((_parentPath param [0, ""]) != "ACE_ZeusActions") exitWith {ERROR_1("Bad path %1 - should have ACE_ZeusActions as base",_parentPath); []};
|
||||
TRACE_2("addActionToZeus",_parentPath,_action);
|
||||
|
||||
private _currentPath = GVAR(ZeusActions);
|
||||
@ -37,7 +37,7 @@ private _pathValid = false;
|
||||
} forEach _currentPath;
|
||||
} forEach _parentPath;
|
||||
|
||||
if (!_pathValid) exitWith {ERROR_1("Bad path %1", _parentPath); []};
|
||||
if (!_pathValid) exitWith {ERROR_1("Bad path %1",_parentPath); []};
|
||||
|
||||
TRACE_1("Adding Action",_currentPath);
|
||||
_currentPath pushBack [_action, []];
|
||||
|
@ -27,7 +27,7 @@ if (isNil "_actionTrees") then {
|
||||
private _parentNode = [_actionTrees, ["ACE_MainActions"]] call FUNC(findActionNode);
|
||||
|
||||
if (isNil {_parentNode}) then {
|
||||
TRACE_2("No Main Action on object", _objectType, _typeNum);
|
||||
TRACE_2("No Main Action on object",_objectType,_typeNum);
|
||||
private _mainAction = ["ACE_MainActions", localize ELSTRING(interaction,MainAction), "", {}, {true}] call FUNC(createAction);
|
||||
[_objectType, _typeNum, [], _mainAction] call EFUNC(interact_menu,addActionToClass);
|
||||
};
|
||||
|
@ -45,7 +45,7 @@ private _recurseFnc = {
|
||||
private _displayName = getText (_entryCfg >> "displayName");
|
||||
private _distance = _parentDistance;
|
||||
if (isNumber (_entryCfg >> "distance")) then {_distance = getNumber (_entryCfg >> "distance");};
|
||||
// if (_distance < _parentDistance) then {WARNING_3("[%1] distance %2 less than parent %3", configName _entryCfg, _distance, _parentDistance);};
|
||||
// if (_distance < _parentDistance) then {WARNING_3("[%1] distance %2 less than parent %3",configName _entryCfg,_distance,_parentDistance);};
|
||||
private _icon = if (isArray (_entryCfg >> "icon")) then {
|
||||
getArray (_entryCfg >> "icon");
|
||||
} else {
|
||||
@ -74,7 +74,7 @@ private _recurseFnc = {
|
||||
if (_condition isEqualTo "") then {_condition = "true"};
|
||||
} else {
|
||||
// Add canInteract (including exceptions) and canInteractWith to condition
|
||||
private _canInteractCondition = format [QUOTE([ARR_3(ACE_player,_target,%1)] call EFUNC(common,canInteractWith)), getArray (_entryCfg >> "exceptions")];
|
||||
private _canInteractCondition = format [QUOTE([ARR_3(ACE_player,_target,%1)] call EFUNC(common,canInteractWith)),getArray (_entryCfg >> "exceptions")];
|
||||
private _conditionFormatPattern = ["%1 && {%2}", "%2"] select (_condition isEqualTo "" || {_condition == "true"});
|
||||
_condition = format [_conditionFormatPattern, _condition, _canInteractCondition];
|
||||
};
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user