ACE3/addons/missileguidance/XEH_PREP.hpp

65 lines
1.3 KiB
C++
Raw Permalink Normal View History

LOG("prep");
PREP(cycleAttackProfileKeyDown);
2016-02-22 14:20:36 +00:00
PREP(changeMissileDirection);
PREP(checkSeekerAngle);
PREP(checkLos);
2024-07-29 17:32:33 +00:00
PREP(dev_ProjectileCamera);
2016-02-22 14:20:36 +00:00
PREP(onFired);
PREP(onIncomingMissile);
PREP(guidancePFH);
PREP(doAttackProfile);
2016-02-22 14:20:36 +00:00
PREP(doSeekerSearch);
PREP(doHandoff);
PREP(handleHandoff);
//re-enable after feature merge - PREP(shouldFilterRadarHit);
2021-04-16 04:29:02 +00:00
2016-02-22 14:20:36 +00:00
// Attack Profiles
2016-10-12 22:35:24 +00:00
PREP(attackProfile_AIR);
2016-02-22 14:20:36 +00:00
PREP(attackProfile_DIR);
2016-10-12 22:35:24 +00:00
PREP(attackProfile_LIN);
2021-04-13 05:14:22 +00:00
PREP(attackProfile_LOFT);
PREP(attackProfile_WIRE);
PREP(attackProfile_BEAM);
//re-enable after feature merge - PREP(attackProfile_JDAM);
2016-02-22 14:20:36 +00:00
// Javelin profiles
PREP(attackProfile_JAV_DIR);
PREP(attackProfile_JAV_TOP);
PREP(javelin_midCourseTransition);
2016-02-22 14:20:36 +00:00
2021-04-10 19:11:20 +00:00
// Navigation Profiles
PREP(navigationType_zeroEffortMiss);
PREP(navigationType_augmentedProNav);
2021-04-10 19:11:20 +00:00
PREP(navigationType_proNav);
PREP(navigationType_lineOfSight);
2021-04-21 00:11:44 +00:00
PREP(navigationType_line);
PREP(navigationType_direct);
2021-04-10 19:11:20 +00:00
2016-02-22 14:20:36 +00:00
// Seeker search functions
PREP(seekerType_SALH);
PREP(seekerType_Optic);
PREP(seekerType_SACLOS);
//re-enable after feature merge - PREP(seekerType_Doppler);
2021-04-16 04:29:02 +00:00
PREP(seekerType_MWR);
2024-05-28 02:22:16 +00:00
PREP(seekerType_IR);
// Attack Profiles OnFired
PREP(wire_onFired);
// Seeker OnFired
PREP(SACLOS_onFired);
2021-04-16 04:29:02 +00:00
PREP(mwr_onFired);
2024-05-28 02:22:16 +00:00
PREP(IR_onFired);
2021-04-10 19:11:20 +00:00
// Navigation OnFired
PREP(proNav_onFired);
2021-04-21 00:11:44 +00:00
PREP(line_onFired);