Isolate MANPAD and IR

This commit is contained in:
Bailey Danyluk 2024-05-27 21:04:00 -06:00
parent 3370d89fbe
commit e6407fdd89
9 changed files with 312 additions and 0 deletions

View File

@ -0,0 +1 @@
z\ace\addons\manpad

90
addons/manpad/CfgAmmo.hpp Normal file
View File

@ -0,0 +1,90 @@
class CfgAmmo {
class ammo_Missile_rim116;
class GVAR(rim116): ammo_Missile_rim116 {
maneuvrability = 0;
missileLockMaxSpeed = 2000;
missileLockCone = 3; // caged lock
missileKeepLockedCone = 45;
missileLockMaxDistance = 5000;
missileLockMinDistance = 250;
class ace_missileguidance {
enabled = 1;
pitchRate = 50; // Minium flap deflection for guidance
yawRate = 50; // Maximum flap deflection for guidance
canVanillaLock = 1; // Can this default vanilla lock? Only applicable to non-cadet mode
// Guidance type for munitions
defaultSeekerType = "IR";
seekerTypes[] = { "IR" };
flareDistanceFilter = 100;
flareAngleFilter = 0.5; // can filter out flares that are >= flareAngleFilter to known target velocity
defaultSeekerLockMode = "LOBL";
seekerLockModes[] = { "LOBL" };
defaultNavigationType = "ZeroEffortMiss";
navigationTypes[] = { "ZeroEffortMiss" };
seekLastTargetPos = 0; // seek last target position [if seeker loses LOS of target, continue to last known pos]
seekerAngle = 45; // Angle from the shooter's view that can track the missile
seekerAccuracy = 0.8; // seeker accuracy multiplier
seekerMinRange = 75;
seekerMaxRange = 5000; // Range from the missile which the seeker can visually search
// Attack profile type selection
defaultAttackProfile = "DIR";
attackProfiles[] = {"DIR"};
};
};
class M_70mm_SAAMI;
class GVAR(stinger): M_70mm_SAAMI {
maneuvrability = 0;
missileLockMaxSpeed = 2000;
missileLockCone = 3; // caged lock
missileKeepLockedCone = 45;
missileLockMaxDistance = 5000;
missileLockMinDistance = 250;
class ace_missileguidance {
enabled = 1;
pitchRate = 42; // Minium flap deflection for guidance
yawRate = 42; // Maximum flap deflection for guidance
canVanillaLock = 1; // Can this default vanilla lock? Only applicable to non-cadet mode
// Guidance type for munitions
defaultSeekerType = "IR";
seekerTypes[] = { "IR" };
flareDistanceFilter = 100;
flareAngleFilter = 1.3; // can filter out flares that are >= flareAngleFilter to known target velocity
defaultSeekerLockMode = "LOBL";
seekerLockModes[] = { "LOBL" };
defaultNavigationType = "AugmentedProportionalNavigation";
navigationTypes[] = { "AugmentedProportionalNavigation" };
seekLastTargetPos = 0; // seek last target position [if seeker loses LOS of target, continue to last known pos]
seekerAngle = 45; // Angle from the shooter's view that can track the missile
seekerAccuracy = 0.8; // seeker accuracy multiplier
seekerMinRange = 75;
seekerMaxRange = 5000; // Range from the missile which the seeker can visually search
// Attack profile type selection
defaultAttackProfile = "DIR";
attackProfiles[] = {"DIR"};
};
};
};

View File

@ -0,0 +1,22 @@
class CfgMagazines {
class magazine_Missile_rim116_x21;
class GVAR(rim116): magazine_Missile_rim116_x21 {
author = "Dani (TCVM)";
displayName = CSTRING(rim116_21x);
ammo = QGVAR(rim116);
};
class 4Rnd_70mm_SAAMI_missiles;
class GVAR(stinger): 4Rnd_70mm_SAAMI_missiles {
author = "Dani (TCVM)";
displayName = CSTRING(stinger_4x);
ammo = QGVAR(stinger);
};
class Titan_AA;
class GVAR(stinger_man): Titan_AA {
author = "Dani (TCVM)";
displayName = CSTRING(stinger);
ammo = QGVAR(stinger);
};
};

View File

