config.cpp 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625
  1. //Get this addons macro
  2. //get the macro for the air subaddon
  3. //get generlized macros
  4. #include "../../../RD501_main/config_macros.hpp"
  5. //General name of the vehicle
  6. #define vehicle_addon TIE
  7. #define patch_name MODNAME##vehicle_addon##_Patches
  8. #define vehicle_classname MODNAME##_##vehicle_addon
  9. #define macro_new_tie_class(name) vehicle_classname##_##name
  10. #define macro_inherit_ace_selfactions(classname,base)\
  11. class classname:base\
  12. {\
  13. class ACE_SelfActions;\
  14. };
  15. class CfgPatches
  16. {
  17. class macro_patch_name(TIE)
  18. {
  19. addonRootClass=macro_patch_name(vehicles)
  20. requiredAddons[]=
  21. {
  22. macro_patch_name(vehicles)
  23. };
  24. requiredVersion=0.1;
  25. units[]=
  26. {
  27. macro_new_vehicle(TIE,stryker_MkII),
  28. macro_new_vehicle(TIE,interceptor_MkII),
  29. macro_new_vehicle(TIE,fighter_MkII),
  30. macro_new_vehicle(TIE,defender_MkII),
  31. macro_new_vehicle(TIE,bomber_MkII),
  32. macro_new_vehicle(TIE,x1_MkII),
  33. macro_new_vehicle(TIE,fo),
  34. macro_new_vehicle(TIE,sf),
  35. macro_new_vehicle(TIE,silencer)
  36. };
  37. weapons[]=
  38. {
  39. };
  40. };
  41. };
  42. #include "../../common/sensor_templates.hpp"
  43. class CfgVehicles
  44. {
  45. class Plane_Base_F;
  46. class Xtiestkr;
  47. macro_inherit_ace_selfactions(swop_tie_stryker,Xtiestkr)
  48. macro_inherit_ace_selfactions(swop_tie_int,Plane_Base_F)
  49. macro_inherit_ace_selfactions(swop_tie,Plane_Base_F)
  50. macro_inherit_ace_selfactions(swop_tiedef,Plane_Base_F)
  51. macro_inherit_ace_selfactions(swop_tieb,Plane_Base_F)
  52. macro_inherit_ace_selfactions(swop_tiex1,Plane_Base_F)
  53. class macro_new_vehicle(TIE,stryker_MkII) : swop_tie_stryker
  54. {
  55. scope = 2;
  56. forceInGarage=1;
  57. displayName="TIE Stryker Class Mk.II";
  58. altFullForce = 6000;
  59. altNoForce = 9000;
  60. airBrakeFrictionCoef = 80.4;
  61. armor = 100;
  62. faction = macro_empire_faction
  63. editorSubcategory = macro_editor_cat_air(Empire_vtol)
  64. vehicleClass = macro_editor_vehicle_type_air(Empire)
  65. class EventHandlers{};
  66. class UserActions
  67. {
  68. class AfterburnerOn
  69. {
  70. displayName = "<t color='#4C9900'>[Afterburner On]</t>";
  71. shortcut = "";
  72. condition = "speed this >50 and (!(this getVariable 'AfterBurnerTIE'))";
  73. statement = "this setVariable ['AfterBurnerTIE',true];this spawn nes4day_afterburnerTIE";
  74. priority = 1e+011;
  75. displayNameDefault = "";
  76. position = "pilotview";
  77. radius = 15;
  78. onlyforplayer = 1;
  79. };
  80. class AfterburnerOff
  81. {
  82. displayName = "<t color='#FF9933'>[Afterburner Off]</t>";
  83. shortcut = "";
  84. condition = "(this getVariable 'AfterBurnerTIE')";
  85. statement = "this setVariable ['AfterBurnerTIE',false]";
  86. priority = 1e+011;
  87. displayNameDefault = "";
  88. position = "pilotview";
  89. radius = 15;
  90. onlyforplayer = 1;
  91. };
  92. };
  93. weapons[] = {
  94. macro_basic_air_weapons,
  95. macro_new_weapon(generic,imperial_aircraft_cannon)
  96. };
  97. magazines[] = {
  98. macro_basic_air_mags,
  99. macro_new_mag(generic_aircraft_cannon_green,1000),
  100. macro_new_mag(generic_aircraft_cannon_green,1000)
  101. };
  102. class ACE_SelfActions:ACE_SelfActions
  103. {
  104. #include "../../common/universal_hud_color_changer.hpp"
  105. };
  106. #include "../../common/universal_mfd.hpp"
  107. };
  108. class macro_new_vehicle(TIE,interceptor_MkII) : swop_tie_int
  109. {
  110. forceInGarage=1;
  111. displayName="TIE Interceptor Class Mk.II";
  112. scope = 2;
  113. altFullForce = 6000;
  114. airBrakeFrictionCoef = 80.4;
  115. altNoForce = 9000;
  116. armor = 100;
  117. faction = macro_empire_faction
  118. editorSubcategory = macro_editor_cat_air(Empire_vtol)
  119. vehicleClass = macro_editor_vehicle_type_air(Empire)
  120. class EventHandlers{};
  121. class UserActions
  122. {
  123. class AfterburnerOn
  124. {
  125. displayName = "<t color='#4C9900'>[Afterburner On]</t>";
  126. shortcut = "";
  127. condition = "speed this >50 and (!(this getVariable 'AfterBurnerTIE'))";
  128. statement = "this setVariable ['AfterBurnerTIE',true];this spawn nes4day_afterburnerTIE";
  129. priority = 1e+011;
  130. displayNameDefault = "";
  131. position = "pilotview";
  132. radius = 15;
  133. onlyforplayer = 1;
  134. };
  135. class AfterburnerOff
  136. {
  137. displayName = "<t color='#FF9933'>[Afterburner Off]</t>";
  138. shortcut = "";
  139. condition = "(this getVariable 'AfterBurnerTIE')";
  140. statement = "this setVariable ['AfterBurnerTIE',false]";
  141. priority = 1e+011;
  142. displayNameDefault = "";
  143. position = "pilotview";
  144. radius = 15;
  145. onlyforplayer = 1;
  146. };
  147. };
  148. weapons[] = {
  149. macro_basic_air_weapons,
  150. macro_new_weapon(generic,imperial_aircraft_cannon)
  151. };
  152. magazines[] = {
  153. macro_basic_air_mags,
  154. macro_new_mag(generic_aircraft_cannon_green,1000),
  155. macro_new_mag(generic_aircraft_cannon_green,1000)
  156. };
  157. class ACE_SelfActions:ACE_SelfActions
  158. {
  159. #include "../../common/universal_hud_color_changer.hpp"
  160. };
  161. #include "../../common/universal_mfd.hpp"
  162. };
  163. class macro_new_vehicle(TIE,fighter_MkII) : swop_tie
  164. {
  165. forceInGarage=1;
  166. displayName="TIE Fighter Class Mk.II";
  167. scope = 2;
  168. altFullForce = 6000;
  169. altNoForce = 9000;
  170. armor = 200;
  171. airBrakeFrictionCoef = 80.4;
  172. faction = macro_empire_faction
  173. editorSubcategory = macro_editor_cat_air(Empire_vtol)
  174. vehicleClass = macro_editor_vehicle_type_air(Empire)
  175. class EventHandlers{};
  176. class UserActions
  177. {
  178. class AfterburnerOn
  179. {
  180. displayName = "<t color='#4C9900'>[Afterburner On]</t>";
  181. shortcut = "";
  182. condition = "speed this >50 and (!(this getVariable 'AfterBurnerTIE'))";
  183. statement = "this setVariable ['AfterBurnerTIE',true];this spawn nes4day_afterburnerTIE";
  184. priority = 1e+011;
  185. displayNameDefault = "";
  186. position = "pilotview";
  187. radius = 15;
  188. onlyforplayer = 1;
  189. };
  190. class AfterburnerOff
  191. {
  192. displayName = "<t color='#FF9933'>[Afterburner Off]</t>";
  193. shortcut = "";
  194. condition = "(this getVariable 'AfterBurnerTIE')";
  195. statement = "this setVariable ['AfterBurnerTIE',false]";
  196. priority = 1e+011;
  197. displayNameDefault = "";
  198. position = "pilotview";
  199. radius = 15;
  200. onlyforplayer = 1;
  201. };
  202. };
  203. weapons[] = {
  204. macro_basic_air_weapons,
  205. macro_new_weapon(generic,imperial_aircraft_cannon)
  206. };
  207. magazines[] = {
  208. macro_basic_air_mags,
  209. macro_new_mag(generic_aircraft_cannon_green,1000),
  210. macro_new_mag(generic_aircraft_cannon_green,1000)
  211. };
  212. class ACE_SelfActions:ACE_SelfActions
  213. {
  214. #include "../../common/universal_hud_color_changer.hpp"
  215. };
  216. #include "../../common/universal_mfd.hpp"
  217. };
  218. class macro_new_vehicle(TIE,defender_MkII) : swop_tiedef
  219. {
  220. forceInGarage=1;
  221. displayName="TIE Defender Class Mk.II";
  222. scope = 2;
  223. altFullForce = 6000;
  224. altNoForce = 9000;
  225. armor = 200;
  226. airBrakeFrictionCoef = 80.4;
  227. faction = macro_empire_faction
  228. editorSubcategory = macro_editor_cat_air(Empire_vtol)
  229. vehicleClass = macro_editor_vehicle_type_air(Empire)
  230. class EventHandlers{};
  231. class UserActions
  232. {
  233. class AfterburnerOn
  234. {
  235. displayName = "<t color='#4C9900'>[Afterburner On]</t>";
  236. shortcut = "";
  237. condition = "speed this >50 and (!(this getVariable 'AfterBurnerTIEdef'))";
  238. statement = "this setVariable ['AfterBurnerTIEdef',true];this spawn nes4day_afterburnerTIEdef";
  239. priority = 1e+011;
  240. displayNameDefault = "";
  241. position = "pilotview";
  242. radius = 15;
  243. onlyforplayer = 1;
  244. };
  245. class AfterburnerOff
  246. {
  247. displayName = "<t color='#FF9933'>[Afterburner Off]</t>";
  248. shortcut = "";
  249. condition = "(this getVariable 'AfterBurnerTIEdef')";
  250. statement = "this setVariable ['AfterBurnerTIEdef',false]";
  251. priority = 1e+011;
  252. displayNameDefault = "";
  253. position = "pilotview";
  254. radius = 15;
  255. onlyforplayer = 1;
  256. };
  257. };
  258. weapons[] = {
  259. macro_basic_air_weapons,
  260. macro_new_weapon(generic,ion_aircraft_cannon)
  261. };
  262. magazines[] = {
  263. macro_basic_air_mags,
  264. macro_new_mag(generic_aircraft_cannon_blue,1000),
  265. macro_new_mag(generic_aircraft_cannon_blue,1000)
  266. };
  267. class ACE_SelfActions:ACE_SelfActions
  268. {
  269. #include "../../common/universal_hud_color_changer.hpp"
  270. };
  271. #include "../../common/universal_mfd.hpp"
  272. };
  273. class macro_new_vehicle(TIE,bomber_MkII) : swop_tieb
  274. {
  275. forceInGarage=1;
  276. displayName="TIE Bomber Class Mk.II";
  277. scope = 2;
  278. altFullForce = 6000;
  279. altNoForce = 9000;
  280. armor = 400;
  281. airBrakeFrictionCoef = 80.4;
  282. faction = macro_empire_faction
  283. editorSubcategory = macro_editor_cat_air(Empire_vtol)
  284. vehicleClass = macro_editor_vehicle_type_air(Empire)
  285. class EventHandlers{};
  286. class UserActions{};
  287. weapons[] = {
  288. macro_basic_air_weapons,
  289. macro_new_weapon(generic,imperial_aircraft_cannon),
  290. macro_new_weapon(bomb,cluster),
  291. macro_new_weapon(bomb,SDB),
  292. macro_new_weapon(bomb,LGB)
  293. };
  294. magazines[] = {
  295. macro_basic_air_mags,
  296. macro_new_mag(generic_aircraft_cannon_green,1000),
  297. macro_new_mag(generic_aircraft_cannon_green,1000),
  298. macro_new_mag(cluster_bomb,4),
  299. macro_new_mag(cluster_bomb,4),
  300. macro_new_mag(cluster_bomb,4),
  301. macro_new_mag(sdb_bomb,4),
  302. macro_new_mag(sdb_bomb,4),
  303. macro_new_mag(sdb_bomb,4),
  304. macro_new_mag(lgb_bomb,4),
  305. macro_new_mag(lgb_bomb,4),
  306. macro_new_mag(lgb_bomb,4)
  307. };
  308. class ACE_SelfActions:ACE_SelfActions
  309. {
  310. #include "../../common/universal_hud_color_changer.hpp"
  311. };
  312. #include "../../common/universal_mfd.hpp"
  313. };
  314. class macro_new_vehicle(TIE,x1_MkII) : swop_tiex1
  315. {
  316. forceInGarage=1;
  317. displayName="TIE X1 Class Mk.II";
  318. scope = 2;
  319. altFullForce = 6000;
  320. altNoForce = 9000;
  321. armor = 600;
  322. airBrakeFrictionCoef = 80.4;
  323. faction = macro_empire_faction
  324. editorSubcategory = macro_editor_cat_air(Empire_vtol)
  325. vehicleClass = macro_editor_vehicle_type_air(Empire)
  326. class EventHandlers{};
  327. class UserActions
  328. {
  329. class AfterburnerOn
  330. {
  331. displayName = "<t color='#4C9900'>[Afterburner On]</t>";
  332. shortcut = "";
  333. condition = "speed this >50 and (!(this getVariable 'AfterBurnerTIE'))";
  334. statement = "this setVariable ['AfterBurnerTIE',true];this spawn nes4day_afterburnerTIE";
  335. priority = 1e+011;
  336. displayNameDefault = "";
  337. position = "pilotview";
  338. radius = 15;
  339. onlyforplayer = 1;
  340. };
  341. class AfterburnerOff
  342. {
  343. displayName = "<t color='#FF9933'>[Afterburner Off]</t>";
  344. shortcut = "";
  345. condition = "(this getVariable 'AfterBurnerTIE')";
  346. statement = "this setVariable ['AfterBurnerTIE',false]";
  347. priority = 1e+011;
  348. displayNameDefault = "";
  349. position = "pilotview";
  350. radius = 15;
  351. onlyforplayer = 1;
  352. };
  353. };
  354. weapons[] = {
  355. macro_basic_air_weapons,
  356. macro_new_weapon(generic,imperial_aircraft_cannon)
  357. };
  358. magazines[] = {
  359. macro_basic_air_mags,
  360. macro_new_mag(generic_aircraft_cannon_green,1000),
  361. macro_new_mag(generic_aircraft_cannon_green,1000)
  362. };
  363. class ACE_SelfActions:ACE_SelfActions
  364. {
  365. #include "../../common/universal_hud_color_changer.hpp"
  366. };
  367. #include "../../common/universal_mfd.hpp"
  368. };
  369. class Xtiefo;
  370. macro_inherit_ace_selfactions(swop_tie_silencer,Plane_Base_F)
  371. macro_inherit_ace_selfactions(swop_tiefo,Xtiefo)
  372. macro_inherit_ace_selfactions(swop_tiefosf,Xtiefo)
  373. class macro_new_vehicle(TIE,fo) : swop_tiefo
  374. {
  375. forceInGarage=1;
  376. displayName="TIE First Order Class Mk.II";
  377. class EventHandlers{};
  378. class ACE_SelfActions:ACE_SelfActions
  379. {
  380. #include "../../common/universal_hud_color_changer.hpp"
  381. };
  382. #include "../../common/universal_mfd.hpp"
  383. scope = 2;
  384. altFullForce = 6000;
  385. altNoForce = 9000;
  386. armor = 100;
  387. airBrakeFrictionCoef = 80.4;
  388. faction = macro_first_order_faction
  389. editorSubcategory = macro_editor_cat_air(First_Order)
  390. vehicleClass = macro_editor_vehicle_type_air(First_Order)
  391. class UserActions
  392. {
  393. class AfterburnerOn
  394. {
  395. displayName = "<t color='#4C9900'>[Afterburner On]</t>";
  396. shortcut = "";
  397. condition = "speed this >50 and (!(this getVariable 'AfterBurnerTIE'))";
  398. statement = "this setVariable ['AfterBurnerTIE',true];this spawn nes4day_afterburnerTIE";
  399. priority = 1e+011;
  400. displayNameDefault = "";
  401. position = "pilotview";
  402. radius = 15;
  403. onlyforplayer = 1;
  404. };
  405. class AfterburnerOff
  406. {
  407. displayName = "<t color='#FF9933'>[Afterburner Off]</t>";
  408. shortcut = "";
  409. condition = "(this getVariable 'AfterBurnerTIE')";
  410. statement = "this setVariable ['AfterBurnerTIE',false]";
  411. priority = 1e+011;
  412. displayNameDefault = "";
  413. position = "pilotview";
  414. radius = 15;
  415. onlyforplayer = 1;
  416. };
  417. };
  418. weapons[] = {
  419. macro_basic_air_weapons,
  420. macro_new_weapon(generic,imperial_aircraft_cannon)
  421. };
  422. magazines[] = {
  423. macro_basic_air_mags,
  424. macro_new_mag(generic_aircraft_cannon_green,1000),
  425. macro_new_mag(generic_aircraft_cannon_green,1000)
  426. };
  427. };
  428. class macro_new_vehicle(TIE,sf) : swop_tiefosf
  429. {
  430. forceInGarage=1;
  431. displayName="TIE Special Forces Class Mk.II";
  432. class EventHandlers{};
  433. class ACE_SelfActions:ACE_SelfActions
  434. {
  435. #include "../../common/universal_hud_color_changer.hpp"
  436. };
  437. #include "../../common/universal_mfd.hpp"
  438. scope = 2;
  439. scopecurator = 2;
  440. altFullForce = 6000;
  441. altNoForce = 9000;
  442. airBrakeFrictionCoef = 80.4;
  443. armor = 200;
  444. faction = macro_empire_faction
  445. editorSubcategory = macro_editor_cat_air(Empire_vtol)
  446. vehicleClass = macro_editor_vehicle_type_air(Empire)
  447. class UserActions
  448. {
  449. class AfterburnerOn
  450. {
  451. displayName = "<t color='#4C9900'>[Afterburner On]</t>";
  452. shortcut = "";
  453. condition = "speed this >50 and (!(this getVariable 'AfterBurnerTIE'))";
  454. statement = "this setVariable ['AfterBurnerTIE',true];this spawn nes4day_afterburnerTIE";
  455. priority = 1e+011;
  456. displayNameDefault = "";
  457. position = "pilotview";
  458. radius = 15;
  459. onlyforplayer = 1;
  460. };
  461. class AfterburnerOff
  462. {
  463. displayName = "<t color='#FF9933'>[Afterburner Off]</t>";
  464. shortcut = "";
  465. condition = "(this getVariable 'AfterBurnerTIE')";
  466. statement = "this setVariable ['AfterBurnerTIE',false]";
  467. priority = 1e+011;
  468. displayNameDefault = "";
  469. position = "pilotview";
  470. radius = 15;
  471. onlyforplayer = 1;
  472. };
  473. };
  474. weapons[] = {
  475. macro_basic_air_weapons,
  476. macro_new_weapon(generic,imperial_aircraft_cannon)
  477. };
  478. magazines[] = {
  479. macro_basic_air_mags,
  480. macro_new_mag(generic_aircraft_cannon_green,1000),
  481. macro_new_mag(generic_aircraft_cannon_green,1000)
  482. };
  483. };
  484. class macro_new_vehicle(TIE,silencer) : swop_tie_silencer
  485. {
  486. forceInGarage=1;
  487. displayName="TIE Silencer Class Mk.II";
  488. scope = 2;
  489. altFullForce = 6000;
  490. altNoForce = 9000;
  491. armor = 600;
  492. airBrakeFrictionCoef = 80.4;
  493. faction = macro_first_order_faction
  494. editorSubcategory = macro_editor_cat_air(First_Order)
  495. vehicleClass = macro_editor_vehicle_type_air(First_Order)
  496. class EventHandlers{};
  497. class ACE_SelfActions:ACE_SelfActions
  498. {
  499. #include "../../common/universal_hud_color_changer.hpp"
  500. };
  501. #include "../../common/universal_mfd.hpp"
  502. class UserActions
  503. {
  504. class AfterburnerOn
  505. {
  506. displayName = "<t color='#4C9900'>[Afterburner On]</t>";
  507. shortcut = "";
  508. condition = "speed this >50 and (!(this getVariable 'AfterBurnerTIEsil'))";
  509. statement = "this setVariable ['AfterBurnerTIEsil',true];this spawn nes4day_afterburnerTIEsil";
  510. priority = 1e+011;
  511. displayNameDefault = "";
  512. position = "pilotview";
  513. radius = 15;
  514. onlyforplayer = 1;
  515. };
  516. class AfterburnerOff
  517. {
  518. displayName = "<t color='#FF9933'>[Afterburner Off]</t>";
  519. shortcut = "";
  520. condition = "(this getVariable 'AfterBurnerTIEsil')";
  521. statement = "this setVariable ['AfterBurnerTIEsil',false]";
  522. priority = 1e+011;
  523. displayNameDefault = "";
  524. position = "pilotview";
  525. radius = 15;
  526. onlyforplayer = 1;
  527. };
  528. };
  529. weapons[] = {
  530. macro_basic_air_weapons,
  531. macro_new_weapon(generic,imperial_aircraft_cannon)
  532. };
  533. magazines[] = {
  534. macro_basic_air_mags,
  535. macro_new_mag(generic_aircraft_cannon_green,1000),
  536. macro_new_mag(generic_aircraft_cannon_green,1000)
  537. };
  538. };
  539. };