From 0c4924259dd348b4524e98cb44ac99dce99331d8 Mon Sep 17 00:00:00 2001 From: IngoKauffmann Date: Sat, 15 Aug 2015 18:43:13 +0200 Subject: [PATCH 01/25] Initial code --- addons/rearm/$PBOPREFIX$ | 1 + addons/rearm/ACE_Settings.hpp | 9 + addons/rearm/CfgAmmo.hpp | 196 ++++++++++++++++++ addons/rearm/CfgEventHandlers.hpp | 5 + addons/rearm/CfgVehicles.hpp | 125 +++++++++++ addons/rearm/XEH_preInit.sqf | 15 ++ addons/rearm/config.cpp | 18 ++ .../rearm/functions/fnc_addRearmActions.sqf | 65 ++++++ addons/rearm/functions/fnc_canPickUpAmmo.sqf | 21 ++ addons/rearm/functions/fnc_canRearm.sqf | 81 ++++++++ .../rearm/functions/fnc_getMaxMagazines.sqf | 87 ++++++++ .../functions/fnc_moduleRearmSettings.sqf | 22 ++ addons/rearm/functions/fnc_pickUpAmmo.sqf | 58 ++++++ addons/rearm/functions/fnc_pickUpSuccess.sqf | 23 ++ addons/rearm/functions/fnc_rearm.sqf | 115 ++++++++++ addons/rearm/functions/fnc_rearmSuccess.sqf | 58 ++++++ addons/rearm/functions/script_component.hpp | 6 + addons/rearm/script_component.hpp | 4 + addons/rearm/stringtable.xml | 45 ++++ addons/rearm/ui/icon_module_rearm.paa | Bin 0 -> 11096 bytes addons/rearm/ui/icon_rearm_interact.paa | Bin 0 -> 11096 bytes 21 files changed, 954 insertions(+) create mode 100644 addons/rearm/$PBOPREFIX$ create mode 100644 addons/rearm/ACE_Settings.hpp create mode 100644 addons/rearm/CfgAmmo.hpp create mode 100644 addons/rearm/CfgEventHandlers.hpp create mode 100644 addons/rearm/CfgVehicles.hpp create mode 100644 addons/rearm/XEH_preInit.sqf create mode 100644 addons/rearm/config.cpp create mode 100644 addons/rearm/functions/fnc_addRearmActions.sqf create mode 100644 addons/rearm/functions/fnc_canPickUpAmmo.sqf create mode 100644 addons/rearm/functions/fnc_canRearm.sqf create mode 100644 addons/rearm/functions/fnc_getMaxMagazines.sqf create mode 100644 addons/rearm/functions/fnc_moduleRearmSettings.sqf create mode 100644 addons/rearm/functions/fnc_pickUpAmmo.sqf create mode 100644 addons/rearm/functions/fnc_pickUpSuccess.sqf create mode 100644 addons/rearm/functions/fnc_rearm.sqf create mode 100644 addons/rearm/functions/fnc_rearmSuccess.sqf create mode 100644 addons/rearm/functions/script_component.hpp create mode 100644 addons/rearm/script_component.hpp create mode 100644 addons/rearm/stringtable.xml create mode 100644 addons/rearm/ui/icon_module_rearm.paa create mode 100644 addons/rearm/ui/icon_rearm_interact.paa diff --git a/addons/rearm/$PBOPREFIX$ b/addons/rearm/$PBOPREFIX$ new file mode 100644 index 0000000000..7acbc38009 --- /dev/null +++ b/addons/rearm/$PBOPREFIX$ @@ -0,0 +1 @@ +z\ace\addons\rearm \ No newline at end of file diff --git a/addons/rearm/ACE_Settings.hpp b/addons/rearm/ACE_Settings.hpp new file mode 100644 index 0000000000..63e53cf4f6 --- /dev/null +++ b/addons/rearm/ACE_Settings.hpp @@ -0,0 +1,9 @@ +class ACE_Settings { + class GVAR(level) { + displayName = LSTRING(RearmSettings_level_DisplayName); + description = LSTRING(RearmSettings_level_Description); + value = 1; + typeName = "SCALAR"; + values[] = {LSTRING(RearmSettings_vehicle), LSTRING(RearmSettings_magazine), LSTRING(RearmSettings_caliber)}; + }; +}; diff --git a/addons/rearm/CfgAmmo.hpp b/addons/rearm/CfgAmmo.hpp new file mode 100644 index 0000000000..bb75946f0e --- /dev/null +++ b/addons/rearm/CfgAmmo.hpp @@ -0,0 +1,196 @@ +class CfgAmmo { + + class BombCore; + class BombBase : BombCore { + ace_logistics_caliber = 250; // Default caliber for bombs + }; + class LaserBombCore : BombCore { + ace_logistics_caliber = 250; // Default caliber for bombs + }; + class MissileCore; + class MissileBase : MissileCore { + ace_logistics_caliber = 250; // Default caliber for missiles + }; + class Rocket_04_HE_F : MissileBase { + ace_logistics_caliber = 70; + }; + class M_PG_AT : MissileBase { + ace_logistics_caliber = 100; + }; + class ACE_Hydra70_DAGR : M_PG_AT { + ace_logistics_caliber = 70; + }; + + class RocketCore; + class RocketBase : RocketCore { + ace_logistics_caliber = 70; // Default caliber for rockets + }; + class R_80mm_HE : RocketBase { + ace_logistics_caliber = 80; + }; + class R_60mm_HE : R_80mm_HE { + ace_logistics_caliber = 60; + }; + + class BulletBase; + + class B_19mm_HE : BulletBase { + ace_logistics_caliber = 19; + }; + + class B_20mm : BulletBase { + ace_logistics_caliber = 20; + }; + + class B_25mm : BulletBase { + ace_logistics_caliber = 25; + }; + + class B_30mm_AP : BulletBase { + ace_logistics_caliber = 30; + }; + class B_30mm_HE : B_19mm_HE { + ace_logistics_caliber = 30; + }; + class Gatling_30mm_HE_Plane_CAS_01_F : BulletBase { + ace_logistics_caliber = 30; + }; + + class B_35mm_AA : BulletBase { + ace_logistics_caliber = 35; + }; + + class B_30mm_APFSDS; + class B_40mm_APFSDS : B_30mm_APFSDS { + ace_logistics_caliber = 40; + }; + + class B_40mm_GPR : B_30mm_HE { + ace_logistics_caliber = 40; + }; + + class GrenadeBase; + class G_40mm_HE : GrenadeBase { + ace_logistics_caliber = 40; + }; + + class RDS_B_127x107_Ball : BulletBase { + ace_logistics_caliber = 12.7; + }; + + class ShellBase; + class Sh_120mm_APFSDS : Shellbase { + ace_logistics_caliber = 120; + }; + class Sh_105mm_APFSDS : Sh_120mm_APFSDS { + ace_logistics_caliber = 105; + }; + class Sh_125mm_APFSDS : Sh_120mm_APFSDS { + ace_logistics_caliber = 125; + }; + + class Sh_120mm_HE : ShellBase { + ace_logistics_caliber = 120; + }; + class Sh_125mm_HE : Sh_120mm_HE { + ace_logistics_caliber = 125; + }; + class Sh_125mm_HEAT : Sh_125mm_HE { + ace_logistics_caliber = 125; + }; + class Sh_105mm_HEAT_MP : Sh_125mm_HEAT { + ace_logistics_caliber = 105; + }; + + class Sh_155mm_AMOS : ShellBase { + ace_logistics_caliber = 155; + }; + class Sh_82mm_AMOS : Sh_155mm_AMOS { + ace_logistics_caliber = 82; + }; + class RDS_Sh_122_HE : Sh_155mm_AMOS { + ace_logistics_caliber = 122; + }; + class RDS_Sh_105_HE : Sh_155mm_AMOS { + ace_logistics_caliber = 105; + }; + + class Sh_82mm_AMOS_LG; + class Sh_155mm_AMOS_LG : Sh_82mm_AMOS_LG { + ace_logistics_caliber = 155; + }; + class RDS_Sh_122_LASER : Sh_155mm_AMOS_LG { + ace_logistics_caliber = 122; + }; + class RDS_Sh_105_LASER : Sh_155mm_AMOS_LG { + ace_logistics_caliber = 105; + }; + + class ShotDeployBase; + class Smoke_82mm_AMOS_White : ShotDeployBase { + ace_logistics_caliber = 82; + }; + + class FlareCore; + class Flare_82mm_AMOS_White : FlareCore { + ace_logistics_caliber = 82; + }; + + class SmokeLauncherAmmo : BulletBase { + ace_logistics_caliber = 250; + }; + + class CMflareAmmo : BulletBase { + ace_logistics_caliber = 40; + }; + + class SubmunitionBase; + class Sh_82mm_AMOS_guided : SubmunitionBase { + ace_logistics_caliber = 82; + }; + class Sh_155mm_AMOS_guided : Sh_82mm_AMOS_guided { + ace_logistics_caliber = 155; + }; + class R_230mm_HE : SubmunitionBase { + ace_logistics_caliber = 230; + }; + class rhs_ammo_127x108mm_x5 : SubmunitionBase { + ace_logistics_caliber = 12.7; + }; + class Mine_155mm_AMOS_range : SubmunitionBase { + ace_logistics_caliber = 155; + }; + class Cluster_155mm_AMOS : SubmunitionBase { + ace_logistics_caliber = 155; + }; + class Smoke_120mm_AMOS_White : SubmunitionBase { + ace_logistics_caliber = 155; + }; + class AT_Mine_155mm_AMOS_range : SubmunitionBase { + ace_logistics_caliber = 155; + }; + + class rhs_ammo_rpgShell_base : ShellBase { + ace_logistics_caliber = 70; + }; + + class Bomb_04_F : LaserBombCore { + ace_logistics_caliber = 250; // Default caliber for bombs + }; + class Bo_GBU12_LGB : LaserBombCore { + ace_logistics_caliber = 250; // Default caliber for bombs + }; + class js_a_fa18_wing_tank : LaserBombCore { + ace_logistics_caliber = 250; // Default caliber for bombs + }; + + class js_a_fa18x_MK82 : BombCore {}; + class js_a_fa18x_GBU39_SDB : js_a_fa18x_MK82 { + ace_logistics_caliber = 250; // Default caliber for bombs + }; + + class js_a_fa18_GBU12_LGB : LaserBombCore {}; + class js_a_fa18_GBU38_JDAM : js_a_fa18_GBU12_LGB { + ace_logistics_caliber = 250; // Default caliber for bombs + }; +}; diff --git a/addons/rearm/CfgEventHandlers.hpp b/addons/rearm/CfgEventHandlers.hpp new file mode 100644 index 0000000000..b928bc2de6 --- /dev/null +++ b/addons/rearm/CfgEventHandlers.hpp @@ -0,0 +1,5 @@ +class Extended_PreInit_EventHandlers { + class ADDON { + init = QUOTE(call COMPILE_FILE(XEH_preInit)); + }; +}; diff --git a/addons/rearm/CfgVehicles.hpp b/addons/rearm/CfgVehicles.hpp new file mode 100644 index 0000000000..10d22b0527 --- /dev/null +++ b/addons/rearm/CfgVehicles.hpp @@ -0,0 +1,125 @@ +#define REARM_ACTION_DISTANCE 4.5 +#define MACRO_REARM_ACTIONS \ + class ACE_Actions { \ + class ACE_MainActions { \ + displayName = ECSTRING(interaction,MainAction); \ + selection = ""; \ + distance = 10; \ + condition = "true"; \ + class GVAR(rearm) { \ + displayName = CSTRING(rearm); \ + distance = REARM_ACTION_DISTANCE; \ + condition = QUOTE([ARR_2(_player,_target)] call FUNC(canRearm)); \ + statement = QUOTE([ARR_2(_player,_target)] call FUNC(rearm)); \ + exceptions[] = {"isNotInside"}; \ + icon = PATHTOF(ui\icon_rearm_interact.paa); \ + }; \ + }; \ + }; + +#define MACRO_REARM_PICKUPAMMO \ + class ACE_Actions : ACE_Actions { \ + class ACE_MainActions : ACE_MainActions { \ + class GVAR(pickUpAmmo) { \ + displayName = CSTRING(pickUpAmmo); \ + distance = REARM_ACTION_DISTANCE; \ + condition = QUOTE([ARR_2(_player,_target)] call FUNC(canPickUpAmmo)); \ + insertChildren = QUOTE([ARR_1(_target)] call DFUNC(addRearmActions)); \ + exceptions[] = {"isNotInside"}; \ + icon = PATHTOF(ui\icon_rearm_interact.paa); \ + }; \ + }; \ + }; + +class CfgVehicles { + class ACE_Module; + class ACE_moduleRearmSettings : ACE_Module { + scope = 2; + displayName = CSTRING(RearmSettings_Module_DisplayName); + icon = QUOTE(PATHTOF(ui\icon_module_rearm.paa)); + category = "ACE"; + function = QUOTE(DFUNC(moduleRearmSettings)); + functionPriority = 1; + isGlobal = 0; + isTriggerActivated = 0; + author = ECSTRING(common,ACETeam); + class Arguments { + class level { + displayName = CSTRING(RearmSettings_level_DisplayName); + description = CSTRING(RearmSettings_level_Description); + typeName = "NUMBER"; + class values { + class vehicle { + name = CSTRING(RearmSettings_vehicle); + value = 0; + }; + class magazine { + name = CSTRING(RearmSettings_magazine); + value = 1; + }; + class caliber { + name = CSTRING(RearmSettings_caliber); + value = 2; + default = 1; + }; + }; + }; + }; + }; + + class LandVehicle; + class Car : LandVehicle { + MACRO_REARM_ACTIONS + }; + + class Tank : LandVehicle { + MACRO_REARM_ACTIONS + }; + + class StaticWeapon : LandVehicle { + MACRO_REARM_ACTIONS + }; + + class Air; + class Helicopter : Air { + MACRO_REARM_ACTIONS + }; + + class Plane : Air { + MACRO_REARM_ACTIONS + }; + + class Ship; + class Ship_F : Ship { + MACRO_REARM_ACTIONS + }; + + class Car_F : Car {}; + class Truck_F : Car_F {}; + class Truck_01_base_F: Truck_F {}; + class Truck_02_base_F : Truck_F {}; + class Truck_03_base_F : Truck_F {}; + + class B_Truck_01_transport_F : Truck_01_base_F {}; + class B_Truck_01_mover_F: B_Truck_01_transport_F {}; + + class I_Truck_02_ammo_F : Truck_02_base_F { + transportAmmo = 0; + MACRO_REARM_PICKUPAMMO + }; + + class B_Truck_01_ammo_F : B_Truck_01_mover_F { + transportAmmo = 0; + MACRO_REARM_PICKUPAMMO + }; + + class O_Truck_02_Ammo_F : Truck_02_base_F { + transportAmmo = 0; + MACRO_REARM_PICKUPAMMO + }; + + class O_Truck_03_ammo_F : Truck_03_base_F { + transportAmmo = 0; + MACRO_REARM_PICKUPAMMO + }; +}; diff --git a/addons/rearm/XEH_preInit.sqf b/addons/rearm/XEH_preInit.sqf new file mode 100644 index 0000000000..70dd9327ac --- /dev/null +++ b/addons/rearm/XEH_preInit.sqf @@ -0,0 +1,15 @@ +#include "script_component.hpp" + +ADDON = false; + +PREP(addRearmActions); +PREP(canRearm); +PREP(canPickupAmmo); +PREP(getMaxMagazines); +PREP(pickUpAmmo); +PREP(pickUpSuccess); +PREP(rearm); +PREP(rearmSuccess); +PREP(moduleRearmSettings); + +ADDON = true; diff --git a/addons/rearm/config.cpp b/addons/rearm/config.cpp new file mode 100644 index 0000000000..1d7083b2a4 --- /dev/null +++ b/addons/rearm/config.cpp @@ -0,0 +1,18 @@ +#include "script_component.hpp" + +class CfgPatches { + class ADDON { + units[] = {}; + weapons[] = {}; + requiredVersion = REQUIRED_VERSION; + requiredAddons[] = {"ace_interaction"}; + author[] = {"GitHawk"}; + authorUrl = ""; + VERSION_CONFIG; + }; +}; + +#include "CfgEventHandlers.hpp" +#include "CfgVehicles.hpp" +#include "CfgAmmo.hpp" +#include "ACE_Settings.hpp" \ No newline at end of file diff --git a/addons/rearm/functions/fnc_addRearmActions.sqf b/addons/rearm/functions/fnc_addRearmActions.sqf new file mode 100644 index 0000000000..1bd9b064f2 --- /dev/null +++ b/addons/rearm/functions/fnc_addRearmActions.sqf @@ -0,0 +1,65 @@ +/* + * Author: GitHawk + * Show the resupplyable ammunition of all surrounding vehicles. + * Called from "insertChildren" on interact_menu + * + * Argument: + * 0: Target + * + * Return value: + * ChildActions + * + * Example: + * [tank] call ace_rearm_fnc_addRearmActions + * + * Public: No + */ +#include "script_component.hpp" + +private ["_vehicleActions", "_actions", "_action", "_vehicles", "_vehicle", "_needToAdd", "_magazineHelper", "_turretPath", "_magazines", "_magazine", "_icon"]; +params ["_target"]; + +_vehicles = nearestObjects [_target, ["AllVehicles"], 20]; +if (count _vehicles < 2) exitWith {false}; // Logistics needs at least 2 vehicles + +_vehicleActions = []; +{ + _actions = []; + _vehicle = _x; + _needToAdd = false; + _action = []; + if !(_vehicle == _target) then { + _magazineHelper = []; + { + _turretPath = _x; + _magazines = _vehicle magazinesTurret _turretPath; + { + _magazine = _x; + _cnt = { _x == _magazine } count (_vehicle magazinesTurret _turretPath); + if ((_cnt < ([_vehicle, _turretPath, _magazine] call FUNC(getMaxMagazines))) && !(_magazine in _magazineHelper)) then { + _action = [_magazine, getText(configFile >> "CfgMagazines" >> _magazine >> "displayName"), getText(configFile >> "CfgMagazines" >> _magazine >> "picture"), {_this call FUNC(pickUpAmmo)}, {true}, {}, [_magazine, _vehicle]] call EFUNC(interact_menu,createAction); + _actions pushBack [_action, [], _target]; + _magazineHelper pushBack _magazine; + _needToAdd = true; + } else { + if (((_vehicle magazineTurretAmmo [_magazine, _turretPath]) < getNumber (configFile >> "CfgMagazines" >> _magazine >> "count")) && !(_magazine in _magazineHelper)) then { + _action = [_magazine, getText(configFile >> "CfgMagazines" >> _magazine >> "displayName"), getText(configFile >> "CfgMagazines" >> _magazine >> "picture"), {_this call FUNC(pickUpAmmo)}, {true}, {}, [_magazine, _vehicle]] call EFUNC(interact_menu,createAction); + _actions pushBack [_action, [], _target]; + _magazineHelper pushBack _magazine; + _needToAdd = true; + }; + }; + } foreach _magazines; + } foreach [[0], [-1], [0,0], [0,1], [1], [2]]; + }; + if (_needToAdd) then { + _icon = getText(configFile >> "CfgVehicles" >> (typeOf _vehicle) >> "Icon"); + if !((_icon select [0, 1]) == "\") then { + _icon = ""; + }; + _action = [_vehicle, getText(configFile >> "CfgVehicles" >> (typeOf _vehicle) >> "displayName"), _icon, "", {true}, {}, []] call EFUNC(interact_menu,createAction); + _vehicleActions pushBack [_action, _actions, _target]; + }; +} foreach _vehicles; + +_vehicleActions diff --git a/addons/rearm/functions/fnc_canPickUpAmmo.sqf b/addons/rearm/functions/fnc_canPickUpAmmo.sqf new file mode 100644 index 0000000000..b4e72f51fa --- /dev/null +++ b/addons/rearm/functions/fnc_canPickUpAmmo.sqf @@ -0,0 +1,21 @@ +/* + * Author: GitHawk + * Check if a unit can pick up ammo + * + * Arguments: + * 0: The Player + * 1: The Target + * + * Return Value: + * Can rearm + * + * Example: + * [tank] call ace_rearm_fnc_canPickUpAmmo + * + * Public: No + */ +#include "script_component.hpp" + +params ["_unit", "_target"]; + +!(isNull ace_player || {!(ace_player isKindOf "CAManBase")} || {!local ace_player} || { (_target distance ace_player) > 7}) diff --git a/addons/rearm/functions/fnc_canRearm.sqf b/addons/rearm/functions/fnc_canRearm.sqf new file mode 100644 index 0000000000..1e0e75cc0c --- /dev/null +++ b/addons/rearm/functions/fnc_canRearm.sqf @@ -0,0 +1,81 @@ +/* + * Author: GitHawk + * Check if a unit can rearm + * + * Arguments: + * 0: The unit + * 1: The target + * + * Return Value: + * Can rearm + * + * Example: + * [player, tank] call ace_rearm_fnc_canRearm + * + * Public: No + */ +#include "script_component.hpp" + +private ["_vehicles", "_magazine", "_magazines", "_path", "_return", "_cnt"]; +params ["_unit", "_vehicle"]; + +#define GETRETURNVALUE \ +if ((_vehicle magazineTurretAmmo [_magazine, _path]) < getNumber (configFile >> "CfgMagazines" >> _magazine >> "count")) then { \ + _return = true; \ +} else { \ + _cnt = { _x == _magazine } count _magazines; \ + if (_cnt < ([_vehicle, _path, _magazine] call FUNC(getMaxMagazines))) then { \ + _return = true; \ + }; \ +}; + +if (isNull _unit || {!(_unit isKindOf "CAManBase")} || {!local _unit} || { (_vehicle distance _unit) > 7}) exitWith {false}; + +_magazine = _unit getVariable QGVAR(carriedMagazine); +if (isNil "_magazine") exitWith {false}; + +// TODO move into loop + +_return = false; +_magazines = _vehicle magazinesTurret [-1]; +if (_magazine in _magazines) then { + _path = [-1]; + GETRETURNVALUE +}; +if (!_return) then { + _magazines = _vehicle magazinesTurret [0]; + if (_magazine in _magazines) then { + _path = [0]; + GETRETURNVALUE + }; +}; +if (!_return) then { + _magazines = _vehicle magazinesTurret [0,0]; + if (_magazine in _magazines) then { + _path = [0,0]; + GETRETURNVALUE + }; +}; +if (!_return) then { + _magazines = _vehicle magazinesTurret [0,1]; + if (_magazine in _magazines) then { + _path = [0,1]; + GETRETURNVALUE + }; +}; +if (!_return) then { + _magazines = _vehicle magazinesTurret [1]; + if (_magazine in _magazines) then { + _path = [1]; + GETRETURNVALUE + }; +}; +if (!_return) then { + _magazines = _vehicle magazinesTurret [2]; + if (_magazine in _magazines) then { + _path = [2]; + GETRETURNVALUE + }; +}; + +_return \ No newline at end of file diff --git a/addons/rearm/functions/fnc_getMaxMagazines.sqf b/addons/rearm/functions/fnc_getMaxMagazines.sqf new file mode 100644 index 0000000000..4c5f5b2544 --- /dev/null +++ b/addons/rearm/functions/fnc_getMaxMagazines.sqf @@ -0,0 +1,87 @@ +/* + * Author: GitHawk + * Calculates the maximum number of magazines a turret can hold according to config + * + * Arguments: + * 0: The Unit + * 1: The Turretpath + * 2: The Magazine + * + * Return Value: + * Number of magazines on the turret path + * + * Example: + * [vehicle, [0], "500Rnd_127x99_mag_Tracer_Red"] call ace_rearm_fnc_getMaxMagazines + * + * Public: No + */ +#include "script_component.hpp" + +private ["_count", "_cfg"]; +params ["_target", "_turretPath", "_magazine"]; + +if (isNull _target) exitWith {0}; +_count = 0; + +// TODO replace by loop or method of interpreting _turretPath + +_cfg = configFile; +switch (_turretPath) do { + case [0] : { + _cfg = configFile >> "CfgVehicles" >> (typeOf _target) >> "Turrets"; + if (count _cfg > 0) then { + _cfg = _cfg select 0; + } else { + _cfg = configFile >> "CfgVehicles" >> (typeOf _target); + }; + }; + case [1] : { + _cfg = configFile >> "CfgVehicles" >> (typeOf _target) >> "Turrets"; + if (count _cfg > 0) then { + _cfg = _cfg select 1; + } else { + _cfg = configFile >> "CfgVehicles" >> (typeOf _target); + }; + }; + case [2] : { + _cfg = configFile >> "CfgVehicles" >> (typeOf _target) >> "Turrets"; + if (count _cfg > 0) then { + _cfg = _cfg select 2; + } else { + _cfg = configFile >> "CfgVehicles" >> (typeOf _target); + }; + }; + case [0,0] : { + _cfg = configFile >> "CfgVehicles" >> (typeOf _target) >> "Turrets"; + if (count _cfg > 0) then { + _cfg = (_cfg select 0) >> "Turrets"; + if (count _cfg > 0) then { + _cfg = _cfg select 0; + } else { + _cfg = configFile >> "CfgVehicles" >> (typeOf _target); + }; + } else { + _cfg = configFile >> "CfgVehicles" >> (typeOf _target); + }; + }; + case [0,1] : { + if (count _cfg > 0) then { + _cfg = (_cfg select 0) >> "Turrets"; + if (count _cfg > 0) then { + _cfg = _cfg select 1; + } else { + _cfg = configFile >> "CfgVehicles" >> (typeOf _target); + }; + } else { + _cfg = configFile >> "CfgVehicles" >> (typeOf _target); + }; + }; + default { + _cfg = configFile >> "CfgVehicles" >> (typeOf _target); + }; +}; + +if !(isClass _cfg) exitWith {0}; + +_count = {_x == _magazine} count getArray (_cfg >> "magazines"); +_count \ No newline at end of file diff --git a/addons/rearm/functions/fnc_moduleRearmSettings.sqf b/addons/rearm/functions/fnc_moduleRearmSettings.sqf new file mode 100644 index 0000000000..7325a8ddaf --- /dev/null +++ b/addons/rearm/functions/fnc_moduleRearmSettings.sqf @@ -0,0 +1,22 @@ +/* + * Author: GitHawk + * Module for adjusting the refuel settings + * + * Arguments: + * 0: The module logic + * 1: units + * 2: activated + * + * Return Value: + * None + * + * Public: No + */ + +#include "script_component.hpp" + +params ["_logic", "_units", "_activated"]; + +if !(_activated) exitWith {}; + +[_logic, QGVAR(level), "level"] call EFUNC(common,readSettingFromModule); diff --git a/addons/rearm/functions/fnc_pickUpAmmo.sqf b/addons/rearm/functions/fnc_pickUpAmmo.sqf new file mode 100644 index 0000000000..38dc38c945 --- /dev/null +++ b/addons/rearm/functions/fnc_pickUpAmmo.sqf @@ -0,0 +1,58 @@ +/* + * Author: GitHawk + * Picks up a specific kind of magazine from an ammo truck + * + * Arguments: + * 0: The Ammo Truck + * 1: The Player + * 2: The Params + * 2,0: The Magazine + * 2,1: The Vehicle to be armed + * + * Return Value: + * None + * + * Example: + * [ammo_truck, player, ["500Rnd_127x99_mag_Tracer_Red", tank]] call ace_rearm_fnc_pickUpAmmo + * + * Public: No + */ +#include "script_component.hpp" + +private ["_ammo", "_tmpCal", "_cal"]; +params ["_target","_unit","_args"]; +_args params ["_magazine", "_vehicle"]; + +_ammo = getText (configFile >> "CfgMagazines" >> _magazine >> "ammo"); +_tmpCal = getNumber (configFile >> "CfgAmmo" >> _ammo >> "ace_caliber"); +_cal = 8; +if (_tmpCal > 0) then { + _cal = _tmpCal; +} else { + _tmpCal = getNumber (configFile >> "CfgAmmo" >> _ammo >> "ace_logistics_caliber"); + if (_tmpCal > 0) then { + _cal = _tmpCal; + } else { + diag_log format ["ACE_Logistics: Undefined Ammo [%1 : %2]", _ammo, inheritsFrom (configFile >> "CfgAmmo" >> _ammo)]; + if (_ammo isKindOf "BulletBase") then { + _cal = 8; + } else { + _cal = 100; + }; + }; +}; +_cal = round _cal; +_idx = CALIBERS find _cal; +if (_idx == -1 ) then { + _idx = 2; +}; + +[ + (DURATION_PICKUP select _idx), + [_unit, _magazine], + FUNC(pickUpSuccess), + "", + format [localize LSTRING(PickUpAction), getText(configFile >> "CfgMagazines" >> _magazine >> "displayName"), getText(configFile >> "CfgVehicles" >> (typeOf _vehicle) >> "displayName")], + {true}, + ["isnotinside"] +] call EFUNC(common,progressBar); \ No newline at end of file diff --git a/addons/rearm/functions/fnc_pickUpSuccess.sqf b/addons/rearm/functions/fnc_pickUpSuccess.sqf new file mode 100644 index 0000000000..114cb99047 --- /dev/null +++ b/addons/rearm/functions/fnc_pickUpSuccess.sqf @@ -0,0 +1,23 @@ +/* + * Author: GitHawk + * Picks up a magazine + * + * Arguments: + * 0: The Params + * 0,0: The Unit + * 0,1: The Magazine + * + * Return Value: + * None + * + * Example: + * [[player, "500Rnd_127x99_mag_Tracer_Red"]] call ace_rearm_fnc_pickUpSuccess + * + * Public: No + */ +#include "script_component.hpp" + +params ["_args"]; +_args params ["_unit", "_magazine"]; + +_unit setVariable [QGVAR(carriedMagazine), _magazine]; // TODO replace by item diff --git a/addons/rearm/functions/fnc_rearm.sqf b/addons/rearm/functions/fnc_rearm.sqf new file mode 100644 index 0000000000..7ff3abcbdc --- /dev/null +++ b/addons/rearm/functions/fnc_rearm.sqf @@ -0,0 +1,115 @@ +/* + * Author: GitHawk + * Rearms a vehicle + * + * Arguments: + * 0: The vehicle + * + * Return Value: + * None + * + * Example: + * [player, vehicle] call ace_rearm_fnc_rearm + * + * Public: No + */ +#include "script_component.hpp" + +#define GETRETURNVALUE \ +_cnt = { _x == _magazine } count _magazines; \ +if ((_target magazineTurretAmmo [_magazine, _path]) < getNumber (configFile >> "CfgMagazines" >> _magazine >> "count")) then { \ + _turretPath = _path; \ + _return = true; \ +} else { \ + if (_cnt < ([_target, _path, _magazine] call FUNC(getMaxMagazines))) then { \ + _turretPath = _path; \ + _return = true; \ + }; \ +}; + +private ["_ammo", "_tmpCal", "_cal", "_idx", "_cnt","_return"]; +params ["_unit", "_vehicle"]; + +_magazine = _unit getVariable QGVAR(carriedMagazine); +if (isNil "_magazine") exitWith {false}; + +_ammo = getText (configFile >> "CfgMagazines" >> _magazine >> "ammo"); +_tmpCal = getNumber (configFile >> "CfgAmmo" >> _ammo >> "ace_caliber"); +_cal = 8; +if (_tmpCal > 0) then { + _cal = _tmpCal; +} else { + _tmpCal = getNumber (configFile >> "CfgAmmo" >> _ammo >> "ace_logistics_caliber"); + if (_tmpCal > 0) then { + _cal = _tmpCal; + } else { + diag_log format ["ACE_Rearm: Undefined Ammo [%1 : %2]", _ammo, inheritsFrom (configFile >> "CfgAmmo" >> _ammo)]; + if (_ammo isKindOf "BulletBase") then { + _cal = 8; + } else { + _cal = 100; + }; + }; +}; +_cal = round _cal; +_idx = CALIBERS find _cal; +if (_idx == -1 ) then { + _idx = 2; +}; + +_return = false; +_turretPath = [0]; _cnt = 0; +_magazines = _target magazinesTurret [-1]; +if (_magazine in _magazines) then { + _path = [-1]; + GETRETURNVALUE +}; +if (!_return) then { + _magazines = _target magazinesTurret [0]; + if (_magazine in _magazines) then { + _path = [0]; + GETRETURNVALUE + }; +}; +if (!_return) then { + _magazines = _target magazinesTurret [0,0]; + if (_magazine in _magazines) then { + _path = [0,0]; + GETRETURNVALUE + }; +}; +if (!_return) then { + _magazines = _target magazinesTurret [0,1]; + if (_magazine in _magazines) then { + _path = [0,1]; + GETRETURNVALUE + }; +}; +if (!_return) then { + _magazines = _target magazinesTurret [1]; + if (_magazine in _magazines) then { + _path = [1]; + GETRETURNVALUE + }; +}; +if (!_return) then { + _magazines = _target magazinesTurret [2]; + if (_magazine in _magazines) then { + _path = [2]; + GETRETURNVALUE + } else { + diag_log format ["ACE_Rearm: Could not find turret for %1 in %2", _magazine, (typeOf _target)]; + }; +}; + +//hint format ["Magazine: %1\nAmmo: %2\nCaliber: %3\nIndex: %4\nTurretPath: %5\nDURATION_REARM: %6\nCount: %7", _magazine, _ammo, _cal, _idx, _turretPath, (DURATION_REARM select _idx), (COUNT select _idx)]; + +[ + (DURATION_REARM select _idx), + [_target, _unit, _turretPath, _cnt, _magazine, (COUNT select _idx)], + FUNC(rearmSuccess), + "", + format [localize LSTRING(RearmAction), getText(configFile >> "CfgVehicles" >> (typeOf _target) >> "displayName"), getText(configFile >> "CfgMagazines" >> _magazine >> "displayName")], + {true}, + ["isnotinside"] +] call EFUNC(common,progressBar); \ No newline at end of file diff --git a/addons/rearm/functions/fnc_rearmSuccess.sqf b/addons/rearm/functions/fnc_rearmSuccess.sqf new file mode 100644 index 0000000000..1a308c6791 --- /dev/null +++ b/addons/rearm/functions/fnc_rearmSuccess.sqf @@ -0,0 +1,58 @@ +/* + * Author: GitHawk + * Rearms a vehicle + * + * Arguments: + * 0: The Params + * 0,1: The Target + * 0,2: The Caller + * 0,3: The Turretpath + * 0,4: The Number of magazines + * 0,5: The Magazine + * 0,6: The Number of rounds + * + * Return Value: + * None + * + * Example: + * [vehicle] call ace_rearm_fnc_rearmSuccess + * + * Public: No + */ +#include "script_component.hpp" + +private ["_rounds", "_currentRounds", "_maxMagazines"]; +params ["_args"]; +_args params ["_target", "_caller", "_turretPath", "_numMagazines", "_magazine", "_numRounds"]; + +//hint format ["Target: %1\nTurretPath: %2\nNumMagazines: %3\nMagazine: %4\nNumRounds: %5", _target, _turretPath, _numMagazines, _magazine, _numRounds]; + +if !(local _target) exitWith { + [_this, QUOTE(DFUNC(rearmSuccess)), _target] call EFUNC(common,execRemoteFnc); +}; + +_rounds = getNumber (configFile >> "CfgMagazines" >> _magazine >> "count"); +_currentRounds = 0; + +_maxMagazines = [_target, _turretPath, _magazine] call FUNC(getMaxMagazines); +if (_maxMagazines == 1) then { + _target setMagazineTurretAmmo [_magazine, ((_target magazineTurretAmmo [_magazine, _turretPath]) + _numRounds) min _rounds, _turretPath]; + ace_player setVariable [QGVAR(carriedMagazine), nil]; // TODO replace by item +} else { + for "_idx" from 1 to _maxMagazines do { + _currentRounds = _target magazineTurretAmmo [_magazine, _turretPath]; + if (_currentRounds > 0) exitWith { + if ((_currentRounds + _numRounds) > _rounds) then { + _target setMagazineTurretAmmo [_magazine, _rounds, _turretPath]; + if (_numMagazines < _maxMagazines) then { + _target addMagazineTurret [_magazine, _turretPath]; + _target setMagazineTurretAmmo [_magazine, _currentRounds + _numRounds - _rounds, _turretPath]; + }; + } else { + _target setMagazineTurretAmmo [_magazine, _currentRounds + _numRounds, _turretPath]; + }; + ace_player setVariable [QGVAR(carriedMagazine), nil]; // TODO replace by item + }; + _target removeMagazineTurret [_magazine, _turretPath]; + }; +}; \ No newline at end of file diff --git a/addons/rearm/functions/script_component.hpp b/addons/rearm/functions/script_component.hpp new file mode 100644 index 0000000000..bf5e8c982b --- /dev/null +++ b/addons/rearm/functions/script_component.hpp @@ -0,0 +1,6 @@ +#include "\z\ace\addons\rearm\script_component.hpp" + +#define CALIBERS [ 6, 7, 8, 13, 19, 20, 25, 30, 35, 40, 60, 70, 80, 82, 100, 105, 120, 122, 125, 155, 230, 250] +#define DURATION_PICKUP [ 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 3, 3, 3, 3, 4, 5, 5, 5, 5, 13, 10] +#define DURATION_REARM [ 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 7, 7, 7, 7, 7, 8, 10, 10, 10, 10, 27, 20] +#define COUNT [500, 500, 400, 100, 50, 50, 40, 25, 34, 10, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1] \ No newline at end of file diff --git a/addons/rearm/script_component.hpp b/addons/rearm/script_component.hpp new file mode 100644 index 0000000000..df53e433ab --- /dev/null +++ b/addons/rearm/script_component.hpp @@ -0,0 +1,4 @@ +#define COMPONENT rearm +#include "\z\ace\addons\main\script_mod.hpp" + +#include "\z\ace\addons\main\script_macros.hpp" diff --git a/addons/rearm/stringtable.xml b/addons/rearm/stringtable.xml new file mode 100644 index 0000000000..906bca12d1 --- /dev/null +++ b/addons/rearm/stringtable.xml @@ -0,0 +1,45 @@ + + + + + Rearm Settings + Aufmunitioniereinstellungen + + + Rearm speed + Aufmunitioniergeschwindigkeit + + + How fast should a vehicle be rearmed? + Wie schnell soll ein Fahrzeug aufmunitioniert werden? + + + Entire vehicle + Gesamtes Fahrzeug + + + Entire Magazine + Gesamtes Magazin + + + Amount based on caliber + Kaliberbasierte Anzahl + + + Rearm + Aufmunitionieren + + + Rearming %1 with %2 + Munitioniere %1 auf mit %2 + + + Taking %1 for %2 + Nehme %1 für %2 + + + Pick up ammo + Munition nehmen + + + diff --git a/addons/rearm/ui/icon_module_rearm.paa b/addons/rearm/ui/icon_module_rearm.paa new file mode 100644 index 0000000000000000000000000000000000000000..fe2a9a12357afcc75b3054d9f2df3d8175e541e6 GIT binary patch literal 11096 zcmeHN&r2IY6dtPwZ+d9(P!Bnl_Ub{QWfKH*X;~!3Erhavg7jF5thZiDPqio8oBu$e z7s14f9(yUVV8NV%haQq3i%7FO{l3*z8Fy>4Mq!f~SYO^aZ{ED0v$OL?WTB8>nlCKp z$Al2R@6QGJtNcsi5{-Bv|6+mo13biw3kzlrzt`}*&kFJJu@LJ|gqVIR#5|tv+ZyM{ zio+AKl2XI_)x(<)QdUjd`n4^k=kC^qMgPrr(6iy#QXcG&z+0(xI_=L5{P5cDpzC1~ zb}w4XrBLn=e)}Y4EmJBzsy}a{&mS~B(9a#yE{F2Q!DINrAjJdaL^D=lRconq&F=gs z{r?i4Z0CUgK4eeFOS>QZg&fX`UA&Y}l{XsS+Ly9D0C{m{vs=5XdN|&oAI$E}?$Hs_ z<_FAYRmU-VwYxfgs)Brw!hK=-NJ`VTZB?FL@z39-blu%X+U)-jeqSt?tzPAg8oz^< zHu)*XC|Z;}2#wfw_v|8QTKs?7bMFWeS}^Yt6%L{5nD#AN_)1K|v(5|k16_kLYPzGm54 z;x&`o$dvl6p1Ap5<2uj4y%tT2UG3s?F0ZY;_UWB}u78H>1q=6yDu1r4k-0lPOdr*y zVK|P;SHI$N5px{sZI}+$zHV zw)T;B5dYDTdB}C$zWaaDb@z*oab|QGf1QDie`DLT;>z;3xx)P^Isnsr*!&bhn|W z-Wf@#hlops5DGxhjNI=i*a-q8AY2U#t3@6q76q4b@PgxvML7 z0R8r9*nbt;Ma$x}QM(=KEPMnbjQWU0Iyo^q5x~~YMYbBp8)^1@xmbR{&i6b{9#rv(?uB1O^u39~;9L4*&oF literal 0 HcmV?d00001 diff --git a/addons/rearm/ui/icon_rearm_interact.paa b/addons/rearm/ui/icon_rearm_interact.paa new file mode 100644 index 0000000000000000000000000000000000000000..fe2a9a12357afcc75b3054d9f2df3d8175e541e6 GIT binary patch literal 11096 zcmeHN&r2IY6dtPwZ+d9(P!Bnl_Ub{QWfKH*X;~!3Erhavg7jF5thZiDPqio8oBu$e z7s14f9(yUVV8NV%haQq3i%7FO{l3*z8Fy>4Mq!f~SYO^aZ{ED0v$OL?WTB8>nlCKp z$Al2R@6QGJtNcsi5{-Bv|6+mo13biw3kzlrzt`}*&kFJJu@LJ|gqVIR#5|tv+ZyM{ zio+AKl2XI_)x(<)QdUjd`n4^k=kC^qMgPrr(6iy#QXcG&z+0(xI_=L5{P5cDpzC1~ zb}w4XrBLn=e)}Y4EmJBzsy}a{&mS~B(9a#yE{F2Q!DINrAjJdaL^D=lRconq&F=gs z{r?i4Z0CUgK4eeFOS>QZg&fX`UA&Y}l{XsS+Ly9D0C{m{vs=5XdN|&oAI$E}?$Hs_ z<_FAYRmU-VwYxfgs)Brw!hK=-NJ`VTZB?FL@z39-blu%X+U)-jeqSt?tzPAg8oz^< zHu)*XC|Z;}2#wfw_v|8QTKs?7bMFWeS}^Yt6%L{5nD#AN_)1K|v(5|k16_kLYPzGm54 z;x&`o$dvl6p1Ap5<2uj4y%tT2UG3s?F0ZY;_UWB}u78H>1q=6yDu1r4k-0lPOdr*y zVK|P;SHI$N5px{sZI}+$zHV zw)T;B5dYDTdB}C$zWaaDb@z*oab|QGf1QDie`DLT;>z;3xx)P^Isnsr*!&bhn|W z-Wf@#hlops5DGxhjNI=i*a-q8AY2U#t3@6q76q4b@PgxvML7 z0R8r9*nbt;Ma$x}QM(=KEPMnbjQWU0Iyo^q5x~~YMYbBp8)^1@xmbR{&i6b{9#rv(?uB1O^u39~;9L4*&oF literal 0 HcmV?d00001 From 26c54b352a66b147335a68518fa603b35d192c21 Mon Sep 17 00:00:00 2001 From: IngoKauffmann Date: Sat, 15 Aug 2015 19:00:28 +0200 Subject: [PATCH 02/25] Fixed some logistics remnants --- addons/rearm/CfgAmmo.hpp | 104 +++++++++++----------- addons/rearm/functions/fnc_pickUpAmmo.sqf | 4 +- addons/rearm/functions/fnc_rearm.sqf | 2 +- 3 files changed, 55 insertions(+), 55 deletions(-) diff --git a/addons/rearm/CfgAmmo.hpp b/addons/rearm/CfgAmmo.hpp index bb75946f0e..8acd8bc82f 100644 --- a/addons/rearm/CfgAmmo.hpp +++ b/addons/rearm/CfgAmmo.hpp @@ -2,195 +2,195 @@ class CfgAmmo { class BombCore; class BombBase : BombCore { - ace_logistics_caliber = 250; // Default caliber for bombs + GVAR(caliber) = 250; // Default caliber for bombs }; class LaserBombCore : BombCore { - ace_logistics_caliber = 250; // Default caliber for bombs + GVAR(caliber) = 250; // Default caliber for bombs }; class MissileCore; class MissileBase : MissileCore { - ace_logistics_caliber = 250; // Default caliber for missiles + GVAR(caliber) = 250; // Default caliber for missiles }; class Rocket_04_HE_F : MissileBase { - ace_logistics_caliber = 70; + GVAR(caliber) = 70; }; class M_PG_AT : MissileBase { - ace_logistics_caliber = 100; + GVAR(caliber) = 100; }; class ACE_Hydra70_DAGR : M_PG_AT { - ace_logistics_caliber = 70; + GVAR(caliber) = 70; }; class RocketCore; class RocketBase : RocketCore { - ace_logistics_caliber = 70; // Default caliber for rockets + GVAR(caliber) = 70; // Default caliber for rockets }; class R_80mm_HE : RocketBase { - ace_logistics_caliber = 80; + GVAR(caliber) = 80; }; class R_60mm_HE : R_80mm_HE { - ace_logistics_caliber = 60; + GVAR(caliber) = 60; }; class BulletBase; class B_19mm_HE : BulletBase { - ace_logistics_caliber = 19; + GVAR(caliber) = 19; }; class B_20mm : BulletBase { - ace_logistics_caliber = 20; + GVAR(caliber) = 20; }; class B_25mm : BulletBase { - ace_logistics_caliber = 25; + GVAR(caliber) = 25; }; class B_30mm_AP : BulletBase { - ace_logistics_caliber = 30; + GVAR(caliber) = 30; }; class B_30mm_HE : B_19mm_HE { - ace_logistics_caliber = 30; + GVAR(caliber) = 30; }; class Gatling_30mm_HE_Plane_CAS_01_F : BulletBase { - ace_logistics_caliber = 30; + GVAR(caliber) = 30; }; class B_35mm_AA : BulletBase { - ace_logistics_caliber = 35; + GVAR(caliber) = 35; }; class B_30mm_APFSDS; class B_40mm_APFSDS : B_30mm_APFSDS { - ace_logistics_caliber = 40; + GVAR(caliber) = 40; }; class B_40mm_GPR : B_30mm_HE { - ace_logistics_caliber = 40; + GVAR(caliber) = 40; }; class GrenadeBase; class G_40mm_HE : GrenadeBase { - ace_logistics_caliber = 40; + GVAR(caliber) = 40; }; class RDS_B_127x107_Ball : BulletBase { - ace_logistics_caliber = 12.7; + GVAR(caliber) = 12.7; }; class ShellBase; class Sh_120mm_APFSDS : Shellbase { - ace_logistics_caliber = 120; + GVAR(caliber) = 120; }; class Sh_105mm_APFSDS : Sh_120mm_APFSDS { - ace_logistics_caliber = 105; + GVAR(caliber) = 105; }; class Sh_125mm_APFSDS : Sh_120mm_APFSDS { - ace_logistics_caliber = 125; + GVAR(caliber) = 125; }; class Sh_120mm_HE : ShellBase { - ace_logistics_caliber = 120; + GVAR(caliber) = 120; }; class Sh_125mm_HE : Sh_120mm_HE { - ace_logistics_caliber = 125; + GVAR(caliber) = 125; }; class Sh_125mm_HEAT : Sh_125mm_HE { - ace_logistics_caliber = 125; + GVAR(caliber) = 125; }; class Sh_105mm_HEAT_MP : Sh_125mm_HEAT { - ace_logistics_caliber = 105; + GVAR(caliber) = 105; }; class Sh_155mm_AMOS : ShellBase { - ace_logistics_caliber = 155; + GVAR(caliber) = 155; }; class Sh_82mm_AMOS : Sh_155mm_AMOS { - ace_logistics_caliber = 82; + GVAR(caliber) = 82; }; class RDS_Sh_122_HE : Sh_155mm_AMOS { - ace_logistics_caliber = 122; + GVAR(caliber) = 122; }; class RDS_Sh_105_HE : Sh_155mm_AMOS { - ace_logistics_caliber = 105; + GVAR(caliber) = 105; }; class Sh_82mm_AMOS_LG; class Sh_155mm_AMOS_LG : Sh_82mm_AMOS_LG { - ace_logistics_caliber = 155; + GVAR(caliber) = 155; }; class RDS_Sh_122_LASER : Sh_155mm_AMOS_LG { - ace_logistics_caliber = 122; + GVAR(caliber) = 122; }; class RDS_Sh_105_LASER : Sh_155mm_AMOS_LG { - ace_logistics_caliber = 105; + GVAR(caliber) = 105; }; class ShotDeployBase; class Smoke_82mm_AMOS_White : ShotDeployBase { - ace_logistics_caliber = 82; + GVAR(caliber) = 82; }; class FlareCore; class Flare_82mm_AMOS_White : FlareCore { - ace_logistics_caliber = 82; + GVAR(caliber) = 82; }; class SmokeLauncherAmmo : BulletBase { - ace_logistics_caliber = 250; + GVAR(caliber) = 250; }; class CMflareAmmo : BulletBase { - ace_logistics_caliber = 40; + GVAR(caliber) = 40; }; class SubmunitionBase; class Sh_82mm_AMOS_guided : SubmunitionBase { - ace_logistics_caliber = 82; + GVAR(caliber) = 82; }; class Sh_155mm_AMOS_guided : Sh_82mm_AMOS_guided { - ace_logistics_caliber = 155; + GVAR(caliber) = 155; }; class R_230mm_HE : SubmunitionBase { - ace_logistics_caliber = 230; + GVAR(caliber) = 230; }; class rhs_ammo_127x108mm_x5 : SubmunitionBase { - ace_logistics_caliber = 12.7; + GVAR(caliber) = 12.7; }; class Mine_155mm_AMOS_range : SubmunitionBase { - ace_logistics_caliber = 155; + GVAR(caliber) = 155; }; class Cluster_155mm_AMOS : SubmunitionBase { - ace_logistics_caliber = 155; + GVAR(caliber) = 155; }; class Smoke_120mm_AMOS_White : SubmunitionBase { - ace_logistics_caliber = 155; + GVAR(caliber) = 155; }; class AT_Mine_155mm_AMOS_range : SubmunitionBase { - ace_logistics_caliber = 155; + GVAR(caliber) = 155; }; class rhs_ammo_rpgShell_base : ShellBase { - ace_logistics_caliber = 70; + GVAR(caliber) = 70; }; class Bomb_04_F : LaserBombCore { - ace_logistics_caliber = 250; // Default caliber for bombs + GVAR(caliber) = 250; // Default caliber for bombs }; class Bo_GBU12_LGB : LaserBombCore { - ace_logistics_caliber = 250; // Default caliber for bombs + GVAR(caliber) = 250; // Default caliber for bombs }; class js_a_fa18_wing_tank : LaserBombCore { - ace_logistics_caliber = 250; // Default caliber for bombs + GVAR(caliber) = 250; // Default caliber for bombs }; class js_a_fa18x_MK82 : BombCore {}; class js_a_fa18x_GBU39_SDB : js_a_fa18x_MK82 { - ace_logistics_caliber = 250; // Default caliber for bombs + GVAR(caliber) = 250; // Default caliber for bombs }; class js_a_fa18_GBU12_LGB : LaserBombCore {}; class js_a_fa18_GBU38_JDAM : js_a_fa18_GBU12_LGB { - ace_logistics_caliber = 250; // Default caliber for bombs + GVAR(caliber) = 250; // Default caliber for bombs }; }; diff --git a/addons/rearm/functions/fnc_pickUpAmmo.sqf b/addons/rearm/functions/fnc_pickUpAmmo.sqf index 38dc38c945..2d35b13f18 100644 --- a/addons/rearm/functions/fnc_pickUpAmmo.sqf +++ b/addons/rearm/functions/fnc_pickUpAmmo.sqf @@ -29,11 +29,11 @@ _cal = 8; if (_tmpCal > 0) then { _cal = _tmpCal; } else { - _tmpCal = getNumber (configFile >> "CfgAmmo" >> _ammo >> "ace_logistics_caliber"); + _tmpCal = getNumber (configFile >> "CfgAmmo" >> _ammo >> QGVAR(caliber)); if (_tmpCal > 0) then { _cal = _tmpCal; } else { - diag_log format ["ACE_Logistics: Undefined Ammo [%1 : %2]", _ammo, inheritsFrom (configFile >> "CfgAmmo" >> _ammo)]; + diag_log format ["ACE_Rearm: Undefined Ammo [%1 : %2]", _ammo, inheritsFrom (configFile >> "CfgAmmo" >> _ammo)]; if (_ammo isKindOf "BulletBase") then { _cal = 8; } else { diff --git a/addons/rearm/functions/fnc_rearm.sqf b/addons/rearm/functions/fnc_rearm.sqf index 7ff3abcbdc..70df22b1aa 100644 --- a/addons/rearm/functions/fnc_rearm.sqf +++ b/addons/rearm/functions/fnc_rearm.sqf @@ -39,7 +39,7 @@ _cal = 8; if (_tmpCal > 0) then { _cal = _tmpCal; } else { - _tmpCal = getNumber (configFile >> "CfgAmmo" >> _ammo >> "ace_logistics_caliber"); + _tmpCal = getNumber (configFile >> "CfgAmmo" >> _ammo >> QGVAR(caliber)); if (_tmpCal > 0) then { _cal = _tmpCal; } else { From a8c263b6cc76f7f5dccbdad4e4cefa7246bb7aa5 Mon Sep 17 00:00:00 2001 From: IngoKauffmann Date: Sat, 15 Aug 2015 19:23:02 +0200 Subject: [PATCH 03/25] More fixes Thanks guys --- addons/rearm/ACE_Settings.hpp | 6 +++--- addons/rearm/functions/fnc_canPickUpAmmo.sqf | 2 +- addons/rearm/functions/script_component.hpp | 5 ----- addons/rearm/script_component.hpp | 13 +++++++++++++ 4 files changed, 17 insertions(+), 9 deletions(-) diff --git a/addons/rearm/ACE_Settings.hpp b/addons/rearm/ACE_Settings.hpp index 63e53cf4f6..d3e4b40d03 100644 --- a/addons/rearm/ACE_Settings.hpp +++ b/addons/rearm/ACE_Settings.hpp @@ -1,9 +1,9 @@ class ACE_Settings { class GVAR(level) { - displayName = LSTRING(RearmSettings_level_DisplayName); - description = LSTRING(RearmSettings_level_Description); + displayName = CSTRING(RearmSettings_level_DisplayName); + description = CSTRING(RearmSettings_level_Description); value = 1; typeName = "SCALAR"; - values[] = {LSTRING(RearmSettings_vehicle), LSTRING(RearmSettings_magazine), LSTRING(RearmSettings_caliber)}; + values[] = {CSTRING(RearmSettings_vehicle), CSTRING(RearmSettings_magazine), CSTRING(RearmSettings_caliber)}; }; }; diff --git a/addons/rearm/functions/fnc_canPickUpAmmo.sqf b/addons/rearm/functions/fnc_canPickUpAmmo.sqf index b4e72f51fa..1089e28eb4 100644 --- a/addons/rearm/functions/fnc_canPickUpAmmo.sqf +++ b/addons/rearm/functions/fnc_canPickUpAmmo.sqf @@ -18,4 +18,4 @@ params ["_unit", "_target"]; -!(isNull ace_player || {!(ace_player isKindOf "CAManBase")} || {!local ace_player} || { (_target distance ace_player) > 7}) +!(isNull _unit || {!(_unit isKindOf "CAManBase")} || {!local _unit} || { (_target distance _unit) > 7}) diff --git a/addons/rearm/functions/script_component.hpp b/addons/rearm/functions/script_component.hpp index bf5e8c982b..515b56ddc7 100644 --- a/addons/rearm/functions/script_component.hpp +++ b/addons/rearm/functions/script_component.hpp @@ -1,6 +1 @@ #include "\z\ace\addons\rearm\script_component.hpp" - -#define CALIBERS [ 6, 7, 8, 13, 19, 20, 25, 30, 35, 40, 60, 70, 80, 82, 100, 105, 120, 122, 125, 155, 230, 250] -#define DURATION_PICKUP [ 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 3, 3, 3, 3, 4, 5, 5, 5, 5, 13, 10] -#define DURATION_REARM [ 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 7, 7, 7, 7, 7, 8, 10, 10, 10, 10, 27, 20] -#define COUNT [500, 500, 400, 100, 50, 50, 40, 25, 34, 10, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1] \ No newline at end of file diff --git a/addons/rearm/script_component.hpp b/addons/rearm/script_component.hpp index df53e433ab..09f7fda69f 100644 --- a/addons/rearm/script_component.hpp +++ b/addons/rearm/script_component.hpp @@ -1,4 +1,17 @@ #define COMPONENT rearm #include "\z\ace\addons\main\script_mod.hpp" +#ifdef DEBUG_ENABLED_REARM + #define DEBUG_MODE_FULL +#endif + +#ifdef DEBUG_SETTINGS_REARM + #define DEBUG_SETTINGS DEBUG_SETTINGS_REARM +#endif + #include "\z\ace\addons\main\script_macros.hpp" + +#define CALIBERS [ 6, 7, 8, 13, 19, 20, 25, 30, 35, 40, 60, 70, 80, 82, 100, 105, 120, 122, 125, 155, 230, 250] +#define DURATION_PICKUP [ 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 3, 3, 3, 3, 4, 5, 5, 5, 5, 13, 10] +#define DURATION_REARM [ 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 7, 7, 7, 7, 7, 8, 10, 10, 10, 10, 27, 20] +#define COUNT [500, 500, 400, 100, 50, 50, 40, 25, 34, 10, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1] \ No newline at end of file From 957756893c77070c8e19356484cc2af72ed95d48 Mon Sep 17 00:00:00 2001 From: IngoKauffmann Date: Sat, 15 Aug 2015 23:35:05 +0200 Subject: [PATCH 04/25] Updated module icon --- addons/rearm/ui/icon_module_rearm.paa | Bin 11096 -> 5625 bytes .../Icon_Module_png/Icons_Modules_Rearm.png | Bin 0 -> 3064 bytes 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 extras/assets/icons/Icon_Module_png/Icons_Modules_Rearm.png diff --git a/addons/rearm/ui/icon_module_rearm.paa b/addons/rearm/ui/icon_module_rearm.paa index fe2a9a12357afcc75b3054d9f2df3d8175e541e6..173e3eaff7d81b45fda869e6b3ecb46f8316966e 100644 GIT binary patch literal 5625 zcmeHLPiPcZ82@J3t@fZs*`bG!W&-J<;whp%DC}EGlPnmr;6AYjg-zl~*5Fyvo!UcM zC~ZiQ7OHsZsfUty7?47-qotd5A zyzhPA`~J*(@0)}_Fp$oDI&dx>C!&pwjSGU$r-vB(AjSjfGyRM$oQ%)*_YW)FyErF1 zh`vh_-LQ$C;B1W)DWVQ2GTm4q-|ZC}Xps@bkaCCfwG48|9bNo-4O{@*(W@+b~3-_1Cx=Xk{9M3w|rfwtgH@(Du+$#1j zhb+*`@!A<12H0VG0RGGIM>1nXtSy@r|4!GihJ)enC=T*p>uvJi#9!ob_@zHW#`2La zP2jM9kojHg}|DqqSe?))l z`rz-D{MBy!?C^Sjzg<|;?LWL6U-1gpPF`8M@EY%@ok)Ck!|SR{u2=q81OW^uXpyhLHy^ve5aQ`#d+Qs|Ia z>)&Qsnd1OT*^Ad8D63JZxO2s7qkdZUchCMV^1VcXQjTNx8+FCGVD$6-qJoMmqzHtOb8+s_uwro_DKc^lKG}YucaNmi;mo$p%x#*WnZH%W)_NvHe6R z+!QMp%+|LmuLGX~@sUwMMt*oXZv-LB=T?iiSFfg6O&sL7#XCLT562iI?U=v2GJFIs z1H@icmAAqQ9H4}bljl6&xL*Q~baPE`6pS%<64$RFQ~o9e3n z{j{H}kfmeid(J(){JSq@3Ar=s=ucmr{v5+zWJ6=)cfCtLdp#es7%XZue)rB0HZ2*( Zyl0Q&2lLf$4}LAY_w50GOqAve=x^qo=a&Eg literal 11096 zcmeHN&r2IY6dtPwZ+d9(P!Bnl_Ub{QWfKH*X;~!3Erhavg7jF5thZiDPqio8oBu$e z7s14f9(yUVV8NV%haQq3i%7FO{l3*z8Fy>4Mq!f~SYO^aZ{ED0v$OL?WTB8>nlCKp z$Al2R@6QGJtNcsi5{-Bv|6+mo13biw3kzlrzt`}*&kFJJu@LJ|gqVIR#5|tv+ZyM{ zio+AKl2XI_)x(<)QdUjd`n4^k=kC^qMgPrr(6iy#QXcG&z+0(xI_=L5{P5cDpzC1~ zb}w4XrBLn=e)}Y4EmJBzsy}a{&mS~B(9a#yE{F2Q!DINrAjJdaL^D=lRconq&F=gs z{r?i4Z0CUgK4eeFOS>QZg&fX`UA&Y}l{XsS+Ly9D0C{m{vs=5XdN|&oAI$E}?$Hs_ z<_FAYRmU-VwYxfgs)Brw!hK=-NJ`VTZB?FL@z39-blu%X+U)-jeqSt?tzPAg8oz^< zHu)*XC|Z;}2#wfw_v|8QTKs?7bMFWeS}^Yt6%L{5nD#AN_)1K|v(5|k16_kLYPzGm54 z;x&`o$dvl6p1Ap5<2uj4y%tT2UG3s?F0ZY;_UWB}u78H>1q=6yDu1r4k-0lPOdr*y zVK|P;SHI$N5px{sZI}+$zHV zw)T;B5dYDTdB}C$zWaaDb@z*oab|QGf1QDie`DLT;>z;3xx)P^Isnsr*!&bhn|W z-Wf@#hlops5DGxhjNI=i*a-q8AY2U#t3@6q76q4b@PgxvML7 z0R8r9*nbt;Ma$x}QM(=KEPMnbjQWU0Iyo^q5x~~YMYbBp8)^1@xmbR{&i6b{9#rv(?uB1O^u39~;9L4*&oF diff --git a/extras/assets/icons/Icon_Module_png/Icons_Modules_Rearm.png b/extras/assets/icons/Icon_Module_png/Icons_Modules_Rearm.png new file mode 100644 index 0000000000000000000000000000000000000000..b564992d5fbd580afd82a9298889bae0151fc3be GIT binary patch literal 3064 zcmVEX>4Tx07%E3mUmQC*A|D*y?1({%`gH|hTglt0MdJtUPWP;8DJ;_4l^{dA)*2i zMMRn+NKnLp(NH8-M6nPQRImpm2q-ZaMN}+rM%Ih2ti1Q~^84egZ|$@9x%=$B&srA% zlBX}1mj+7#kjfMAgFKw+5s^`J>;QlP9$S?PR%=$HTzo3l9?ED;xoI3-JvF1F8#m>QQXW*8-Az9>Nv%ZWK* zkqtikEV84R*{M9Xh{ZXlvs2k(?iKO2Od&_ah_8qXGr62B5#JKAMv5?%E8;ie*i;TP z0{|3BY!`4?i6S-;F^L}%f`(o2L0Dz>ZZyndax(`h}FNp#{ zx{a}MR#uh~m%}m=7xWMPPlvyuufAs_KJJh5&|Nw4Oks+EF0LCZEhSCJr)Q)ySsc3I zpNIG#2mW;)20@&74xhslMTCi_jLS<9wVTK03b<)JI+ypKn)naH{-njZ7KzgM5l~}{ zfYfy=Kz{89C<+lE(fh?+|D$id_%I-TdEqLPi*x_)H~nY9rQ#)noA5c#B`Ac>67n+_ z_r%Wu$9dISw03U@r;Pdb`_%=KWKZEBGfDjQHqKX(I48#TT zN1~8;gpaI8ijWGV0cl0Lkv`-mGK$O~Z&4T&1w}_0qHIx~s8AFOwFb2wRf4KU9Y%Ga zdQmq~W2jlwM>H9&h}K8jpuNx$=mc~Yx)5D~ZbG-CFQRXwC(y4k7z_=gjj_UbVj?j~ zn6;P^%sxyT<{V}aGme?VVzKgAeXJeUAIroFu!Yzv>{0Al>=1SW`vynEso>0T?zku% z50{Utz#YMz!42UiaSM1Uye8fT?~iBWbMU43MtnE^I(`DbK#(SA6YK~fge1ZyLM5S< zaFOtU@RCR*su8V;fkZBGBe9ZrjCh$iMtn<>A?cA^NYNxAX$R>L=^W`U=_Q#=)*?HS zqsRjC4stX30{Id7jRZx)NWx2kEwMqOMxsMvNaDF9UQ$!iNpiJhu4IMe3CZh{Gg5dd zEh!f%rqp_=8mW^~BT{qH6lqgwf9X`|66qt-SEQ$8urgXQZZd3{0-1v{7i7jM2t}RZ zLSa!hQyM83DHBu-Rh#NXO`;Z4zoQONXJut%m&u07X3N&do|YY@Av7(T7cGTWN;^&) zroCIDw8Uu%XUX;@txJZM%*!p6bCl!A70I>9-IjYNPnUO-PnO>$-zoo40i~d)5U7x) zuwUV#!pu_YQro4hrA14RFTJM-E9xl*DXvvKsMxPKr=+app_HyvrF21QMwzDUsGOu+ zu6#y$T7{xwufkO+S2?TllrBqmqNmU+>Amz>RYg@#RiSFV>VWEknzmY~TE1GF+Cz1M zIzv5Pys-#cBCZ~;MXm#GGH#)6 z)ozd6)!Y-@Tijj2>R4y()XvmDLKXQ&yjjk&I!+oQOrohQ}U>eb4k~HZbSnyy9x(W?3$*y{uH6t~>7#3G*6dj`%lF|oWk4CLGP(p*(a%)BP)E2$IF@Oj zS(EuDD=h0owsbZxyFW)SXM4_Mu6ypcYf)=iYkTrk^ETy;t#evezaCm2x4vhC`i6oH z6B|7?9^ORQl)UMue3SgL{8yX9H+L5(6>KaR-{P^QrBI@fUpTVWc5B@>)Hd$6f$iqo ztG0hEVi#R4HYu(seqX{Wx%!RiH@;dd*9H0 z$NjB!N_E9`?+$Pe+^P4d?`Y6!s5po@n0fF?V_0L~w~TL_n-rRgn?4-k9U46xbhx+K zs=4`y;*ru8xJB49eKh*$jqhB)>uNP@t#6~X6(0k~gvXwKAN&3Aai8NoCm1JMf6)A) zww=;m)B$zmbj)@pc8+#Mb`75NKH1Z4+ui=7(T|5tsh+AiEql834Bs>djZ*&hXA3QVUFm(Q=>&;8Iyl!2)z2f%ZaOm)zk?4`pJM24C zcT?`ZxR-fv;r_-4=m$j)r5;v1Qhe0#v+mDrqn4wm$6Uwy9|u3aKh7F|_DjYu?mT-%DP~ zzdZD6*{hzpfVoGnQ(rI47rl{xbNDUeZQr}_casZQ@3HSIKj?nw{^;}Z!Kc(upZ)~{ znDhLU8A*Kr000JJOGiWi{{a60|De66lK=n!32;bRa{vGf6951U69E94oEQKA0bNN% zK~#9!?V3MI#6T2>=Y=f;LXHt^#KIG3mO>}L@DEC3;m`L z?enlm0SG`12%eIg(7BBiKnnb?Hi#YYS95^)6!@vULk&*i+aM-E2mk;8!H}erAG!bp zKmY*8L|xbS*4ihL!52kwK1~xdGi$9ctEwVV0*o<+w^(as%_3dbJ@5i!%%d0q^E@x( z=W!faYkd-Z@WU|N@eZuDFVPEd&h3hyopW*5g0d{H*+bv=H_?v5d7htnkEcXe(e8k@ zZQt0>YqUEc%d!ug1|a|fAOHd&00JNY0w4eaj)GPH5o($y^?iy=k|b3Ctj4PE;+gqb zDRt_(?VX5jqpShj;4jbxAV98wG|)XDSQo%gQm6qCAev8Q!W|O0rQx9f0000 Date: Sun, 16 Aug 2015 02:18:53 +0200 Subject: [PATCH 05/25] Added different rearm levels --- addons/rearm/XEH_preInit.sqf | 2 + .../rearm/functions/fnc_addRearmActions.sqf | 38 ++++++++++++-- addons/rearm/functions/fnc_canPickUpAmmo.sqf | 2 +- addons/rearm/functions/fnc_canRearm.sqf | 6 +-- addons/rearm/functions/fnc_rearm.sqf | 12 +++-- .../functions/fnc_rearmEntireVehicle.sqf | 31 ++++++++++++ .../fnc_rearmEntireVehicleSuccess.sqf | 49 +++++++++++++++++++ addons/rearm/functions/fnc_rearmSuccess.sqf | 34 ++++++++++--- addons/rearm/stringtable.xml | 12 +++-- 9 files changed, 162 insertions(+), 24 deletions(-) create mode 100644 addons/rearm/functions/fnc_rearmEntireVehicle.sqf create mode 100644 addons/rearm/functions/fnc_rearmEntireVehicleSuccess.sqf diff --git a/addons/rearm/XEH_preInit.sqf b/addons/rearm/XEH_preInit.sqf index 70dd9327ac..e78fa316cc 100644 --- a/addons/rearm/XEH_preInit.sqf +++ b/addons/rearm/XEH_preInit.sqf @@ -9,6 +9,8 @@ PREP(getMaxMagazines); PREP(pickUpAmmo); PREP(pickUpSuccess); PREP(rearm); +PREP(rearmEntireVehicle); +PREP(rearmEntireVehicleSuccess); PREP(rearmSuccess); PREP(moduleRearmSettings); diff --git a/addons/rearm/functions/fnc_addRearmActions.sqf b/addons/rearm/functions/fnc_addRearmActions.sqf index 1bd9b064f2..987bc473b1 100644 --- a/addons/rearm/functions/fnc_addRearmActions.sqf +++ b/addons/rearm/functions/fnc_addRearmActions.sqf @@ -37,13 +37,25 @@ _vehicleActions = []; _magazine = _x; _cnt = { _x == _magazine } count (_vehicle magazinesTurret _turretPath); if ((_cnt < ([_vehicle, _turretPath, _magazine] call FUNC(getMaxMagazines))) && !(_magazine in _magazineHelper)) then { - _action = [_magazine, getText(configFile >> "CfgMagazines" >> _magazine >> "displayName"), getText(configFile >> "CfgMagazines" >> _magazine >> "picture"), {_this call FUNC(pickUpAmmo)}, {true}, {}, [_magazine, _vehicle]] call EFUNC(interact_menu,createAction); + _action = [_magazine, + getText(configFile >> "CfgMagazines" >> _magazine >> "displayName"), + getText(configFile >> "CfgMagazines" >> _magazine >> "picture"), + {_this call FUNC(pickUpAmmo)}, + {true}, + {}, + [_magazine, _vehicle]] call EFUNC(interact_menu,createAction); _actions pushBack [_action, [], _target]; _magazineHelper pushBack _magazine; _needToAdd = true; } else { if (((_vehicle magazineTurretAmmo [_magazine, _turretPath]) < getNumber (configFile >> "CfgMagazines" >> _magazine >> "count")) && !(_magazine in _magazineHelper)) then { - _action = [_magazine, getText(configFile >> "CfgMagazines" >> _magazine >> "displayName"), getText(configFile >> "CfgMagazines" >> _magazine >> "picture"), {_this call FUNC(pickUpAmmo)}, {true}, {}, [_magazine, _vehicle]] call EFUNC(interact_menu,createAction); + _action = [_magazine, + getText(configFile >> "CfgMagazines" >> _magazine >> "displayName"), + getText(configFile >> "CfgMagazines" >> _magazine >> "picture"), + {_this call FUNC(pickUpAmmo)}, + {true}, + {}, + [_magazine, _vehicle]] call EFUNC(interact_menu,createAction); _actions pushBack [_action, [], _target]; _magazineHelper pushBack _magazine; _needToAdd = true; @@ -57,9 +69,27 @@ _vehicleActions = []; if !((_icon select [0, 1]) == "\") then { _icon = ""; }; - _action = [_vehicle, getText(configFile >> "CfgVehicles" >> (typeOf _vehicle) >> "displayName"), _icon, "", {true}, {}, []] call EFUNC(interact_menu,createAction); - _vehicleActions pushBack [_action, _actions, _target]; + if (GVAR(level) == 0) then { + _action = [_vehicle, + getText(configFile >> "CfgVehicles" >> (typeOf _vehicle) >> "displayName"), + _icon, + {_this call FUNC(rearmEntireVehicle)}, + {true}, + {}, + _vehicle] call EFUNC(interact_menu,createAction); + _vehicleActions pushBack [_action, [], _target]; + } else { + _action = [_vehicle, + getText(configFile >> "CfgVehicles" >> (typeOf _vehicle) >> "displayName"), + _icon, + {}, + {true}, + {}, + []] call EFUNC(interact_menu,createAction); + _vehicleActions pushBack [_action, _actions, _target]; + }; }; } foreach _vehicles; + _vehicleActions diff --git a/addons/rearm/functions/fnc_canPickUpAmmo.sqf b/addons/rearm/functions/fnc_canPickUpAmmo.sqf index 1089e28eb4..16ff092a60 100644 --- a/addons/rearm/functions/fnc_canPickUpAmmo.sqf +++ b/addons/rearm/functions/fnc_canPickUpAmmo.sqf @@ -10,7 +10,7 @@ * Can rearm * * Example: - * [tank] call ace_rearm_fnc_canPickUpAmmo + * [player, tank] call ace_rearm_fnc_canPickUpAmmo * * Public: No */ diff --git a/addons/rearm/functions/fnc_canRearm.sqf b/addons/rearm/functions/fnc_canRearm.sqf index 1e0e75cc0c..689f01b0e9 100644 --- a/addons/rearm/functions/fnc_canRearm.sqf +++ b/addons/rearm/functions/fnc_canRearm.sqf @@ -16,7 +16,7 @@ */ #include "script_component.hpp" -private ["_vehicles", "_magazine", "_magazines", "_path", "_return", "_cnt"]; +private ["_magazine", "_return", "_magazines", "_path", "_cnt"]; params ["_unit", "_vehicle"]; #define GETRETURNVALUE \ @@ -29,13 +29,11 @@ if ((_vehicle magazineTurretAmmo [_magazine, _path]) < getNumber (configFile >> }; \ }; -if (isNull _unit || {!(_unit isKindOf "CAManBase")} || {!local _unit} || { (_vehicle distance _unit) > 7}) exitWith {false}; +if (isNull _unit || {!(_unit isKindOf "CAManBase")} || {!local _unit} || { (_vehicle distance _unit) > 7} || {GVAR(level) == 0}) exitWith {false}; _magazine = _unit getVariable QGVAR(carriedMagazine); if (isNil "_magazine") exitWith {false}; -// TODO move into loop - _return = false; _magazines = _vehicle magazinesTurret [-1]; if (_magazine in _magazines) then { diff --git a/addons/rearm/functions/fnc_rearm.sqf b/addons/rearm/functions/fnc_rearm.sqf index 70df22b1aa..d86e4df493 100644 --- a/addons/rearm/functions/fnc_rearm.sqf +++ b/addons/rearm/functions/fnc_rearm.sqf @@ -27,7 +27,7 @@ if ((_target magazineTurretAmmo [_magazine, _path]) < getNumber (configFile >> " }; \ }; -private ["_ammo", "_tmpCal", "_cal", "_idx", "_cnt","_return"]; +private ["_ammo", "_tmpCal", "_cal", "_idx", "_return", "_cnt", "_magazineDisplayName"]; params ["_unit", "_vehicle"]; _magazine = _unit getVariable QGVAR(carriedMagazine); @@ -98,18 +98,24 @@ if (!_return) then { _path = [2]; GETRETURNVALUE } else { - diag_log format ["ACE_Rearm: Could not find turret for %1 in %2", _magazine, (typeOf _target)]; + diag_log format ["ACE_Rearm: Could not find turret for %1 in %2", _magazine, typeOf _target]; }; }; //hint format ["Magazine: %1\nAmmo: %2\nCaliber: %3\nIndex: %4\nTurretPath: %5\nDURATION_REARM: %6\nCount: %7", _magazine, _ammo, _cal, _idx, _turretPath, (DURATION_REARM select _idx), (COUNT select _idx)]; +_magazineDisplayName = getText(configFile >> "CfgMagazines" >> _magazine >> "displayName"); +if (_magazineDisplayName == "") then { + _magazineDisplayName = _magazine; + diag_log format ["ACE_Rearm: Magazine is missing display name [%1]", _magazine]; +}; + [ (DURATION_REARM select _idx), [_target, _unit, _turretPath, _cnt, _magazine, (COUNT select _idx)], FUNC(rearmSuccess), "", - format [localize LSTRING(RearmAction), getText(configFile >> "CfgVehicles" >> (typeOf _target) >> "displayName"), getText(configFile >> "CfgMagazines" >> _magazine >> "displayName")], + format [localize LSTRING(RearmAction), getText(configFile >> "CfgVehicles" >> (typeOf _target) >> "displayName"), _magazineDisplayName], {true}, ["isnotinside"] ] call EFUNC(common,progressBar); \ No newline at end of file diff --git a/addons/rearm/functions/fnc_rearmEntireVehicle.sqf b/addons/rearm/functions/fnc_rearmEntireVehicle.sqf new file mode 100644 index 0000000000..59713d7263 --- /dev/null +++ b/addons/rearm/functions/fnc_rearmEntireVehicle.sqf @@ -0,0 +1,31 @@ +/* + * Author: GitHawk + * Rearms an entire vehicle + * + * Arguments: + * 0: The Ammo Truck + * 1: The Player + * 2: The Vehicle to be armed + * + * Return Value: + * None + * + * Example: + * [ammo_truck, player, tank] call ace_rearm_fnc_rearmEntireVehicle + * + * Public: No + */ +#include "script_component.hpp" + +private ["_ammo", "_tmpCal", "_cal"]; +params ["_target","_unit","_vehicle"]; + +[ + 10, + _vehicle, + FUNC(rearmEntireVehicleSuccess), + "", + format [localize LSTRING(BasicRearmAction), getText(configFile >> "CfgVehicles" >> (typeOf _vehicle) >> "displayName")], + {true}, + ["isnotinside"] +] call EFUNC(common,progressBar); \ No newline at end of file diff --git a/addons/rearm/functions/fnc_rearmEntireVehicleSuccess.sqf b/addons/rearm/functions/fnc_rearmEntireVehicleSuccess.sqf new file mode 100644 index 0000000000..f0d8d32cac --- /dev/null +++ b/addons/rearm/functions/fnc_rearmEntireVehicleSuccess.sqf @@ -0,0 +1,49 @@ +/* + * Author: GitHawk + * Rearm an entire vehicle + * + * Arguments: + * 0: The Vehicle + * + * Return Value: + * None + * + * Example: + * [tank] call ace_rearm_fnc_rearmEntireVehicleSuccess + * + * Public: No + */ +#include "script_component.hpp" + +private ["_turretPath", "_magazines", "_magazine", "_currentMagazines", "_maxMagazines", "_rounds"]; +params ["_vehicle"]; + +if !(local _vehicle) exitWith { + [_this, QUOTE(DFUNC(rearmEntireVehicleSuccess)), _vehicle] call EFUNC(common,execRemoteFnc); +}; + +{ + _turretPath = _x; + _magazines = _vehicle magazinesTurret _turretPath; + { + _magazine = _x; + _currentMagazines = { _x == _magazine } count (_vehicle magazinesTurret _turretPath); + _maxMagazines = [_vehicle, _turretPath, _magazine] call FUNC(getMaxMagazines); + _maxRounds = getNumber (configFile >> "CfgMagazines" >> _magazine >> "count"); + _currentRounds = _vehicle magazineTurretAmmo [_magazine, _turretPath]; + + //diag_log format ["Target: %1\nTurretPath: %2\nNumMagazines: %3\nMaxMagazines %4\nNumRounds: %5\nMaxRounds: %6\nMagazine: %7", _vehicle, _turretPath, _currentMagazines, _maxMagazines, _currentRounds, _maxRounds, _magazine]; + if (_currentMagazines < _maxMagazines) then { + _vehicle setMagazineTurretAmmo [_magazine, _maxRounds, _turretPath]; + for "_idx" from 1 to (_maxMagazines - _currentMagazines) do { + _vehicle addMagazineTurret [_magazine, _turretPath]; + }; + } else { + if (_currentRounds > 0) then { + _vehicle setMagazineTurretAmmo [_magazine, _maxRounds, _turretPath]; + } else { + _vehicle removeMagazineTurret [_magazine, _turretPath]; + }; + }; + } foreach _magazines; +} foreach [[-1], [0], [0,0], [0,1], [1], [2]]; \ No newline at end of file diff --git a/addons/rearm/functions/fnc_rearmSuccess.sqf b/addons/rearm/functions/fnc_rearmSuccess.sqf index 1a308c6791..76047c583b 100644 --- a/addons/rearm/functions/fnc_rearmSuccess.sqf +++ b/addons/rearm/functions/fnc_rearmSuccess.sqf @@ -23,7 +23,7 @@ private ["_rounds", "_currentRounds", "_maxMagazines"]; params ["_args"]; -_args params ["_target", "_caller", "_turretPath", "_numMagazines", "_magazine", "_numRounds"]; +_args params ["_target", "_unit", "_turretPath", "_numMagazines", "_magazine", "_numRounds"]; //hint format ["Target: %1\nTurretPath: %2\nNumMagazines: %3\nMagazine: %4\nNumRounds: %5", _target, _turretPath, _numMagazines, _magazine, _numRounds]; @@ -36,23 +36,41 @@ _currentRounds = 0; _maxMagazines = [_target, _turretPath, _magazine] call FUNC(getMaxMagazines); if (_maxMagazines == 1) then { - _target setMagazineTurretAmmo [_magazine, ((_target magazineTurretAmmo [_magazine, _turretPath]) + _numRounds) min _rounds, _turretPath]; - ace_player setVariable [QGVAR(carriedMagazine), nil]; // TODO replace by item + if (GVAR(level) == 1) then { + // Fill magazine completely + _target setMagazineTurretAmmo [_magazine, _rounds, _turretPath]; + } else { + // Fill only at most _numRounds + _target setMagazineTurretAmmo [_magazine, ((_target magazineTurretAmmo [_magazine, _turretPath]) + _numRounds) min _rounds, _turretPath]; + }; + _unit setVariable [QGVAR(carriedMagazine), nil]; // TODO replace by item } else { for "_idx" from 1 to _maxMagazines do { _currentRounds = _target magazineTurretAmmo [_magazine, _turretPath]; if (_currentRounds > 0) exitWith { - if ((_currentRounds + _numRounds) > _rounds) then { + if (GVAR(level) == 2) then { + //hint format ["Target: %1\nTurretPath: %2\nNumMagazines: %3\nMaxMagazines %4\nMagazine: %5\nNumRounds: %6\nMagazine: %7", _target, _turretPath, _numMagazines, _maxMagazines, _currentRounds, _numRounds, _magazine]; + // Fill only at most _numRounds + if ((_currentRounds + _numRounds) > _rounds) then { + _target setMagazineTurretAmmo [_magazine, _rounds, _turretPath]; + if (_numMagazines < _maxMagazines) then { + _target addMagazineTurret [_magazine, _turretPath]; + _target setMagazineTurretAmmo [_magazine, _currentRounds + _numRounds - _rounds, _turretPath]; + }; + } else { + _target setMagazineTurretAmmo [_magazine, _currentRounds + _numRounds, _turretPath]; + }; + } else { + // Fill current magazine completely and fill next magazine partially _target setMagazineTurretAmmo [_magazine, _rounds, _turretPath]; if (_numMagazines < _maxMagazines) then { _target addMagazineTurret [_magazine, _turretPath]; - _target setMagazineTurretAmmo [_magazine, _currentRounds + _numRounds - _rounds, _turretPath]; + _target setMagazineTurretAmmo [_magazine, _currentRounds, _turretPath]; }; - } else { - _target setMagazineTurretAmmo [_magazine, _currentRounds + _numRounds, _turretPath]; }; - ace_player setVariable [QGVAR(carriedMagazine), nil]; // TODO replace by item + _unit setVariable [QGVAR(carriedMagazine), nil]; // TODO replace by item }; _target removeMagazineTurret [_magazine, _turretPath]; + _numMagazines = _numMagazines - 1; }; }; \ No newline at end of file diff --git a/addons/rearm/stringtable.xml b/addons/rearm/stringtable.xml index 906bca12d1..85523c0e30 100644 --- a/addons/rearm/stringtable.xml +++ b/addons/rearm/stringtable.xml @@ -5,11 +5,11 @@ Rearm Settings Aufmunitioniereinstellungen - - Rearm speed - Aufmunitioniergeschwindigkeit + + Rearm amount + Aufmunitioniermenge - + How fast should a vehicle be rearmed? Wie schnell soll ein Fahrzeug aufmunitioniert werden? @@ -33,6 +33,10 @@ Rearming %1 with %2 Munitioniere %1 auf mit %2 + + Rearming %1 + Munitioniere %1 auf + Taking %1 for %2 Nehme %1 für %2 From 1a22c4d85a54b1a8a0aece16333fdcea26c28c6f Mon Sep 17 00:00:00 2001 From: IngoKauffmann Date: Sun, 16 Aug 2015 18:16:38 +0200 Subject: [PATCH 06/25] Many things Added dummy objects Added carrying Added display names for a few magazines, that didn't have any --- addons/rearm/CfgAmmo.hpp | 156 ++++++++++++++++++- addons/rearm/CfgMagazines.hpp | 56 +++++++ addons/rearm/config.cpp | 1 + addons/rearm/functions/fnc_pickUpAmmo.sqf | 3 + addons/rearm/functions/fnc_pickUpSuccess.sqf | 20 ++- addons/rearm/functions/fnc_rearmSuccess.sqf | 26 +++- addons/rearm/stringtable.xml | 28 ++++ 7 files changed, 281 insertions(+), 9 deletions(-) create mode 100644 addons/rearm/CfgMagazines.hpp diff --git a/addons/rearm/CfgAmmo.hpp b/addons/rearm/CfgAmmo.hpp index 8acd8bc82f..174d4ccfb3 100644 --- a/addons/rearm/CfgAmmo.hpp +++ b/addons/rearm/CfgAmmo.hpp @@ -1,3 +1,13 @@ +#define DUMMY_PROPERTIES \ + effectsSmoke = ""; \ + explosive = 0; \ + fuseDistance = 10000; \ + hit = 0; \ + indirectHit = 0; \ + muzzleEffect = ""; \ + simulation = "shotMine"; \ + timeToLive = 3600; + class CfgAmmo { class BombCore; @@ -11,29 +21,57 @@ class CfgAmmo { class MissileBase : MissileCore { GVAR(caliber) = 250; // Default caliber for missiles }; + class Missile_AA_04_F : MissileBase { + GVAR(dummy) = QGVAR(Missile_AA_04_F); + }; + class Missile_AA_03_F : Missile_AA_04_F { + GVAR(dummy) = QGVAR(Missile_AA_03_F); + }; + class Rocket_04_HE_F : MissileBase { GVAR(caliber) = 70; + GVAR(dummy) = QGVAR(Rocket_04_HE_F); + }; + class Rocket_03_HE_F : Rocket_04_HE_F { + GVAR(dummy) = QGVAR(Rocket_03_HE_F); + }; + class Rocket_04_AP_F : Rocket_04_HE_F { + GVAR(dummy) = QGVAR(Rocket_04_AP_F); + }; + class Rocket_03_AP_F : Rocket_04_AP_F { + GVAR(dummy) = QGVAR(Rocket_03_AP_F); }; class M_PG_AT : MissileBase { GVAR(caliber) = 100; + GVAR(dummy) = QGVAR(M_PG_AT); }; class ACE_Hydra70_DAGR : M_PG_AT { GVAR(caliber) = 70; }; - + class Missile_AGM_02_F : MissileBase { + GVAR(dummy) = QGVAR(Missile_AGM_02_F); + }; + class Missile_AGM_01_F : Missile_AGM_02_F { + GVAR(dummy) = QGVAR(Missile_AGM_01_F); + }; + class RocketCore; class RocketBase : RocketCore { GVAR(caliber) = 70; // Default caliber for rockets }; class R_80mm_HE : RocketBase { GVAR(caliber) = 80; + GVAR(dummy) = QGVAR(R_80mm_HE); }; class R_60mm_HE : R_80mm_HE { GVAR(caliber) = 60; + GVAR(dummy) = QGVAR(R_60mm_HE); + }; + class R_Hydra_HE : RocketBase { + GVAR(dummy) = QGVAR(R_Hydra_HE); }; class BulletBase; - class B_19mm_HE : BulletBase { GVAR(caliber) = 19; }; @@ -79,6 +117,10 @@ class CfgAmmo { }; class ShellBase; + class R_230mm_fly : ShellBase { + GVAR(dummy) = QGVAR(R_230mm_fly); + }; + class Sh_120mm_APFSDS : Shellbase { GVAR(caliber) = 120; }; @@ -174,16 +216,120 @@ class CfgAmmo { GVAR(caliber) = 70; }; - class Bomb_04_F : LaserBombCore { - GVAR(caliber) = 250; // Default caliber for bombs + class Bo_Mk82 : BombCore { + GVAR(dummy) = QGVAR(Bo_Mk82); }; + class Bo_GBU12_LGB : LaserBombCore { GVAR(caliber) = 250; // Default caliber for bombs + GVAR(dummy) = QGVAR(Bo_GBU12_LGB); }; + + class Bomb_04_F : LaserBombCore { + GVAR(caliber) = 250; // Default caliber for bombs + GVAR(dummy) = QGVAR(Bomb_04_F); + }; + + class Bomb_03_F : Bomb_04_F { + GVAR(dummy) = QGVAR(Bomb_03_F); + }; + + // Dummy Ammo + class GVAR(Bo_GBU12_LGB) : Bo_GBU12_LGB { + DUMMY_PROPERTIES + model = "\A3\Weapons_F\Ammo\Bomb_01_F.p3d"; + }; + + class GVAR(Bo_Mk82) : Bo_Mk82 { + DUMMY_PROPERTIES + model = "\A3\Weapons_F\Ammo\Bomb_02_F"; + }; + + class GVAR(Bomb_04_F) : Bomb_04_F { + DUMMY_PROPERTIES + model = "\A3\Weapons_F_EPC\Ammo\Bomb_04_F.p3d"; + }; + + class GVAR(Bomb_03_F) : Bomb_04_F { + DUMMY_PROPERTIES + model = "\A3\Weapons_F_EPC\Ammo\Bomb_03_F.p3d"; + }; + + class GVAR(Missile_AA_04_F) : Missile_AA_04_F { + DUMMY_PROPERTIES + model = "\A3\Weapons_F_EPC\Ammo\Missile_AA_04_F.p3d"; + }; + + class GVAR(Missile_AA_03_F) : Missile_AA_03_F { + DUMMY_PROPERTIES + model = "\A3\Weapons_F_EPC\Ammo\Missile_AA_03_F.p3d"; + }; + + class GVAR(Missile_AGM_02_F) : Missile_AGM_02_F { + DUMMY_PROPERTIES + model = "\A3\Weapons_F_EPC\Ammo\Missile_AGM_02_F.p3d"; + }; + + class GVAR(Missile_AGM_01_F) : Missile_AGM_01_F { + DUMMY_PROPERTIES + model = "\A3\Weapons_F_EPC\Ammo\Missile_AGM_01_F.p3d"; + }; + + class GVAR(R_230mm_fly) : R_230mm_fly { + DUMMY_PROPERTIES + model = "\A3\Weapons_F\Ammo\Missile_AT_02_F"; + }; + + class GVAR(R_230mm_HE) : R_230mm_HE { + DUMMY_PROPERTIES + model = "\A3\Weapons_F\Ammo\Missile_AT_02_F"; + }; + + class GVAR(M_PG_AT) : M_PG_AT { + DUMMY_PROPERTIES + model = "\A3\Weapons_F\Ammo\Rocket_01_F"; + }; + + class GVAR(Rocket_04_HE_F) : Rocket_04_HE_F { + DUMMY_PROPERTIES + model = "\A3\Weapons_F_EPC\Ammo\Rocket_04_HE_F.p3d"; + }; + + class GVAR(Rocket_03_HE_F) : Rocket_03_HE_F { + DUMMY_PROPERTIES + model = "\A3\Weapons_F_EPC\Ammo\Rocket_03_HE_F.p3d"; + }; + + class GVAR(Rocket_04_AP_F) : Rocket_04_HE_F { + DUMMY_PROPERTIES + model = "\A3\Weapons_F_EPC\Ammo\Rocket_04_AP_F.p3d"; + }; + + class GVAR(Rocket_03_AP_F) : Rocket_03_AP_F { + DUMMY_PROPERTIES + model = "\A3\Weapons_F_EPC\Ammo\Rocket_03_AP_F.p3d"; + }; + + // Using wrong model + class GVAR(R_80mm_HE) : R_80mm_HE { + DUMMY_PROPERTIES + model = "\A3\Weapons_F_EPC\Ammo\Rocket_03_HE_F.p3d"; + }; + + class GVAR(R_60mm_HE) : R_60mm_HE { + DUMMY_PROPERTIES + model = "\A3\Weapons_F_EPC\Ammo\Rocket_03_HE_F.p3d"; + }; + + class GVAR(R_Hydra_HE) : R_Hydra_HE { + DUMMY_PROPERTIES + model = "\A3\Weapons_F_EPC\Ammo\Rocket_03_HE_F.p3d"; + }; + + // F18 Mod class js_a_fa18_wing_tank : LaserBombCore { GVAR(caliber) = 250; // Default caliber for bombs }; - class js_a_fa18x_MK82 : BombCore {}; class js_a_fa18x_GBU39_SDB : js_a_fa18x_MK82 { GVAR(caliber) = 250; // Default caliber for bombs diff --git a/addons/rearm/CfgMagazines.hpp b/addons/rearm/CfgMagazines.hpp new file mode 100644 index 0000000000..2f2d16db93 --- /dev/null +++ b/addons/rearm/CfgMagazines.hpp @@ -0,0 +1,56 @@ +class CfgMagazines { + class CA_Magazine; + class 60Rnd_CMFlareMagazine : CA_Magazine { + displayName = CSTRING(flarelauncher); + }; + + class VehicleMagazine; + class SmokeLauncherMag : VehicleMagazine { + displayName = CSTRING(smokelauncher); + }; + class SmokeLauncherMag_boat : VehicleMagazine { + displayName = CSTRING(smokelauncher); + }; + + class 1000Rnd_Gatling_30mm_Plane_CAS_01_F : VehicleMagazine { + displayName = "30mm HEI"; + }; + class 500Rnd_Cannon_30mm_Plane_CAS_02_F : 1000Rnd_Gatling_30mm_Plane_CAS_01_F { + displayName = "30mm HEI-T"; + }; + + class 2Rnd_Missile_AA_04_F : VehicleMagazine { + displayName = "AIM-9 Sidewinder"; + }; + class 2Rnd_Missile_AA_03_F : 2Rnd_Missile_AA_04_F { + displayName = "Wympel R-73"; + }; + + class 6Rnd_Missile_AGM_02_F : VehicleMagazine { + displayName = "AGM-65 Maverick"; + }; + class 4Rnd_Missile_AGM_01_F : 6Rnd_Missile_AGM_02_F { + displayName = "Kh-25MTP"; + }; + + class 7Rnd_Rocket_04_HE_F : VehicleMagazine { + displayName = "Hydra 70 HE"; + }; + class 20Rnd_Rocket_03_HE_F : 7Rnd_Rocket_04_HE_F { + displayName = "S-8 HE"; + }; + + class 7Rnd_Rocket_04_AP_F : 7Rnd_Rocket_04_HE_F { + displayName = "Hydra 70 AP"; + }; + class 20Rnd_Rocket_03_AP_F : 7Rnd_Rocket_04_AP_F { + displayName = "S-8 AP"; + }; + + class 4Rnd_Bomb_04_F : VehicleMagazine { + displayName = "GBU-12" + }; + class 2Rnd_Bomb_03_F : 4Rnd_Bomb_04_F { + displayName = "FAB-250M-54" + }; +}; \ No newline at end of file diff --git a/addons/rearm/config.cpp b/addons/rearm/config.cpp index 1d7083b2a4..975f35b2e3 100644 --- a/addons/rearm/config.cpp +++ b/addons/rearm/config.cpp @@ -14,5 +14,6 @@ class CfgPatches { #include "CfgEventHandlers.hpp" #include "CfgVehicles.hpp" +#include "CfgMagazines.hpp" #include "CfgAmmo.hpp" #include "ACE_Settings.hpp" \ No newline at end of file diff --git a/addons/rearm/functions/fnc_pickUpAmmo.sqf b/addons/rearm/functions/fnc_pickUpAmmo.sqf index 2d35b13f18..f9c0786359 100644 --- a/addons/rearm/functions/fnc_pickUpAmmo.sqf +++ b/addons/rearm/functions/fnc_pickUpAmmo.sqf @@ -47,6 +47,9 @@ if (_idx == -1 ) then { _idx = 2; }; +_unit setVariable [QGVAR(selectedWeaponOnRearm), currentWeapon _unit]; +_unit action ["SwitchWeapon", _unit, _unit, 99]; + [ (DURATION_PICKUP select _idx), [_unit, _magazine], diff --git a/addons/rearm/functions/fnc_pickUpSuccess.sqf b/addons/rearm/functions/fnc_pickUpSuccess.sqf index 114cb99047..da5483874b 100644 --- a/addons/rearm/functions/fnc_pickUpSuccess.sqf +++ b/addons/rearm/functions/fnc_pickUpSuccess.sqf @@ -17,7 +17,25 @@ */ #include "script_component.hpp" +private ["_dummy"]; params ["_args"]; _args params ["_unit", "_magazine"]; -_unit setVariable [QGVAR(carriedMagazine), _magazine]; // TODO replace by item +_unit setVariable [QGVAR(carriedMagazine), _magazine]; +[_unit, QGVAR(vehRearm), true] call EFUNC(common,setForceWalkStatus); + +_dummy = _unit getVariable [QGVAR(dummy), objNull]; +if !(isNull _dummy) then { + detach _dummy; + deleteVehicle _dummy; + _unit setVariable [QGVAR(dummy), objNull]; +}; +_ammo = getText (configFile >> "CfgMagazines" >> _magazine >> "ammo"); +_dummy = getText (configFile >> "CfgAmmo" >> _ammo >> QGVAR(dummy)); +if !(_dummy == "") then { + _dummy = _dummy createVehicle (position _unit); + _dummy attachTo [_unit, [0,0.5,0], "pelvis"]; + _dummy setDir 90; + _dummy allowDamage false; + _unit setVariable [QGVAR(dummy), _dummy]; +}; \ No newline at end of file diff --git a/addons/rearm/functions/fnc_rearmSuccess.sqf b/addons/rearm/functions/fnc_rearmSuccess.sqf index 76047c583b..2e628311eb 100644 --- a/addons/rearm/functions/fnc_rearmSuccess.sqf +++ b/addons/rearm/functions/fnc_rearmSuccess.sqf @@ -21,7 +21,19 @@ */ #include "script_component.hpp" -private ["_rounds", "_currentRounds", "_maxMagazines"]; +#define REARM_SUCCESS \ + [_unit, QGVAR(vehRearm), false] call EFUNC(common,setForceWalkStatus); \ + _dummy = _unit getVariable [QGVAR(dummy), objNull]; \ + if !(isNull _dummy) then { \ + detach _dummy; \ + deleteVehicle _dummy; \ + }; \ + _unit setVariable [QGVAR(carriedMagazine), nil, true]; \ + _weaponSelect = _unit getVariable QGVAR(selectedWeaponOnRearm); \ + _unit selectWeapon _weaponSelect; \ + _unit setVariable [QGVAR(selectedWeaponOnRearm), nil]; + +private ["_rounds", "_currentRounds", "_maxMagazines", "_dummy"]; params ["_args"]; _args params ["_target", "_unit", "_turretPath", "_numMagazines", "_magazine", "_numRounds"]; @@ -43,7 +55,11 @@ if (_maxMagazines == 1) then { // Fill only at most _numRounds _target setMagazineTurretAmmo [_magazine, ((_target magazineTurretAmmo [_magazine, _turretPath]) + _numRounds) min _rounds, _turretPath]; }; - _unit setVariable [QGVAR(carriedMagazine), nil]; // TODO replace by item + [[LSTRING(Hint_RearmedTriple), _numRounds, + getText(configFile >> "CfgMagazines" >> _magazine >> "displayName"), + getText(configFile >> "CfgVehicles" >> (typeOf _target) >> "displayName")], 3, _unit] call EFUNC(common,displayTextStructured); + + REARM_SUCCESS } else { for "_idx" from 1 to _maxMagazines do { _currentRounds = _target magazineTurretAmmo [_magazine, _turretPath]; @@ -68,7 +84,11 @@ if (_maxMagazines == 1) then { _target setMagazineTurretAmmo [_magazine, _currentRounds, _turretPath]; }; }; - _unit setVariable [QGVAR(carriedMagazine), nil]; // TODO replace by item + [[LSTRING(Hint_RearmedTriple), _rounds, + getText(configFile >> "CfgMagazines" >> _magazine >> "displayName"), + getText(configFile >> "CfgVehicles" >> (typeOf _target) >> "displayName")], 3, _unit] call EFUNC(common,displayTextStructured); + + REARM_SUCCESS }; _target removeMagazineTurret [_magazine, _turretPath]; _numMagazines = _numMagazines - 1; diff --git a/addons/rearm/stringtable.xml b/addons/rearm/stringtable.xml index 85523c0e30..954ad1c071 100644 --- a/addons/rearm/stringtable.xml +++ b/addons/rearm/stringtable.xml @@ -45,5 +45,33 @@ Pick up ammo Munition nehmen + + Rearmed %1 rounds of %2 on %3 + %1 Schuss %2 an %3 aufmunitioniert + + + Smoke Screen + Smoke Screen + Kouřová clona + Écran de fumée + Rauchwand + Cortina fumogena + Zasłona dymna + Cortina de fumaça + Дым. завеса + Pantalla de humo + + + Flares + Flares + Světlice + Fusées + Leuchtkörper + Razzi luminosi + Flary + Sinalizadores + ЛТЦ + Bengalas + From 0fcf692d36f6e56bc12e54ccdb53b96fb6b54915 Mon Sep 17 00:00:00 2001 From: IngoKauffmann Date: Sun, 16 Aug 2015 23:52:37 +0200 Subject: [PATCH 07/25] Moved dummies to CfgVehicles --- addons/rearm/CfgAmmo.hpp | 102 ------------------- addons/rearm/CfgEventHandlers.hpp | 14 +++ addons/rearm/CfgMagazines.hpp | 30 +++--- addons/rearm/CfgVehicles.hpp | 100 +++++++++++++++++- addons/rearm/XEH_postInit.sqf | 27 +++++ addons/rearm/XEH_preInit.sqf | 1 + addons/rearm/XEH_respawn.sqf | 16 +++ addons/rearm/functions/fnc_pickUpSuccess.sqf | 4 +- addons/rearm/functions/fnc_rearmSuccess.sqf | 29 +++--- addons/rearm/functions/fnc_turn.sqf | 21 ++++ addons/rearm/stringtable.xml | 52 +++++++++- 11 files changed, 258 insertions(+), 138 deletions(-) create mode 100644 addons/rearm/XEH_postInit.sqf create mode 100644 addons/rearm/XEH_respawn.sqf create mode 100644 addons/rearm/functions/fnc_turn.sqf diff --git a/addons/rearm/CfgAmmo.hpp b/addons/rearm/CfgAmmo.hpp index 174d4ccfb3..dec33f461d 100644 --- a/addons/rearm/CfgAmmo.hpp +++ b/addons/rearm/CfgAmmo.hpp @@ -1,13 +1,3 @@ -#define DUMMY_PROPERTIES \ - effectsSmoke = ""; \ - explosive = 0; \ - fuseDistance = 10000; \ - hit = 0; \ - indirectHit = 0; \ - muzzleEffect = ""; \ - simulation = "shotMine"; \ - timeToLive = 3600; - class CfgAmmo { class BombCore; @@ -234,98 +224,6 @@ class CfgAmmo { GVAR(dummy) = QGVAR(Bomb_03_F); }; - // Dummy Ammo - class GVAR(Bo_GBU12_LGB) : Bo_GBU12_LGB { - DUMMY_PROPERTIES - model = "\A3\Weapons_F\Ammo\Bomb_01_F.p3d"; - }; - - class GVAR(Bo_Mk82) : Bo_Mk82 { - DUMMY_PROPERTIES - model = "\A3\Weapons_F\Ammo\Bomb_02_F"; - }; - - class GVAR(Bomb_04_F) : Bomb_04_F { - DUMMY_PROPERTIES - model = "\A3\Weapons_F_EPC\Ammo\Bomb_04_F.p3d"; - }; - - class GVAR(Bomb_03_F) : Bomb_04_F { - DUMMY_PROPERTIES - model = "\A3\Weapons_F_EPC\Ammo\Bomb_03_F.p3d"; - }; - - class GVAR(Missile_AA_04_F) : Missile_AA_04_F { - DUMMY_PROPERTIES - model = "\A3\Weapons_F_EPC\Ammo\Missile_AA_04_F.p3d"; - }; - - class GVAR(Missile_AA_03_F) : Missile_AA_03_F { - DUMMY_PROPERTIES - model = "\A3\Weapons_F_EPC\Ammo\Missile_AA_03_F.p3d"; - }; - - class GVAR(Missile_AGM_02_F) : Missile_AGM_02_F { - DUMMY_PROPERTIES - model = "\A3\Weapons_F_EPC\Ammo\Missile_AGM_02_F.p3d"; - }; - - class GVAR(Missile_AGM_01_F) : Missile_AGM_01_F { - DUMMY_PROPERTIES - model = "\A3\Weapons_F_EPC\Ammo\Missile_AGM_01_F.p3d"; - }; - - class GVAR(R_230mm_fly) : R_230mm_fly { - DUMMY_PROPERTIES - model = "\A3\Weapons_F\Ammo\Missile_AT_02_F"; - }; - - class GVAR(R_230mm_HE) : R_230mm_HE { - DUMMY_PROPERTIES - model = "\A3\Weapons_F\Ammo\Missile_AT_02_F"; - }; - - class GVAR(M_PG_AT) : M_PG_AT { - DUMMY_PROPERTIES - model = "\A3\Weapons_F\Ammo\Rocket_01_F"; - }; - - class GVAR(Rocket_04_HE_F) : Rocket_04_HE_F { - DUMMY_PROPERTIES - model = "\A3\Weapons_F_EPC\Ammo\Rocket_04_HE_F.p3d"; - }; - - class GVAR(Rocket_03_HE_F) : Rocket_03_HE_F { - DUMMY_PROPERTIES - model = "\A3\Weapons_F_EPC\Ammo\Rocket_03_HE_F.p3d"; - }; - - class GVAR(Rocket_04_AP_F) : Rocket_04_HE_F { - DUMMY_PROPERTIES - model = "\A3\Weapons_F_EPC\Ammo\Rocket_04_AP_F.p3d"; - }; - - class GVAR(Rocket_03_AP_F) : Rocket_03_AP_F { - DUMMY_PROPERTIES - model = "\A3\Weapons_F_EPC\Ammo\Rocket_03_AP_F.p3d"; - }; - - // Using wrong model - class GVAR(R_80mm_HE) : R_80mm_HE { - DUMMY_PROPERTIES - model = "\A3\Weapons_F_EPC\Ammo\Rocket_03_HE_F.p3d"; - }; - - class GVAR(R_60mm_HE) : R_60mm_HE { - DUMMY_PROPERTIES - model = "\A3\Weapons_F_EPC\Ammo\Rocket_03_HE_F.p3d"; - }; - - class GVAR(R_Hydra_HE) : R_Hydra_HE { - DUMMY_PROPERTIES - model = "\A3\Weapons_F_EPC\Ammo\Rocket_03_HE_F.p3d"; - }; - // F18 Mod class js_a_fa18_wing_tank : LaserBombCore { GVAR(caliber) = 250; // Default caliber for bombs diff --git a/addons/rearm/CfgEventHandlers.hpp b/addons/rearm/CfgEventHandlers.hpp index b928bc2de6..b5d499850b 100644 --- a/addons/rearm/CfgEventHandlers.hpp +++ b/addons/rearm/CfgEventHandlers.hpp @@ -3,3 +3,17 @@ class Extended_PreInit_EventHandlers { init = QUOTE(call COMPILE_FILE(XEH_preInit)); }; }; + +class Extended_PostInit_EventHandlers { + class ADDON { + init = QUOTE(call COMPILE_FILE(XEH_postInit)); + }; +}; + +class Extended_Respawn_EventHandlers { + class CAManBase { + class ADDON { + respawn = QUOTE(call COMPILE_FILE(XEH_respawn)); + }; + }; +}; \ No newline at end of file diff --git a/addons/rearm/CfgMagazines.hpp b/addons/rearm/CfgMagazines.hpp index 2f2d16db93..63bccd451d 100644 --- a/addons/rearm/CfgMagazines.hpp +++ b/addons/rearm/CfgMagazines.hpp @@ -1,56 +1,56 @@ class CfgMagazines { class CA_Magazine; class 60Rnd_CMFlareMagazine : CA_Magazine { - displayName = CSTRING(flarelauncher); + displayName = CSTRING(60Rnd_CMFlareMagazine); }; class VehicleMagazine; class SmokeLauncherMag : VehicleMagazine { - displayName = CSTRING(smokelauncher); + displayName = CSTRING(SmokeLauncherMag); }; class SmokeLauncherMag_boat : VehicleMagazine { - displayName = CSTRING(smokelauncher); + displayName = CSTRING(SmokeLauncherMag); }; class 1000Rnd_Gatling_30mm_Plane_CAS_01_F : VehicleMagazine { - displayName = "30mm HEI"; + displayName = CSTRING(1000Rnd_Gatling_30mm_Plane_CAS_01_F); }; class 500Rnd_Cannon_30mm_Plane_CAS_02_F : 1000Rnd_Gatling_30mm_Plane_CAS_01_F { - displayName = "30mm HEI-T"; + displayName = CSTRING(500Rnd_Cannon_30mm_Plane_CAS_02_F); }; class 2Rnd_Missile_AA_04_F : VehicleMagazine { - displayName = "AIM-9 Sidewinder"; + displayName = CSTRING(2Rnd_Missile_AA_04_F); }; class 2Rnd_Missile_AA_03_F : 2Rnd_Missile_AA_04_F { - displayName = "Wympel R-73"; + displayName = CSTRING(2Rnd_Missile_AA_03_F); }; class 6Rnd_Missile_AGM_02_F : VehicleMagazine { - displayName = "AGM-65 Maverick"; + displayName = CSTRING(6Rnd_Missile_AGM_02_F); }; class 4Rnd_Missile_AGM_01_F : 6Rnd_Missile_AGM_02_F { - displayName = "Kh-25MTP"; + displayName = CSTRING(4Rnd_Missile_AGM_01_F); }; class 7Rnd_Rocket_04_HE_F : VehicleMagazine { - displayName = "Hydra 70 HE"; + displayName = CSTRING(7Rnd_Rocket_04_HE_F); }; class 20Rnd_Rocket_03_HE_F : 7Rnd_Rocket_04_HE_F { - displayName = "S-8 HE"; + displayName = CSTRING(20Rnd_Rocket_03_HE_F); }; class 7Rnd_Rocket_04_AP_F : 7Rnd_Rocket_04_HE_F { - displayName = "Hydra 70 AP"; + displayName = CSTRING(7Rnd_Rocket_04_AP_F); }; class 20Rnd_Rocket_03_AP_F : 7Rnd_Rocket_04_AP_F { - displayName = "S-8 AP"; + displayName = CSTRING(20Rnd_Rocket_03_AP_F); }; class 4Rnd_Bomb_04_F : VehicleMagazine { - displayName = "GBU-12" + displayName = CSTRING(4Rnd_Bomb_04_F); }; class 2Rnd_Bomb_03_F : 4Rnd_Bomb_04_F { - displayName = "FAB-250M-54" + displayName = CSTRING(2Rnd_Bomb_03_F); }; }; \ No newline at end of file diff --git a/addons/rearm/CfgVehicles.hpp b/addons/rearm/CfgVehicles.hpp index 10d22b0527..775e9e8bfe 100644 --- a/addons/rearm/CfgVehicles.hpp +++ b/addons/rearm/CfgVehicles.hpp @@ -30,7 +30,12 @@ }; \ }; \ }; - + +#define DUMMY_PROPERTIES \ + displayName = QGVAR(dummy_obj); \ + scope = 2; \ + scopeCurator = 2; + class CfgVehicles { class ACE_Module; class ACE_moduleRearmSettings : ACE_Module { @@ -122,4 +127,97 @@ class CfgVehicles { transportAmmo = 0; MACRO_REARM_PICKUPAMMO }; + + // Dummy vehicles + class ThingX; + class GVAR(Bo_GBU12_LGB) : ThingX { + DUMMY_PROPERTIES + model = "\A3\Weapons_F\Ammo\Bomb_01_F.p3d"; + }; + + class GVAR(Bo_Mk82) : ThingX { + DUMMY_PROPERTIES + model = "\A3\Weapons_F\Ammo\Bomb_02_F"; + }; + + class GVAR(Bomb_04_F) : ThingX { + DUMMY_PROPERTIES + model = "\A3\Weapons_F_EPC\Ammo\Bomb_04_F.p3d"; + }; + + class GVAR(Bomb_03_F) : ThingX { + DUMMY_PROPERTIES + model = "\A3\Weapons_F_EPC\Ammo\Bomb_03_F.p3d"; + }; + + class GVAR(Missile_AA_04_F) : ThingX { + DUMMY_PROPERTIES + model = "\A3\Weapons_F_EPC\Ammo\Missile_AA_04_F.p3d"; + }; + + class GVAR(Missile_AA_03_F) : ThingX { + DUMMY_PROPERTIES + model = "\A3\Weapons_F_EPC\Ammo\Missile_AA_03_F.p3d"; + }; + + class GVAR(Missile_AGM_02_F) : ThingX { + DUMMY_PROPERTIES + model = "\A3\Weapons_F_EPC\Ammo\Missile_AGM_02_F.p3d"; + }; + + class GVAR(Missile_AGM_01_F) : ThingX { + DUMMY_PROPERTIES + model = "\A3\Weapons_F_EPC\Ammo\Missile_AGM_01_F.p3d"; + }; + + class GVAR(R_230mm_fly) : ThingX { + DUMMY_PROPERTIES + model = "\A3\Weapons_F\Ammo\Missile_AT_02_F"; + }; + + class GVAR(R_230mm_HE) : ThingX { + DUMMY_PROPERTIES + model = "\A3\Weapons_F\Ammo\Missile_AT_02_F"; + }; + + class GVAR(M_PG_AT) : ThingX { + DUMMY_PROPERTIES + model = "\A3\Weapons_F\Ammo\Rocket_01_F"; + }; + + class GVAR(Rocket_04_HE_F) : ThingX { + DUMMY_PROPERTIES + model = "\A3\Weapons_F_EPC\Ammo\Rocket_04_HE_F.p3d"; + }; + + class GVAR(Rocket_03_HE_F) : ThingX { + DUMMY_PROPERTIES + model = "\A3\Weapons_F_EPC\Ammo\Rocket_03_HE_F.p3d"; + }; + + class GVAR(Rocket_04_AP_F) : ThingX { + DUMMY_PROPERTIES + model = "\A3\Weapons_F_EPC\Ammo\Rocket_04_AP_F.p3d"; + }; + + class GVAR(Rocket_03_AP_F) : ThingX { + DUMMY_PROPERTIES + model = "\A3\Weapons_F_EPC\Ammo\Rocket_03_AP_F.p3d"; + }; + + // Using wrong model + class GVAR(R_80mm_HE) : ThingX { + DUMMY_PROPERTIES + model = "\A3\Weapons_F_EPC\Ammo\Rocket_03_HE_F.p3d"; + }; + + class GVAR(R_60mm_HE) : ThingX { + DUMMY_PROPERTIES + model = "\A3\Weapons_F_EPC\Ammo\Rocket_03_HE_F.p3d"; + }; + + class GVAR(R_Hydra_HE) : ThingX { + DUMMY_PROPERTIES + model = "\A3\Weapons_F_EPC\Ammo\Rocket_03_HE_F.p3d"; + }; }; diff --git a/addons/rearm/XEH_postInit.sqf b/addons/rearm/XEH_postInit.sqf new file mode 100644 index 0000000000..2e95457915 --- /dev/null +++ b/addons/rearm/XEH_postInit.sqf @@ -0,0 +1,27 @@ +#include "script_component.hpp" + +["medical_onUnconscious", { + if (local (_this select 0)) then { + private ["_unit", "_dummy"]; + _unit = _this select 0; + if (_this select 1) then { + _dummy = _unit getVariable [QGVAR(dummy), objNull]; + if !(isNull _dummy) then { + detach _dummy; + deleteVehicle _dummy; // TODO remove when moved to CfgVehicles + }; + _unit setVariable [QGVAR(dummy), nil]; + }; + }; +}] call EFUNC(common,addEventHandler); + +["medical_onSetDead", { + if (local (_this select 0)) then { + private ["_unit"]; + _unit = _this select 0; + if (_this select 1) then { + _unit setVariable [QGVAR(selectedWeaponOnRearm), nil]; + _unit setVariable [QGVAR(carriedMagazine), nil]; + }; + }; +}] call EFUNC(common,addEventHandler); \ No newline at end of file diff --git a/addons/rearm/XEH_preInit.sqf b/addons/rearm/XEH_preInit.sqf index e78fa316cc..2c3bc4683a 100644 --- a/addons/rearm/XEH_preInit.sqf +++ b/addons/rearm/XEH_preInit.sqf @@ -13,5 +13,6 @@ PREP(rearmEntireVehicle); PREP(rearmEntireVehicleSuccess); PREP(rearmSuccess); PREP(moduleRearmSettings); +PREP(turn); ADDON = true; diff --git a/addons/rearm/XEH_respawn.sqf b/addons/rearm/XEH_respawn.sqf new file mode 100644 index 0000000000..7f0d175d1c --- /dev/null +++ b/addons/rearm/XEH_respawn.sqf @@ -0,0 +1,16 @@ +#include "script_component.hpp" + +private ["_unit"]; + +_unit = _this select 0; + +if !(local _unit) exitWith {}; + +_unit setVariable [QGVAR(selectedWeaponOnRearm), nil]; +_unit setVariable [QGVAR(carriedMagazine), nil]; +_dummy = _unit getVariable [QGVAR(dummy), objNull]; +if !(isNull _dummy) then { + detach _dummy; + deleteVehicle _dummy; +}; +_unit setVariable [QGVAR(dummy), nil]; \ No newline at end of file diff --git a/addons/rearm/functions/fnc_pickUpSuccess.sqf b/addons/rearm/functions/fnc_pickUpSuccess.sqf index da5483874b..4e7411f009 100644 --- a/addons/rearm/functions/fnc_pickUpSuccess.sqf +++ b/addons/rearm/functions/fnc_pickUpSuccess.sqf @@ -34,8 +34,8 @@ _ammo = getText (configFile >> "CfgMagazines" >> _magazine >> "ammo"); _dummy = getText (configFile >> "CfgAmmo" >> _ammo >> QGVAR(dummy)); if !(_dummy == "") then { _dummy = _dummy createVehicle (position _unit); - _dummy attachTo [_unit, [0,0.5,0], "pelvis"]; - _dummy setDir 90; + _dummy attachTo [_unit, [0,0.5,0], "pelvis"]; + [[_dummy, [[-1,0,0],[0,0,1]]], QUOTE(DFUNC(turn)), 2] call EFUNC(common,execRemoteFnc); _dummy allowDamage false; _unit setVariable [QGVAR(dummy), _dummy]; }; \ No newline at end of file diff --git a/addons/rearm/functions/fnc_rearmSuccess.sqf b/addons/rearm/functions/fnc_rearmSuccess.sqf index 2e628311eb..7e90f699b6 100644 --- a/addons/rearm/functions/fnc_rearmSuccess.sqf +++ b/addons/rearm/functions/fnc_rearmSuccess.sqf @@ -21,24 +21,25 @@ */ #include "script_component.hpp" -#define REARM_SUCCESS \ - [_unit, QGVAR(vehRearm), false] call EFUNC(common,setForceWalkStatus); \ - _dummy = _unit getVariable [QGVAR(dummy), objNull]; \ - if !(isNull _dummy) then { \ - detach _dummy; \ - deleteVehicle _dummy; \ - }; \ - _unit setVariable [QGVAR(carriedMagazine), nil, true]; \ - _weaponSelect = _unit getVariable QGVAR(selectedWeaponOnRearm); \ - _unit selectWeapon _weaponSelect; \ - _unit setVariable [QGVAR(selectedWeaponOnRearm), nil]; - private ["_rounds", "_currentRounds", "_maxMagazines", "_dummy"]; params ["_args"]; _args params ["_target", "_unit", "_turretPath", "_numMagazines", "_magazine", "_numRounds"]; //hint format ["Target: %1\nTurretPath: %2\nNumMagazines: %3\nMagazine: %4\nNumRounds: %5", _target, _turretPath, _numMagazines, _magazine, _numRounds]; +if (local _unit) then { + [_unit, QGVAR(vehRearm), false] call EFUNC(common,setForceWalkStatus); + _dummy = _unit getVariable [QGVAR(dummy), objNull]; + if !(isNull _dummy) then { + detach _dummy; + deleteVehicle _dummy; + }; + _unit setVariable [QGVAR(carriedMagazine), nil, true]; + _weaponSelect = _unit getVariable QGVAR(selectedWeaponOnRearm); + _unit selectWeapon _weaponSelect; + _unit setVariable [QGVAR(selectedWeaponOnRearm), nil]; +}; + if !(local _target) exitWith { [_this, QUOTE(DFUNC(rearmSuccess)), _target] call EFUNC(common,execRemoteFnc); }; @@ -58,8 +59,6 @@ if (_maxMagazines == 1) then { [[LSTRING(Hint_RearmedTriple), _numRounds, getText(configFile >> "CfgMagazines" >> _magazine >> "displayName"), getText(configFile >> "CfgVehicles" >> (typeOf _target) >> "displayName")], 3, _unit] call EFUNC(common,displayTextStructured); - - REARM_SUCCESS } else { for "_idx" from 1 to _maxMagazines do { _currentRounds = _target magazineTurretAmmo [_magazine, _turretPath]; @@ -87,8 +86,6 @@ if (_maxMagazines == 1) then { [[LSTRING(Hint_RearmedTriple), _rounds, getText(configFile >> "CfgMagazines" >> _magazine >> "displayName"), getText(configFile >> "CfgVehicles" >> (typeOf _target) >> "displayName")], 3, _unit] call EFUNC(common,displayTextStructured); - - REARM_SUCCESS }; _target removeMagazineTurret [_magazine, _turretPath]; _numMagazines = _numMagazines - 1; diff --git a/addons/rearm/functions/fnc_turn.sqf b/addons/rearm/functions/fnc_turn.sqf new file mode 100644 index 0000000000..c096afd0d8 --- /dev/null +++ b/addons/rearm/functions/fnc_turn.sqf @@ -0,0 +1,21 @@ +/* + * Author: GitHawk + * Turns an object + * + * Arguments: + * 0: The Player + * 1: The dirAndUp vector + * + * Return Value: + * None + * + * Example: + * [_dummy, [[1,0,0],[0,0,1]]] call ace_rearm_fnc_turn + * + * Public: No + */ +#include "script_component.hpp" + +params ["_obj", "_dirAndUp"]; + +_obj setVectorDirAndUp _dirAndUp; diff --git a/addons/rearm/stringtable.xml b/addons/rearm/stringtable.xml index 954ad1c071..24bc49a058 100644 --- a/addons/rearm/stringtable.xml +++ b/addons/rearm/stringtable.xml @@ -49,7 +49,7 @@ Rearmed %1 rounds of %2 on %3 %1 Schuss %2 an %3 aufmunitioniert - + Smoke Screen Smoke Screen Kouřová clona @@ -61,7 +61,7 @@ Дым. завеса Pantalla de humo - + Flares Flares Světlice @@ -73,5 +73,53 @@ ЛТЦ Bengalas + + 30mm HEI + 30mm HEI + + + 30mm HEI-T + 30mm HEI-T + + + AIM-9 Sidewinder + AIM-9 Sidewinder + + + Wympel R-73 + Wympel R-73 + + + AGM-65 Maverick + AGM-65 Maverick + + + Kh-25MTP + Kh-25MTP + + + Hydra 70 HE + Hydra 70 HE + + + S-8 HE + S-8 HE + + + Hydra 70 AP + Hydra 70 AP + + + S-8 AP + S-8 AP + + + GBU-12 + GBU-12 + + + FAB-250M-54 + FAB-250M-54 + From c8c6488125ddc7e5f45f55c99affd3ef1a3e3aa2 Mon Sep 17 00:00:00 2001 From: jonpas Date: Tue, 18 Aug 2015 02:32:10 +0200 Subject: [PATCH 08/25] Cleaned, improved, fixed, changed - entire rearm --- addons/rearm/ACE_Settings.hpp | 2 +- addons/rearm/CfgAmmo.hpp | 122 ++++++++--------- addons/rearm/CfgEventHandlers.hpp | 10 +- addons/rearm/CfgMagazines.hpp | 34 ++--- addons/rearm/CfgVehicles.hpp | 125 ++++++++---------- addons/rearm/XEH_postInit.sqf | 26 +--- addons/rearm/XEH_preInit.sqf | 7 +- addons/rearm/config.cpp | 9 +- .../rearm/functions/fnc_addRearmActions.sqf | 60 ++++----- addons/rearm/functions/fnc_canPickUpAmmo.sqf | 10 +- addons/rearm/functions/fnc_canRearm.sqf | 74 ++--------- .../rearm/functions/fnc_getMaxMagazines.sqf | 89 ++++--------- .../functions/fnc_getNeedRearmMagazines.sqf | 43 ++++++ addons/rearm/functions/fnc_handleKilled.sqf | 23 ++++ .../rearm/functions/fnc_handleUnconscious.sqf | 31 +++++ .../functions/fnc_moduleRearmSettings.sqf | 18 ++- addons/rearm/functions/fnc_pickUpAmmo.sqf | 23 ++-- addons/rearm/functions/fnc_pickUpSuccess.sqf | 13 +- addons/rearm/functions/fnc_rearm.sqf | 95 ++++--------- .../functions/fnc_rearmEntireVehicle.sqf | 12 +- .../fnc_rearmEntireVehicleSuccess.sqf | 12 +- addons/rearm/functions/fnc_rearmSuccess.sqf | 58 ++++---- addons/rearm/functions/fnc_turn.sqf | 8 +- addons/rearm/script_component.hpp | 12 +- addons/rearm/stringtable.xml | 49 +++---- 25 files changed, 457 insertions(+), 508 deletions(-) create mode 100644 addons/rearm/functions/fnc_getNeedRearmMagazines.sqf create mode 100644 addons/rearm/functions/fnc_handleKilled.sqf create mode 100644 addons/rearm/functions/fnc_handleUnconscious.sqf diff --git a/addons/rearm/ACE_Settings.hpp b/addons/rearm/ACE_Settings.hpp index d3e4b40d03..f4d6562807 100644 --- a/addons/rearm/ACE_Settings.hpp +++ b/addons/rearm/ACE_Settings.hpp @@ -2,7 +2,7 @@ class ACE_Settings { class GVAR(level) { displayName = CSTRING(RearmSettings_level_DisplayName); description = CSTRING(RearmSettings_level_Description); - value = 1; + value = 0; typeName = "SCALAR"; values[] = {CSTRING(RearmSettings_vehicle), CSTRING(RearmSettings_magazine), CSTRING(RearmSettings_caliber)}; }; diff --git a/addons/rearm/CfgAmmo.hpp b/addons/rearm/CfgAmmo.hpp index dec33f461d..3a346f4bd3 100644 --- a/addons/rearm/CfgAmmo.hpp +++ b/addons/rearm/CfgAmmo.hpp @@ -1,5 +1,5 @@ class CfgAmmo { - + class BombCore; class BombBase : BombCore { GVAR(caliber) = 250; // Default caliber for bombs @@ -17,7 +17,7 @@ class CfgAmmo { class Missile_AA_03_F : Missile_AA_04_F { GVAR(dummy) = QGVAR(Missile_AA_03_F); }; - + class Rocket_04_HE_F : MissileBase { GVAR(caliber) = 70; GVAR(dummy) = QGVAR(Rocket_04_HE_F); @@ -60,170 +60,170 @@ class CfgAmmo { class R_Hydra_HE : RocketBase { GVAR(dummy) = QGVAR(R_Hydra_HE); }; - + class BulletBase; class B_19mm_HE : BulletBase { - GVAR(caliber) = 19; + GVAR(caliber) = 19; }; - + class B_20mm : BulletBase { - GVAR(caliber) = 20; + GVAR(caliber) = 20; }; - + class B_25mm : BulletBase { - GVAR(caliber) = 25; + GVAR(caliber) = 25; }; class B_30mm_AP : BulletBase { - GVAR(caliber) = 30; + GVAR(caliber) = 30; }; class B_30mm_HE : B_19mm_HE { - GVAR(caliber) = 30; + GVAR(caliber) = 30; }; class Gatling_30mm_HE_Plane_CAS_01_F : BulletBase { - GVAR(caliber) = 30; + GVAR(caliber) = 30; }; - + class B_35mm_AA : BulletBase { - GVAR(caliber) = 35; + GVAR(caliber) = 35; }; - + class B_30mm_APFSDS; class B_40mm_APFSDS : B_30mm_APFSDS { - GVAR(caliber) = 40; + GVAR(caliber) = 40; }; - + class B_40mm_GPR : B_30mm_HE { - GVAR(caliber) = 40; + GVAR(caliber) = 40; }; class GrenadeBase; class G_40mm_HE : GrenadeBase { - GVAR(caliber) = 40; + GVAR(caliber) = 40; }; class RDS_B_127x107_Ball : BulletBase { - GVAR(caliber) = 12.7; + GVAR(caliber) = 12.7; }; - + class ShellBase; class R_230mm_fly : ShellBase { GVAR(dummy) = QGVAR(R_230mm_fly); }; class Sh_120mm_APFSDS : Shellbase { - GVAR(caliber) = 120; + GVAR(caliber) = 120; }; class Sh_105mm_APFSDS : Sh_120mm_APFSDS { - GVAR(caliber) = 105; + GVAR(caliber) = 105; }; class Sh_125mm_APFSDS : Sh_120mm_APFSDS { - GVAR(caliber) = 125; + GVAR(caliber) = 125; }; - + class Sh_120mm_HE : ShellBase { - GVAR(caliber) = 120; + GVAR(caliber) = 120; }; class Sh_125mm_HE : Sh_120mm_HE { - GVAR(caliber) = 125; + GVAR(caliber) = 125; }; class Sh_125mm_HEAT : Sh_125mm_HE { - GVAR(caliber) = 125; + GVAR(caliber) = 125; }; class Sh_105mm_HEAT_MP : Sh_125mm_HEAT { - GVAR(caliber) = 105; + GVAR(caliber) = 105; }; - + class Sh_155mm_AMOS : ShellBase { - GVAR(caliber) = 155; + GVAR(caliber) = 155; }; class Sh_82mm_AMOS : Sh_155mm_AMOS { - GVAR(caliber) = 82; + GVAR(caliber) = 82; }; class RDS_Sh_122_HE : Sh_155mm_AMOS { - GVAR(caliber) = 122; + GVAR(caliber) = 122; }; class RDS_Sh_105_HE : Sh_155mm_AMOS { - GVAR(caliber) = 105; + GVAR(caliber) = 105; }; - + class Sh_82mm_AMOS_LG; class Sh_155mm_AMOS_LG : Sh_82mm_AMOS_LG { - GVAR(caliber) = 155; + GVAR(caliber) = 155; }; class RDS_Sh_122_LASER : Sh_155mm_AMOS_LG { - GVAR(caliber) = 122; + GVAR(caliber) = 122; }; class RDS_Sh_105_LASER : Sh_155mm_AMOS_LG { - GVAR(caliber) = 105; + GVAR(caliber) = 105; }; - + class ShotDeployBase; class Smoke_82mm_AMOS_White : ShotDeployBase { - GVAR(caliber) = 82; + GVAR(caliber) = 82; }; - + class FlareCore; class Flare_82mm_AMOS_White : FlareCore { - GVAR(caliber) = 82; + GVAR(caliber) = 82; }; - + class SmokeLauncherAmmo : BulletBase { - GVAR(caliber) = 250; + GVAR(caliber) = 250; }; - + class CMflareAmmo : BulletBase { GVAR(caliber) = 40; }; - + class SubmunitionBase; class Sh_82mm_AMOS_guided : SubmunitionBase { - GVAR(caliber) = 82; + GVAR(caliber) = 82; }; class Sh_155mm_AMOS_guided : Sh_82mm_AMOS_guided { - GVAR(caliber) = 155; + GVAR(caliber) = 155; }; class R_230mm_HE : SubmunitionBase { - GVAR(caliber) = 230; + GVAR(caliber) = 230; }; class rhs_ammo_127x108mm_x5 : SubmunitionBase { - GVAR(caliber) = 12.7; + GVAR(caliber) = 12.7; }; class Mine_155mm_AMOS_range : SubmunitionBase { - GVAR(caliber) = 155; + GVAR(caliber) = 155; }; class Cluster_155mm_AMOS : SubmunitionBase { - GVAR(caliber) = 155; + GVAR(caliber) = 155; }; class Smoke_120mm_AMOS_White : SubmunitionBase { - GVAR(caliber) = 155; + GVAR(caliber) = 155; }; class AT_Mine_155mm_AMOS_range : SubmunitionBase { - GVAR(caliber) = 155; + GVAR(caliber) = 155; }; - + class rhs_ammo_rpgShell_base : ShellBase { - GVAR(caliber) = 70; + GVAR(caliber) = 70; }; - + class Bo_Mk82 : BombCore { GVAR(dummy) = QGVAR(Bo_Mk82); }; - + class Bo_GBU12_LGB : LaserBombCore { GVAR(caliber) = 250; // Default caliber for bombs GVAR(dummy) = QGVAR(Bo_GBU12_LGB); }; - + class Bomb_04_F : LaserBombCore { GVAR(caliber) = 250; // Default caliber for bombs GVAR(dummy) = QGVAR(Bomb_04_F); }; - + class Bomb_03_F : Bomb_04_F { GVAR(dummy) = QGVAR(Bomb_03_F); }; - + // F18 Mod class js_a_fa18_wing_tank : LaserBombCore { GVAR(caliber) = 250; // Default caliber for bombs @@ -232,7 +232,7 @@ class CfgAmmo { class js_a_fa18x_GBU39_SDB : js_a_fa18x_MK82 { GVAR(caliber) = 250; // Default caliber for bombs }; - + class js_a_fa18_GBU12_LGB : LaserBombCore {}; class js_a_fa18_GBU38_JDAM : js_a_fa18_GBU12_LGB { GVAR(caliber) = 250; // Default caliber for bombs diff --git a/addons/rearm/CfgEventHandlers.hpp b/addons/rearm/CfgEventHandlers.hpp index b5d499850b..b125006442 100644 --- a/addons/rearm/CfgEventHandlers.hpp +++ b/addons/rearm/CfgEventHandlers.hpp @@ -16,4 +16,12 @@ class Extended_Respawn_EventHandlers { respawn = QUOTE(call COMPILE_FILE(XEH_respawn)); }; }; -}; \ No newline at end of file +}; + +class Extended_Killed_EventHandlers { + class CAManBase { + class ADDON { + killed = QUOTE(_this call FUNC(handleKilled)); + }; + }; +}; diff --git a/addons/rearm/CfgMagazines.hpp b/addons/rearm/CfgMagazines.hpp index 63bccd451d..a509377182 100644 --- a/addons/rearm/CfgMagazines.hpp +++ b/addons/rearm/CfgMagazines.hpp @@ -1,56 +1,56 @@ class CfgMagazines { class CA_Magazine; class 60Rnd_CMFlareMagazine : CA_Magazine { - displayName = CSTRING(60Rnd_CMFlareMagazine); + displayName = CSTRING(Mag_60Rnd_CMFlareMagazine); }; class VehicleMagazine; class SmokeLauncherMag : VehicleMagazine { - displayName = CSTRING(SmokeLauncherMag); + displayName = CSTRING(Mag_SmokeLauncherMag); }; class SmokeLauncherMag_boat : VehicleMagazine { - displayName = CSTRING(SmokeLauncherMag); + displayName = CSTRING(Mag_SmokeLauncherMag); }; - + class 1000Rnd_Gatling_30mm_Plane_CAS_01_F : VehicleMagazine { - displayName = CSTRING(1000Rnd_Gatling_30mm_Plane_CAS_01_F); + displayName = CSTRING(Mag_1000Rnd_Gatling_30mm_Plane_CAS_01_F); }; class 500Rnd_Cannon_30mm_Plane_CAS_02_F : 1000Rnd_Gatling_30mm_Plane_CAS_01_F { - displayName = CSTRING(500Rnd_Cannon_30mm_Plane_CAS_02_F); + displayName = CSTRING(Mag_500Rnd_Cannon_30mm_Plane_CAS_02_F); }; class 2Rnd_Missile_AA_04_F : VehicleMagazine { - displayName = CSTRING(2Rnd_Missile_AA_04_F); + displayName = CSTRING(Mag_2Rnd_Missile_AA_04_F); }; class 2Rnd_Missile_AA_03_F : 2Rnd_Missile_AA_04_F { - displayName = CSTRING(2Rnd_Missile_AA_03_F); + displayName = CSTRING(Mag_2Rnd_Missile_AA_03_F); }; class 6Rnd_Missile_AGM_02_F : VehicleMagazine { - displayName = CSTRING(6Rnd_Missile_AGM_02_F); + displayName = CSTRING(Mag_6Rnd_Missile_AGM_02_F); }; class 4Rnd_Missile_AGM_01_F : 6Rnd_Missile_AGM_02_F { - displayName = CSTRING(4Rnd_Missile_AGM_01_F); + displayName = CSTRING(Mag_4Rnd_Missile_AGM_01_F); }; class 7Rnd_Rocket_04_HE_F : VehicleMagazine { - displayName = CSTRING(7Rnd_Rocket_04_HE_F); + displayName = CSTRING(Mag_7Rnd_Rocket_04_HE_F); }; class 20Rnd_Rocket_03_HE_F : 7Rnd_Rocket_04_HE_F { - displayName = CSTRING(20Rnd_Rocket_03_HE_F); + displayName = CSTRING(Mag_20Rnd_Rocket_03_HE_F); }; class 7Rnd_Rocket_04_AP_F : 7Rnd_Rocket_04_HE_F { - displayName = CSTRING(7Rnd_Rocket_04_AP_F); + displayName = CSTRING(Mag_7Rnd_Rocket_04_AP_F); }; class 20Rnd_Rocket_03_AP_F : 7Rnd_Rocket_04_AP_F { - displayName = CSTRING(20Rnd_Rocket_03_AP_F); + displayName = CSTRING(Mag_20Rnd_Rocket_03_AP_F); }; class 4Rnd_Bomb_04_F : VehicleMagazine { - displayName = CSTRING(4Rnd_Bomb_04_F); + displayName = CSTRING(Mag_4Rnd_Bomb_04_F); }; class 2Rnd_Bomb_03_F : 4Rnd_Bomb_04_F { - displayName = CSTRING(2Rnd_Bomb_03_F); + displayName = CSTRING(Mag_2Rnd_Bomb_03_F); }; -}; \ No newline at end of file +}; diff --git a/addons/rearm/CfgVehicles.hpp b/addons/rearm/CfgVehicles.hpp index 775e9e8bfe..cfe0bfb289 100644 --- a/addons/rearm/CfgVehicles.hpp +++ b/addons/rearm/CfgVehicles.hpp @@ -1,13 +1,8 @@ -#define REARM_ACTION_DISTANCE 4.5 #define MACRO_REARM_ACTIONS \ class ACE_Actions { \ class ACE_MainActions { \ - displayName = ECSTRING(interaction,MainAction); \ - selection = ""; \ - distance = 10; \ - condition = "true"; \ - class GVAR(rearm) { \ - displayName = CSTRING(rearm); \ + class GVAR(Rearm) { \ + displayName = CSTRING(Rearm); \ distance = REARM_ACTION_DISTANCE; \ condition = QUOTE([ARR_2(_player,_target)] call FUNC(canRearm)); \ statement = QUOTE([ARR_2(_player,_target)] call FUNC(rearm)); \ @@ -15,23 +10,23 @@ icon = PATHTOF(ui\icon_rearm_interact.paa); \ }; \ }; \ - }; + }; #define MACRO_REARM_PICKUPAMMO \ class ACE_Actions : ACE_Actions { \ class ACE_MainActions : ACE_MainActions { \ - class GVAR(pickUpAmmo) { \ - displayName = CSTRING(pickUpAmmo); \ + class GVAR(PickUpAmmo) { \ + displayName = CSTRING(PickUpAmmo); \ distance = REARM_ACTION_DISTANCE; \ condition = QUOTE([ARR_2(_player,_target)] call FUNC(canPickUpAmmo)); \ - insertChildren = QUOTE([ARR_1(_target)] call DFUNC(addRearmActions)); \ + insertChildren = QUOTE([_target] call FUNC(addRearmActions)); \ exceptions[] = {"isNotInside"}; \ icon = PATHTOF(ui\icon_rearm_interact.paa); \ }; \ }; \ }; -#define DUMMY_PROPERTIES \ +#define MACRO_DUMMY_PROPERTIES \ displayName = QGVAR(dummy_obj); \ scope = 2; \ scopeCurator = 2; @@ -43,7 +38,7 @@ class CfgVehicles { displayName = CSTRING(RearmSettings_Module_DisplayName); icon = QUOTE(PATHTOF(ui\icon_module_rearm.paa)); category = "ACE"; - function = QUOTE(DFUNC(moduleRearmSettings)); + function = QFUNC(moduleRearmSettings); functionPriority = 1; isGlobal = 0; isTriggerActivated = 0; @@ -70,6 +65,9 @@ class CfgVehicles { }; }; }; + class ModuleDescription { + description = CSTRING(RearmSettings_Module_Description); + }; }; class LandVehicle; @@ -80,7 +78,7 @@ class CfgVehicles { class Tank : LandVehicle { MACRO_REARM_ACTIONS }; - + class StaticWeapon : LandVehicle { MACRO_REARM_ACTIONS }; @@ -99,125 +97,110 @@ class CfgVehicles { MACRO_REARM_ACTIONS }; + + // Ammo Vehicles (with full inheritance for granted ACE_Actions) class Car_F : Car {}; class Truck_F : Car_F {}; - class Truck_01_base_F: Truck_F {}; - class Truck_02_base_F : Truck_F {}; + class Truck_03_base_F : Truck_F {}; - - class B_Truck_01_transport_F : Truck_01_base_F {}; - class B_Truck_01_mover_F: B_Truck_01_transport_F {}; - - class I_Truck_02_ammo_F : Truck_02_base_F { - transportAmmo = 0; - MACRO_REARM_PICKUPAMMO - }; - - class B_Truck_01_ammo_F : B_Truck_01_mover_F { - transportAmmo = 0; - MACRO_REARM_PICKUPAMMO - }; - - class O_Truck_02_Ammo_F : Truck_02_base_F { - transportAmmo = 0; - MACRO_REARM_PICKUPAMMO - }; - class O_Truck_03_ammo_F : Truck_03_base_F { transportAmmo = 0; MACRO_REARM_PICKUPAMMO }; - // Dummy vehicles + class Truck_02_base_F : Truck_F {}; + class Truck_02_Ammo_base_F : Truck_02_base_F {}; + class I_Truck_02_ammo_F : Truck_02_Ammo_base_F { + transportAmmo = 0; + MACRO_REARM_PICKUPAMMO + }; + class O_Truck_02_Ammo_F : Truck_02_Ammo_base_F { + transportAmmo = 0; + MACRO_REARM_PICKUPAMMO + }; + + class Truck_01_base_F : Truck_F {}; + class B_Truck_01_transport_F : Truck_01_base_F {}; + class B_Truck_01_mover_F : B_Truck_01_transport_F {}; + class B_Truck_01_ammo_F : B_Truck_01_mover_F { + transportAmmo = 0; + MACRO_REARM_PICKUPAMMO + }; + + + // Dummy Vehicles class ThingX; class GVAR(Bo_GBU12_LGB) : ThingX { - DUMMY_PROPERTIES + MACRO_DUMMY_PROPERTIES model = "\A3\Weapons_F\Ammo\Bomb_01_F.p3d"; }; - class GVAR(Bo_Mk82) : ThingX { - DUMMY_PROPERTIES + MACRO_DUMMY_PROPERTIES model = "\A3\Weapons_F\Ammo\Bomb_02_F"; }; - class GVAR(Bomb_04_F) : ThingX { - DUMMY_PROPERTIES + MACRO_DUMMY_PROPERTIES model = "\A3\Weapons_F_EPC\Ammo\Bomb_04_F.p3d"; }; - class GVAR(Bomb_03_F) : ThingX { - DUMMY_PROPERTIES + MACRO_DUMMY_PROPERTIES model = "\A3\Weapons_F_EPC\Ammo\Bomb_03_F.p3d"; }; - class GVAR(Missile_AA_04_F) : ThingX { - DUMMY_PROPERTIES + MACRO_DUMMY_PROPERTIES model = "\A3\Weapons_F_EPC\Ammo\Missile_AA_04_F.p3d"; }; - class GVAR(Missile_AA_03_F) : ThingX { - DUMMY_PROPERTIES + MACRO_DUMMY_PROPERTIES model = "\A3\Weapons_F_EPC\Ammo\Missile_AA_03_F.p3d"; }; - class GVAR(Missile_AGM_02_F) : ThingX { - DUMMY_PROPERTIES + MACRO_DUMMY_PROPERTIES model = "\A3\Weapons_F_EPC\Ammo\Missile_AGM_02_F.p3d"; }; - class GVAR(Missile_AGM_01_F) : ThingX { - DUMMY_PROPERTIES + MACRO_DUMMY_PROPERTIES model = "\A3\Weapons_F_EPC\Ammo\Missile_AGM_01_F.p3d"; }; - class GVAR(R_230mm_fly) : ThingX { - DUMMY_PROPERTIES + MACRO_DUMMY_PROPERTIES model = "\A3\Weapons_F\Ammo\Missile_AT_02_F"; }; - class GVAR(R_230mm_HE) : ThingX { - DUMMY_PROPERTIES + MACRO_DUMMY_PROPERTIES model = "\A3\Weapons_F\Ammo\Missile_AT_02_F"; }; - class GVAR(M_PG_AT) : ThingX { - DUMMY_PROPERTIES + MACRO_DUMMY_PROPERTIES model = "\A3\Weapons_F\Ammo\Rocket_01_F"; }; - class GVAR(Rocket_04_HE_F) : ThingX { - DUMMY_PROPERTIES + MACRO_DUMMY_PROPERTIES model = "\A3\Weapons_F_EPC\Ammo\Rocket_04_HE_F.p3d"; }; - class GVAR(Rocket_03_HE_F) : ThingX { - DUMMY_PROPERTIES + MACRO_DUMMY_PROPERTIES model = "\A3\Weapons_F_EPC\Ammo\Rocket_03_HE_F.p3d"; }; - class GVAR(Rocket_04_AP_F) : ThingX { - DUMMY_PROPERTIES + MACRO_DUMMY_PROPERTIES model = "\A3\Weapons_F_EPC\Ammo\Rocket_04_AP_F.p3d"; }; - class GVAR(Rocket_03_AP_F) : ThingX { - DUMMY_PROPERTIES + MACRO_DUMMY_PROPERTIES model = "\A3\Weapons_F_EPC\Ammo\Rocket_03_AP_F.p3d"; }; - // Using wrong model class GVAR(R_80mm_HE) : ThingX { - DUMMY_PROPERTIES + MACRO_DUMMY_PROPERTIES model = "\A3\Weapons_F_EPC\Ammo\Rocket_03_HE_F.p3d"; }; - class GVAR(R_60mm_HE) : ThingX { - DUMMY_PROPERTIES + MACRO_DUMMY_PROPERTIES model = "\A3\Weapons_F_EPC\Ammo\Rocket_03_HE_F.p3d"; }; - class GVAR(R_Hydra_HE) : ThingX { - DUMMY_PROPERTIES + MACRO_DUMMY_PROPERTIES model = "\A3\Weapons_F_EPC\Ammo\Rocket_03_HE_F.p3d"; }; }; diff --git a/addons/rearm/XEH_postInit.sqf b/addons/rearm/XEH_postInit.sqf index 2e95457915..682ebaf094 100644 --- a/addons/rearm/XEH_postInit.sqf +++ b/addons/rearm/XEH_postInit.sqf @@ -1,27 +1,3 @@ #include "script_component.hpp" -["medical_onUnconscious", { - if (local (_this select 0)) then { - private ["_unit", "_dummy"]; - _unit = _this select 0; - if (_this select 1) then { - _dummy = _unit getVariable [QGVAR(dummy), objNull]; - if !(isNull _dummy) then { - detach _dummy; - deleteVehicle _dummy; // TODO remove when moved to CfgVehicles - }; - _unit setVariable [QGVAR(dummy), nil]; - }; - }; -}] call EFUNC(common,addEventHandler); - -["medical_onSetDead", { - if (local (_this select 0)) then { - private ["_unit"]; - _unit = _this select 0; - if (_this select 1) then { - _unit setVariable [QGVAR(selectedWeaponOnRearm), nil]; - _unit setVariable [QGVAR(carriedMagazine), nil]; - }; - }; -}] call EFUNC(common,addEventHandler); \ No newline at end of file +["medical_onUnconscious", {_this call FUNC(handleOnUnconscious)}] call EFUNC(common,addEventHandler); diff --git a/addons/rearm/XEH_preInit.sqf b/addons/rearm/XEH_preInit.sqf index 2c3bc4683a..70ec760a2e 100644 --- a/addons/rearm/XEH_preInit.sqf +++ b/addons/rearm/XEH_preInit.sqf @@ -3,16 +3,19 @@ ADDON = false; PREP(addRearmActions); -PREP(canRearm); PREP(canPickupAmmo); +PREP(canRearm); PREP(getMaxMagazines); +PREP(getNeedRearmMagazines); +PREP(handleKilled); +PREP(handleUnconscious); +PREP(moduleRearmSettings); PREP(pickUpAmmo); PREP(pickUpSuccess); PREP(rearm); PREP(rearmEntireVehicle); PREP(rearmEntireVehicleSuccess); PREP(rearmSuccess); -PREP(moduleRearmSettings); PREP(turn); ADDON = true; diff --git a/addons/rearm/config.cpp b/addons/rearm/config.cpp index 975f35b2e3..a0308e1bad 100644 --- a/addons/rearm/config.cpp +++ b/addons/rearm/config.cpp @@ -7,13 +7,14 @@ class CfgPatches { requiredVersion = REQUIRED_VERSION; requiredAddons[] = {"ace_interaction"}; author[] = {"GitHawk"}; - authorUrl = ""; + authorUrl = "https://ace3mod.com"; VERSION_CONFIG; }; }; +#include "ACE_Settings.hpp" #include "CfgEventHandlers.hpp" -#include "CfgVehicles.hpp" -#include "CfgMagazines.hpp" + #include "CfgAmmo.hpp" -#include "ACE_Settings.hpp" \ No newline at end of file +#include "CfgMagazines.hpp" +#include "CfgVehicles.hpp" diff --git a/addons/rearm/functions/fnc_addRearmActions.sqf b/addons/rearm/functions/fnc_addRearmActions.sqf index 987bc473b1..a8bd6b7382 100644 --- a/addons/rearm/functions/fnc_addRearmActions.sqf +++ b/addons/rearm/functions/fnc_addRearmActions.sqf @@ -1,7 +1,6 @@ /* * Author: GitHawk * Show the resupplyable ammunition of all surrounding vehicles. - * Called from "insertChildren" on interact_menu * * Argument: * 0: Target @@ -16,11 +15,11 @@ */ #include "script_component.hpp" -private ["_vehicleActions", "_actions", "_action", "_vehicles", "_vehicle", "_needToAdd", "_magazineHelper", "_turretPath", "_magazines", "_magazine", "_icon"]; +private ["_vehicleActions", "_actions", "_action", "_vehicles", "_vehicle", "_needToAdd", "_magazineHelper", "_turretPath", "_magazines", "_magazine", "_icon", "_cnt"]; params ["_target"]; _vehicles = nearestObjects [_target, ["AllVehicles"], 20]; -if (count _vehicles < 2) exitWith {false}; // Logistics needs at least 2 vehicles +if (count _vehicles < 2) exitWith {false}; // Rearming needs at least 2 vehicles _vehicleActions = []; { @@ -37,32 +36,32 @@ _vehicleActions = []; _magazine = _x; _cnt = { _x == _magazine } count (_vehicle magazinesTurret _turretPath); if ((_cnt < ([_vehicle, _turretPath, _magazine] call FUNC(getMaxMagazines))) && !(_magazine in _magazineHelper)) then { - _action = [_magazine, - getText(configFile >> "CfgMagazines" >> _magazine >> "displayName"), - getText(configFile >> "CfgMagazines" >> _magazine >> "picture"), - {_this call FUNC(pickUpAmmo)}, - {true}, - {}, + _action = [_magazine, + getText(configFile >> "CfgMagazines" >> _magazine >> "displayName"), + getText(configFile >> "CfgMagazines" >> _magazine >> "picture"), + {_this call FUNC(pickUpAmmo)}, + {true}, + {}, [_magazine, _vehicle]] call EFUNC(interact_menu,createAction); _actions pushBack [_action, [], _target]; _magazineHelper pushBack _magazine; _needToAdd = true; } else { if (((_vehicle magazineTurretAmmo [_magazine, _turretPath]) < getNumber (configFile >> "CfgMagazines" >> _magazine >> "count")) && !(_magazine in _magazineHelper)) then { - _action = [_magazine, - getText(configFile >> "CfgMagazines" >> _magazine >> "displayName"), - getText(configFile >> "CfgMagazines" >> _magazine >> "picture"), - {_this call FUNC(pickUpAmmo)}, - {true}, - {}, + _action = [_magazine, + getText(configFile >> "CfgMagazines" >> _magazine >> "displayName"), + getText(configFile >> "CfgMagazines" >> _magazine >> "picture"), + {_this call FUNC(pickUpAmmo)}, + {true}, + {}, [_magazine, _vehicle]] call EFUNC(interact_menu,createAction); _actions pushBack [_action, [], _target]; _magazineHelper pushBack _magazine; _needToAdd = true; }; }; - } foreach _magazines; - } foreach [[0], [-1], [0,0], [0,1], [1], [2]]; + } forEach _magazines; + } forEach REARM_TURRET_PATHS; }; if (_needToAdd) then { _icon = getText(configFile >> "CfgVehicles" >> (typeOf _vehicle) >> "Icon"); @@ -70,26 +69,25 @@ _vehicleActions = []; _icon = ""; }; if (GVAR(level) == 0) then { - _action = [_vehicle, - getText(configFile >> "CfgVehicles" >> (typeOf _vehicle) >> "displayName"), - _icon, - {_this call FUNC(rearmEntireVehicle)}, - {true}, - {}, + _action = [_vehicle, + getText(configFile >> "CfgVehicles" >> (typeOf _vehicle) >> "displayName"), + _icon, + {_this call FUNC(rearmEntireVehicle)}, + {true}, + {}, _vehicle] call EFUNC(interact_menu,createAction); _vehicleActions pushBack [_action, [], _target]; } else { - _action = [_vehicle, - getText(configFile >> "CfgVehicles" >> (typeOf _vehicle) >> "displayName"), - _icon, - {}, - {true}, - {}, + _action = [_vehicle, + getText(configFile >> "CfgVehicles" >> (typeOf _vehicle) >> "displayName"), + _icon, + {}, + {true}, + {}, []] call EFUNC(interact_menu,createAction); _vehicleActions pushBack [_action, _actions, _target]; }; }; -} foreach _vehicles; - +} forEach _vehicles; _vehicleActions diff --git a/addons/rearm/functions/fnc_canPickUpAmmo.sqf b/addons/rearm/functions/fnc_canPickUpAmmo.sqf index 16ff092a60..a6855de756 100644 --- a/addons/rearm/functions/fnc_canPickUpAmmo.sqf +++ b/addons/rearm/functions/fnc_canPickUpAmmo.sqf @@ -1,13 +1,13 @@ /* * Author: GitHawk - * Check if a unit can pick up ammo + * Check if a unit can pick up ammo. * * Arguments: - * 0: The Player - * 1: The Target + * 0: Unit + * 1: Target * * Return Value: - * Can rearm + * Can Pick Up Ammo * * Example: * [player, tank] call ace_rearm_fnc_canPickUpAmmo @@ -18,4 +18,4 @@ params ["_unit", "_target"]; -!(isNull _unit || {!(_unit isKindOf "CAManBase")} || {!local _unit} || { (_target distance _unit) > 7}) +!(isNull _unit || {!(_unit isKindOf "CAManBase")} || {!local _unit} || {(_target distance _unit) > REARM_ACTION_DISTANCE}) diff --git a/addons/rearm/functions/fnc_canRearm.sqf b/addons/rearm/functions/fnc_canRearm.sqf index 689f01b0e9..e80fb3a940 100644 --- a/addons/rearm/functions/fnc_canRearm.sqf +++ b/addons/rearm/functions/fnc_canRearm.sqf @@ -1,13 +1,13 @@ /* - * Author: GitHawk - * Check if a unit can rearm + * Author: GitHawk, Jonpas + * Check if a unit can rearm. * * Arguments: - * 0: The unit - * 1: The target + * 0: Unit + * 1: Target * * Return Value: - * Can rearm + * Can Rearm * * Example: * [player, tank] call ace_rearm_fnc_canRearm @@ -16,64 +16,12 @@ */ #include "script_component.hpp" -private ["_magazine", "_return", "_magazines", "_path", "_cnt"]; -params ["_unit", "_vehicle"]; +private ["_magazineClass", "_magazines", "_turretPath"]; +params ["_unit", "_target"]; -#define GETRETURNVALUE \ -if ((_vehicle magazineTurretAmmo [_magazine, _path]) < getNumber (configFile >> "CfgMagazines" >> _magazine >> "count")) then { \ - _return = true; \ -} else { \ - _cnt = { _x == _magazine } count _magazines; \ - if (_cnt < ([_vehicle, _path, _magazine] call FUNC(getMaxMagazines))) then { \ - _return = true; \ - }; \ -}; +if (GVAR(level) == 0 || {isNull _unit} || {!(_unit isKindOf "CAManBase")} || {!local _unit} || {_target distance _unit > REARM_ACTION_DISTANCE}) exitWith {false}; -if (isNull _unit || {!(_unit isKindOf "CAManBase")} || {!local _unit} || { (_vehicle distance _unit) > 7} || {GVAR(level) == 0}) exitWith {false}; +_magazineClass = _unit getVariable QGVAR(carriedMagazine); +if (isNil "_magazineClass") exitWith {false}; -_magazine = _unit getVariable QGVAR(carriedMagazine); -if (isNil "_magazine") exitWith {false}; - -_return = false; -_magazines = _vehicle magazinesTurret [-1]; -if (_magazine in _magazines) then { - _path = [-1]; - GETRETURNVALUE -}; -if (!_return) then { - _magazines = _vehicle magazinesTurret [0]; - if (_magazine in _magazines) then { - _path = [0]; - GETRETURNVALUE - }; -}; -if (!_return) then { - _magazines = _vehicle magazinesTurret [0,0]; - if (_magazine in _magazines) then { - _path = [0,0]; - GETRETURNVALUE - }; -}; -if (!_return) then { - _magazines = _vehicle magazinesTurret [0,1]; - if (_magazine in _magazines) then { - _path = [0,1]; - GETRETURNVALUE - }; -}; -if (!_return) then { - _magazines = _vehicle magazinesTurret [1]; - if (_magazine in _magazines) then { - _path = [1]; - GETRETURNVALUE - }; -}; -if (!_return) then { - _magazines = _vehicle magazinesTurret [2]; - if (_magazine in _magazines) then { - _path = [2]; - GETRETURNVALUE - }; -}; - -_return \ No newline at end of file +([_target, _magazines, _magazineClass] call FUNC(getNeedRearmMagazines)) select 0 diff --git a/addons/rearm/functions/fnc_getMaxMagazines.sqf b/addons/rearm/functions/fnc_getMaxMagazines.sqf index 4c5f5b2544..b9655f1c69 100644 --- a/addons/rearm/functions/fnc_getMaxMagazines.sqf +++ b/addons/rearm/functions/fnc_getMaxMagazines.sqf @@ -1,11 +1,11 @@ /* - * Author: GitHawk - * Calculates the maximum number of magazines a turret can hold according to config + * Author: GitHawk, Jonpas + * Calculates the maximum number of magazines a turret can hold according to config. * * Arguments: - * 0: The Unit - * 1: The Turretpath - * 2: The Magazine + * 0: Target + * 1: Turret Path + * 2: Magazine Classname * * Return Value: * Number of magazines on the turret path @@ -21,67 +21,36 @@ private ["_count", "_cfg"]; params ["_target", "_turretPath", "_magazine"]; if (isNull _target) exitWith {0}; -_count = 0; -// TODO replace by loop or method of interpreting _turretPath +_cfg = configFile >> "CfgVehicles" >> (typeOf _target) >> "Turrets"; -_cfg = configFile; -switch (_turretPath) do { - case [0] : { - _cfg = configFile >> "CfgVehicles" >> (typeOf _target) >> "Turrets"; - if (count _cfg > 0) then { - _cfg = _cfg select 0; - } else { - _cfg = configFile >> "CfgVehicles" >> (typeOf _target); - }; - }; - case [1] : { - _cfg = configFile >> "CfgVehicles" >> (typeOf _target) >> "Turrets"; - if (count _cfg > 0) then { - _cfg = _cfg select 1; - } else { - _cfg = configFile >> "CfgVehicles" >> (typeOf _target); - }; - }; - case [2] : { - _cfg = configFile >> "CfgVehicles" >> (typeOf _target) >> "Turrets"; - if (count _cfg > 0) then { - _cfg = _cfg select 2; - } else { - _cfg = configFile >> "CfgVehicles" >> (typeOf _target); - }; - }; - case [0,0] : { - _cfg = configFile >> "CfgVehicles" >> (typeOf _target) >> "Turrets"; - if (count _cfg > 0) then { - _cfg = (_cfg select 0) >> "Turrets"; - if (count _cfg > 0) then { - _cfg = _cfg select 0; - } else { - _cfg = configFile >> "CfgVehicles" >> (typeOf _target); - }; - } else { - _cfg = configFile >> "CfgVehicles" >> (typeOf _target); - }; - }; - case [0,1] : { - if (count _cfg > 0) then { - _cfg = (_cfg select 0) >> "Turrets"; - if (count _cfg > 0) then { - _cfg = _cfg select 1; - } else { - _cfg = configFile >> "CfgVehicles" >> (typeOf _target); - }; - } else { - _cfg = configFile >> "CfgVehicles" >> (typeOf _target); - }; - }; - default { +if (count _turretPath == 1) then { + _turretPath params ["_subPath"]; + + if (_subPath == -1) exitWith { _cfg = configFile >> "CfgVehicles" >> (typeOf _target); }; + + if (count _cfg > _subPath) then { + _cfg = _cfg select _subPath; + } else { + _cfg = nil; + }; +} else { + _turretPath params ["", "_subPath"]; + if (count _cfg > 0) then { + _cfg = (_cfg select 0) >> "Turrets"; + if (count _cfg > _subPath) then { + _cfg = _cfg select _subPath; + } else { + _cfg = nil; + }; + } else { + _cfg = nil; + }; }; if !(isClass _cfg) exitWith {0}; _count = {_x == _magazine} count getArray (_cfg >> "magazines"); -_count \ No newline at end of file +_count diff --git a/addons/rearm/functions/fnc_getNeedRearmMagazines.sqf b/addons/rearm/functions/fnc_getNeedRearmMagazines.sqf new file mode 100644 index 0000000000..f242451277 --- /dev/null +++ b/addons/rearm/functions/fnc_getNeedRearmMagazines.sqf @@ -0,0 +1,43 @@ +/* + * Author: GitHawk, Jonpas + * Get rearm return value. + * + * Arguments: + * 0: Target + * 1: Magazines + * 2: Magazine Classname + * 3: Turret Path + * + * Return Value: + * Return Value + * + * Example: + * [tank, ["mag1", "mag2"], "mag", [0]] call ace_rearm_fnc_getNeedRearmMagazines + * + * Public: No + */ +#include "script_component.hpp" + +private ["_return", "_cnt"]; +params ["_target", "_magazines", "_magazineClass"]; + +_return = [false]; +{ + _magazines = _target magazinesTurret _x; + + if (_magazineClass in _magazines) then { + _cnt = {_x == _magazineClass} count _magazines; + + if ((_target magazineTurretAmmo [_magazineClass, _x]) < getNumber (configFile >> "CfgMagazines" >> _magazineClass >> "count")) exitWith { + _return = [true, _x, _cnt]; + }; + + if (_cnt < ([_target, _x, _magazineClass] call FUNC(getMaxMagazines))) exitWith { + _return = [true, _x, _cnt]; + }; + }; + + if (_return select 0) exitWith {}; +} forEach REARM_TURRET_PATHS; + +_return diff --git a/addons/rearm/functions/fnc_handleKilled.sqf b/addons/rearm/functions/fnc_handleKilled.sqf new file mode 100644 index 0000000000..e4971c08f2 --- /dev/null +++ b/addons/rearm/functions/fnc_handleKilled.sqf @@ -0,0 +1,23 @@ +/* + * Author: GitHawk, Jonpas + * Handles medical on set dead event. + * + * Arguments: + * 0: Unit + * + * Return Value: + * None + * + * Example: + * [unit] call ace_rearm_fnc_handleKilled + * + * Public: No + */ +#include "script_component.hpp" + +params ["_unit"]; + +if (!local _unit) exitWith {}; + +_unit setVariable [QGVAR(selectedWeaponOnRearm), nil]; +_unit setVariable [QGVAR(carriedMagazine), nil]; diff --git a/addons/rearm/functions/fnc_handleUnconscious.sqf b/addons/rearm/functions/fnc_handleUnconscious.sqf new file mode 100644 index 0000000000..91287c0127 --- /dev/null +++ b/addons/rearm/functions/fnc_handleUnconscious.sqf @@ -0,0 +1,31 @@ +/* + * Author: GitHawk, Jonpas + * Handles medical on unconscious event. + * + * Arguments: + * 0: Unit + * 1: Is Unconscious + * + * Return Value: + * None + * + * Example: + * [unit] call ace_rearm_fnc_handleUnconscious + * + * Public: No + */ +#include "script_component.hpp" + +params ["_unit", "_isUnconscious"]; + +if (!local _unit || {!_isUnconscious}) exitWith {}; + +private "_dummy"; +_dummy = _unit getVariable [QGVAR(dummy), objNull]; + +if (!isNull _dummy) then { + detach _dummy; + deleteVehicle _dummy; // TODO remove when moved to CfgVehicles +}; + +_unit setVariable [QGVAR(dummy), nil]; diff --git a/addons/rearm/functions/fnc_moduleRearmSettings.sqf b/addons/rearm/functions/fnc_moduleRearmSettings.sqf index 7325a8ddaf..ec5edd1666 100644 --- a/addons/rearm/functions/fnc_moduleRearmSettings.sqf +++ b/addons/rearm/functions/fnc_moduleRearmSettings.sqf @@ -1,22 +1,26 @@ /* * Author: GitHawk - * Module for adjusting the refuel settings + * Module for adjusting the refuel settings. * * Arguments: - * 0: The module logic - * 1: units - * 2: activated + * 0: The module logic + * 1: Synchronized units + * 2: Activated * * Return Value: * None * + * Example; + * function = "ace_rearm_fnc_moduleRearmSettings" + * * Public: No */ - #include "script_component.hpp" -params ["_logic", "_units", "_activated"]; +params ["_logic", "", "_activated"]; -if !(_activated) exitWith {}; +if (!_activated) exitWith {}; [_logic, QGVAR(level), "level"] call EFUNC(common,readSettingFromModule); + +diag_log text format ["[ACE]: Rearm Module Initialized on level: %1", GVAR(level)]; diff --git a/addons/rearm/functions/fnc_pickUpAmmo.sqf b/addons/rearm/functions/fnc_pickUpAmmo.sqf index f9c0786359..4861486b2d 100644 --- a/addons/rearm/functions/fnc_pickUpAmmo.sqf +++ b/addons/rearm/functions/fnc_pickUpAmmo.sqf @@ -1,13 +1,13 @@ /* * Author: GitHawk - * Picks up a specific kind of magazine from an ammo truck + * Starts progress bar for picking up a specific kind of magazine from an ammo truck. * * Arguments: - * 0: The Ammo Truck - * 1: The Player - * 2: The Params - * 2,0: The Magazine - * 2,1: The Vehicle to be armed + * 0: Ammo Truck + * 1: Unit + * 2: Params + * 0: Magazine + * 1: Vehicle to be armed * * Return Value: * None @@ -19,8 +19,9 @@ */ #include "script_component.hpp" -private ["_ammo", "_tmpCal", "_cal"]; -params ["_target","_unit","_args"]; +private ["_ammo", "_tmpCal", "_cal", "_idx"]; + +params ["_target", "_unit", "_args"]; // _target is for future possible finite ammo _args params ["_magazine", "_vehicle"]; _ammo = getText (configFile >> "CfgMagazines" >> _magazine >> "ammo"); @@ -42,7 +43,7 @@ if (_tmpCal > 0) then { }; }; _cal = round _cal; -_idx = CALIBERS find _cal; +_idx = REARM_CALIBERS find _cal; if (_idx == -1 ) then { _idx = 2; }; @@ -51,11 +52,11 @@ _unit setVariable [QGVAR(selectedWeaponOnRearm), currentWeapon _unit]; _unit action ["SwitchWeapon", _unit, _unit, 99]; [ - (DURATION_PICKUP select _idx), + (REARM_DURATION_PICKUP select _idx), [_unit, _magazine], FUNC(pickUpSuccess), "", format [localize LSTRING(PickUpAction), getText(configFile >> "CfgMagazines" >> _magazine >> "displayName"), getText(configFile >> "CfgVehicles" >> (typeOf _vehicle) >> "displayName")], {true}, ["isnotinside"] -] call EFUNC(common,progressBar); \ No newline at end of file +] call EFUNC(common,progressBar); diff --git a/addons/rearm/functions/fnc_pickUpSuccess.sqf b/addons/rearm/functions/fnc_pickUpSuccess.sqf index 4e7411f009..2a012a0bc1 100644 --- a/addons/rearm/functions/fnc_pickUpSuccess.sqf +++ b/addons/rearm/functions/fnc_pickUpSuccess.sqf @@ -1,11 +1,11 @@ /* * Author: GitHawk - * Picks up a magazine + * Picks up a magazine. * * Arguments: - * 0: The Params - * 0,0: The Unit - * 0,1: The Magazine + * 0: Params + * 0: Unit + * 1: Magazine * * Return Value: * None @@ -17,7 +17,7 @@ */ #include "script_component.hpp" -private ["_dummy"]; +private ["_dummy", "_ammo"]; params ["_args"]; _args params ["_unit", "_magazine"]; @@ -30,6 +30,7 @@ if !(isNull _dummy) then { deleteVehicle _dummy; _unit setVariable [QGVAR(dummy), objNull]; }; + _ammo = getText (configFile >> "CfgMagazines" >> _magazine >> "ammo"); _dummy = getText (configFile >> "CfgAmmo" >> _ammo >> QGVAR(dummy)); if !(_dummy == "") then { @@ -38,4 +39,4 @@ if !(_dummy == "") then { [[_dummy, [[-1,0,0],[0,0,1]]], QUOTE(DFUNC(turn)), 2] call EFUNC(common,execRemoteFnc); _dummy allowDamage false; _unit setVariable [QGVAR(dummy), _dummy]; -}; \ No newline at end of file +}; diff --git a/addons/rearm/functions/fnc_rearm.sqf b/addons/rearm/functions/fnc_rearm.sqf index d86e4df493..bb5d112a5d 100644 --- a/addons/rearm/functions/fnc_rearm.sqf +++ b/addons/rearm/functions/fnc_rearm.sqf @@ -1,9 +1,10 @@ /* * Author: GitHawk - * Rearms a vehicle + * Starts progress bar for rearming a vehicle. * * Arguments: - * 0: The vehicle + * 0: Unit + * 1: Vehicle * * Return Value: * None @@ -15,25 +16,13 @@ */ #include "script_component.hpp" -#define GETRETURNVALUE \ -_cnt = { _x == _magazine } count _magazines; \ -if ((_target magazineTurretAmmo [_magazine, _path]) < getNumber (configFile >> "CfgMagazines" >> _magazine >> "count")) then { \ - _turretPath = _path; \ - _return = true; \ -} else { \ - if (_cnt < ([_target, _path, _magazine] call FUNC(getMaxMagazines))) then { \ - _turretPath = _path; \ - _return = true; \ - }; \ -}; - -private ["_ammo", "_tmpCal", "_cal", "_idx", "_return", "_cnt", "_magazineDisplayName"]; +private ["_magazineClass", "_ammo", "_tmpCal", "_cal", "_idx", "_needRearmMags", "_magazineDisplayName"]; params ["_unit", "_vehicle"]; -_magazine = _unit getVariable QGVAR(carriedMagazine); -if (isNil "_magazine") exitWith {false}; +_magazineClass = _unit getVariable QGVAR(carriedMagazine); +if (isNil "_magazineClass") exitWith {false}; -_ammo = getText (configFile >> "CfgMagazines" >> _magazine >> "ammo"); +_ammo = getText (configFile >> "CfgMagazines" >> _magazineClass >> "ammo"); _tmpCal = getNumber (configFile >> "CfgAmmo" >> _ammo >> "ace_caliber"); _cal = 8; if (_tmpCal > 0) then { @@ -43,7 +32,7 @@ if (_tmpCal > 0) then { if (_tmpCal > 0) then { _cal = _tmpCal; } else { - diag_log format ["ACE_Rearm: Undefined Ammo [%1 : %2]", _ammo, inheritsFrom (configFile >> "CfgAmmo" >> _ammo)]; + diag_log format ["[ACE] ERROR: Undefined Ammo [%1 : %2]", _ammo, inheritsFrom (configFile >> "CfgAmmo" >> _ammo)]; if (_ammo isKindOf "BulletBase") then { _cal = 8; } else { @@ -52,70 +41,34 @@ if (_tmpCal > 0) then { }; }; _cal = round _cal; -_idx = CALIBERS find _cal; -if (_idx == -1 ) then { +_idx = REARM_CALIBERS find _cal; +if (_idx == -1) then { _idx = 2; }; -_return = false; -_turretPath = [0]; _cnt = 0; -_magazines = _target magazinesTurret [-1]; -if (_magazine in _magazines) then { - _path = [-1]; - GETRETURNVALUE -}; -if (!_return) then { - _magazines = _target magazinesTurret [0]; - if (_magazine in _magazines) then { - _path = [0]; - GETRETURNVALUE - }; -}; -if (!_return) then { - _magazines = _target magazinesTurret [0,0]; - if (_magazine in _magazines) then { - _path = [0,0]; - GETRETURNVALUE - }; -}; -if (!_return) then { - _magazines = _target magazinesTurret [0,1]; - if (_magazine in _magazines) then { - _path = [0,1]; - GETRETURNVALUE - }; -}; -if (!_return) then { - _magazines = _target magazinesTurret [1]; - if (_magazine in _magazines) then { - _path = [1]; - GETRETURNVALUE - }; -}; -if (!_return) then { - _magazines = _target magazinesTurret [2]; - if (_magazine in _magazines) then { - _path = [2]; - GETRETURNVALUE - } else { - diag_log format ["ACE_Rearm: Could not find turret for %1 in %2", _magazine, typeOf _target]; - }; +// Get magazines that can be rearmed +_needRearmMags = [_target, _magazines, _magazineClass] call FUNC(getNeedRearmMagazines); +_needRearmMags params ["_needRearm", "_turretPath", "_cnt"]; + +// Exit if no magazines need rearming +if (!_needRearm) exitWith { + diag_log format ["[ACE] ERROR: Could not find turret for %1 in %2", _magazineClass, typeOf _target]; }; -//hint format ["Magazine: %1\nAmmo: %2\nCaliber: %3\nIndex: %4\nTurretPath: %5\nDURATION_REARM: %6\nCount: %7", _magazine, _ammo, _cal, _idx, _turretPath, (DURATION_REARM select _idx), (COUNT select _idx)]; +//hint format ["Magazine: %1\nAmmo: %2\nCaliber: %3\nIndex: %4\nTurretPath: %5\nREARM_DURATION_REARM: %6\nCount: %7", _magazine, _ammo, _cal, _idx, _turretPath, (REARM_DURATION_REARM select _idx), (REARM_COUNT select _idx)]; -_magazineDisplayName = getText(configFile >> "CfgMagazines" >> _magazine >> "displayName"); +_magazineDisplayName = getText(configFile >> "CfgMagazines" >> _magazineClass >> "displayName"); if (_magazineDisplayName == "") then { - _magazineDisplayName = _magazine; - diag_log format ["ACE_Rearm: Magazine is missing display name [%1]", _magazine]; + _magazineDisplayName = _magazineClass; + diag_log format ["[ACE] ERROR: Magazine is missing display name [%1]", _magazineClass]; }; [ - (DURATION_REARM select _idx), - [_target, _unit, _turretPath, _cnt, _magazine, (COUNT select _idx)], + (REARM_DURATION_REARM select _idx), + [_target, _unit, _turretPath, _cnt, _magazineClass, (REARM_COUNT select _idx)], FUNC(rearmSuccess), "", format [localize LSTRING(RearmAction), getText(configFile >> "CfgVehicles" >> (typeOf _target) >> "displayName"), _magazineDisplayName], {true}, ["isnotinside"] -] call EFUNC(common,progressBar); \ No newline at end of file +] call EFUNC(common,progressBar); diff --git a/addons/rearm/functions/fnc_rearmEntireVehicle.sqf b/addons/rearm/functions/fnc_rearmEntireVehicle.sqf index 59713d7263..08122d2321 100644 --- a/addons/rearm/functions/fnc_rearmEntireVehicle.sqf +++ b/addons/rearm/functions/fnc_rearmEntireVehicle.sqf @@ -1,11 +1,11 @@ /* * Author: GitHawk - * Rearms an entire vehicle + * Starts progress bar for rearming an entire vehicle. * * Arguments: - * 0: The Ammo Truck - * 1: The Player - * 2: The Vehicle to be armed + * 0: Ammo Truck + * 1: Unit + * 2: Vehicle to be armed * * Return Value: * None @@ -18,7 +18,7 @@ #include "script_component.hpp" private ["_ammo", "_tmpCal", "_cal"]; -params ["_target","_unit","_vehicle"]; +params ["_target", "_unit", "_vehicle"]; [ 10, @@ -28,4 +28,4 @@ params ["_target","_unit","_vehicle"]; format [localize LSTRING(BasicRearmAction), getText(configFile >> "CfgVehicles" >> (typeOf _vehicle) >> "displayName")], {true}, ["isnotinside"] -] call EFUNC(common,progressBar); \ No newline at end of file +] call EFUNC(common,progressBar); diff --git a/addons/rearm/functions/fnc_rearmEntireVehicleSuccess.sqf b/addons/rearm/functions/fnc_rearmEntireVehicleSuccess.sqf index f0d8d32cac..c4b15ed0b9 100644 --- a/addons/rearm/functions/fnc_rearmEntireVehicleSuccess.sqf +++ b/addons/rearm/functions/fnc_rearmEntireVehicleSuccess.sqf @@ -1,9 +1,9 @@ /* * Author: GitHawk - * Rearm an entire vehicle + * Rearm an entire vehicle. * * Arguments: - * 0: The Vehicle + * 0: Vehicle * * Return Value: * None @@ -15,11 +15,11 @@ */ #include "script_component.hpp" -private ["_turretPath", "_magazines", "_magazine", "_currentMagazines", "_maxMagazines", "_rounds"]; +private ["_turretPath", "_magazines", "_magazine", "_currentMagazines", "_maxMagazines", "_maxRounds", "_currentRounds"]; params ["_vehicle"]; if !(local _vehicle) exitWith { - [_this, QUOTE(DFUNC(rearmEntireVehicleSuccess)), _vehicle] call EFUNC(common,execRemoteFnc); + [_this, QFUNC(rearmEntireVehicleSuccess), _vehicle] call EFUNC(common,execRemoteFnc); }; { @@ -31,7 +31,7 @@ if !(local _vehicle) exitWith { _maxMagazines = [_vehicle, _turretPath, _magazine] call FUNC(getMaxMagazines); _maxRounds = getNumber (configFile >> "CfgMagazines" >> _magazine >> "count"); _currentRounds = _vehicle magazineTurretAmmo [_magazine, _turretPath]; - + //diag_log format ["Target: %1\nTurretPath: %2\nNumMagazines: %3\nMaxMagazines %4\nNumRounds: %5\nMaxRounds: %6\nMagazine: %7", _vehicle, _turretPath, _currentMagazines, _maxMagazines, _currentRounds, _maxRounds, _magazine]; if (_currentMagazines < _maxMagazines) then { _vehicle setMagazineTurretAmmo [_magazine, _maxRounds, _turretPath]; @@ -46,4 +46,4 @@ if !(local _vehicle) exitWith { }; }; } foreach _magazines; -} foreach [[-1], [0], [0,0], [0,1], [1], [2]]; \ No newline at end of file +} foreach REARM_TURRET_PATHS; diff --git a/addons/rearm/functions/fnc_rearmSuccess.sqf b/addons/rearm/functions/fnc_rearmSuccess.sqf index 7e90f699b6..a662ad0958 100644 --- a/addons/rearm/functions/fnc_rearmSuccess.sqf +++ b/addons/rearm/functions/fnc_rearmSuccess.sqf @@ -1,31 +1,31 @@ /* * Author: GitHawk - * Rearms a vehicle + * Rearms a vehicle. * * Arguments: - * 0: The Params - * 0,1: The Target - * 0,2: The Caller - * 0,3: The Turretpath - * 0,4: The Number of magazines - * 0,5: The Magazine - * 0,6: The Number of rounds + * 0: Params + * 0: Target + * 1: Unit + * 2: Turret Path + * 3: Number of magazines + * 4: Magazine Classname + * 5: Number of rounds * * Return Value: * None * * Example: - * [vehicle] call ace_rearm_fnc_rearmSuccess + * [[vehicle, player, [0], 5, "calcium", 500]] call ace_rearm_fnc_rearmSuccess * * Public: No */ #include "script_component.hpp" -private ["_rounds", "_currentRounds", "_maxMagazines", "_dummy"]; +private ["_rounds", "_currentRounds", "_maxMagazines", "_dummy", "_weaponSelect"]; params ["_args"]; -_args params ["_target", "_unit", "_turretPath", "_numMagazines", "_magazine", "_numRounds"]; +_args params ["_target", "_unit", "_turretPath", "_numMagazines", "_magazineClass", "_numRounds"]; -//hint format ["Target: %1\nTurretPath: %2\nNumMagazines: %3\nMagazine: %4\nNumRounds: %5", _target, _turretPath, _numMagazines, _magazine, _numRounds]; +//hint format ["Target: %1\nTurretPath: %2\nNumMagazines: %3\nMagazine: %4\nNumRounds: %5", _target, _turretPath, _numMagazines, _magazineClass, _numRounds]; if (local _unit) then { [_unit, QGVAR(vehRearm), false] call EFUNC(common,setForceWalkStatus); @@ -44,50 +44,50 @@ if !(local _target) exitWith { [_this, QUOTE(DFUNC(rearmSuccess)), _target] call EFUNC(common,execRemoteFnc); }; -_rounds = getNumber (configFile >> "CfgMagazines" >> _magazine >> "count"); +_rounds = getNumber (configFile >> "CfgMagazines" >> _magazineClass >> "count"); _currentRounds = 0; -_maxMagazines = [_target, _turretPath, _magazine] call FUNC(getMaxMagazines); +_maxMagazines = [_target, _turretPath, _magazineClass] call FUNC(getMaxMagazines); if (_maxMagazines == 1) then { if (GVAR(level) == 1) then { // Fill magazine completely - _target setMagazineTurretAmmo [_magazine, _rounds, _turretPath]; + _target setMagazineTurretAmmo [_magazineClass, _rounds, _turretPath]; } else { // Fill only at most _numRounds - _target setMagazineTurretAmmo [_magazine, ((_target magazineTurretAmmo [_magazine, _turretPath]) + _numRounds) min _rounds, _turretPath]; + _target setMagazineTurretAmmo [_magazineClass, ((_target magazineTurretAmmo [_magazineClass, _turretPath]) + _numRounds) min _rounds, _turretPath]; }; [[LSTRING(Hint_RearmedTriple), _numRounds, - getText(configFile >> "CfgMagazines" >> _magazine >> "displayName"), + getText(configFile >> "CfgMagazines" >> _magazineClass >> "displayName"), getText(configFile >> "CfgVehicles" >> (typeOf _target) >> "displayName")], 3, _unit] call EFUNC(common,displayTextStructured); } else { for "_idx" from 1 to _maxMagazines do { - _currentRounds = _target magazineTurretAmmo [_magazine, _turretPath]; + _currentRounds = _target magazineTurretAmmo [_magazineClass, _turretPath]; if (_currentRounds > 0) exitWith { if (GVAR(level) == 2) then { - //hint format ["Target: %1\nTurretPath: %2\nNumMagazines: %3\nMaxMagazines %4\nMagazine: %5\nNumRounds: %6\nMagazine: %7", _target, _turretPath, _numMagazines, _maxMagazines, _currentRounds, _numRounds, _magazine]; + //hint format ["Target: %1\nTurretPath: %2\nNumMagazines: %3\nMaxMagazines %4\nMagazine: %5\nNumRounds: %6\nMagazine: %7", _target, _turretPath, _numMagazines, _maxMagazines, _currentRounds, _numRounds, _magazineClass]; // Fill only at most _numRounds if ((_currentRounds + _numRounds) > _rounds) then { - _target setMagazineTurretAmmo [_magazine, _rounds, _turretPath]; + _target setMagazineTurretAmmo [_magazineClass, _rounds, _turretPath]; if (_numMagazines < _maxMagazines) then { - _target addMagazineTurret [_magazine, _turretPath]; - _target setMagazineTurretAmmo [_magazine, _currentRounds + _numRounds - _rounds, _turretPath]; + _target addMagazineTurret [_magazineClass, _turretPath]; + _target setMagazineTurretAmmo [_magazineClass, _currentRounds + _numRounds - _rounds, _turretPath]; }; } else { - _target setMagazineTurretAmmo [_magazine, _currentRounds + _numRounds, _turretPath]; + _target setMagazineTurretAmmo [_magazineClass, _currentRounds + _numRounds, _turretPath]; }; } else { // Fill current magazine completely and fill next magazine partially - _target setMagazineTurretAmmo [_magazine, _rounds, _turretPath]; + _target setMagazineTurretAmmo [_magazineClass, _rounds, _turretPath]; if (_numMagazines < _maxMagazines) then { - _target addMagazineTurret [_magazine, _turretPath]; - _target setMagazineTurretAmmo [_magazine, _currentRounds, _turretPath]; + _target addMagazineTurret [_magazineClass, _turretPath]; + _target setMagazineTurretAmmo [_magazineClass, _currentRounds, _turretPath]; }; }; [[LSTRING(Hint_RearmedTriple), _rounds, - getText(configFile >> "CfgMagazines" >> _magazine >> "displayName"), + getText(configFile >> "CfgMagazines" >> _magazineClass >> "displayName"), getText(configFile >> "CfgVehicles" >> (typeOf _target) >> "displayName")], 3, _unit] call EFUNC(common,displayTextStructured); }; - _target removeMagazineTurret [_magazine, _turretPath]; + _target removeMagazineTurret [_magazineClass, _turretPath]; _numMagazines = _numMagazines - 1; }; -}; \ No newline at end of file +}; diff --git a/addons/rearm/functions/fnc_turn.sqf b/addons/rearm/functions/fnc_turn.sqf index c096afd0d8..8811241216 100644 --- a/addons/rearm/functions/fnc_turn.sqf +++ b/addons/rearm/functions/fnc_turn.sqf @@ -1,16 +1,16 @@ /* * Author: GitHawk - * Turns an object + * Turns an object. * * Arguments: - * 0: The Player - * 1: The dirAndUp vector + * 0: Object + * 1: Vector dirAndUp * * Return Value: * None * * Example: - * [_dummy, [[1,0,0],[0,0,1]]] call ace_rearm_fnc_turn + * [dummy, [[1,0,0],[0,0,1]]] call ace_rearm_fnc_turn * * Public: No */ diff --git a/addons/rearm/script_component.hpp b/addons/rearm/script_component.hpp index 09f7fda69f..8a8b986869 100644 --- a/addons/rearm/script_component.hpp +++ b/addons/rearm/script_component.hpp @@ -11,7 +11,11 @@ #include "\z\ace\addons\main\script_macros.hpp" -#define CALIBERS [ 6, 7, 8, 13, 19, 20, 25, 30, 35, 40, 60, 70, 80, 82, 100, 105, 120, 122, 125, 155, 230, 250] -#define DURATION_PICKUP [ 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 3, 3, 3, 3, 4, 5, 5, 5, 5, 13, 10] -#define DURATION_REARM [ 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 7, 7, 7, 7, 7, 8, 10, 10, 10, 10, 27, 20] -#define COUNT [500, 500, 400, 100, 50, 50, 40, 25, 34, 10, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1] \ No newline at end of file + +#define REARM_ACTION_DISTANCE 7 +#define REARM_TURRET_PATHS [[-1], [0], [0,0], [0,1], [1], [2]] + +#define REARM_CALIBERS [ 6, 7, 8, 13, 19, 20, 25, 30, 35, 40, 60, 70, 80, 82, 100, 105, 120, 122, 125, 155, 230, 250] +#define REARM_DURATION_PICKUP [ 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 3, 3, 3, 3, 4, 5, 5, 5, 5, 13, 10] +#define REARM_DURATION_REARM [ 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 7, 7, 7, 7, 7, 8, 10, 10, 10, 10, 27, 20] +#define REARM_COUNT [500, 500, 400, 100, 50, 50, 40, 25, 34, 10, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1] diff --git a/addons/rearm/stringtable.xml b/addons/rearm/stringtable.xml index 24bc49a058..d226a9aaaa 100644 --- a/addons/rearm/stringtable.xml +++ b/addons/rearm/stringtable.xml @@ -1,12 +1,15 @@ - + Rearm Settings Aufmunitioniereinstellungen + + This module allows you to tweak repair system settings. + - Rearm amount + Rearm Amount Aufmunitioniermenge @@ -14,7 +17,7 @@ Wie schnell soll ein Fahrzeug aufmunitioniert werden? - Entire vehicle + Entire Vehicle Gesamtes Fahrzeug @@ -30,16 +33,16 @@ Aufmunitionieren - Rearming %1 with %2 - Munitioniere %1 auf mit %2 + Rearming %1 with %2 ... + Munitioniere %1 auf mit %2 ... - Rearming %1 - Munitioniere %1 auf + Rearming %1 ... + Munitioniere %1 auf ... - Taking %1 for %2 - Nehme %1 für %2 + Taking %1 for %2 ... + Nehme %1 für %2 ... Pick up ammo @@ -49,7 +52,7 @@ Rearmed %1 rounds of %2 on %3 %1 Schuss %2 an %3 aufmunitioniert - + Smoke Screen Smoke Screen Kouřová clona @@ -61,7 +64,7 @@ Дым. завеса Pantalla de humo - + Flares Flares Světlice @@ -73,51 +76,51 @@ ЛТЦ Bengalas - + 30mm HEI 30mm HEI - + 30mm HEI-T 30mm HEI-T - + AIM-9 Sidewinder AIM-9 Sidewinder - + Wympel R-73 Wympel R-73 - + AGM-65 Maverick AGM-65 Maverick - + Kh-25MTP Kh-25MTP - + Hydra 70 HE Hydra 70 HE - + S-8 HE S-8 HE - + Hydra 70 AP Hydra 70 AP - + S-8 AP S-8 AP - + GBU-12 GBU-12 - + FAB-250M-54 FAB-250M-54 From 33e92f8ca0de4ebe4e36e33862ae8366cbc0e8de Mon Sep 17 00:00:00 2001 From: jonpas Date: Tue, 18 Aug 2015 02:57:39 +0200 Subject: [PATCH 09/25] Fixed SmokeLauncherMag rearming on level 0 when empty --- addons/rearm/functions/fnc_rearmEntireVehicle.sqf | 3 +-- addons/rearm/functions/fnc_rearmEntireVehicleSuccess.sqf | 5 +++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/addons/rearm/functions/fnc_rearmEntireVehicle.sqf b/addons/rearm/functions/fnc_rearmEntireVehicle.sqf index 08122d2321..c1c08dce52 100644 --- a/addons/rearm/functions/fnc_rearmEntireVehicle.sqf +++ b/addons/rearm/functions/fnc_rearmEntireVehicle.sqf @@ -17,8 +17,7 @@ */ #include "script_component.hpp" -private ["_ammo", "_tmpCal", "_cal"]; -params ["_target", "_unit", "_vehicle"]; +params ["_target", "_unit", "_vehicle"]; // _target is for future possible finite ammo, _unit placeholder [ 10, diff --git a/addons/rearm/functions/fnc_rearmEntireVehicleSuccess.sqf b/addons/rearm/functions/fnc_rearmEntireVehicleSuccess.sqf index c4b15ed0b9..9b49d9cc9a 100644 --- a/addons/rearm/functions/fnc_rearmEntireVehicleSuccess.sqf +++ b/addons/rearm/functions/fnc_rearmEntireVehicleSuccess.sqf @@ -32,14 +32,15 @@ if !(local _vehicle) exitWith { _maxRounds = getNumber (configFile >> "CfgMagazines" >> _magazine >> "count"); _currentRounds = _vehicle magazineTurretAmmo [_magazine, _turretPath]; - //diag_log format ["Target: %1\nTurretPath: %2\nNumMagazines: %3\nMaxMagazines %4\nNumRounds: %5\nMaxRounds: %6\nMagazine: %7", _vehicle, _turretPath, _currentMagazines, _maxMagazines, _currentRounds, _maxRounds, _magazine]; + TRACE_7("Rearmed Turret",_vehicle,_turretPath,_currentMagazines,_maxMagazines,_currentRounds,_maxRounds,_magazine); + if (_currentMagazines < _maxMagazines) then { _vehicle setMagazineTurretAmmo [_magazine, _maxRounds, _turretPath]; for "_idx" from 1 to (_maxMagazines - _currentMagazines) do { _vehicle addMagazineTurret [_magazine, _turretPath]; }; } else { - if (_currentRounds > 0) then { + if (_currentRounds > 0 || {_magazine == "SmokeLauncherMag"}) then { // When SmokeLauncherMag is empty removeMagazineTurret has no effect _vehicle setMagazineTurretAmmo [_magazine, _maxRounds, _turretPath]; } else { _vehicle removeMagazineTurret [_magazine, _turretPath]; From 387aad42048cfb99ee5f3136919739d89bd4a1e7 Mon Sep 17 00:00:00 2001 From: jonpas Date: Tue, 18 Aug 2015 03:18:38 +0200 Subject: [PATCH 10/25] Removed 3rd party config, Moved ACE Hydra to rearm config to missileguidance --- addons/missileguidance/CfgAmmo.hpp | 42 ++++++++++++++++-------------- addons/rearm/CfgAmmo.hpp | 40 ---------------------------- 2 files changed, 22 insertions(+), 60 deletions(-) diff --git a/addons/missileguidance/CfgAmmo.hpp b/addons/missileguidance/CfgAmmo.hpp index 779d2a82eb..2f8b4c93f4 100644 --- a/addons/missileguidance/CfgAmmo.hpp +++ b/addons/missileguidance/CfgAmmo.hpp @@ -5,7 +5,7 @@ enum { class CfgAmmo { class MissileBase; - + class M_PG_AT : MissileBase { model = "\A3\Weapons_F\Ammo\Rocket_01_fly_F"; proxyShape = "\A3\Weapons_F\Ammo\Rocket_01_F"; @@ -26,7 +26,7 @@ class CfgAmmo { thrustTime = 1.07; thrust = 530; fuseDistance = 2; - + effectsMissileInit = "MissileDAR1"; effectsMissile = "missile2"; whistleDist = 4; @@ -34,65 +34,67 @@ class CfgAmmo { // Turn off arma crosshair-guidance manualControl = 0; - + // ACE uses these values trackOversteer = 1; trackLead = 0; - + // Begin ACE guidance Configs class ADDON { enabled = 1; - + minDeflection = 0.00025; // Minium flap deflection for guidance maxDeflection = 0.001; // Maximum flap deflection for guidance incDeflection = 0.0005; // The incrmeent in which deflection adjusts. - + canVanillaLock = 0; // Can this default vanilla lock? Only applicable to non-cadet mode - + // Guidance type for munitions defaultSeekerType = "SALH"; - seekerTypes[] = { "SALH", "LIDAR", "SARH", "Optic", "Thermal", "GPS", "SACLOS", "MCLOS" }; - + seekerTypes[] = { "SALH", "LIDAR", "SARH", "Optic", "Thermal", "GPS", "SACLOS", "MCLOS" }; + defaultSeekerLockMode = "LOAL"; - seekerLockModes[] = { "LOAL", "LOBL" }; - + seekerLockModes[] = { "LOAL", "LOBL" }; + seekerAngle = 90; // Angle in front of the missile which can be searched seekerAccuracy = 1; // seeker accuracy multiplier - + seekerMinRange = 1; seekerMaxRange = 2500; // Range from the missile which the seeker can visually search - + // Attack profile type selection defaultAttackProfile = "LIN"; attackProfiles[] = { "LIN", "DIR", "MID", "HI" }; }; }; - + class ACE_Hydra70_DAGR : M_PG_AT { displayName = CSTRING(Hydra70_DAGR); displayNameShort = CSTRING(Hydra70_DAGR_Short); - + description = CSTRING(Hydra70_DAGR_Desc); descriptionShort = CSTRING(Hydra70_DAGR_Desc); + + EGVAR(rearm,caliber) = 70; }; - + class ACE_Hellfire_AGM114K : ACE_Hydra70_DAGR { displayName = CSTRING(Hellfire_AGM114K); displayNameShort = CSTRING(Hellfire_AGM114K_Short); - + description = CSTRING(Hellfire_AGM114K_desc); descriptionShort = CSTRING(Hellfire_AGM114K_desc); - + // @TODO: placeholder model to at least make it look different model = "\A3\Weapons_F\Ammo\Missile_AT_03_fly_F"; proxyShape = "\A3\Weapons_F\Ammo\Missile_AT_03_F"; - + hit = 1400; indirectHit = 71; indirectHitRange = 4.5; effectsMissile = "missile2"; }; - + // Titan class M_Titan_AT : MissileBase {}; diff --git a/addons/rearm/CfgAmmo.hpp b/addons/rearm/CfgAmmo.hpp index 3a346f4bd3..e611293164 100644 --- a/addons/rearm/CfgAmmo.hpp +++ b/addons/rearm/CfgAmmo.hpp @@ -35,9 +35,6 @@ class CfgAmmo { GVAR(caliber) = 100; GVAR(dummy) = QGVAR(M_PG_AT); }; - class ACE_Hydra70_DAGR : M_PG_AT { - GVAR(caliber) = 70; - }; class Missile_AGM_02_F : MissileBase { GVAR(dummy) = QGVAR(Missile_AGM_02_F); }; @@ -102,10 +99,6 @@ class CfgAmmo { GVAR(caliber) = 40; }; - class RDS_B_127x107_Ball : BulletBase { - GVAR(caliber) = 12.7; - }; - class ShellBase; class R_230mm_fly : ShellBase { GVAR(dummy) = QGVAR(R_230mm_fly); @@ -140,23 +133,11 @@ class CfgAmmo { class Sh_82mm_AMOS : Sh_155mm_AMOS { GVAR(caliber) = 82; }; - class RDS_Sh_122_HE : Sh_155mm_AMOS { - GVAR(caliber) = 122; - }; - class RDS_Sh_105_HE : Sh_155mm_AMOS { - GVAR(caliber) = 105; - }; class Sh_82mm_AMOS_LG; class Sh_155mm_AMOS_LG : Sh_82mm_AMOS_LG { GVAR(caliber) = 155; }; - class RDS_Sh_122_LASER : Sh_155mm_AMOS_LG { - GVAR(caliber) = 122; - }; - class RDS_Sh_105_LASER : Sh_155mm_AMOS_LG { - GVAR(caliber) = 105; - }; class ShotDeployBase; class Smoke_82mm_AMOS_White : ShotDeployBase { @@ -186,9 +167,6 @@ class CfgAmmo { class R_230mm_HE : SubmunitionBase { GVAR(caliber) = 230; }; - class rhs_ammo_127x108mm_x5 : SubmunitionBase { - GVAR(caliber) = 12.7; - }; class Mine_155mm_AMOS_range : SubmunitionBase { GVAR(caliber) = 155; }; @@ -202,10 +180,6 @@ class CfgAmmo { GVAR(caliber) = 155; }; - class rhs_ammo_rpgShell_base : ShellBase { - GVAR(caliber) = 70; - }; - class Bo_Mk82 : BombCore { GVAR(dummy) = QGVAR(Bo_Mk82); }; @@ -223,18 +197,4 @@ class CfgAmmo { class Bomb_03_F : Bomb_04_F { GVAR(dummy) = QGVAR(Bomb_03_F); }; - - // F18 Mod - class js_a_fa18_wing_tank : LaserBombCore { - GVAR(caliber) = 250; // Default caliber for bombs - }; - class js_a_fa18x_MK82 : BombCore {}; - class js_a_fa18x_GBU39_SDB : js_a_fa18x_MK82 { - GVAR(caliber) = 250; // Default caliber for bombs - }; - - class js_a_fa18_GBU12_LGB : LaserBombCore {}; - class js_a_fa18_GBU38_JDAM : js_a_fa18_GBU12_LGB { - GVAR(caliber) = 250; // Default caliber for bombs - }; }; From 7244a583d61ae5ac298bdc2457aaa3b53e4c88a9 Mon Sep 17 00:00:00 2001 From: jonpas Date: Tue, 18 Aug 2015 03:37:02 +0200 Subject: [PATCH 11/25] Removed unnecessary ACE_Action calls parameters and changed others to _this --- addons/rearm/CfgVehicles.hpp | 8 ++++---- addons/rearm/functions/fnc_canPickUpAmmo.sqf | 6 +++--- addons/rearm/functions/fnc_canRearm.sqf | 6 +++--- addons/rearm/functions/fnc_pickUpAmmo.sqf | 2 +- addons/rearm/functions/fnc_rearm.sqf | 3 +-- 5 files changed, 12 insertions(+), 13 deletions(-) diff --git a/addons/rearm/CfgVehicles.hpp b/addons/rearm/CfgVehicles.hpp index cfe0bfb289..53ca73cc63 100644 --- a/addons/rearm/CfgVehicles.hpp +++ b/addons/rearm/CfgVehicles.hpp @@ -4,8 +4,8 @@ class GVAR(Rearm) { \ displayName = CSTRING(Rearm); \ distance = REARM_ACTION_DISTANCE; \ - condition = QUOTE([ARR_2(_player,_target)] call FUNC(canRearm)); \ - statement = QUOTE([ARR_2(_player,_target)] call FUNC(rearm)); \ + condition = QUOTE(_this call FUNC(canRearm)); \ + statement = QUOTE(_player call FUNC(rearm)); \ exceptions[] = {"isNotInside"}; \ icon = PATHTOF(ui\icon_rearm_interact.paa); \ }; \ @@ -18,8 +18,8 @@ class GVAR(PickUpAmmo) { \ displayName = CSTRING(PickUpAmmo); \ distance = REARM_ACTION_DISTANCE; \ - condition = QUOTE([ARR_2(_player,_target)] call FUNC(canPickUpAmmo)); \ - insertChildren = QUOTE([_target] call FUNC(addRearmActions)); \ + condition = QUOTE(_this call FUNC(canPickUpAmmo)); \ + insertChildren = QUOTE(_target call FUNC(addRearmActions)); \ exceptions[] = {"isNotInside"}; \ icon = PATHTOF(ui\icon_rearm_interact.paa); \ }; \ diff --git a/addons/rearm/functions/fnc_canPickUpAmmo.sqf b/addons/rearm/functions/fnc_canPickUpAmmo.sqf index a6855de756..8ae3cdd993 100644 --- a/addons/rearm/functions/fnc_canPickUpAmmo.sqf +++ b/addons/rearm/functions/fnc_canPickUpAmmo.sqf @@ -3,8 +3,8 @@ * Check if a unit can pick up ammo. * * Arguments: - * 0: Unit - * 1: Target + * 0: Target + * 1: Unit * * Return Value: * Can Pick Up Ammo @@ -16,6 +16,6 @@ */ #include "script_component.hpp" -params ["_unit", "_target"]; +params ["_target", "_unit"]; !(isNull _unit || {!(_unit isKindOf "CAManBase")} || {!local _unit} || {(_target distance _unit) > REARM_ACTION_DISTANCE}) diff --git a/addons/rearm/functions/fnc_canRearm.sqf b/addons/rearm/functions/fnc_canRearm.sqf index e80fb3a940..feb29eda01 100644 --- a/addons/rearm/functions/fnc_canRearm.sqf +++ b/addons/rearm/functions/fnc_canRearm.sqf @@ -3,8 +3,8 @@ * Check if a unit can rearm. * * Arguments: - * 0: Unit - * 1: Target + * 0: Target + * 1: Unit * * Return Value: * Can Rearm @@ -17,7 +17,7 @@ #include "script_component.hpp" private ["_magazineClass", "_magazines", "_turretPath"]; -params ["_unit", "_target"]; +params ["_target", "_unit"]; if (GVAR(level) == 0 || {isNull _unit} || {!(_unit isKindOf "CAManBase")} || {!local _unit} || {_target distance _unit > REARM_ACTION_DISTANCE}) exitWith {false}; diff --git a/addons/rearm/functions/fnc_pickUpAmmo.sqf b/addons/rearm/functions/fnc_pickUpAmmo.sqf index 4861486b2d..3a479c1f8e 100644 --- a/addons/rearm/functions/fnc_pickUpAmmo.sqf +++ b/addons/rearm/functions/fnc_pickUpAmmo.sqf @@ -34,7 +34,7 @@ if (_tmpCal > 0) then { if (_tmpCal > 0) then { _cal = _tmpCal; } else { - diag_log format ["ACE_Rearm: Undefined Ammo [%1 : %2]", _ammo, inheritsFrom (configFile >> "CfgAmmo" >> _ammo)]; + diag_log format ["[ACE] ERROR: Undefined Ammo [%1 : %2]", _ammo, inheritsFrom (configFile >> "CfgAmmo" >> _ammo)]; if (_ammo isKindOf "BulletBase") then { _cal = 8; } else { diff --git a/addons/rearm/functions/fnc_rearm.sqf b/addons/rearm/functions/fnc_rearm.sqf index bb5d112a5d..c216b606f6 100644 --- a/addons/rearm/functions/fnc_rearm.sqf +++ b/addons/rearm/functions/fnc_rearm.sqf @@ -4,7 +4,6 @@ * * Arguments: * 0: Unit - * 1: Vehicle * * Return Value: * None @@ -17,7 +16,7 @@ #include "script_component.hpp" private ["_magazineClass", "_ammo", "_tmpCal", "_cal", "_idx", "_needRearmMags", "_magazineDisplayName"]; -params ["_unit", "_vehicle"]; +params ["_unit"]; _magazineClass = _unit getVariable QGVAR(carriedMagazine); if (isNil "_magazineClass") exitWith {false}; From 6c8352c9e5ab44d6fb545c0fc341be4dc603b510 Mon Sep 17 00:00:00 2001 From: jonpas Date: Tue, 18 Aug 2015 03:38:28 +0200 Subject: [PATCH 12/25] Added README.md to rearm, self to authors --- addons/rearm/README.md | 11 +++++++++++ addons/rearm/config.cpp | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 addons/rearm/README.md diff --git a/addons/rearm/README.md b/addons/rearm/README.md new file mode 100644 index 0000000000..4d6dc966a1 --- /dev/null +++ b/addons/rearm/README.md @@ -0,0 +1,11 @@ +ace_rearm +=============== + +The Rearm module introduces ability to rearm vehicles on different realistic levels. + +## Maintainers + +The people responsible for merging changes to this component or answering potential questions. + +- [GitHawk] (https://github.com/GitHawk) +- [Jonpas] (https://github.com/jonpas) diff --git a/addons/rearm/config.cpp b/addons/rearm/config.cpp index a0308e1bad..c15721c9df 100644 --- a/addons/rearm/config.cpp +++ b/addons/rearm/config.cpp @@ -6,7 +6,7 @@ class CfgPatches { weapons[] = {}; requiredVersion = REQUIRED_VERSION; requiredAddons[] = {"ace_interaction"}; - author[] = {"GitHawk"}; + author[] = {"GitHawk", "Jonpas"}; authorUrl = "https://ace3mod.com"; VERSION_CONFIG; }; From 463309db2dd60504dbb45718446879e67512b436 Mon Sep 17 00:00:00 2001 From: IngoKauffmann Date: Tue, 18 Aug 2015 16:20:11 +0200 Subject: [PATCH 13/25] Small cleanup --- addons/rearm/functions/fnc_canRearm.sqf | 4 ++-- .../functions/fnc_getNeedRearmMagazines.sqf | 17 +++++++++-------- .../rearm/functions/fnc_handleUnconscious.sqf | 2 +- addons/rearm/functions/fnc_rearm.sqf | 2 +- 4 files changed, 13 insertions(+), 12 deletions(-) diff --git a/addons/rearm/functions/fnc_canRearm.sqf b/addons/rearm/functions/fnc_canRearm.sqf index feb29eda01..b77b038bd8 100644 --- a/addons/rearm/functions/fnc_canRearm.sqf +++ b/addons/rearm/functions/fnc_canRearm.sqf @@ -16,7 +16,7 @@ */ #include "script_component.hpp" -private ["_magazineClass", "_magazines", "_turretPath"]; +private ["_magazineClass", "_turretPath"]; params ["_target", "_unit"]; if (GVAR(level) == 0 || {isNull _unit} || {!(_unit isKindOf "CAManBase")} || {!local _unit} || {_target distance _unit > REARM_ACTION_DISTANCE}) exitWith {false}; @@ -24,4 +24,4 @@ if (GVAR(level) == 0 || {isNull _unit} || {!(_unit isKindOf "CAManBase")} || {!l _magazineClass = _unit getVariable QGVAR(carriedMagazine); if (isNil "_magazineClass") exitWith {false}; -([_target, _magazines, _magazineClass] call FUNC(getNeedRearmMagazines)) select 0 +([_target, _magazineClass] call FUNC(getNeedRearmMagazines)) select 0 diff --git a/addons/rearm/functions/fnc_getNeedRearmMagazines.sqf b/addons/rearm/functions/fnc_getNeedRearmMagazines.sqf index f242451277..62beddcd46 100644 --- a/addons/rearm/functions/fnc_getNeedRearmMagazines.sqf +++ b/addons/rearm/functions/fnc_getNeedRearmMagazines.sqf @@ -4,24 +4,25 @@ * * Arguments: * 0: Target - * 1: Magazines - * 2: Magazine Classname - * 3: Turret Path + * 1: Magazine Classname * * Return Value: - * Return Value + * Return Value + * 0: Can Rearm + * 1: TurretPath + * 2: Magazine Classname * * Example: - * [tank, ["mag1", "mag2"], "mag", [0]] call ace_rearm_fnc_getNeedRearmMagazines + * [tank, "mag"] call ace_rearm_fnc_getNeedRearmMagazines * * Public: No */ #include "script_component.hpp" -private ["_return", "_cnt"]; -params ["_target", "_magazines", "_magazineClass"]; +private ["_return", "_magazines", "_cnt"]; +params ["_target", "_magazineClass"]; -_return = [false]; +_return = [false, [], 0]; { _magazines = _target magazinesTurret _x; diff --git a/addons/rearm/functions/fnc_handleUnconscious.sqf b/addons/rearm/functions/fnc_handleUnconscious.sqf index 91287c0127..6db0746558 100644 --- a/addons/rearm/functions/fnc_handleUnconscious.sqf +++ b/addons/rearm/functions/fnc_handleUnconscious.sqf @@ -24,8 +24,8 @@ private "_dummy"; _dummy = _unit getVariable [QGVAR(dummy), objNull]; if (!isNull _dummy) then { + _dummy setVariable [QGVAR(carriedMagazine), _unit getVariable QGVAR(carriedMagazine)]; detach _dummy; - deleteVehicle _dummy; // TODO remove when moved to CfgVehicles }; _unit setVariable [QGVAR(dummy), nil]; diff --git a/addons/rearm/functions/fnc_rearm.sqf b/addons/rearm/functions/fnc_rearm.sqf index c216b606f6..e796652dc1 100644 --- a/addons/rearm/functions/fnc_rearm.sqf +++ b/addons/rearm/functions/fnc_rearm.sqf @@ -46,7 +46,7 @@ if (_idx == -1) then { }; // Get magazines that can be rearmed -_needRearmMags = [_target, _magazines, _magazineClass] call FUNC(getNeedRearmMagazines); +_needRearmMags = [_target, _magazineClass] call FUNC(getNeedRearmMagazines); _needRearmMags params ["_needRearm", "_turretPath", "_cnt"]; // Exit if no magazines need rearming From 3072bd9d22cdeb20c34270aa9e056b0e7f8f483e Mon Sep 17 00:00:00 2001 From: IngoKauffmann Date: Tue, 18 Aug 2015 17:38:50 +0200 Subject: [PATCH 14/25] Fixed rearm sucess hint and collision with dummy --- addons/rearm/XEH_preInit.sqf | 2 +- .../{fnc_turn.sqf => fnc_makeDummy.sqf} | 5 +++-- addons/rearm/functions/fnc_pickUpSuccess.sqf | 6 +++-- .../fnc_rearmEntireVehicleSuccess.sqf | 2 +- addons/rearm/functions/fnc_rearmSuccess.sqf | 22 ++++++++++++------- 5 files changed, 23 insertions(+), 14 deletions(-) rename addons/rearm/functions/{fnc_turn.sqf => fnc_makeDummy.sqf} (62%) diff --git a/addons/rearm/XEH_preInit.sqf b/addons/rearm/XEH_preInit.sqf index 70ec760a2e..e11166c74c 100644 --- a/addons/rearm/XEH_preInit.sqf +++ b/addons/rearm/XEH_preInit.sqf @@ -9,6 +9,7 @@ PREP(getMaxMagazines); PREP(getNeedRearmMagazines); PREP(handleKilled); PREP(handleUnconscious); +PREP(makeDummy); PREP(moduleRearmSettings); PREP(pickUpAmmo); PREP(pickUpSuccess); @@ -16,6 +17,5 @@ PREP(rearm); PREP(rearmEntireVehicle); PREP(rearmEntireVehicleSuccess); PREP(rearmSuccess); -PREP(turn); ADDON = true; diff --git a/addons/rearm/functions/fnc_turn.sqf b/addons/rearm/functions/fnc_makeDummy.sqf similarity index 62% rename from addons/rearm/functions/fnc_turn.sqf rename to addons/rearm/functions/fnc_makeDummy.sqf index 8811241216..ab3627ae9c 100644 --- a/addons/rearm/functions/fnc_turn.sqf +++ b/addons/rearm/functions/fnc_makeDummy.sqf @@ -1,6 +1,6 @@ /* * Author: GitHawk - * Turns an object. + * Make a dummy object by disabling collision and turning it. * * Arguments: * 0: Object @@ -10,7 +10,7 @@ * None * * Example: - * [dummy, [[1,0,0],[0,0,1]]] call ace_rearm_fnc_turn + * [dummy, [[1,0,0],[0,0,1]]] call ace_rearm_fnc_makeDummy * * Public: No */ @@ -19,3 +19,4 @@ params ["_obj", "_dirAndUp"]; _obj setVectorDirAndUp _dirAndUp; +player disableCollisionWith _obj; diff --git a/addons/rearm/functions/fnc_pickUpSuccess.sqf b/addons/rearm/functions/fnc_pickUpSuccess.sqf index 2a012a0bc1..10b46e5014 100644 --- a/addons/rearm/functions/fnc_pickUpSuccess.sqf +++ b/addons/rearm/functions/fnc_pickUpSuccess.sqf @@ -35,8 +35,10 @@ _ammo = getText (configFile >> "CfgMagazines" >> _magazine >> "ammo"); _dummy = getText (configFile >> "CfgAmmo" >> _ammo >> QGVAR(dummy)); if !(_dummy == "") then { _dummy = _dummy createVehicle (position _unit); - _dummy attachTo [_unit, [0,0.5,0], "pelvis"]; - [[_dummy, [[-1,0,0],[0,0,1]]], QUOTE(DFUNC(turn)), 2] call EFUNC(common,execRemoteFnc); _dummy allowDamage false; + _dummy attachTo [_unit, [0,0.5,0], "pelvis"]; + { + [[_dummy, [[-1,0,0],[0,0,1]]], QUOTE(DFUNC(makeDummy)), _x] call EFUNC(common,execRemoteFnc); + } count (position _unit nearObjects ["CAManBase", 100]); _unit setVariable [QGVAR(dummy), _dummy]; }; diff --git a/addons/rearm/functions/fnc_rearmEntireVehicleSuccess.sqf b/addons/rearm/functions/fnc_rearmEntireVehicleSuccess.sqf index 9b49d9cc9a..55cacb1475 100644 --- a/addons/rearm/functions/fnc_rearmEntireVehicleSuccess.sqf +++ b/addons/rearm/functions/fnc_rearmEntireVehicleSuccess.sqf @@ -18,7 +18,7 @@ private ["_turretPath", "_magazines", "_magazine", "_currentMagazines", "_maxMagazines", "_maxRounds", "_currentRounds"]; params ["_vehicle"]; -if !(local _vehicle) exitWith { +if !(local _vehicle) exitWith { // TODO if there are players inside the turrets they will not be rearmed due to locality issues [_this, QFUNC(rearmEntireVehicleSuccess), _vehicle] call EFUNC(common,execRemoteFnc); }; diff --git a/addons/rearm/functions/fnc_rearmSuccess.sqf b/addons/rearm/functions/fnc_rearmSuccess.sqf index a662ad0958..565b0f8b30 100644 --- a/addons/rearm/functions/fnc_rearmSuccess.sqf +++ b/addons/rearm/functions/fnc_rearmSuccess.sqf @@ -15,7 +15,7 @@ * None * * Example: - * [[vehicle, player, [0], 5, "calcium", 500]] call ace_rearm_fnc_rearmSuccess + * [[vehicle, player, [-1], 2, "5000Rnd_762x51_Belt", 500]] call ace_rearm_fnc_rearmSuccess * * Public: No */ @@ -40,7 +40,7 @@ if (local _unit) then { _unit setVariable [QGVAR(selectedWeaponOnRearm), nil]; }; -if !(local _target) exitWith { +if !(local _target) exitWith { // TODO if there are players inside the turrets they will not be rearmed due to locality issues [_this, QUOTE(DFUNC(rearmSuccess)), _target] call EFUNC(common,execRemoteFnc); }; @@ -52,13 +52,16 @@ if (_maxMagazines == 1) then { if (GVAR(level) == 1) then { // Fill magazine completely _target setMagazineTurretAmmo [_magazineClass, _rounds, _turretPath]; + ["displayTextStructured", [_unit], [[LSTRING(Hint_RearmedTriple), _rounds, + getText(configFile >> "CfgMagazines" >> _magazineClass >> "displayName"), + getText(configFile >> "CfgVehicles" >> (typeOf _target) >> "displayName")], 3, _unit]] call EFUNC(common,targetEvent); } else { // Fill only at most _numRounds _target setMagazineTurretAmmo [_magazineClass, ((_target magazineTurretAmmo [_magazineClass, _turretPath]) + _numRounds) min _rounds, _turretPath]; + ["displayTextStructured", [_unit], [[LSTRING(Hint_RearmedTriple), _numRounds, + getText(configFile >> "CfgMagazines" >> _magazineClass >> "displayName"), + getText(configFile >> "CfgVehicles" >> (typeOf _target) >> "displayName")], 3, _unit]] call EFUNC(common,targetEvent); }; - [[LSTRING(Hint_RearmedTriple), _numRounds, - getText(configFile >> "CfgMagazines" >> _magazineClass >> "displayName"), - getText(configFile >> "CfgVehicles" >> (typeOf _target) >> "displayName")], 3, _unit] call EFUNC(common,displayTextStructured); } else { for "_idx" from 1 to _maxMagazines do { _currentRounds = _target magazineTurretAmmo [_magazineClass, _turretPath]; @@ -75,6 +78,9 @@ if (_maxMagazines == 1) then { } else { _target setMagazineTurretAmmo [_magazineClass, _currentRounds + _numRounds, _turretPath]; }; + ["displayTextStructured", [_unit], [[LSTRING(Hint_RearmedTriple), _numRounds, + getText(configFile >> "CfgMagazines" >> _magazineClass >> "displayName"), + getText(configFile >> "CfgVehicles" >> (typeOf _target) >> "displayName")], 3, _unit]] call EFUNC(common,targetEvent); } else { // Fill current magazine completely and fill next magazine partially _target setMagazineTurretAmmo [_magazineClass, _rounds, _turretPath]; @@ -82,10 +88,10 @@ if (_maxMagazines == 1) then { _target addMagazineTurret [_magazineClass, _turretPath]; _target setMagazineTurretAmmo [_magazineClass, _currentRounds, _turretPath]; }; + ["displayTextStructured", [_unit], [[LSTRING(Hint_RearmedTriple), _rounds, + getText(configFile >> "CfgMagazines" >> _magazineClass >> "displayName"), + getText(configFile >> "CfgVehicles" >> (typeOf _target) >> "displayName")], 3, _unit]] call EFUNC(common,targetEvent); }; - [[LSTRING(Hint_RearmedTriple), _rounds, - getText(configFile >> "CfgMagazines" >> _magazineClass >> "displayName"), - getText(configFile >> "CfgVehicles" >> (typeOf _target) >> "displayName")], 3, _unit] call EFUNC(common,displayTextStructured); }; _target removeMagazineTurret [_magazineClass, _turretPath]; _numMagazines = _numMagazines - 1; From cf9c49f13c721fc14632677ead2d58607c21c75b Mon Sep 17 00:00:00 2001 From: IngoKauffmann Date: Tue, 18 Aug 2015 18:09:37 +0200 Subject: [PATCH 15/25] Attempt to fix turret locality issues --- .../fnc_rearmEntireVehicleSuccess.sqf | 33 ++------ .../fnc_rearmEntireVehicleSuccessLocal.sqf | 44 ++++++++++ addons/rearm/functions/fnc_rearmSuccess.sqf | 62 ++------------ .../rearm/functions/fnc_rearmSuccessLocal.sqf | 82 +++++++++++++++++++ 4 files changed, 140 insertions(+), 81 deletions(-) create mode 100644 addons/rearm/functions/fnc_rearmEntireVehicleSuccessLocal.sqf create mode 100644 addons/rearm/functions/fnc_rearmSuccessLocal.sqf diff --git a/addons/rearm/functions/fnc_rearmEntireVehicleSuccess.sqf b/addons/rearm/functions/fnc_rearmEntireVehicleSuccess.sqf index 55cacb1475..91c4e17efc 100644 --- a/addons/rearm/functions/fnc_rearmEntireVehicleSuccess.sqf +++ b/addons/rearm/functions/fnc_rearmEntireVehicleSuccess.sqf @@ -22,29 +22,12 @@ if !(local _vehicle) exitWith { // TODO if there are players inside the turrets [_this, QFUNC(rearmEntireVehicleSuccess), _vehicle] call EFUNC(common,execRemoteFnc); }; -{ - _turretPath = _x; - _magazines = _vehicle magazinesTurret _turretPath; +if (isServer) then { { - _magazine = _x; - _currentMagazines = { _x == _magazine } count (_vehicle magazinesTurret _turretPath); - _maxMagazines = [_vehicle, _turretPath, _magazine] call FUNC(getMaxMagazines); - _maxRounds = getNumber (configFile >> "CfgMagazines" >> _magazine >> "count"); - _currentRounds = _vehicle magazineTurretAmmo [_magazine, _turretPath]; - - TRACE_7("Rearmed Turret",_vehicle,_turretPath,_currentMagazines,_maxMagazines,_currentRounds,_maxRounds,_magazine); - - if (_currentMagazines < _maxMagazines) then { - _vehicle setMagazineTurretAmmo [_magazine, _maxRounds, _turretPath]; - for "_idx" from 1 to (_maxMagazines - _currentMagazines) do { - _vehicle addMagazineTurret [_magazine, _turretPath]; - }; - } else { - if (_currentRounds > 0 || {_magazine == "SmokeLauncherMag"}) then { // When SmokeLauncherMag is empty removeMagazineTurret has no effect - _vehicle setMagazineTurretAmmo [_magazine, _maxRounds, _turretPath]; - } else { - _vehicle removeMagazineTurret [_magazine, _turretPath]; - }; - }; - } foreach _magazines; -} foreach REARM_TURRET_PATHS; + _turretOwnerID = _target turretOwner _x; + EGVAR(common,remoteFnc) = [[_vehicle, _x], QFUNC(rearmEntireVehicleSuccesssLocal), 0]; + _turretOwnerID publicVariableClient QEGVAR(common,remoteFnc); + } count REARM_TURRET_PATHS; +} else { + [_this, QUOTE(DFUNC(rearmEntireVehicleSuccess)), 1] call EFUNC(common,execRemoteFnc); +}; diff --git a/addons/rearm/functions/fnc_rearmEntireVehicleSuccessLocal.sqf b/addons/rearm/functions/fnc_rearmEntireVehicleSuccessLocal.sqf new file mode 100644 index 0000000000..4d2f5a1423 --- /dev/null +++ b/addons/rearm/functions/fnc_rearmEntireVehicleSuccessLocal.sqf @@ -0,0 +1,44 @@ +/* + * Author: GitHawk + * Rearm an entire turret locally. + * + * Arguments: + * 0: Vehicle + * + * Return Value: + * None + * + * Example: + * [tank, [0]] call ace_rearm_fnc_rearmEntireVehicleSuccessLocal + * + * Public: No + */ +#include "script_component.hpp" + +private ["_magazines", "_magazine", "_currentMagazines", "_maxMagazines", "_maxRounds", "_currentRounds"]; +params ["_args"]; +_args params ["_vehicle", "_turretPath"]; + +_magazines = _vehicle magazinesTurret _turretPath; +{ + _magazine = _x; + _currentMagazines = { _x == _magazine } count (_vehicle magazinesTurret _turretPath); + _maxMagazines = [_vehicle, _turretPath, _magazine] call FUNC(getMaxMagazines); + _maxRounds = getNumber (configFile >> "CfgMagazines" >> _magazine >> "count"); + _currentRounds = _vehicle magazineTurretAmmo [_magazine, _turretPath]; + + TRACE_7("Rearmed Turret",_vehicle,_turretPath,_currentMagazines,_maxMagazines,_currentRounds,_maxRounds,_magazine); + + if (_currentMagazines < _maxMagazines) then { + _vehicle setMagazineTurretAmmo [_magazine, _maxRounds, _turretPath]; + for "_idx" from 1 to (_maxMagazines - _currentMagazines) do { + _vehicle addMagazineTurret [_magazine, _turretPath]; + }; + } else { + if (_currentRounds > 0 || {_magazine == "SmokeLauncherMag"}) then { // When SmokeLauncherMag is empty removeMagazineTurret has no effect + _vehicle setMagazineTurretAmmo [_magazine, _maxRounds, _turretPath]; + } else { + _vehicle removeMagazineTurret [_magazine, _turretPath]; + }; + }; +} foreach _magazines; diff --git a/addons/rearm/functions/fnc_rearmSuccess.sqf b/addons/rearm/functions/fnc_rearmSuccess.sqf index 565b0f8b30..6ecb20f8c2 100644 --- a/addons/rearm/functions/fnc_rearmSuccess.sqf +++ b/addons/rearm/functions/fnc_rearmSuccess.sqf @@ -21,7 +21,7 @@ */ #include "script_component.hpp" -private ["_rounds", "_currentRounds", "_maxMagazines", "_dummy", "_weaponSelect"]; +private ["_dummy", "_weaponSelect", "_turretOwnerID"]; params ["_args"]; _args params ["_target", "_unit", "_turretPath", "_numMagazines", "_magazineClass", "_numRounds"]; @@ -40,60 +40,10 @@ if (local _unit) then { _unit setVariable [QGVAR(selectedWeaponOnRearm), nil]; }; -if !(local _target) exitWith { // TODO if there are players inside the turrets they will not be rearmed due to locality issues - [_this, QUOTE(DFUNC(rearmSuccess)), _target] call EFUNC(common,execRemoteFnc); -}; - -_rounds = getNumber (configFile >> "CfgMagazines" >> _magazineClass >> "count"); -_currentRounds = 0; - -_maxMagazines = [_target, _turretPath, _magazineClass] call FUNC(getMaxMagazines); -if (_maxMagazines == 1) then { - if (GVAR(level) == 1) then { - // Fill magazine completely - _target setMagazineTurretAmmo [_magazineClass, _rounds, _turretPath]; - ["displayTextStructured", [_unit], [[LSTRING(Hint_RearmedTriple), _rounds, - getText(configFile >> "CfgMagazines" >> _magazineClass >> "displayName"), - getText(configFile >> "CfgVehicles" >> (typeOf _target) >> "displayName")], 3, _unit]] call EFUNC(common,targetEvent); - } else { - // Fill only at most _numRounds - _target setMagazineTurretAmmo [_magazineClass, ((_target magazineTurretAmmo [_magazineClass, _turretPath]) + _numRounds) min _rounds, _turretPath]; - ["displayTextStructured", [_unit], [[LSTRING(Hint_RearmedTriple), _numRounds, - getText(configFile >> "CfgMagazines" >> _magazineClass >> "displayName"), - getText(configFile >> "CfgVehicles" >> (typeOf _target) >> "displayName")], 3, _unit]] call EFUNC(common,targetEvent); - }; +if (isServer) then { + _turretOwnerID = _target turretOwner _turretPath; + EGVAR(common,remoteFnc) = [_this, QFUNC(rearmSuccessLocal), 0]; + _turretOwnerID publicVariableClient QEGVAR(common,remoteFnc); } else { - for "_idx" from 1 to _maxMagazines do { - _currentRounds = _target magazineTurretAmmo [_magazineClass, _turretPath]; - if (_currentRounds > 0) exitWith { - if (GVAR(level) == 2) then { - //hint format ["Target: %1\nTurretPath: %2\nNumMagazines: %3\nMaxMagazines %4\nMagazine: %5\nNumRounds: %6\nMagazine: %7", _target, _turretPath, _numMagazines, _maxMagazines, _currentRounds, _numRounds, _magazineClass]; - // Fill only at most _numRounds - if ((_currentRounds + _numRounds) > _rounds) then { - _target setMagazineTurretAmmo [_magazineClass, _rounds, _turretPath]; - if (_numMagazines < _maxMagazines) then { - _target addMagazineTurret [_magazineClass, _turretPath]; - _target setMagazineTurretAmmo [_magazineClass, _currentRounds + _numRounds - _rounds, _turretPath]; - }; - } else { - _target setMagazineTurretAmmo [_magazineClass, _currentRounds + _numRounds, _turretPath]; - }; - ["displayTextStructured", [_unit], [[LSTRING(Hint_RearmedTriple), _numRounds, - getText(configFile >> "CfgMagazines" >> _magazineClass >> "displayName"), - getText(configFile >> "CfgVehicles" >> (typeOf _target) >> "displayName")], 3, _unit]] call EFUNC(common,targetEvent); - } else { - // Fill current magazine completely and fill next magazine partially - _target setMagazineTurretAmmo [_magazineClass, _rounds, _turretPath]; - if (_numMagazines < _maxMagazines) then { - _target addMagazineTurret [_magazineClass, _turretPath]; - _target setMagazineTurretAmmo [_magazineClass, _currentRounds, _turretPath]; - }; - ["displayTextStructured", [_unit], [[LSTRING(Hint_RearmedTriple), _rounds, - getText(configFile >> "CfgMagazines" >> _magazineClass >> "displayName"), - getText(configFile >> "CfgVehicles" >> (typeOf _target) >> "displayName")], 3, _unit]] call EFUNC(common,targetEvent); - }; - }; - _target removeMagazineTurret [_magazineClass, _turretPath]; - _numMagazines = _numMagazines - 1; - }; + [_this, QUOTE(DFUNC(rearmSuccess)), 1] call EFUNC(common,execRemoteFnc); }; diff --git a/addons/rearm/functions/fnc_rearmSuccessLocal.sqf b/addons/rearm/functions/fnc_rearmSuccessLocal.sqf new file mode 100644 index 0000000000..453ad11195 --- /dev/null +++ b/addons/rearm/functions/fnc_rearmSuccessLocal.sqf @@ -0,0 +1,82 @@ +/* + * Author: GitHawk + * Rearms a vehicle on the turret owner. + * + * Arguments: + * 0: Params + * 0: Target + * 1: Unit + * 2: Turret Path + * 3: Number of magazines + * 4: Magazine Classname + * 5: Number of rounds + * + * Return Value: + * None + * + * Example: + * [[vehicle, player, [-1], 2, "5000Rnd_762x51_Belt", 500]] call ace_rearm_fnc_rearmSuccess + * + * Public: No + */ +#include "script_component.hpp" + +private ["_rounds", "_currentRounds", "_maxMagazines", "_dummy", "_weaponSelect"]; +params ["_args"]; +_args params ["_target", "_unit", "_turretPath", "_numMagazines", "_magazineClass", "_numRounds"]; + +//hint format ["Target: %1\nTurretPath: %2\nNumMagazines: %3\nMagazine: %4\nNumRounds: %5", _target, _turretPath, _numMagazines, _magazineClass, _numRounds]; + +_rounds = getNumber (configFile >> "CfgMagazines" >> _magazineClass >> "count"); +_currentRounds = 0; + +_maxMagazines = [_target, _turretPath, _magazineClass] call FUNC(getMaxMagazines); +if (_maxMagazines == 1) then { + if (GVAR(level) == 1) then { + // Fill magazine completely + _target setMagazineTurretAmmo [_magazineClass, _rounds, _turretPath]; + ["displayTextStructured", [_unit], [[LSTRING(Hint_RearmedTriple), _rounds, + getText(configFile >> "CfgMagazines" >> _magazineClass >> "displayName"), + getText(configFile >> "CfgVehicles" >> (typeOf _target) >> "displayName")], 3, _unit]] call EFUNC(common,targetEvent); + } else { + // Fill only at most _numRounds + _target setMagazineTurretAmmo [_magazineClass, ((_target magazineTurretAmmo [_magazineClass, _turretPath]) + _numRounds) min _rounds, _turretPath]; + ["displayTextStructured", [_unit], [[LSTRING(Hint_RearmedTriple), _numRounds, + getText(configFile >> "CfgMagazines" >> _magazineClass >> "displayName"), + getText(configFile >> "CfgVehicles" >> (typeOf _target) >> "displayName")], 3, _unit]] call EFUNC(common,targetEvent); + }; +} else { + for "_idx" from 1 to _maxMagazines do { + _currentRounds = _target magazineTurretAmmo [_magazineClass, _turretPath]; + if (_currentRounds > 0) exitWith { + if (GVAR(level) == 2) then { + //hint format ["Target: %1\nTurretPath: %2\nNumMagazines: %3\nMaxMagazines %4\nMagazine: %5\nNumRounds: %6\nMagazine: %7", _target, _turretPath, _numMagazines, _maxMagazines, _currentRounds, _numRounds, _magazineClass]; + // Fill only at most _numRounds + if ((_currentRounds + _numRounds) > _rounds) then { + _target setMagazineTurretAmmo [_magazineClass, _rounds, _turretPath]; + if (_numMagazines < _maxMagazines) then { + _target addMagazineTurret [_magazineClass, _turretPath]; + _target setMagazineTurretAmmo [_magazineClass, _currentRounds + _numRounds - _rounds, _turretPath]; + }; + } else { + _target setMagazineTurretAmmo [_magazineClass, _currentRounds + _numRounds, _turretPath]; + }; + ["displayTextStructured", [_unit], [[LSTRING(Hint_RearmedTriple), _numRounds, + getText(configFile >> "CfgMagazines" >> _magazineClass >> "displayName"), + getText(configFile >> "CfgVehicles" >> (typeOf _target) >> "displayName")], 3, _unit]] call EFUNC(common,targetEvent); + } else { + // Fill current magazine completely and fill next magazine partially + _target setMagazineTurretAmmo [_magazineClass, _rounds, _turretPath]; + if (_numMagazines < _maxMagazines) then { + _target addMagazineTurret [_magazineClass, _turretPath]; + _target setMagazineTurretAmmo [_magazineClass, _currentRounds, _turretPath]; + }; + ["displayTextStructured", [_unit], [[LSTRING(Hint_RearmedTriple), _rounds, + getText(configFile >> "CfgMagazines" >> _magazineClass >> "displayName"), + getText(configFile >> "CfgVehicles" >> (typeOf _target) >> "displayName")], 3, _unit]] call EFUNC(common,targetEvent); + }; + }; + _target removeMagazineTurret [_magazineClass, _turretPath]; + _numMagazines = _numMagazines - 1; + }; +}; From 8b9be1923ce75638b262258a0c1ccb170f87ca9a Mon Sep 17 00:00:00 2001 From: IngoKauffmann Date: Tue, 18 Aug 2015 19:06:41 +0200 Subject: [PATCH 16/25] Added support for third subturret of main turret --- addons/rearm/script_component.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/rearm/script_component.hpp b/addons/rearm/script_component.hpp index 8a8b986869..5454e80d85 100644 --- a/addons/rearm/script_component.hpp +++ b/addons/rearm/script_component.hpp @@ -13,7 +13,7 @@ #define REARM_ACTION_DISTANCE 7 -#define REARM_TURRET_PATHS [[-1], [0], [0,0], [0,1], [1], [2]] +#define REARM_TURRET_PATHS [[-1], [0], [0,0], [0,1], [1], [2], [0,2]] #define REARM_CALIBERS [ 6, 7, 8, 13, 19, 20, 25, 30, 35, 40, 60, 70, 80, 82, 100, 105, 120, 122, 125, 155, 230, 250] #define REARM_DURATION_PICKUP [ 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 3, 3, 3, 3, 4, 5, 5, 5, 5, 13, 10] From bdc5e54f553250e9d8dfd13a330450a83269e4be Mon Sep 17 00:00:00 2001 From: IngoKauffmann Date: Wed, 19 Aug 2015 17:33:32 +0200 Subject: [PATCH 17/25] Fixed turret locality and driver empty magazine issues --- addons/rearm/CfgAmmo.hpp | 2 +- addons/rearm/XEH_preInit.sqf | 3 ++ .../rearm/functions/fnc_addRearmActions.sqf | 11 ++-- .../functions/fnc_getConfigMagazines.sqf | 53 +++++++++++++++++++ .../rearm/functions/fnc_getMaxMagazines.sqf | 32 +---------- .../functions/fnc_getNeedRearmMagazines.sqf | 9 +++- .../fnc_rearmEntireVehicleSuccess.sqf | 16 +++--- .../fnc_rearmEntireVehicleSuccessLocal.sqf | 20 ++++--- addons/rearm/functions/fnc_rearmSuccess.sqf | 8 ++- 9 files changed, 99 insertions(+), 55 deletions(-) create mode 100644 addons/rearm/functions/fnc_getConfigMagazines.sqf diff --git a/addons/rearm/CfgAmmo.hpp b/addons/rearm/CfgAmmo.hpp index e611293164..2e5e0ee7e8 100644 --- a/addons/rearm/CfgAmmo.hpp +++ b/addons/rearm/CfgAmmo.hpp @@ -32,7 +32,7 @@ class CfgAmmo { GVAR(dummy) = QGVAR(Rocket_03_AP_F); }; class M_PG_AT : MissileBase { - GVAR(caliber) = 100; + GVAR(caliber) = 70; GVAR(dummy) = QGVAR(M_PG_AT); }; class Missile_AGM_02_F : MissileBase { diff --git a/addons/rearm/XEH_preInit.sqf b/addons/rearm/XEH_preInit.sqf index e11166c74c..9b01018a2a 100644 --- a/addons/rearm/XEH_preInit.sqf +++ b/addons/rearm/XEH_preInit.sqf @@ -5,6 +5,7 @@ ADDON = false; PREP(addRearmActions); PREP(canPickupAmmo); PREP(canRearm); +PREP(getConfigMagazines); PREP(getMaxMagazines); PREP(getNeedRearmMagazines); PREP(handleKilled); @@ -16,6 +17,8 @@ PREP(pickUpSuccess); PREP(rearm); PREP(rearmEntireVehicle); PREP(rearmEntireVehicleSuccess); +PREP(rearmEntireVehicleSuccessLocal); PREP(rearmSuccess); +PREP(rearmSuccessLocal); ADDON = true; diff --git a/addons/rearm/functions/fnc_addRearmActions.sqf b/addons/rearm/functions/fnc_addRearmActions.sqf index a8bd6b7382..7bcb9b939a 100644 --- a/addons/rearm/functions/fnc_addRearmActions.sqf +++ b/addons/rearm/functions/fnc_addRearmActions.sqf @@ -18,7 +18,7 @@ private ["_vehicleActions", "_actions", "_action", "_vehicles", "_vehicle", "_needToAdd", "_magazineHelper", "_turretPath", "_magazines", "_magazine", "_icon", "_cnt"]; params ["_target"]; -_vehicles = nearestObjects [_target, ["AllVehicles"], 20]; +_vehicles = nearestObjects [_target, ["AllVehicles"], 20]; // FIXME remove players if (count _vehicles < 2) exitWith {false}; // Rearming needs at least 2 vehicles _vehicleActions = []; @@ -27,11 +27,16 @@ _vehicleActions = []; _vehicle = _x; _needToAdd = false; _action = []; - if !(_vehicle == _target) then { + if !((_vehicle == _target) || (_vehicle isKindOf "CAManBase")) then { _magazineHelper = []; { _turretPath = _x; - _magazines = _vehicle magazinesTurret _turretPath; + _magazines = []; + if (_turretPath isEqualTo [-1]) then { + _magazines = [_vehicle, _turretPath] call FUNC(getConfigMagazines); + } else { + _magazines = _vehicle magazinesTurret _turretPath; + }; { _magazine = _x; _cnt = { _x == _magazine } count (_vehicle magazinesTurret _turretPath); diff --git a/addons/rearm/functions/fnc_getConfigMagazines.sqf b/addons/rearm/functions/fnc_getConfigMagazines.sqf new file mode 100644 index 0000000000..de75d24415 --- /dev/null +++ b/addons/rearm/functions/fnc_getConfigMagazines.sqf @@ -0,0 +1,53 @@ +/* + * Author: GitHawk, Jonpas + * Returns all magazines a turret can hold according to config. + * + * Arguments: + * 0: Target + * 1: Turret Path + * + * Return Value: + * Magazine classes in TurretPath + * + * Example: + * [vehicle, [0]] call ace_rearm_fnc_getMaxMagazines + * + * Public: No + */ +#include "script_component.hpp" + +params ["_target", "_turretPath"]; + +if (isNull _target) exitWith {[]}; + +_cfg = configFile >> "CfgVehicles" >> (typeOf _target) >> "Turrets"; + +if (count _turretPath == 1) then { + _turretPath params ["_subPath"]; + + if (_subPath == -1) exitWith { + _cfg = configFile >> "CfgVehicles" >> (typeOf _target); + }; + + if (count _cfg > _subPath) then { + _cfg = _cfg select _subPath; + } else { + _cfg = nil; + }; +} else { + _turretPath params ["", "_subPath"]; + if (count _cfg > 0) then { + _cfg = (_cfg select 0) >> "Turrets"; + if (count _cfg > _subPath) then { + _cfg = _cfg select _subPath; + } else { + _cfg = nil; + }; + } else { + _cfg = nil; + }; +}; + +if !(isClass _cfg) exitWith {[]}; + +getArray (_cfg >> "magazines") diff --git a/addons/rearm/functions/fnc_getMaxMagazines.sqf b/addons/rearm/functions/fnc_getMaxMagazines.sqf index b9655f1c69..4f67d2ab70 100644 --- a/addons/rearm/functions/fnc_getMaxMagazines.sqf +++ b/addons/rearm/functions/fnc_getMaxMagazines.sqf @@ -22,35 +22,5 @@ params ["_target", "_turretPath", "_magazine"]; if (isNull _target) exitWith {0}; -_cfg = configFile >> "CfgVehicles" >> (typeOf _target) >> "Turrets"; - -if (count _turretPath == 1) then { - _turretPath params ["_subPath"]; - - if (_subPath == -1) exitWith { - _cfg = configFile >> "CfgVehicles" >> (typeOf _target); - }; - - if (count _cfg > _subPath) then { - _cfg = _cfg select _subPath; - } else { - _cfg = nil; - }; -} else { - _turretPath params ["", "_subPath"]; - if (count _cfg > 0) then { - _cfg = (_cfg select 0) >> "Turrets"; - if (count _cfg > _subPath) then { - _cfg = _cfg select _subPath; - } else { - _cfg = nil; - }; - } else { - _cfg = nil; - }; -}; - -if !(isClass _cfg) exitWith {0}; - -_count = {_x == _magazine} count getArray (_cfg >> "magazines"); +_count = {_x == _magazine} count ([_target, _turretPath] call FUNC(getConfigMagazines)); _count diff --git a/addons/rearm/functions/fnc_getNeedRearmMagazines.sqf b/addons/rearm/functions/fnc_getNeedRearmMagazines.sqf index 62beddcd46..7a591c6c32 100644 --- a/addons/rearm/functions/fnc_getNeedRearmMagazines.sqf +++ b/addons/rearm/functions/fnc_getNeedRearmMagazines.sqf @@ -24,10 +24,15 @@ params ["_target", "_magazineClass"]; _return = [false, [], 0]; { - _magazines = _target magazinesTurret _x; + _magazines = []; + if (_x isEqualTo [-1]) then { + _magazines = [_target, _x] call FUNC(getConfigMagazines); + } else { + _magazines = _target magazinesTurret _x; + }; if (_magazineClass in _magazines) then { - _cnt = {_x == _magazineClass} count _magazines; + _cnt = {_x == _magazineClass} count (_target magazinesTurret _x); if ((_target magazineTurretAmmo [_magazineClass, _x]) < getNumber (configFile >> "CfgMagazines" >> _magazineClass >> "count")) exitWith { _return = [true, _x, _cnt]; diff --git a/addons/rearm/functions/fnc_rearmEntireVehicleSuccess.sqf b/addons/rearm/functions/fnc_rearmEntireVehicleSuccess.sqf index 91c4e17efc..cddce3ac3a 100644 --- a/addons/rearm/functions/fnc_rearmEntireVehicleSuccess.sqf +++ b/addons/rearm/functions/fnc_rearmEntireVehicleSuccess.sqf @@ -18,16 +18,16 @@ private ["_turretPath", "_magazines", "_magazine", "_currentMagazines", "_maxMagazines", "_maxRounds", "_currentRounds"]; params ["_vehicle"]; -if !(local _vehicle) exitWith { // TODO if there are players inside the turrets they will not be rearmed due to locality issues - [_this, QFUNC(rearmEntireVehicleSuccess), _vehicle] call EFUNC(common,execRemoteFnc); -}; - if (isServer) then { { - _turretOwnerID = _target turretOwner _x; - EGVAR(common,remoteFnc) = [[_vehicle, _x], QFUNC(rearmEntireVehicleSuccesssLocal), 0]; - _turretOwnerID publicVariableClient QEGVAR(common,remoteFnc); + _turretOwnerID = _vehicle turretOwner _x; + if (_turretOwnerID == 0) then { + [[_vehicle, _x], QFUNC(rearmEntireVehicleSuccessLocal), _target] call EFUNC(common,execRemoteFnc); + } else { + EGVAR(common,remoteFnc) = [[_vehicle, _x], QFUNC(rearmEntireVehicleSuccessLocal), 0]; + _turretOwnerID publicVariableClient QEGVAR(common,remoteFnc); + }; } count REARM_TURRET_PATHS; } else { - [_this, QUOTE(DFUNC(rearmEntireVehicleSuccess)), 1] call EFUNC(common,execRemoteFnc); + [_this, QFUNC(rearmEntireVehicleSuccess), 1] call EFUNC(common,execRemoteFnc); }; diff --git a/addons/rearm/functions/fnc_rearmEntireVehicleSuccessLocal.sqf b/addons/rearm/functions/fnc_rearmEntireVehicleSuccessLocal.sqf index 4d2f5a1423..c9a2630644 100644 --- a/addons/rearm/functions/fnc_rearmEntireVehicleSuccessLocal.sqf +++ b/addons/rearm/functions/fnc_rearmEntireVehicleSuccessLocal.sqf @@ -16,10 +16,14 @@ #include "script_component.hpp" private ["_magazines", "_magazine", "_currentMagazines", "_maxMagazines", "_maxRounds", "_currentRounds"]; -params ["_args"]; -_args params ["_vehicle", "_turretPath"]; +params ["_vehicle", "_turretPath"]; -_magazines = _vehicle magazinesTurret _turretPath; +_magazines = []; +if (_turretPath isEqualTo [-1]) then { + _magazines = [_vehicle, _turretPath] call FUNC(getConfigMagazines); +} else { + _magazines = _vehicle magazinesTurret _turretPath; +}; { _magazine = _x; _currentMagazines = { _x == _magazine } count (_vehicle magazinesTurret _turretPath); @@ -29,16 +33,16 @@ _magazines = _vehicle magazinesTurret _turretPath; TRACE_7("Rearmed Turret",_vehicle,_turretPath,_currentMagazines,_maxMagazines,_currentRounds,_maxRounds,_magazine); + if (_turretPath isEqualTo [-1] && _currentMagazines == 0) then { + // On driver, the an empty magazine is still there, but is not returned by magazinesTurret + _currentMagazines = _currentMagazines + 1; + }; if (_currentMagazines < _maxMagazines) then { _vehicle setMagazineTurretAmmo [_magazine, _maxRounds, _turretPath]; for "_idx" from 1 to (_maxMagazines - _currentMagazines) do { _vehicle addMagazineTurret [_magazine, _turretPath]; }; } else { - if (_currentRounds > 0 || {_magazine == "SmokeLauncherMag"}) then { // When SmokeLauncherMag is empty removeMagazineTurret has no effect - _vehicle setMagazineTurretAmmo [_magazine, _maxRounds, _turretPath]; - } else { - _vehicle removeMagazineTurret [_magazine, _turretPath]; - }; + _vehicle setMagazineTurretAmmo [_magazine, _maxRounds, _turretPath]; }; } foreach _magazines; diff --git a/addons/rearm/functions/fnc_rearmSuccess.sqf b/addons/rearm/functions/fnc_rearmSuccess.sqf index 6ecb20f8c2..19987551bd 100644 --- a/addons/rearm/functions/fnc_rearmSuccess.sqf +++ b/addons/rearm/functions/fnc_rearmSuccess.sqf @@ -42,8 +42,12 @@ if (local _unit) then { if (isServer) then { _turretOwnerID = _target turretOwner _turretPath; - EGVAR(common,remoteFnc) = [_this, QFUNC(rearmSuccessLocal), 0]; - _turretOwnerID publicVariableClient QEGVAR(common,remoteFnc); + if (_turretOwnerID == 0) then { + [_this, QUOTE(DFUNC(rearmSuccessLocal)), _target] call EFUNC(common,execRemoteFnc); + } else { + EGVAR(common,remoteFnc) = [_this, QFUNC(rearmSuccessLocal), 0]; + _turretOwnerID publicVariableClient QEGVAR(common,remoteFnc); + }; } else { [_this, QUOTE(DFUNC(rearmSuccess)), 1] call EFUNC(common,execRemoteFnc); }; From a37608b9b1fea056d658bc84249bf178800e470d Mon Sep 17 00:00:00 2001 From: IngoKauffmann Date: Thu, 20 Aug 2015 00:03:16 +0200 Subject: [PATCH 18/25] Added generic dummy --- addons/rearm/CfgVehicles.hpp | 100 +++++++++++-------- addons/rearm/functions/fnc_pickUpSuccess.sqf | 37 ++++--- 2 files changed, 80 insertions(+), 57 deletions(-) diff --git a/addons/rearm/CfgVehicles.hpp b/addons/rearm/CfgVehicles.hpp index 53ca73cc63..23280ede55 100644 --- a/addons/rearm/CfgVehicles.hpp +++ b/addons/rearm/CfgVehicles.hpp @@ -26,11 +26,6 @@ }; \ }; -#define MACRO_DUMMY_PROPERTIES \ - displayName = QGVAR(dummy_obj); \ - scope = 2; \ - scopeCurator = 2; - class CfgVehicles { class ACE_Module; class ACE_moduleRearmSettings : ACE_Module { @@ -127,80 +122,103 @@ class CfgVehicles { MACRO_REARM_PICKUPAMMO }; + class Heli_Transport_04_base_F; + class O_Heli_Transport_04_ammo_F : Heli_Transport_04_base_F { + XEH_ENABLED; + transportAmmo = 0; + MACRO_REARM_PICKUPAMMO + }; + + class Land_Pod_Heli_Transport_04_base_F : StaticWeapon {}; + class Land_Pod_Heli_Transport_04_ammo_F : Land_Pod_Heli_Transport_04_base_F { + XEH_ENABLED; + transportAmmo = 0; + MACRO_REARM_PICKUPAMMO + }; + + class ReammoBox_F; + class Slingload_01_Base_F : ReammoBox_F { + class ACE_Actions { + class ACE_MainActions { + displayName = ECSTRING(interaction,MainAction); + selection = ""; + distance = 10; + condition = "true"; + }; + }; + }; + + class B_Slingload_01_Ammo_F : Slingload_01_Base_F { + XEH_ENABLED; + transportAmmo = 0; + MACRO_REARM_PICKUPAMMO + }; + // Dummy Vehicles class ThingX; - class GVAR(Bo_GBU12_LGB) : ThingX { - MACRO_DUMMY_PROPERTIES + class GVAR(defaultCarriedObject) : ThingX { + EGVAR(dragging,canCarry) = 1; + EGVAR(dragging,carryPosition[]) = {0,0.5,0}; + EGVAR(dragging,carryDirection) = 0; + displayName = QGVAR(dummy_obj); + scope = 2; + scopeCurator = 2; + model = "\A3\Weapons_F\AmmoBoxes\AmmoBox_F.p3d"; // TODO replace with custom model + }; + class GVAR(Bo_GBU12_LGB) : GVAR(defaultCarriedObject) { model = "\A3\Weapons_F\Ammo\Bomb_01_F.p3d"; }; - class GVAR(Bo_Mk82) : ThingX { - MACRO_DUMMY_PROPERTIES + class GVAR(Bo_Mk82) : GVAR(defaultCarriedObject) { model = "\A3\Weapons_F\Ammo\Bomb_02_F"; }; - class GVAR(Bomb_04_F) : ThingX { - MACRO_DUMMY_PROPERTIES + class GVAR(Bomb_04_F) : GVAR(defaultCarriedObject) { model = "\A3\Weapons_F_EPC\Ammo\Bomb_04_F.p3d"; }; - class GVAR(Bomb_03_F) : ThingX { - MACRO_DUMMY_PROPERTIES + class GVAR(Bomb_03_F) : GVAR(defaultCarriedObject) { model = "\A3\Weapons_F_EPC\Ammo\Bomb_03_F.p3d"; }; - class GVAR(Missile_AA_04_F) : ThingX { - MACRO_DUMMY_PROPERTIES + class GVAR(Missile_AA_04_F) : GVAR(defaultCarriedObject) { model = "\A3\Weapons_F_EPC\Ammo\Missile_AA_04_F.p3d"; }; - class GVAR(Missile_AA_03_F) : ThingX { - MACRO_DUMMY_PROPERTIES + class GVAR(Missile_AA_03_F) : GVAR(defaultCarriedObject) { model = "\A3\Weapons_F_EPC\Ammo\Missile_AA_03_F.p3d"; }; - class GVAR(Missile_AGM_02_F) : ThingX { - MACRO_DUMMY_PROPERTIES + class GVAR(Missile_AGM_02_F) : GVAR(defaultCarriedObject) { model = "\A3\Weapons_F_EPC\Ammo\Missile_AGM_02_F.p3d"; }; - class GVAR(Missile_AGM_01_F) : ThingX { - MACRO_DUMMY_PROPERTIES + class GVAR(Missile_AGM_01_F) : GVAR(defaultCarriedObject) { model = "\A3\Weapons_F_EPC\Ammo\Missile_AGM_01_F.p3d"; }; - class GVAR(R_230mm_fly) : ThingX { - MACRO_DUMMY_PROPERTIES + class GVAR(R_230mm_fly) : GVAR(defaultCarriedObject) { model = "\A3\Weapons_F\Ammo\Missile_AT_02_F"; }; - class GVAR(R_230mm_HE) : ThingX { - MACRO_DUMMY_PROPERTIES + class GVAR(R_230mm_HE) : GVAR(defaultCarriedObject) { model = "\A3\Weapons_F\Ammo\Missile_AT_02_F"; }; - class GVAR(M_PG_AT) : ThingX { - MACRO_DUMMY_PROPERTIES + class GVAR(M_PG_AT) : GVAR(defaultCarriedObject) { model = "\A3\Weapons_F\Ammo\Rocket_01_F"; }; - class GVAR(Rocket_04_HE_F) : ThingX { - MACRO_DUMMY_PROPERTIES + class GVAR(Rocket_04_HE_F) : GVAR(defaultCarriedObject) { model = "\A3\Weapons_F_EPC\Ammo\Rocket_04_HE_F.p3d"; }; - class GVAR(Rocket_03_HE_F) : ThingX { - MACRO_DUMMY_PROPERTIES + class GVAR(Rocket_03_HE_F) : GVAR(defaultCarriedObject) { model = "\A3\Weapons_F_EPC\Ammo\Rocket_03_HE_F.p3d"; }; - class GVAR(Rocket_04_AP_F) : ThingX { - MACRO_DUMMY_PROPERTIES + class GVAR(Rocket_04_AP_F) : GVAR(defaultCarriedObject) { model = "\A3\Weapons_F_EPC\Ammo\Rocket_04_AP_F.p3d"; }; - class GVAR(Rocket_03_AP_F) : ThingX { - MACRO_DUMMY_PROPERTIES + class GVAR(Rocket_03_AP_F) : GVAR(defaultCarriedObject) { model = "\A3\Weapons_F_EPC\Ammo\Rocket_03_AP_F.p3d"; }; // Using wrong model - class GVAR(R_80mm_HE) : ThingX { - MACRO_DUMMY_PROPERTIES + class GVAR(R_80mm_HE) : GVAR(defaultCarriedObject) { model = "\A3\Weapons_F_EPC\Ammo\Rocket_03_HE_F.p3d"; }; - class GVAR(R_60mm_HE) : ThingX { - MACRO_DUMMY_PROPERTIES + class GVAR(R_60mm_HE) : GVAR(defaultCarriedObject) { model = "\A3\Weapons_F_EPC\Ammo\Rocket_03_HE_F.p3d"; }; - class GVAR(R_Hydra_HE) : ThingX { - MACRO_DUMMY_PROPERTIES + class GVAR(R_Hydra_HE) : GVAR(defaultCarriedObject) { model = "\A3\Weapons_F_EPC\Ammo\Rocket_03_HE_F.p3d"; }; }; diff --git a/addons/rearm/functions/fnc_pickUpSuccess.sqf b/addons/rearm/functions/fnc_pickUpSuccess.sqf index 10b46e5014..7bd7a69117 100644 --- a/addons/rearm/functions/fnc_pickUpSuccess.sqf +++ b/addons/rearm/functions/fnc_pickUpSuccess.sqf @@ -17,28 +17,33 @@ */ #include "script_component.hpp" -private ["_dummy", "_ammo"]; +private ["_ammo", "_dummyName", "_dummyObj"]; params ["_args"]; _args params ["_unit", "_magazine"]; -_unit setVariable [QGVAR(carriedMagazine), _magazine]; +_unit setVariable [QGVAR(carriedMagazine), _magazine]; // TODO move to carried object [_unit, QGVAR(vehRearm), true] call EFUNC(common,setForceWalkStatus); -_dummy = _unit getVariable [QGVAR(dummy), objNull]; -if !(isNull _dummy) then { - detach _dummy; - deleteVehicle _dummy; - _unit setVariable [QGVAR(dummy), objNull]; +// TODO use ace carry +_dummyObj = _unit getVariable [QGVAR(dummy), objNull]; +if !(isNull _dummyObj) then { + detach _dummyObj; + deleteVehicle _dummyObj; + _dummyObj setVariable [QGVAR(dummy), objNull]; }; _ammo = getText (configFile >> "CfgMagazines" >> _magazine >> "ammo"); -_dummy = getText (configFile >> "CfgAmmo" >> _ammo >> QGVAR(dummy)); -if !(_dummy == "") then { - _dummy = _dummy createVehicle (position _unit); - _dummy allowDamage false; - _dummy attachTo [_unit, [0,0.5,0], "pelvis"]; - { - [[_dummy, [[-1,0,0],[0,0,1]]], QUOTE(DFUNC(makeDummy)), _x] call EFUNC(common,execRemoteFnc); - } count (position _unit nearObjects ["CAManBase", 100]); - _unit setVariable [QGVAR(dummy), _dummy]; +_dummyName = getText (configFile >> "CfgAmmo" >> _ammo >> QGVAR(dummy)); +_dummyObj = objNull; +if !(_dummyName == "") then { + _dummyObj = _dummyName createVehicle (position _unit); +} else { + _dummyObj = QGVAR(defaultCarriedObject) createVehicle (position _unit); }; +_dummyObj allowDamage false; +_dummyObj attachTo [_unit, [0,0.5,0], "pelvis"]; +{ + [[_dummyObj, [[-1,0,0],[0,0,1]]], QUOTE(DFUNC(makeDummy)), _x] call EFUNC(common,execRemoteFnc); +} count (position _unit nearObjects ["CAManBase", 100]); +_dummyObj setVariable [QGVAR(magazineClass), _magazine, true]; +_unit setVariable [QGVAR(dummy), _dummyObj]; From dd1917464d6ee94c37ef205461495c159a7deb01 Mon Sep 17 00:00:00 2001 From: IngoKauffmann Date: Thu, 20 Aug 2015 01:20:31 +0200 Subject: [PATCH 19/25] Preliminary carrying and dropping of carried ammo Could not use ace_dragging since it block interact menu --- addons/rearm/CfgVehicles.hpp | 12 ++--- addons/rearm/functions/fnc_canRearm.sqf | 6 ++- addons/rearm/functions/fnc_pickUpSuccess.sqf | 46 +++++++++++++------- addons/rearm/functions/fnc_rearm.sqf | 4 +- addons/rearm/functions/fnc_rearmSuccess.sqf | 1 - 5 files changed, 43 insertions(+), 26 deletions(-) diff --git a/addons/rearm/CfgVehicles.hpp b/addons/rearm/CfgVehicles.hpp index 23280ede55..8ebf187d4f 100644 --- a/addons/rearm/CfgVehicles.hpp +++ b/addons/rearm/CfgVehicles.hpp @@ -122,9 +122,10 @@ class CfgVehicles { MACRO_REARM_PICKUPAMMO }; - class Heli_Transport_04_base_F; + class Helicopter_Base_F : Helicopter {}; + class Helicopter_Base_H : Helicopter_Base_F {}; + class Heli_Transport_04_base_F : Helicopter_Base_H {}; class O_Heli_Transport_04_ammo_F : Heli_Transport_04_base_F { - XEH_ENABLED; transportAmmo = 0; MACRO_REARM_PICKUPAMMO }; @@ -158,13 +159,12 @@ class CfgVehicles { // Dummy Vehicles class ThingX; class GVAR(defaultCarriedObject) : ThingX { - EGVAR(dragging,canCarry) = 1; - EGVAR(dragging,carryPosition[]) = {0,0.5,0}; - EGVAR(dragging,carryDirection) = 0; + XEH_ENABLED; displayName = QGVAR(dummy_obj); scope = 2; scopeCurator = 2; - model = "\A3\Weapons_F\AmmoBoxes\AmmoBox_F.p3d"; // TODO replace with custom model + // TODO add pickup code + model = "\A3\Weapons_F\AmmoBoxes\AmmoBox_F.p3d"; }; class GVAR(Bo_GBU12_LGB) : GVAR(defaultCarriedObject) { model = "\A3\Weapons_F\Ammo\Bomb_01_F.p3d"; diff --git a/addons/rearm/functions/fnc_canRearm.sqf b/addons/rearm/functions/fnc_canRearm.sqf index b77b038bd8..3e070e0f8b 100644 --- a/addons/rearm/functions/fnc_canRearm.sqf +++ b/addons/rearm/functions/fnc_canRearm.sqf @@ -16,12 +16,14 @@ */ #include "script_component.hpp" -private ["_magazineClass", "_turretPath"]; +private ["_dummy","_magazineClass"]; params ["_target", "_unit"]; if (GVAR(level) == 0 || {isNull _unit} || {!(_unit isKindOf "CAManBase")} || {!local _unit} || {_target distance _unit > REARM_ACTION_DISTANCE}) exitWith {false}; -_magazineClass = _unit getVariable QGVAR(carriedMagazine); +_dummy = _unit getVariable [QGVAR(dummy), objNull]; +if (isNull _dummy) exitwith {false}; +_magazineClass = _dummy getVariable QGVAR(magazineClass); if (isNil "_magazineClass") exitWith {false}; ([_target, _magazineClass] call FUNC(getNeedRearmMagazines)) select 0 diff --git a/addons/rearm/functions/fnc_pickUpSuccess.sqf b/addons/rearm/functions/fnc_pickUpSuccess.sqf index 7bd7a69117..7137528f9f 100644 --- a/addons/rearm/functions/fnc_pickUpSuccess.sqf +++ b/addons/rearm/functions/fnc_pickUpSuccess.sqf @@ -17,33 +17,47 @@ */ #include "script_component.hpp" -private ["_ammo", "_dummyName", "_dummyObj"]; +private ["_ammo", "_dummyName", "_dummy", "_actionID"]; params ["_args"]; _args params ["_unit", "_magazine"]; -_unit setVariable [QGVAR(carriedMagazine), _magazine]; // TODO move to carried object [_unit, QGVAR(vehRearm), true] call EFUNC(common,setForceWalkStatus); -// TODO use ace carry -_dummyObj = _unit getVariable [QGVAR(dummy), objNull]; -if !(isNull _dummyObj) then { - detach _dummyObj; - deleteVehicle _dummyObj; - _dummyObj setVariable [QGVAR(dummy), objNull]; +_dummy = _unit getVariable [QGVAR(dummy), objNull]; +_actionID = _unit getVariable [QGVAR(ReleaseActionID), -1]; +if !(isNull _dummy) then { + detach _dummy; + deleteVehicle _dummy; + _unit setVariable [QGVAR(dummy), objNull]; +}; +if (_actionID != -1) then { + _unit removeAction _actionID; }; _ammo = getText (configFile >> "CfgMagazines" >> _magazine >> "ammo"); _dummyName = getText (configFile >> "CfgAmmo" >> _ammo >> QGVAR(dummy)); -_dummyObj = objNull; +_dummy = objNull; if !(_dummyName == "") then { - _dummyObj = _dummyName createVehicle (position _unit); + _dummy = _dummyName createVehicle (position _unit); } else { - _dummyObj = QGVAR(defaultCarriedObject) createVehicle (position _unit); + _dummy = QGVAR(defaultCarriedObject) createVehicle (position _unit); }; -_dummyObj allowDamage false; -_dummyObj attachTo [_unit, [0,0.5,0], "pelvis"]; +_dummy allowDamage false; +_dummy attachTo [_unit, [0,0.5,0], "pelvis"]; { - [[_dummyObj, [[-1,0,0],[0,0,1]]], QUOTE(DFUNC(makeDummy)), _x] call EFUNC(common,execRemoteFnc); + [[_dummy, [[-1,0,0],[0,0,1]]], QUOTE(DFUNC(makeDummy)), _x] call EFUNC(common,execRemoteFnc); } count (position _unit nearObjects ["CAManBase", 100]); -_dummyObj setVariable [QGVAR(magazineClass), _magazine, true]; -_unit setVariable [QGVAR(dummy), _dummyObj]; +_dummy setVariable [QGVAR(magazineClass), _magazine, true]; +_unit setVariable [QGVAR(dummy), _dummy]; + +_actionID = _unit addAction [ + format ["%1", localize ELSTRING(dragging,Drop)], + 'detach ((_this select 0) getVariable QGVAR(dummy)); (_this select 0) setVariable [QGVAR(dummy), objNull]; [(_this select 0), QGVAR(vehRearm), false] call EFUNC(common,setForceWalkStatus);', // TODO Move to func + unholster + nil, + 20, + false, + true, + "", + '!isNull (_target getVariable [QGVAR(dummy), objNull])' +]; +_unit setVariable [QGVAR(ReleaseActionID), _actionID]; diff --git a/addons/rearm/functions/fnc_rearm.sqf b/addons/rearm/functions/fnc_rearm.sqf index e796652dc1..7627d13bb1 100644 --- a/addons/rearm/functions/fnc_rearm.sqf +++ b/addons/rearm/functions/fnc_rearm.sqf @@ -18,7 +18,9 @@ private ["_magazineClass", "_ammo", "_tmpCal", "_cal", "_idx", "_needRearmMags", "_magazineDisplayName"]; params ["_unit"]; -_magazineClass = _unit getVariable QGVAR(carriedMagazine); +_dummy = _unit getVariable [QGVAR(dummy), objNull]; +if (isNull _dummy) exitwith {false}; +_magazineClass = _dummy getVariable QGVAR(magazineClass); if (isNil "_magazineClass") exitWith {false}; _ammo = getText (configFile >> "CfgMagazines" >> _magazineClass >> "ammo"); diff --git a/addons/rearm/functions/fnc_rearmSuccess.sqf b/addons/rearm/functions/fnc_rearmSuccess.sqf index 19987551bd..f6e789cde1 100644 --- a/addons/rearm/functions/fnc_rearmSuccess.sqf +++ b/addons/rearm/functions/fnc_rearmSuccess.sqf @@ -34,7 +34,6 @@ if (local _unit) then { detach _dummy; deleteVehicle _dummy; }; - _unit setVariable [QGVAR(carriedMagazine), nil, true]; _weaponSelect = _unit getVariable QGVAR(selectedWeaponOnRearm); _unit selectWeapon _weaponSelect; _unit setVariable [QGVAR(selectedWeaponOnRearm), nil]; From 9162789579bdfb3d3a7cbc8f10c9e9a3983ab425 Mon Sep 17 00:00:00 2001 From: IngoKauffmann Date: Thu, 20 Aug 2015 19:51:22 +0200 Subject: [PATCH 20/25] Manny things Added dummy objects Added carrying Added dropping Added storing Added more progress bars ... --- addons/rearm/CfgAmmo.hpp | 4 +- addons/rearm/CfgEventHandlers.hpp | 9 +++ addons/rearm/CfgVehicles.hpp | 66 ++++++++++++++----- addons/rearm/XEH_postInit.sqf | 1 + addons/rearm/XEH_preInit.sqf | 10 ++- .../rearm/functions/fnc_addRearmActions.sqf | 6 +- addons/rearm/functions/fnc_canStoreAmmo.sqf | 25 +++++++ ..._canPickUpAmmo.sqf => fnc_canTakeAmmo.sqf} | 8 ++- addons/rearm/functions/fnc_createDummy.sqf | 33 ++++++++++ addons/rearm/functions/fnc_dropAmmo.sqf | 43 ++++++++++++ .../functions/fnc_getConfigMagazines.sqf | 2 +- .../rearm/functions/fnc_getMaxMagazines.sqf | 4 +- addons/rearm/functions/fnc_grabAmmo.sqf | 55 ++++++++++++++++ addons/rearm/functions/fnc_handleKilled.sqf | 2 +- .../rearm/functions/fnc_handleUnconscious.sqf | 10 +-- addons/rearm/functions/fnc_makeDummy.sqf | 1 + addons/rearm/functions/fnc_pickUpAmmo.sqf | 58 ++++------------ addons/rearm/functions/fnc_pickUpSuccess.sqf | 63 ------------------ .../fnc_rearmEntireVehicleSuccessLocal.sqf | 2 +- addons/rearm/functions/fnc_rearmSuccess.sqf | 14 +--- .../rearm/functions/fnc_rearmSuccessLocal.sqf | 2 +- addons/rearm/functions/fnc_storeAmmo.sqf | 34 ++++++++++ addons/rearm/functions/fnc_takeAmmo.sqf | 61 +++++++++++++++++ addons/rearm/functions/fnc_takeSuccess.sqf | 40 +++++++++++ addons/rearm/script_component.hpp | 18 +++-- addons/rearm/stringtable.xml | 20 +++++- 26 files changed, 427 insertions(+), 164 deletions(-) create mode 100644 addons/rearm/functions/fnc_canStoreAmmo.sqf rename addons/rearm/functions/{fnc_canPickUpAmmo.sqf => fnc_canTakeAmmo.sqf} (51%) create mode 100644 addons/rearm/functions/fnc_createDummy.sqf create mode 100644 addons/rearm/functions/fnc_dropAmmo.sqf create mode 100644 addons/rearm/functions/fnc_grabAmmo.sqf delete mode 100644 addons/rearm/functions/fnc_pickUpSuccess.sqf create mode 100644 addons/rearm/functions/fnc_storeAmmo.sqf create mode 100644 addons/rearm/functions/fnc_takeAmmo.sqf create mode 100644 addons/rearm/functions/fnc_takeSuccess.sqf diff --git a/addons/rearm/CfgAmmo.hpp b/addons/rearm/CfgAmmo.hpp index 2e5e0ee7e8..2443ab91a5 100644 --- a/addons/rearm/CfgAmmo.hpp +++ b/addons/rearm/CfgAmmo.hpp @@ -96,7 +96,7 @@ class CfgAmmo { class GrenadeBase; class G_40mm_HE : GrenadeBase { - GVAR(caliber) = 40; + GVAR(caliber) = 39; }; class ShellBase; @@ -154,7 +154,7 @@ class CfgAmmo { }; class CMflareAmmo : BulletBase { - GVAR(caliber) = 40; + GVAR(caliber) = 39; }; class SubmunitionBase; diff --git a/addons/rearm/CfgEventHandlers.hpp b/addons/rearm/CfgEventHandlers.hpp index b125006442..93371889e1 100644 --- a/addons/rearm/CfgEventHandlers.hpp +++ b/addons/rearm/CfgEventHandlers.hpp @@ -4,6 +4,15 @@ class Extended_PreInit_EventHandlers { }; }; + +class Extended_Init_EventHandlers { + class GVAR(defaultCarriedObject) { // TODO check if we need to add all subclasses + class ADDON { + init = QUOTE(_this call DEFUNC(cargo,initObject)); + }; + }; +}; + class Extended_PostInit_EventHandlers { class ADDON { init = QUOTE(call COMPILE_FILE(XEH_postInit)); diff --git a/addons/rearm/CfgVehicles.hpp b/addons/rearm/CfgVehicles.hpp index 8ebf187d4f..61ad09a8bb 100644 --- a/addons/rearm/CfgVehicles.hpp +++ b/addons/rearm/CfgVehicles.hpp @@ -12,16 +12,33 @@ }; \ }; -#define MACRO_REARM_PICKUPAMMO \ +#define MACRO_REARM_TRUCK_ACTIONS \ class ACE_Actions : ACE_Actions { \ class ACE_MainActions : ACE_MainActions { \ - class GVAR(PickUpAmmo) { \ - displayName = CSTRING(PickUpAmmo); \ + class GVAR(Rearm) { \ + displayName = CSTRING(Rearm); \ distance = REARM_ACTION_DISTANCE; \ - condition = QUOTE(_this call FUNC(canPickUpAmmo)); \ - insertChildren = QUOTE(_target call FUNC(addRearmActions)); \ - exceptions[] = {"isNotInside"}; \ + condition = "true"; \ + statement = ""; \ + showDisabled = 0; \ + priority = 2; \ icon = PATHTOF(ui\icon_rearm_interact.paa); \ + class GVAR(TakeAmmo) { \ + displayName = CSTRING(TakeAmmo); \ + distance = REARM_ACTION_DISTANCE; \ + condition = QUOTE(_this call FUNC(canTakeAmmo)); \ + insertChildren = QUOTE(_target call FUNC(addRearmActions)); \ + exceptions[] = {"isNotInside"}; \ + icon = PATHTOF(ui\icon_rearm_interact.paa); \ + }; \ + class GVAR(StoreAmmo) { \ + displayName = CSTRING(StoreAmmo); \ + distance = REARM_ACTION_DISTANCE; \ + condition = QUOTE(_this call FUNC(canStoreAmmo)); \ + statement = QUOTE(_this call FUNC(storeAmmo)); \ + exceptions[] = {"isNotInside"}; \ + icon = PATHTOF(ui\icon_rearm_interact.paa); \ + }; \ }; \ }; \ }; @@ -100,18 +117,18 @@ class CfgVehicles { class Truck_03_base_F : Truck_F {}; class O_Truck_03_ammo_F : Truck_03_base_F { transportAmmo = 0; - MACRO_REARM_PICKUPAMMO + MACRO_REARM_TRUCK_ACTIONS }; class Truck_02_base_F : Truck_F {}; class Truck_02_Ammo_base_F : Truck_02_base_F {}; class I_Truck_02_ammo_F : Truck_02_Ammo_base_F { transportAmmo = 0; - MACRO_REARM_PICKUPAMMO + MACRO_REARM_TRUCK_ACTIONS }; class O_Truck_02_Ammo_F : Truck_02_Ammo_base_F { transportAmmo = 0; - MACRO_REARM_PICKUPAMMO + MACRO_REARM_TRUCK_ACTIONS }; class Truck_01_base_F : Truck_F {}; @@ -119,7 +136,7 @@ class CfgVehicles { class B_Truck_01_mover_F : B_Truck_01_transport_F {}; class B_Truck_01_ammo_F : B_Truck_01_mover_F { transportAmmo = 0; - MACRO_REARM_PICKUPAMMO + MACRO_REARM_TRUCK_ACTIONS }; class Helicopter_Base_F : Helicopter {}; @@ -127,14 +144,14 @@ class CfgVehicles { class Heli_Transport_04_base_F : Helicopter_Base_H {}; class O_Heli_Transport_04_ammo_F : Heli_Transport_04_base_F { transportAmmo = 0; - MACRO_REARM_PICKUPAMMO + MACRO_REARM_TRUCK_ACTIONS }; - class Land_Pod_Heli_Transport_04_base_F : StaticWeapon {}; + class Land_Pod_Heli_Transport_04_base_F : StaticWeapon {}; class Land_Pod_Heli_Transport_04_ammo_F : Land_Pod_Heli_Transport_04_base_F { XEH_ENABLED; transportAmmo = 0; - MACRO_REARM_PICKUPAMMO + MACRO_REARM_TRUCK_ACTIONS }; class ReammoBox_F; @@ -152,7 +169,7 @@ class CfgVehicles { class B_Slingload_01_Ammo_F : Slingload_01_Base_F { XEH_ENABLED; transportAmmo = 0; - MACRO_REARM_PICKUPAMMO + MACRO_REARM_TRUCK_ACTIONS }; @@ -163,8 +180,27 @@ class CfgVehicles { displayName = QGVAR(dummy_obj); scope = 2; scopeCurator = 2; - // TODO add pickup code model = "\A3\Weapons_F\AmmoBoxes\AmmoBox_F.p3d"; + EGVAR(cargo,size) = 1; + class ACE_Actions { + class ACE_MainActions { + displayName = CSTRING(Rearm); + distance = REARM_ACTION_DISTANCE; + condition = "true"; + statement = ""; + showDisabled = 0; + priority = 2; + icon = PATHTOF(ui\icon_rearm_interact.paa); + class GVAR(PickUpAmmo) { + displayName = CSTRING(PickUpAmmo); + distance = REARM_ACTION_DISTANCE; + condition = QUOTE(_this call FUNC(canTakeAmmo)); + statement = QUOTE(_this call FUNC(grabAmmo)); + exceptions[] = {"isNotInside"}; + icon = PATHTOF(ui\icon_rearm_interact.paa); + }; + }; + }; }; class GVAR(Bo_GBU12_LGB) : GVAR(defaultCarriedObject) { model = "\A3\Weapons_F\Ammo\Bomb_01_F.p3d"; diff --git a/addons/rearm/XEH_postInit.sqf b/addons/rearm/XEH_postInit.sqf index 682ebaf094..25a5d68523 100644 --- a/addons/rearm/XEH_postInit.sqf +++ b/addons/rearm/XEH_postInit.sqf @@ -1,3 +1,4 @@ #include "script_component.hpp" ["medical_onUnconscious", {_this call FUNC(handleOnUnconscious)}] call EFUNC(common,addEventHandler); +["playerVehicleChanged", {params ["_unit"]; [_unit] call FUNC(dropAmmo)}] call EFUNC(common,addEventHandler); diff --git a/addons/rearm/XEH_preInit.sqf b/addons/rearm/XEH_preInit.sqf index 9b01018a2a..c52423f67f 100644 --- a/addons/rearm/XEH_preInit.sqf +++ b/addons/rearm/XEH_preInit.sqf @@ -3,22 +3,28 @@ ADDON = false; PREP(addRearmActions); -PREP(canPickupAmmo); PREP(canRearm); +PREP(canStoreAmmo); +PREP(canTakeAmmo); +PREP(createDummy); +PREP(dropAmmo); PREP(getConfigMagazines); PREP(getMaxMagazines); PREP(getNeedRearmMagazines); +PREP(grabAmmo); PREP(handleKilled); PREP(handleUnconscious); PREP(makeDummy); PREP(moduleRearmSettings); PREP(pickUpAmmo); -PREP(pickUpSuccess); PREP(rearm); PREP(rearmEntireVehicle); PREP(rearmEntireVehicleSuccess); PREP(rearmEntireVehicleSuccessLocal); PREP(rearmSuccess); PREP(rearmSuccessLocal); +PREP(storeAmmo); +PREP(takeAmmo); +PREP(takeSuccess); ADDON = true; diff --git a/addons/rearm/functions/fnc_addRearmActions.sqf b/addons/rearm/functions/fnc_addRearmActions.sqf index 7bcb9b939a..038aec18a3 100644 --- a/addons/rearm/functions/fnc_addRearmActions.sqf +++ b/addons/rearm/functions/fnc_addRearmActions.sqf @@ -18,7 +18,7 @@ private ["_vehicleActions", "_actions", "_action", "_vehicles", "_vehicle", "_needToAdd", "_magazineHelper", "_turretPath", "_magazines", "_magazine", "_icon", "_cnt"]; params ["_target"]; -_vehicles = nearestObjects [_target, ["AllVehicles"], 20]; // FIXME remove players +_vehicles = nearestObjects [_target, ["AllVehicles"], 20]; if (count _vehicles < 2) exitWith {false}; // Rearming needs at least 2 vehicles _vehicleActions = []; @@ -44,7 +44,7 @@ _vehicleActions = []; _action = [_magazine, getText(configFile >> "CfgMagazines" >> _magazine >> "displayName"), getText(configFile >> "CfgMagazines" >> _magazine >> "picture"), - {_this call FUNC(pickUpAmmo)}, + {_this call FUNC(takeAmmo)}, {true}, {}, [_magazine, _vehicle]] call EFUNC(interact_menu,createAction); @@ -56,7 +56,7 @@ _vehicleActions = []; _action = [_magazine, getText(configFile >> "CfgMagazines" >> _magazine >> "displayName"), getText(configFile >> "CfgMagazines" >> _magazine >> "picture"), - {_this call FUNC(pickUpAmmo)}, + {_this call FUNC(takeAmmo)}, {true}, {}, [_magazine, _vehicle]] call EFUNC(interact_menu,createAction); diff --git a/addons/rearm/functions/fnc_canStoreAmmo.sqf b/addons/rearm/functions/fnc_canStoreAmmo.sqf new file mode 100644 index 0000000000..4018775d43 --- /dev/null +++ b/addons/rearm/functions/fnc_canStoreAmmo.sqf @@ -0,0 +1,25 @@ +/* + * Author: GitHawk + * Check if a unit can store ammo in an ammo truck. + * + * Arguments: + * 0: Target + * 1: Unit + * + * Return Value: + * Can Store Ammo + * + * Example: + * [player, tank] call ace_rearm_fnc_canStoreAmmo + * + * Public: No + */ +#include "script_component.hpp" + +params ["_target", "_unit"]; + +!(isNull _unit || + {!(_unit isKindOf "CAManBase")} || + {!local _unit} || + {(_target distance _unit) > REARM_ACTION_DISTANCE} || + {isNull (_unit getVariable [QGVAR(dummy), objNull])}) diff --git a/addons/rearm/functions/fnc_canPickUpAmmo.sqf b/addons/rearm/functions/fnc_canTakeAmmo.sqf similarity index 51% rename from addons/rearm/functions/fnc_canPickUpAmmo.sqf rename to addons/rearm/functions/fnc_canTakeAmmo.sqf index 8ae3cdd993..43a96515e5 100644 --- a/addons/rearm/functions/fnc_canPickUpAmmo.sqf +++ b/addons/rearm/functions/fnc_canTakeAmmo.sqf @@ -10,7 +10,7 @@ * Can Pick Up Ammo * * Example: - * [player, tank] call ace_rearm_fnc_canPickUpAmmo + * [player, tank] call ace_rearm_fnc_canTakeAmmo * * Public: No */ @@ -18,4 +18,8 @@ params ["_target", "_unit"]; -!(isNull _unit || {!(_unit isKindOf "CAManBase")} || {!local _unit} || {(_target distance _unit) > REARM_ACTION_DISTANCE}) +!(isNull _unit || + {!(_unit isKindOf "CAManBase")} || + {!local _unit} || + {(_target distance _unit) > REARM_ACTION_DISTANCE} || + {!isNull (_unit getVariable [QGVAR(dummy), objNull])}) diff --git a/addons/rearm/functions/fnc_createDummy.sqf b/addons/rearm/functions/fnc_createDummy.sqf new file mode 100644 index 0000000000..f9d335c08a --- /dev/null +++ b/addons/rearm/functions/fnc_createDummy.sqf @@ -0,0 +1,33 @@ +/* + * Author: GitHawk + * Creates a carryable ammunition dummy object. + * + * Arguments: + * 0: Unit + * 1: Magazine Classname + * + * Return Value: + * Created Dummy + * + * Example: + * ["500Rnd_127x99_mag_Tracer_Red"] call ace_rearm_fnc_createDummy + * + * Public: No + */ +#include "script_component.hpp" + +private ["_ammo", "_dummyName", "_dummy"]; +params ["_unit", "_magazineClass"]; + +_ammo = getText (configFile >> "CfgMagazines" >> _magazineClass >> "ammo"); +_dummyName = getText (configFile >> "CfgAmmo" >> _ammo >> QGVAR(dummy)); +_dummy = objNull; +if !(_dummyName == "") then { + _dummy = _dummyName createVehicle (position _unit); +} else { + _dummy = QGVAR(defaultCarriedObject) createVehicle (position _unit); +}; +_dummy allowDamage false; +_dummy setVariable [QGVAR(magazineClass), _magazineClass, true]; + +_dummy diff --git a/addons/rearm/functions/fnc_dropAmmo.sqf b/addons/rearm/functions/fnc_dropAmmo.sqf new file mode 100644 index 0000000000..8fc9ba4945 --- /dev/null +++ b/addons/rearm/functions/fnc_dropAmmo.sqf @@ -0,0 +1,43 @@ +/* + * Author: GitHawk + * Drops a magazine, optionally deletes it and optionally unholsters the wepaon. + * + * Arguments: + * 0: Unit + * 1: Delete dummy object (optional) + * 2: Unholster Weapon (optional) + * + * Return Value: + * None + * + * Example: + * [player, true, true] call ace_rearm_fnc_dropAmmo + * + * Public: No + */ +#include "script_component.hpp" + +private ["_dummy", "_actionID"]; +params ["_unit", ["_delete", false], ["_unholster", true]]; + +_dummy = _unit getVariable [QGVAR(dummy), objNull]; +if !(isNull _dummy) then { + detach _dummy; + if (_delete) then { + deleteVehicle _dummy; + } else { + _dummy setVelocity [0,0,-0.1]; + }; + _unit setVariable [QGVAR(dummy), objNull]; + //_unit setVariable [QEGVAR(dragging,isCarrying), false, true]; // breaks things, since it hides interact menu on _target +}; +_actionID = _unit getVariable [QGVAR(ReleaseActionID), -1]; +if (_actionID != -1) then { + _unit removeAction _actionID; + _unit setVariable [QGVAR(ReleaseActionID), nil]; +}; +[_unit, QGVAR(vehRearm), false] call EFUNC(common,setForceWalkStatus); + +if (_unholster) then { + REARM_UNHOLSTER_WEAPON +}; diff --git a/addons/rearm/functions/fnc_getConfigMagazines.sqf b/addons/rearm/functions/fnc_getConfigMagazines.sqf index de75d24415..9662f30ce7 100644 --- a/addons/rearm/functions/fnc_getConfigMagazines.sqf +++ b/addons/rearm/functions/fnc_getConfigMagazines.sqf @@ -10,7 +10,7 @@ * Magazine classes in TurretPath * * Example: - * [vehicle, [0]] call ace_rearm_fnc_getMaxMagazines + * [vehicle, [0]] call ace_rearm_fnc_getConfigMagazines * * Public: No */ diff --git a/addons/rearm/functions/fnc_getMaxMagazines.sqf b/addons/rearm/functions/fnc_getMaxMagazines.sqf index 4f67d2ab70..632b5e5918 100644 --- a/addons/rearm/functions/fnc_getMaxMagazines.sqf +++ b/addons/rearm/functions/fnc_getMaxMagazines.sqf @@ -18,9 +18,9 @@ #include "script_component.hpp" private ["_count", "_cfg"]; -params ["_target", "_turretPath", "_magazine"]; +params ["_target", "_turretPath", "_magazineClass"]; if (isNull _target) exitWith {0}; -_count = {_x == _magazine} count ([_target, _turretPath] call FUNC(getConfigMagazines)); +_count = {_x == _magazineClass} count ([_target, _turretPath] call FUNC(getConfigMagazines)); _count diff --git a/addons/rearm/functions/fnc_grabAmmo.sqf b/addons/rearm/functions/fnc_grabAmmo.sqf new file mode 100644 index 0000000000..ae94144d9e --- /dev/null +++ b/addons/rearm/functions/fnc_grabAmmo.sqf @@ -0,0 +1,55 @@ +/* + * Author: GitHawk + * Grabs an dummy ammo. + * + * Arguments: + * 0: Ammo Dummy + * 1: Unit + * + * Return Value: + * None + * + * Example: + * [player, dummy] call ace_rearm_fnc_grabAmmo + * + * Public: No + */ +#include "script_component.hpp" + +params ["_dummy", "_unit"]; + +REARM_HOLSTER_WEAPON +[_unit, QGVAR(vehRearm), true] call EFUNC(common,setForceWalkStatus); + +[ + 5, + [_dummy, _unit], + { + private ["_actionID"]; + params ["_args"]; + _args params ["_dummy", "_unit"]; + [_dummy, _unit] call FUNC(pickUpAmmo); + + _actionID = _unit getVariable [QGVAR(ReleaseActionID), -1]; + if (_actionID != -1) then { + _unit removeAction _actionID; + _unit setVariable [QGVAR(ReleaseActionID), nil]; + }; + _actionID = _unit addAction [ + format ["%1", + localize ELSTRING(dragging,Drop)], + '(_this select 0) call FUNC(dropAmmo)', + nil, + 20, + false, + true, + "", + '!isNull (_target getVariable [QGVAR(dummy), objNull])' + ]; + _unit setVariable [QGVAR(ReleaseActionID), _actionID]; + }, + "", + localize LSTRING(GrabAction), + {true}, + ["isnotinside"] +] call EFUNC(common,progressBar); diff --git a/addons/rearm/functions/fnc_handleKilled.sqf b/addons/rearm/functions/fnc_handleKilled.sqf index e4971c08f2..b0cdabaed5 100644 --- a/addons/rearm/functions/fnc_handleKilled.sqf +++ b/addons/rearm/functions/fnc_handleKilled.sqf @@ -20,4 +20,4 @@ params ["_unit"]; if (!local _unit) exitWith {}; _unit setVariable [QGVAR(selectedWeaponOnRearm), nil]; -_unit setVariable [QGVAR(carriedMagazine), nil]; +[_unit, false, false] call FUNC(dropAmmo); diff --git a/addons/rearm/functions/fnc_handleUnconscious.sqf b/addons/rearm/functions/fnc_handleUnconscious.sqf index 6db0746558..f9d703f4ec 100644 --- a/addons/rearm/functions/fnc_handleUnconscious.sqf +++ b/addons/rearm/functions/fnc_handleUnconscious.sqf @@ -20,12 +20,4 @@ params ["_unit", "_isUnconscious"]; if (!local _unit || {!_isUnconscious}) exitWith {}; -private "_dummy"; -_dummy = _unit getVariable [QGVAR(dummy), objNull]; - -if (!isNull _dummy) then { - _dummy setVariable [QGVAR(carriedMagazine), _unit getVariable QGVAR(carriedMagazine)]; - detach _dummy; -}; - -_unit setVariable [QGVAR(dummy), nil]; +[_unit, false, false] call FUNC(dropAmmo); diff --git a/addons/rearm/functions/fnc_makeDummy.sqf b/addons/rearm/functions/fnc_makeDummy.sqf index ab3627ae9c..97ab46fdbc 100644 --- a/addons/rearm/functions/fnc_makeDummy.sqf +++ b/addons/rearm/functions/fnc_makeDummy.sqf @@ -19,4 +19,5 @@ params ["_obj", "_dirAndUp"]; _obj setVectorDirAndUp _dirAndUp; +_obj allowDamage false; player disableCollisionWith _obj; diff --git a/addons/rearm/functions/fnc_pickUpAmmo.sqf b/addons/rearm/functions/fnc_pickUpAmmo.sqf index 3a479c1f8e..b3667870d5 100644 --- a/addons/rearm/functions/fnc_pickUpAmmo.sqf +++ b/addons/rearm/functions/fnc_pickUpAmmo.sqf @@ -1,62 +1,30 @@ /* * Author: GitHawk - * Starts progress bar for picking up a specific kind of magazine from an ammo truck. + * Starts progress bar for picking up a specific kind of magazine from the ground. * * Arguments: - * 0: Ammo Truck + * 0: Ammo Dummy * 1: Unit - * 2: Params - * 0: Magazine - * 1: Vehicle to be armed * * Return Value: * None * * Example: - * [ammo_truck, player, ["500Rnd_127x99_mag_Tracer_Red", tank]] call ace_rearm_fnc_pickUpAmmo + * [target, player] call ace_rearm_fnc_pickUpAmmo * * Public: No */ #include "script_component.hpp" -private ["_ammo", "_tmpCal", "_cal", "_idx"]; +private ["_magazineClass"]; +params ["_target", "_unit"]; -params ["_target", "_unit", "_args"]; // _target is for future possible finite ammo -_args params ["_magazine", "_vehicle"]; +_dummy = _unit getVariable [QGVAR(dummy), objNull]; +if !(isNull _dummy) exitWith {}; -_ammo = getText (configFile >> "CfgMagazines" >> _magazine >> "ammo"); -_tmpCal = getNumber (configFile >> "CfgAmmo" >> _ammo >> "ace_caliber"); -_cal = 8; -if (_tmpCal > 0) then { - _cal = _tmpCal; -} else { - _tmpCal = getNumber (configFile >> "CfgAmmo" >> _ammo >> QGVAR(caliber)); - if (_tmpCal > 0) then { - _cal = _tmpCal; - } else { - diag_log format ["[ACE] ERROR: Undefined Ammo [%1 : %2]", _ammo, inheritsFrom (configFile >> "CfgAmmo" >> _ammo)]; - if (_ammo isKindOf "BulletBase") then { - _cal = 8; - } else { - _cal = 100; - }; - }; -}; -_cal = round _cal; -_idx = REARM_CALIBERS find _cal; -if (_idx == -1 ) then { - _idx = 2; -}; - -_unit setVariable [QGVAR(selectedWeaponOnRearm), currentWeapon _unit]; -_unit action ["SwitchWeapon", _unit, _unit, 99]; - -[ - (REARM_DURATION_PICKUP select _idx), - [_unit, _magazine], - FUNC(pickUpSuccess), - "", - format [localize LSTRING(PickUpAction), getText(configFile >> "CfgMagazines" >> _magazine >> "displayName"), getText(configFile >> "CfgVehicles" >> (typeOf _vehicle) >> "displayName")], - {true}, - ["isnotinside"] -] call EFUNC(common,progressBar); +_target attachTo [_unit, [0,0.7,0], "pelvis"]; +{ + [[_target, [[-1,0,0],[0,0,1]]], QFUNC(makeDummy), _x] call EFUNC(common,execRemoteFnc); +} count (position _unit nearObjects ["CAManBase", 100]); +_unit setVariable [QGVAR(dummy), _target]; +//_unit setVariable [QEGVAR(dragging,isCarrying), true, true]; // breaks things, since it hides interact menu on _target diff --git a/addons/rearm/functions/fnc_pickUpSuccess.sqf b/addons/rearm/functions/fnc_pickUpSuccess.sqf deleted file mode 100644 index 7137528f9f..0000000000 --- a/addons/rearm/functions/fnc_pickUpSuccess.sqf +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Author: GitHawk - * Picks up a magazine. - * - * Arguments: - * 0: Params - * 0: Unit - * 1: Magazine - * - * Return Value: - * None - * - * Example: - * [[player, "500Rnd_127x99_mag_Tracer_Red"]] call ace_rearm_fnc_pickUpSuccess - * - * Public: No - */ -#include "script_component.hpp" - -private ["_ammo", "_dummyName", "_dummy", "_actionID"]; -params ["_args"]; -_args params ["_unit", "_magazine"]; - -[_unit, QGVAR(vehRearm), true] call EFUNC(common,setForceWalkStatus); - -_dummy = _unit getVariable [QGVAR(dummy), objNull]; -_actionID = _unit getVariable [QGVAR(ReleaseActionID), -1]; -if !(isNull _dummy) then { - detach _dummy; - deleteVehicle _dummy; - _unit setVariable [QGVAR(dummy), objNull]; -}; -if (_actionID != -1) then { - _unit removeAction _actionID; -}; - -_ammo = getText (configFile >> "CfgMagazines" >> _magazine >> "ammo"); -_dummyName = getText (configFile >> "CfgAmmo" >> _ammo >> QGVAR(dummy)); -_dummy = objNull; -if !(_dummyName == "") then { - _dummy = _dummyName createVehicle (position _unit); -} else { - _dummy = QGVAR(defaultCarriedObject) createVehicle (position _unit); -}; -_dummy allowDamage false; -_dummy attachTo [_unit, [0,0.5,0], "pelvis"]; -{ - [[_dummy, [[-1,0,0],[0,0,1]]], QUOTE(DFUNC(makeDummy)), _x] call EFUNC(common,execRemoteFnc); -} count (position _unit nearObjects ["CAManBase", 100]); -_dummy setVariable [QGVAR(magazineClass), _magazine, true]; -_unit setVariable [QGVAR(dummy), _dummy]; - -_actionID = _unit addAction [ - format ["%1", localize ELSTRING(dragging,Drop)], - 'detach ((_this select 0) getVariable QGVAR(dummy)); (_this select 0) setVariable [QGVAR(dummy), objNull]; [(_this select 0), QGVAR(vehRearm), false] call EFUNC(common,setForceWalkStatus);', // TODO Move to func + unholster - nil, - 20, - false, - true, - "", - '!isNull (_target getVariable [QGVAR(dummy), objNull])' -]; -_unit setVariable [QGVAR(ReleaseActionID), _actionID]; diff --git a/addons/rearm/functions/fnc_rearmEntireVehicleSuccessLocal.sqf b/addons/rearm/functions/fnc_rearmEntireVehicleSuccessLocal.sqf index c9a2630644..962ffa4c0a 100644 --- a/addons/rearm/functions/fnc_rearmEntireVehicleSuccessLocal.sqf +++ b/addons/rearm/functions/fnc_rearmEntireVehicleSuccessLocal.sqf @@ -34,7 +34,7 @@ if (_turretPath isEqualTo [-1]) then { TRACE_7("Rearmed Turret",_vehicle,_turretPath,_currentMagazines,_maxMagazines,_currentRounds,_maxRounds,_magazine); if (_turretPath isEqualTo [-1] && _currentMagazines == 0) then { - // On driver, the an empty magazine is still there, but is not returned by magazinesTurret + // On driver, the empty magazine is still there, but is not returned by magazinesTurret _currentMagazines = _currentMagazines + 1; }; if (_currentMagazines < _maxMagazines) then { diff --git a/addons/rearm/functions/fnc_rearmSuccess.sqf b/addons/rearm/functions/fnc_rearmSuccess.sqf index f6e789cde1..7c9b151a39 100644 --- a/addons/rearm/functions/fnc_rearmSuccess.sqf +++ b/addons/rearm/functions/fnc_rearmSuccess.sqf @@ -28,25 +28,17 @@ _args params ["_target", "_unit", "_turretPath", "_numMagazines", "_magazineClas //hint format ["Target: %1\nTurretPath: %2\nNumMagazines: %3\nMagazine: %4\nNumRounds: %5", _target, _turretPath, _numMagazines, _magazineClass, _numRounds]; if (local _unit) then { - [_unit, QGVAR(vehRearm), false] call EFUNC(common,setForceWalkStatus); - _dummy = _unit getVariable [QGVAR(dummy), objNull]; - if !(isNull _dummy) then { - detach _dummy; - deleteVehicle _dummy; - }; - _weaponSelect = _unit getVariable QGVAR(selectedWeaponOnRearm); - _unit selectWeapon _weaponSelect; - _unit setVariable [QGVAR(selectedWeaponOnRearm), nil]; + [_unit, true, true] call FUNC(dropAmmo); }; if (isServer) then { _turretOwnerID = _target turretOwner _turretPath; if (_turretOwnerID == 0) then { - [_this, QUOTE(DFUNC(rearmSuccessLocal)), _target] call EFUNC(common,execRemoteFnc); + [_this, QFUNC(rearmSuccessLocal), _target] call EFUNC(common,execRemoteFnc); } else { EGVAR(common,remoteFnc) = [_this, QFUNC(rearmSuccessLocal), 0]; _turretOwnerID publicVariableClient QEGVAR(common,remoteFnc); }; } else { - [_this, QUOTE(DFUNC(rearmSuccess)), 1] call EFUNC(common,execRemoteFnc); + [_this, QFUNC(rearmSuccess), 1] call EFUNC(common,execRemoteFnc); }; diff --git a/addons/rearm/functions/fnc_rearmSuccessLocal.sqf b/addons/rearm/functions/fnc_rearmSuccessLocal.sqf index 453ad11195..f869690808 100644 --- a/addons/rearm/functions/fnc_rearmSuccessLocal.sqf +++ b/addons/rearm/functions/fnc_rearmSuccessLocal.sqf @@ -25,7 +25,7 @@ private ["_rounds", "_currentRounds", "_maxMagazines", "_dummy", "_weaponSelect" params ["_args"]; _args params ["_target", "_unit", "_turretPath", "_numMagazines", "_magazineClass", "_numRounds"]; -//hint format ["Target: %1\nTurretPath: %2\nNumMagazines: %3\nMagazine: %4\nNumRounds: %5", _target, _turretPath, _numMagazines, _magazineClass, _numRounds]; +//hint format ["Target: %1\nTurretPath: %2\nNumMagazines: %3\nMagazine: %4\nNumRounds: %5\nUnit: %6", _target, _turretPath, _numMagazines, _magazineClass, _numRounds, _unit]; _rounds = getNumber (configFile >> "CfgMagazines" >> _magazineClass >> "count"); _currentRounds = 0; diff --git a/addons/rearm/functions/fnc_storeAmmo.sqf b/addons/rearm/functions/fnc_storeAmmo.sqf new file mode 100644 index 0000000000..e23efe0d7c --- /dev/null +++ b/addons/rearm/functions/fnc_storeAmmo.sqf @@ -0,0 +1,34 @@ +/* + * Author: GitHawk + * Stores ammo in an ammo truck. + * + * Arguments: + * 0: Target + * 1: Unit + * + * Return Value: + * None + * + * Example: + * [player, dummy] call ace_rearm_fnc_storeAmmo + * + * Public: No + */ +#include "script_component.hpp" + +private "_dummy"; +params ["_target", "_unit"]; + +_dummy = _unit getVariable [QGVAR(dummy), objNull]; +if (isNull _dummy) exitwith {}; + + +[ + 5, + _unit, + {params ["_unit"]; [_unit, true, true] call FUNC(dropAmmo)}, + "", + format [localize LSTRING(StoreAmmoAction), getText(configFile >> "CfgMagazines" >> (_dummy getVariable QGVAR(magazineClass)) >> "displayName"), getText(configFile >> "CfgVehicles" >> (typeOf _target) >> "displayName")], + {true}, + ["isnotinside"] +] call EFUNC(common,progressBar); diff --git a/addons/rearm/functions/fnc_takeAmmo.sqf b/addons/rearm/functions/fnc_takeAmmo.sqf new file mode 100644 index 0000000000..4f3ef7c9ef --- /dev/null +++ b/addons/rearm/functions/fnc_takeAmmo.sqf @@ -0,0 +1,61 @@ +/* + * Author: GitHawk + * Starts progress bar for picking up a specific kind of magazine from an ammo truck. + * + * Arguments: + * 0: Ammo Truck + * 1: Unit + * 2: Params + * 0: Magazine Classname + * 1: Vehicle to be armed + * + * Return Value: + * None + * + * Example: + * [ammo_truck, player, ["500Rnd_127x99_mag_Tracer_Red", tank]] call ace_rearm_fnc_takeAmmo + * + * Public: No + */ +#include "script_component.hpp" + +private ["_ammo", "_tmpCal", "_cal", "_idx"]; + +params ["_target", "_unit", "_args"]; +_args params ["_magazineClass", "_vehicle"]; + +_ammo = getText (configFile >> "CfgMagazines" >> _magazineClass >> "ammo"); +_tmpCal = getNumber (configFile >> "CfgAmmo" >> _ammo >> "ace_caliber"); +_cal = 8; +if (_tmpCal > 0) then { + _cal = _tmpCal; +} else { + _tmpCal = getNumber (configFile >> "CfgAmmo" >> _ammo >> QGVAR(caliber)); + if (_tmpCal > 0) then { + _cal = _tmpCal; + } else { + diag_log format ["[ACE] ERROR: Undefined Ammo [%1 : %2]", _ammo, inheritsFrom (configFile >> "CfgAmmo" >> _ammo)]; + if (_ammo isKindOf "BulletBase") then { + _cal = 8; + } else { + _cal = 100; + }; + }; +}; +_cal = round _cal; +_idx = REARM_CALIBERS find _cal; +if (_idx == -1 ) then { + _idx = 2; +}; + +REARM_HOLSTER_WEAPON + +[ + (REARM_DURATION_TAKE select _idx), + [_unit, _magazineClass, _target], + FUNC(takeSuccess), + "", + format [localize LSTRING(TakeAction), getText(configFile >> "CfgMagazines" >> _magazineClass >> "displayName"), getText(configFile >> "CfgVehicles" >> (typeOf _vehicle) >> "displayName")], + {true}, + ["isnotinside"] +] call EFUNC(common,progressBar); diff --git a/addons/rearm/functions/fnc_takeSuccess.sqf b/addons/rearm/functions/fnc_takeSuccess.sqf new file mode 100644 index 0000000000..c1a3a43a07 --- /dev/null +++ b/addons/rearm/functions/fnc_takeSuccess.sqf @@ -0,0 +1,40 @@ +/* + * Author: GitHawk + * Takes a magazine from an ammo truck. + * + * Arguments: + * 0: Params + * 0: Unit + * 1: Magazine Classname + * 2: Ammo Truck + * + * Return Value: + * None + * + * Example: + * [[player, "500Rnd_127x99_mag_Tracer_Red"]] call ace_rearm_fnc_takeSuccess + * + * Public: No + */ +#include "script_component.hpp" + +private ["_ammo", "_dummyName", "_dummy", "_actionID"]; +params ["_args"]; +_args params ["_unit", "_magazineClass", "_target"]; // _target is for future possible finite ammo + +[_unit, QGVAR(vehRearm), true] call EFUNC(common,setForceWalkStatus); +_dummy = [_unit, _magazineClass] call FUNC(createDummy); +[_dummy, _unit] call FUNC(pickUpAmmo); + +_actionID = _unit addAction [ + format ["%1", + localize ELSTRING(dragging,Drop)], + '(_this select 0) call FUNC(dropAmmo)', + nil, + 20, + false, + true, + "", + '!isNull (_target getVariable [QGVAR(dummy), objNull])' +]; +_unit setVariable [QGVAR(ReleaseActionID), _actionID]; diff --git a/addons/rearm/script_component.hpp b/addons/rearm/script_component.hpp index 5454e80d85..e90e87a422 100644 --- a/addons/rearm/script_component.hpp +++ b/addons/rearm/script_component.hpp @@ -15,7 +15,17 @@ #define REARM_ACTION_DISTANCE 7 #define REARM_TURRET_PATHS [[-1], [0], [0,0], [0,1], [1], [2], [0,2]] -#define REARM_CALIBERS [ 6, 7, 8, 13, 19, 20, 25, 30, 35, 40, 60, 70, 80, 82, 100, 105, 120, 122, 125, 155, 230, 250] -#define REARM_DURATION_PICKUP [ 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 3, 3, 3, 3, 4, 5, 5, 5, 5, 13, 10] -#define REARM_DURATION_REARM [ 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 7, 7, 7, 7, 7, 8, 10, 10, 10, 10, 27, 20] -#define REARM_COUNT [500, 500, 400, 100, 50, 50, 40, 25, 34, 10, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1] +#define REARM_CALIBERS [ 6, 7, 8, 13, 19, 20, 25, 30, 35, 39, 40, 60, 70, 80, 82, 100, 105, 120, 122, 125, 155, 230, 250] +#define REARM_DURATION_TAKE [ 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 3, 3, 3, 3, 4, 5, 5, 5, 5, 13, 10] +#define REARM_DURATION_REARM [ 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 7, 7, 7, 7, 7, 8, 10, 10, 10, 10, 27, 20] +#define REARM_COUNT [500, 500, 400, 100, 50, 50, 40, 25, 34, 24, 10, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1] + + +#define REARM_HOLSTER_WEAPON \ + _unit setVariable [QGVAR(selectedWeaponOnRearm), currentWeapon _unit]; \ + _unit action ["SwitchWeapon", _unit, _unit, 99]; + +#define REARM_UNHOLSTER_WEAPON \ + _weaponSelect = _unit getVariable QGVAR(selectedWeaponOnRearm); \ + _unit selectWeapon _weaponSelect; \ + _unit setVariable [QGVAR(selectedWeaponOnRefuel), nil]; diff --git a/addons/rearm/stringtable.xml b/addons/rearm/stringtable.xml index d226a9aaaa..5d7aaf199c 100644 --- a/addons/rearm/stringtable.xml +++ b/addons/rearm/stringtable.xml @@ -40,13 +40,29 @@ Rearming %1 ... Munitioniere %1 auf ... - + Taking %1 for %2 ... Nehme %1 für %2 ... + + Take ammo + Munition nehmen + Pick up ammo - Munition nehmen + Munition aufnehmen + + + Store ammo + Munition verstauen + + + Storing %1 in %2 ... + Verstaue %1 in %2 ... + + + Picking up ammo ... + Nehme Munition ... Rearmed %1 rounds of %2 on %3 From 01c20d4544108cd8d3c781b6ac83dc790dfb7c9d Mon Sep 17 00:00:00 2001 From: IngoKauffmann Date: Fri, 21 Aug 2015 22:57:14 +0200 Subject: [PATCH 21/25] Minor formating and docu --- addons/rearm/functions/fnc_grabAmmo.sqf | 6 ++---- addons/rearm/functions/fnc_rearm.sqf | 2 +- addons/rearm/functions/fnc_takeSuccess.sqf | 3 +-- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/addons/rearm/functions/fnc_grabAmmo.sqf b/addons/rearm/functions/fnc_grabAmmo.sqf index ae94144d9e..9b09d1282d 100644 --- a/addons/rearm/functions/fnc_grabAmmo.sqf +++ b/addons/rearm/functions/fnc_grabAmmo.sqf @@ -10,7 +10,7 @@ * None * * Example: - * [player, dummy] call ace_rearm_fnc_grabAmmo + * [dummy, player] call ace_rearm_fnc_grabAmmo * * Public: No */ @@ -33,11 +33,9 @@ REARM_HOLSTER_WEAPON _actionID = _unit getVariable [QGVAR(ReleaseActionID), -1]; if (_actionID != -1) then { _unit removeAction _actionID; - _unit setVariable [QGVAR(ReleaseActionID), nil]; }; _actionID = _unit addAction [ - format ["%1", - localize ELSTRING(dragging,Drop)], + format ["%1", localize ELSTRING(dragging,Drop)], '(_this select 0) call FUNC(dropAmmo)', nil, 20, diff --git a/addons/rearm/functions/fnc_rearm.sqf b/addons/rearm/functions/fnc_rearm.sqf index 7627d13bb1..3208dbfb6f 100644 --- a/addons/rearm/functions/fnc_rearm.sqf +++ b/addons/rearm/functions/fnc_rearm.sqf @@ -9,7 +9,7 @@ * None * * Example: - * [player, vehicle] call ace_rearm_fnc_rearm + * [player] call ace_rearm_fnc_rearm * * Public: No */ diff --git a/addons/rearm/functions/fnc_takeSuccess.sqf b/addons/rearm/functions/fnc_takeSuccess.sqf index c1a3a43a07..952cfdee08 100644 --- a/addons/rearm/functions/fnc_takeSuccess.sqf +++ b/addons/rearm/functions/fnc_takeSuccess.sqf @@ -27,8 +27,7 @@ _dummy = [_unit, _magazineClass] call FUNC(createDummy); [_dummy, _unit] call FUNC(pickUpAmmo); _actionID = _unit addAction [ - format ["%1", - localize ELSTRING(dragging,Drop)], + format ["%1", localize ELSTRING(dragging,Drop)], '(_this select 0) call FUNC(dropAmmo)', nil, 20, From 5a453a70749d2b77375b5bbe141cc98a0d298c94 Mon Sep 17 00:00:00 2001 From: IngoKauffmann Date: Sun, 18 Oct 2015 13:11:28 +0200 Subject: [PATCH 22/25] Fixed flying Moved attached ammo further away --- addons/rearm/functions/fnc_pickUpAmmo.sqf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/addons/rearm/functions/fnc_pickUpAmmo.sqf b/addons/rearm/functions/fnc_pickUpAmmo.sqf index b3667870d5..eaaa55ade6 100644 --- a/addons/rearm/functions/fnc_pickUpAmmo.sqf +++ b/addons/rearm/functions/fnc_pickUpAmmo.sqf @@ -22,7 +22,8 @@ params ["_target", "_unit"]; _dummy = _unit getVariable [QGVAR(dummy), objNull]; if !(isNull _dummy) exitWith {}; -_target attachTo [_unit, [0,0.7,0], "pelvis"]; +//_target attachTo [_unit, [0,0.7,0], "pelvis"]; +_target attachTo [_unit, [0,1,0], "pelvis"]; { [[_target, [[-1,0,0],[0,0,1]]], QFUNC(makeDummy), _x] call EFUNC(common,execRemoteFnc); } count (position _unit nearObjects ["CAManBase", 100]); From 1804215dbb9efd8530f8f1e972c5c6831133f709 Mon Sep 17 00:00:00 2001 From: IngoKauffmann Date: Sun, 18 Oct 2015 13:21:20 +0200 Subject: [PATCH 23/25] Readded caliber for ACE_Hydra70_DAGR --- addons/missileguidance/CfgAmmo.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/missileguidance/CfgAmmo.hpp b/addons/missileguidance/CfgAmmo.hpp index 73fbb394c3..fc0546f797 100644 --- a/addons/missileguidance/CfgAmmo.hpp +++ b/addons/missileguidance/CfgAmmo.hpp @@ -75,6 +75,8 @@ class CfgAmmo { description = CSTRING(Hydra70_DAGR_Desc); descriptionShort = CSTRING(Hydra70_DAGR_Desc); + EGVAR(rearm,caliber) = 70; + //Explicity add guidance config class ADDON: ADDON {}; }; From 763df43fbcc3e670fe6a76a98d52e8c91f4a0018 Mon Sep 17 00:00:00 2001 From: IngoKauffmann Date: Mon, 23 Nov 2015 17:08:06 +0100 Subject: [PATCH 24/25] Added possibility to disallow rearm > vehicle setVariable ["ace_rearm_disabled", true, true]; Also added ammo compatibility for RHS Mi24 with turret --- addons/rearm/functions/fnc_addRearmActions.sqf | 2 +- addons/rearm/functions/fnc_canRearm.sqf | 2 +- optionals/compat_rhs_afrf3/CfgAmmo.hpp | 6 +++++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/addons/rearm/functions/fnc_addRearmActions.sqf b/addons/rearm/functions/fnc_addRearmActions.sqf index 038aec18a3..2011cc73de 100644 --- a/addons/rearm/functions/fnc_addRearmActions.sqf +++ b/addons/rearm/functions/fnc_addRearmActions.sqf @@ -68,7 +68,7 @@ _vehicleActions = []; } forEach _magazines; } forEach REARM_TURRET_PATHS; }; - if (_needToAdd) then { + if (_needToAdd && !(_vehicle getVariable [QGVAR(disabled), false])) then { _icon = getText(configFile >> "CfgVehicles" >> (typeOf _vehicle) >> "Icon"); if !((_icon select [0, 1]) == "\") then { _icon = ""; diff --git a/addons/rearm/functions/fnc_canRearm.sqf b/addons/rearm/functions/fnc_canRearm.sqf index 3e070e0f8b..834e6a9202 100644 --- a/addons/rearm/functions/fnc_canRearm.sqf +++ b/addons/rearm/functions/fnc_canRearm.sqf @@ -19,7 +19,7 @@ private ["_dummy","_magazineClass"]; params ["_target", "_unit"]; -if (GVAR(level) == 0 || {isNull _unit} || {!(_unit isKindOf "CAManBase")} || {!local _unit} || {_target distance _unit > REARM_ACTION_DISTANCE}) exitWith {false}; +if (GVAR(level) == 0 || {isNull _unit} || {!(_unit isKindOf "CAManBase")} || {!local _unit} || {_target distance _unit > REARM_ACTION_DISTANCE} || {_target getVariable [QGVAR(disabled), false]}) exitWith {false}; _dummy = _unit getVariable [QGVAR(dummy), objNull]; if (isNull _dummy) exitwith {false}; diff --git a/optionals/compat_rhs_afrf3/CfgAmmo.hpp b/optionals/compat_rhs_afrf3/CfgAmmo.hpp index 541437458e..4e236439e8 100644 --- a/optionals/compat_rhs_afrf3/CfgAmmo.hpp +++ b/optionals/compat_rhs_afrf3/CfgAmmo.hpp @@ -122,4 +122,8 @@ class CfgAmmo ACE_muzzleVelocities[]={298, 330, 350}; ACE_barrelLengths[]={96.52, 127.0, 228.6}; }; -}; \ No newline at end of file + class SubmunitionBase; + class rhs_ammo_127x108mm_x5: SubmunitionBase { + ACE_rearm_caliber=13; + } +}; From 1a6730340c16c5749f58f6402d7eebd2a3c1dfb6 Mon Sep 17 00:00:00 2001 From: IngoKauffmann Date: Tue, 24 Nov 2015 21:30:08 +0100 Subject: [PATCH 25/25] Move module to ACE_Logistics category, removed single interact point --- addons/rearm/CfgVehicles.hpp | 50 +++++++++++++----------------------- 1 file changed, 18 insertions(+), 32 deletions(-) diff --git a/addons/rearm/CfgVehicles.hpp b/addons/rearm/CfgVehicles.hpp index 61ad09a8bb..6df9094f80 100644 --- a/addons/rearm/CfgVehicles.hpp +++ b/addons/rearm/CfgVehicles.hpp @@ -15,30 +15,23 @@ #define MACRO_REARM_TRUCK_ACTIONS \ class ACE_Actions : ACE_Actions { \ class ACE_MainActions : ACE_MainActions { \ - class GVAR(Rearm) { \ - displayName = CSTRING(Rearm); \ + class GVAR(TakeAmmo) { \ + displayName = CSTRING(TakeAmmo); \ distance = REARM_ACTION_DISTANCE; \ - condition = "true"; \ - statement = ""; \ + condition = QUOTE(_this call FUNC(canTakeAmmo)); \ + insertChildren = QUOTE(_target call FUNC(addRearmActions)); \ + exceptions[] = {"isNotInside"}; \ showDisabled = 0; \ priority = 2; \ icon = PATHTOF(ui\icon_rearm_interact.paa); \ - class GVAR(TakeAmmo) { \ - displayName = CSTRING(TakeAmmo); \ - distance = REARM_ACTION_DISTANCE; \ - condition = QUOTE(_this call FUNC(canTakeAmmo)); \ - insertChildren = QUOTE(_target call FUNC(addRearmActions)); \ - exceptions[] = {"isNotInside"}; \ - icon = PATHTOF(ui\icon_rearm_interact.paa); \ - }; \ - class GVAR(StoreAmmo) { \ - displayName = CSTRING(StoreAmmo); \ - distance = REARM_ACTION_DISTANCE; \ - condition = QUOTE(_this call FUNC(canStoreAmmo)); \ - statement = QUOTE(_this call FUNC(storeAmmo)); \ - exceptions[] = {"isNotInside"}; \ - icon = PATHTOF(ui\icon_rearm_interact.paa); \ - }; \ + }; \ + class GVAR(StoreAmmo) { \ + displayName = CSTRING(StoreAmmo); \ + distance = REARM_ACTION_DISTANCE; \ + condition = QUOTE(_this call FUNC(canStoreAmmo)); \ + statement = QUOTE(_this call FUNC(storeAmmo)); \ + exceptions[] = {"isNotInside"}; \ + icon = PATHTOF(ui\icon_rearm_interact.paa); \ }; \ }; \ }; @@ -49,7 +42,7 @@ class CfgVehicles { scope = 2; displayName = CSTRING(RearmSettings_Module_DisplayName); icon = QUOTE(PATHTOF(ui\icon_module_rearm.paa)); - category = "ACE"; + category = "ACE_Logistics"; function = QFUNC(moduleRearmSettings); functionPriority = 1; isGlobal = 0; @@ -184,21 +177,14 @@ class CfgVehicles { EGVAR(cargo,size) = 1; class ACE_Actions { class ACE_MainActions { - displayName = CSTRING(Rearm); + displayName = CSTRING(PickUpAmmo); distance = REARM_ACTION_DISTANCE; - condition = "true"; - statement = ""; + condition = QUOTE(_this call FUNC(canTakeAmmo)); + statement = QUOTE(_this call FUNC(grabAmmo)); + exceptions[] = {"isNotInside"}; showDisabled = 0; priority = 2; icon = PATHTOF(ui\icon_rearm_interact.paa); - class GVAR(PickUpAmmo) { - displayName = CSTRING(PickUpAmmo); - distance = REARM_ACTION_DISTANCE; - condition = QUOTE(_this call FUNC(canTakeAmmo)); - statement = QUOTE(_this call FUNC(grabAmmo)); - exceptions[] = {"isNotInside"}; - icon = PATHTOF(ui\icon_rearm_interact.paa); - }; }; }; };