@ -0,0 +1,108 @@
class CfgVehicles {
class LandVehicle;
class StaticWeapon: LandVehicle {
class Turrets;
};
class StaticMGWeapon: StaticWeapon {
class Turrets: Turrets {
class MainTurret;
};
};
class SAM_System_01_base_F: StaticMGWeapon {
class AnimationSources {
class Missiles_revolving {
source = "revolving";
weapon = QGVAR(rim116);
};
};
class Turrets: Turrets {
class MainTurret: MainTurret {
weapons[] = {QGVAR(rim116)};
magazines[] = {QGVAR(rim116)};
};
};
};
class Tank;
class Tank_F: Tank {
class Turrets {
class MainTurret;
};
};
class LT_01_base_F: Tank_F {
class AnimationSources;
class Turrets: Turrets {};
};
class LT_01_AA_base_F: LT_01_base_F {
class AnimationSources: AnimationSources {
class Missiles_revolving {
source = "revolving";
weapon = QGVAR(FIM92);
};
};
class Turrets: Turrets {
class MainTurret: MainTurret {
weapons[] = {"SmokeLauncher", QGVAR(FIM92), "HMG_127"};
magazines[] = {
"SmokeLauncherMag",
QGVAR(stinger),
QGVAR(stinger),
"100Rnd_127x99_mag_Tracer_Red",
"100Rnd_127x99_mag_Tracer_Red",
"100Rnd_127x99_mag_Tracer_Red",
"100Rnd_127x99_mag_Tracer_Red"
};
};
};
};
class APC_Tracked_01_base_F: Tank_F {
class Turrets: Turrets {
class MainTurret: MainTurret {};
};
};
class B_APC_Tracked_01_base_F: APC_Tracked_01_base_F {
class AnimationSources;
};
class B_APC_Tracked_01_AA_F: B_APC_Tracked_01_base_F {
class AnimationSources: AnimationSources {
class Missiles_revolving {
source = "revolving";
weapon = QGVAR(FIM92);
};
};
class Turrets: Turrets {
class MainTurret: MainTurret {
weapons[] = {"autocannon_35mm", QGVAR(FIM92)};
magazines[] = {"680Rnd_35mm_AA_shells_Tracer_Red", QGVAR(stinger), QGVAR(stinger)};
};
};
};
class APC_Tracked_02_base_F: Tank_F {
class Turrets: Turrets {
class MainTurret: MainTurret {};
};
};
class O_APC_Tracked_02_base_F: APC_Tracked_02_base_F {
class AnimationSources;
};
class O_APC_Tracked_02_AA_F: O_APC_Tracked_02_base_F {
class AnimationSources: AnimationSources {
class Missiles_revolving {
source = "revolving";
weapon = QGVAR(FIM92);
};
};
class Turrets: Turrets {
class MainTurret: MainTurret {
weapons[] = {"autocannon_35mm", QGVAR(FIM92)};
magazines[] = {"680Rnd_35mm_AA_shells_Tracer_Green", QGVAR(stinger), QGVAR(stinger)};
};
};
};
};

View File

@ -0,0 +1,23 @@
class CfgWeapons {
class weapon_rim116Launcher;
class GVAR(rim116): weapon_rim116Launcher {
author = "Dani (TCVM)";
displayName = CSTRING(rim116);
magazines[] = { QGVAR(rim116) };
weaponLockDelay = 0.5;
};
class missiles_SAAMI;
class GVAR(FIM92): missiles_SAAMI {
author = "Dani (TCVM)";
displayName = CSTRING(stinger);
magazines[] = { QGVAR(stinger) };
weaponLockDelay = 0.5;
};
class Launcher_Base_F;
class launch_Titan_base: Launcher_Base_F {
magazines[] = {QGVAR(stinger_man)};
};
};

12
addons/manpad/README.md Normal file
View File

@ -0,0 +1,12 @@
ace_manpad
===================
Adds missile guidance to all vanilla MANPAD systems
## Maintainers
The people responsible for merging changes to this component or answering potential questions.
- [Dani-TCVM](https://github.com/TheCandianVendingMachine)

21
addons/manpad/config.cpp Normal file
View File

@ -0,0 +1,21 @@
#include "script_component.hpp"
class CfgPatches {
class ADDON {
name = COMPONENT_NAME;
units[] = {};
weapons[] = {};
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {"ace_common","ace_missileguidance"};
author = ECSTRING(common,ACETeam);
authors[] = {"Dani (TCVM)"};
url = ECSTRING(main,URL);
VERSION_CONFIG;
};
};
#include "CfgAmmo.hpp"
#include "CfgMagazines.hpp"
#include "CfgWeapons.hpp"
#include "CfgVehicles.hpp"

View File

@ -0,0 +1,18 @@
#define COMPONENT manpad
#define COMPONENT_BEAUTIFIED MANPAD
#include "\z\ace\addons\main\script_mod.hpp"
// #define DEBUG_MODE_FULL
// #define DISABLE_COMPILE_CACHE
// #define ENABLE_PERFORMANCE_COUNTERS
#ifdef DEBUG_ENABLED_MANPAD
#define DEBUG_MODE_FULL
#endif
#ifdef DEBUG_SETTINGS_MANPAD
#define DEBUG_SETTINGS DEBUG_SETTINGS_MANPAD
#endif
#include "\z\ace\addons\main\script_macros.hpp"

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<Project name="ACE">
<Package name="MANPAD">
<Key ID="STR_ACE_MANPAD_stinger">
<English>FIM-92 Stinger [ACE]</English>
</Key>
<Key ID="STR_ACE_MANPAD_rim116">
<English>RIM-116 [ACE]</English>
</Key>
<Key ID="STR_ACE_MANPAD_rim116_21x">
<English>21x RIM-116 [ACE]</English>
</Key>
<Key ID="STR_ACE_MANPAD_stinger_4x">
<English>4x FIM-92 Stinger [ACE]</English>
</Key>
</Package>
</Project>