mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
f2fff98ad0
* Create AGM-114L * If we lose LOS dont continue tracking magically Allow for datalinked targets to donate data to the missile. * Update documentation * RHS 2x hellfire compatability * Make ARH more realistic by not allowing to switch targets after firing * Fix filename. Change Hellfire attack profile to lead target. Switch to two LOS checks. We check two Line's of Sight to ensure that we are 100% gone from the target. A raw LOS check will be blocked by bushes and light trees while the checkVisibility wont while on the otherhand smoke will block a visiblity check but not a raw LOS check. We get best of both worlds with this. I changed the attack profile so that it will lead moving targets. This isnt needed with the laser version because the user will "lead" the target if needed, but with the radar scan we have velocity information so we might as well lead the target as much as possible * Change function calls to FUNC macro. Slightly change radar logic. Up poll frequency to 7hz Instead of the missile immediately going active when the shooter doesn't have radar, check if targets are in datalink. If they are, use the datalink to guide the missile instead of its internal radar. * Add logic for missiles launched without target If a missile is fired without a locked target, it will immediately go active and target the first thing its seeker picks up. This is an incredibly dangerous trait of active radar homing missiles and is so in this implementation. Be careful! * Change from `exitWith` to basic `then` Legacy code that never got changed. This is essentially what happened before * Update CfgMagazineWells.hpp Co-authored-by: PabstMirror <pabstmirror@gmail.com>
32 lines
822 B
C++
32 lines
822 B
C++
#define COMPONENT missileguidance
|
|
#define COMPONENT_BEAUTIFIED Missile Guidance
|
|
#include "\z\ace\addons\main\script_mod.hpp"
|
|
|
|
// #define DRAW_GUIDANCE_INFO
|
|
// #define DEBUG_MODE_FULL
|
|
// #define DISABLE_COMPILE_CACHE
|
|
// #define ENABLE_PERFORMANCE_COUNTERS
|
|
|
|
#ifdef DEBUG_ENABLED_MISSILEGUIDANCE
|
|
#define DEBUG_MODE_FULL
|
|
#endif
|
|
|
|
#ifdef DEBUG_SETTINGS_MISSILEGUIDANCE
|
|
#define DEBUG_SETTINGS DEBUG_SETTINGS_MISSILEGUIDANCE
|
|
#endif
|
|
|
|
#include "\z\ace\addons\main\script_macros.hpp"
|
|
|
|
#define RANDOM_VECTOR_3D (call {\
|
|
private _z = random 2 - 1;\
|
|
private _r = sqrt (1 - _z^2);\
|
|
private _theta = random 360;\
|
|
[_r * cos _theta, _r * sin _theta, _z]\
|
|
})
|
|
|
|
#define DEFAULT_CORRECTION_DISTANCE 2
|
|
#define DEFAULT_LEAD_DISTANCE 5
|
|
#define ACTIVE_RADAR_POLL_FREQUENCY (1 / 7)
|
|
#define ACTIVE_RADAR_MINIMUM_SCAN_AREA 30
|
|
|