mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
auto add blown off turrets to curator
This commit is contained in:
parent
95409f6772
commit
2b4c5f9c49
@ -14,12 +14,14 @@ class CfgVehicles {
|
|||||||
_generalMacro = QGVAR(TurretDummy);
|
_generalMacro = QGVAR(TurretDummy);
|
||||||
scope = 1;
|
scope = 1;
|
||||||
model = "\A3\Structures_F\Wrecks\Wreck_Slammer_turret_F.p3d";
|
model = "\A3\Structures_F\Wrecks\Wreck_Slammer_turret_F.p3d";
|
||||||
|
icon = "\A3\armor_f_gamma\MBT_01\Data\ui\map_slammer_mk4_ca.paa";
|
||||||
};
|
};
|
||||||
class GVAR(Turret_MBT_02): ThingX {
|
class GVAR(Turret_MBT_02): ThingX {
|
||||||
author = ECSTRING(common,ACETeam);
|
author = ECSTRING(common,ACETeam);
|
||||||
_generalMacro = QGVAR(TurretDummy);
|
_generalMacro = QGVAR(TurretDummy);
|
||||||
scope = 1;
|
scope = 1;
|
||||||
model = "\A3\Structures_F\Wrecks\Wreck_T72_turret_F.p3d";
|
model = "\A3\Structures_F\Wrecks\Wreck_T72_turret_F.p3d";
|
||||||
|
icon = "\A3\armor_f_gamma\MBT_02\Data\UI\map_MBT_02_ca.paa";
|
||||||
};
|
};
|
||||||
|
|
||||||
class Tank;
|
class Tank;
|
||||||
|
@ -8,37 +8,45 @@ GVAR(cacheTankDuplicates) = call CBA_fnc_createNamespace;
|
|||||||
// cookoff and burning engine
|
// cookoff and burning engine
|
||||||
["Tank", "init", {
|
["Tank", "init", {
|
||||||
params ["_vehicle"];
|
params ["_vehicle"];
|
||||||
|
|
||||||
private _typeOf = typeOf _vehicle;
|
private _typeOf = typeOf _vehicle;
|
||||||
|
|
||||||
if (isNil {GVAR(cacheTankDuplicates) getVariable _typeOf}) then {
|
if (isNil {GVAR(cacheTankDuplicates) getVariable _typeOf}) then {
|
||||||
private _hitpoints = (getAllHitPointsDamage _vehicle param [0, []]) apply {toLower _x};
|
private _hitpoints = (getAllHitPointsDamage _vehicle param [0, []]) apply {toLower _x};
|
||||||
private _duplicateHitpoints = [];
|
private _duplicateHitpoints = [];
|
||||||
|
|
||||||
{
|
{
|
||||||
if ((_x != "") && {_x in (_hitpoints select [0,_forEachIndex])}) then {
|
if ((_x != "") && {_x in (_hitpoints select [0,_forEachIndex])}) then {
|
||||||
_duplicateHitpoints pushBack _forEachIndex;
|
_duplicateHitpoints pushBack _forEachIndex;
|
||||||
};
|
};
|
||||||
} forEach _hitpoints;
|
} forEach _hitpoints;
|
||||||
|
|
||||||
TRACE_2("dupes",_typeOf,_duplicateHitpoints);
|
TRACE_2("dupes",_typeOf,_duplicateHitpoints);
|
||||||
GVAR(cacheTankDuplicates) setVariable [_typeOf, _duplicateHitpoints];
|
GVAR(cacheTankDuplicates) setVariable [_typeOf, _duplicateHitpoints];
|
||||||
};
|
};
|
||||||
|
|
||||||
_vehicle addEventHandler ["HandleDamage", {
|
_vehicle addEventHandler ["HandleDamage", {
|
||||||
if ((_this select 0) getVariable [QGVAR(enable),GVAR(enable)]) then {
|
if ((_this select 0) getVariable [QGVAR(enable), GVAR(enable)]) then {
|
||||||
["tank", _this] call FUNC(handleDamage);
|
["tank", _this] call FUNC(handleDamage);
|
||||||
};
|
};
|
||||||
}];
|
}];
|
||||||
}, nil, nil, true] call CBA_fnc_addClassEventHandler;
|
}, nil, nil, true] call CBA_fnc_addClassEventHandler;
|
||||||
|
|
||||||
["Wheeled_APC_F", "init", {
|
["Wheeled_APC_F", "init", {
|
||||||
(_this select 0) addEventHandler ["HandleDamage", {
|
params ["_vehicle"];
|
||||||
if ((_this select 0) getVariable [QGVAR(enable),GVAR(enable)]) then {
|
|
||||||
|
_vehicle addEventHandler ["HandleDamage", {
|
||||||
|
if ((_this select 0) getVariable [QGVAR(enable), GVAR(enable)]) then {
|
||||||
["tank", _this] call FUNC(handleDamage);
|
["tank", _this] call FUNC(handleDamage);
|
||||||
};
|
};
|
||||||
}];
|
}];
|
||||||
}, nil, nil, true] call CBA_fnc_addClassEventHandler;
|
}, nil, nil, true] call CBA_fnc_addClassEventHandler;
|
||||||
|
|
||||||
["Car", "init", {
|
["Car", "init", {
|
||||||
(_this select 0) addEventHandler ["HandleDamage", {
|
params ["_vehicle"];
|
||||||
if ((_this select 0) getVariable [QGVAR(enable),GVAR(enable)]) then {
|
|
||||||
|
_vehicle addEventHandler ["HandleDamage", {
|
||||||
|
if ((_this select 0) getVariable [QGVAR(enable), GVAR(enable)]) then {
|
||||||
["car", _this] call FUNC(handleDamage);
|
["car", _this] call FUNC(handleDamage);
|
||||||
};
|
};
|
||||||
}];
|
}];
|
||||||
@ -46,14 +54,31 @@ GVAR(cacheTankDuplicates) = call CBA_fnc_createNamespace;
|
|||||||
|
|
||||||
// secondary explosions
|
// secondary explosions
|
||||||
["AllVehicles", "killed", {
|
["AllVehicles", "killed", {
|
||||||
if ((_this select 0) getVariable [QGVAR(enable),GVAR(enable)]) then {
|
params ["_vehicle"];
|
||||||
(_this select 0) call FUNC(secondaryExplosions);
|
|
||||||
|
if (_vehicle getVariable [QGVAR(enable), GVAR(enable)]) then {
|
||||||
|
_vehicle call FUNC(secondaryExplosions);
|
||||||
};
|
};
|
||||||
}, nil, ["Man"]] call CBA_fnc_addClassEventHandler;
|
}, nil, ["Man"]] call CBA_fnc_addClassEventHandler;
|
||||||
|
|
||||||
// blow off turret effect
|
// blow off turret effect
|
||||||
["Tank", "killed", {
|
["Tank", "killed", {
|
||||||
if ((_this select 0) getVariable [QGVAR(enable),GVAR(enable)]) then {
|
params ["_vehicle"];
|
||||||
(_this select 0) call FUNC(blowOffTurret);
|
|
||||||
|
if (_vehicle getVariable [QGVAR(enable), GVAR(enable)]) then {
|
||||||
|
_vehicle call FUNC(blowOffTurret);
|
||||||
};
|
};
|
||||||
}] call CBA_fnc_addClassEventHandler;
|
}] call CBA_fnc_addClassEventHandler;
|
||||||
|
|
||||||
|
// event to add a turret to a curator if the vehicle already belonged to that curator
|
||||||
|
if (isServer) then {
|
||||||
|
[QGVAR(addTurretToEditable), {
|
||||||
|
params ["_vehicle", "_turret"];
|
||||||
|
|
||||||
|
{
|
||||||
|
if (_vehicle in curatorEditableObjects _x) then {
|
||||||
|
_x addCuratorEditableObjects [[_turret], false];
|
||||||
|
};
|
||||||
|
} forEach allCurators;
|
||||||
|
}] call CBA_fnc_addEventHandler;
|
||||||
|
};
|
||||||
|
@ -30,4 +30,7 @@
|
|||||||
|
|
||||||
_turret setVectorUp [random 1, random 1, 1];
|
_turret setVectorUp [random 1, random 1, 1];
|
||||||
_turret setVelocity [random 7, random 7, 8 + random 5];
|
_turret setVelocity [random 7, random 7, 8 + random 5];
|
||||||
|
|
||||||
|
// add turret to all curators that already own the wreck
|
||||||
|
[QGVAR(addTurretToEditable), [_vehicle, _turret]] call CBA_fnc_serverEvent;
|
||||||
}, _this, 1] call CBA_fnc_waitAndExecute;
|
}, _this, 1] call CBA_fnc_waitAndExecute;
|
||||||
|
Loading…
Reference in New Issue
Block a user