config.cpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561
  1. #include "script_component.hpp" // my config macro lib
  2. class CfgPatches
  3. {
  4. class RD501_patch_main
  5. {
  6. author=DANKAUTHORS;
  7. requiredAddons[]=
  8. {
  9. //"sci_APC",
  10. "A3_Data_F_Enoch_Loadorder",//Load all of arma first
  11. cba_patches ,//cba stuff
  12. //cancer_pbos ,//all of swop pbos
  13. //"212th_Engineer"
  14. };
  15. requiredVersion=0.1;
  16. units[]={};
  17. weapons[]={};
  18. RD501_patches[]= {macro_root_req,macro_lvl1_req,macro_lvl2_req,macro_lvl3_req,macro_lvl4_req,macro_lvl5_req};
  19. };
  20. };
  21. class cfgFunctions
  22. {
  23. class concat_function(scripts)//This will be the name of the mods functions,in functionViewer.
  24. {
  25. tag=QUOTE(ADDON);
  26. class concat_function(functions)
  27. {
  28. class laatc_lift
  29. {
  30. file=QPATHTOF(functions\vehicle_lift\laatc_lift.sqf);
  31. };
  32. };
  33. };
  34. class rd501_scripts//This will be the name of the mods functions,in functionViewer.
  35. {
  36. tag="RD501";
  37. class rd501_test_fnc
  38. {
  39. // class test_fnc
  40. // {
  41. // file = "RD501_Main\functions\test_fnc_midnight.sqf";
  42. // postinit=1;
  43. // };
  44. class auto_radio_freq
  45. {
  46. file = "RD501_Main\functions\auto_radio_freq.sqf";
  47. };
  48. class enable_arf
  49. {
  50. file = "RD501_Main\functions\auto_radio_freq_enabler.sqf";
  51. };//[player,['35.1','35.2','35.3','35.4','35','36','35.5','42','42'] ]call rd501_fnc_enable_arf
  52. };
  53. class the_cleanman
  54. {
  55. class ya_yeet_man
  56. {
  57. postInit = 1;
  58. file = QUOTE(macro_mod_script_path\add_radio_freq_shower.sqf);
  59. };
  60. };
  61. };
  62. class GEARF
  63. {
  64. class vectorFunctions
  65. {
  66. file="RD501_Main\functions\sling_helmet\Vectors";
  67. class rotateObject
  68. {
  69. };
  70. };
  71. class helmetFunctions
  72. {
  73. file="RD501_Main\functions\sling_helmet\Helmet";
  74. class slingHelmet
  75. {
  76. };
  77. class unslingHelmet
  78. {
  79. };
  80. class hideSlungHelmet
  81. {
  82. };
  83. };
  84. };
  85. };
  86. class Extended_Init_EventHandlers
  87. {
  88. class CAManBase
  89. {
  90. class RD501_MedNotif
  91. {
  92. init = QUOTE(call macro_fnc_name(add_med_notification));
  93. };
  94. };
  95. };
  96. //Run once at a point in time before all the mission units and vehicles have their own init event handlers processed
  97. class Extended_PreInit_EventHandlers
  98. {
  99. class RD501_PREINIT
  100. {
  101. init="call compile preprocessFileLineNumbers 'RD501_Main\XEH_preInit.sqf'";
  102. };
  103. };
  104. //run once and after all the units and vehicles have had both their init event handlers and the code in the mission editor "init" lines processed
  105. class Extended_PostInit_EventHandlers {
  106. class RD501_POSTINIT {
  107. init = "call compile preprocessFileLineNumbers 'RD501_Main\XEH_postinit.sqf'";
  108. };
  109. };
  110. class cfgFactionClasses
  111. {
  112. class macro_faction(CIS)
  113. {
  114. displayName="RD501 C.I.S Faction";
  115. priority=3;
  116. side=0;
  117. };
  118. class macro_faction(republic)
  119. {
  120. displayName="RD501 Republic Faction";
  121. priority= 3;
  122. side=1;
  123. };
  124. class macro_faction(ind)
  125. {
  126. displayName="RD501 Independent Faction";
  127. priority=3;
  128. side= 2;
  129. };
  130. class macro_faction(civ)
  131. {
  132. displayName="RD501 Civillian Faction";
  133. priority=3;
  134. side= 3;
  135. };
  136. };
  137. class CfgEditorCategories
  138. {
  139. class RD501_Aux
  140. {
  141. displayName = "501st Aux Mod";
  142. };
  143. class macro_editor_cat(suppplies)
  144. {
  145. displayName= "RD501 Supplies";
  146. };
  147. class macro_editor_cat(statics)
  148. {
  149. displayName = "RD501 Static Objects";
  150. };
  151. class macro_editor_cat(Speeders)
  152. {
  153. displayName = "Speeders";
  154. };
  155. };
  156. class CfgInGameUI
  157. {
  158. class FLIRModeNames
  159. {
  160. FLIRModeName[] = {
  161. "WHOT",//0
  162. "BHOT",
  163. "GHOT",//2
  164. "BHOT",
  165. "OHOT",//4
  166. "BHOT",
  167. "WHOT",//6
  168. "RAINBOW",
  169. "YHOT"//8
  170. };
  171. };
  172. };
  173. class CfgCoreData
  174. {
  175. textureTIConversionDX11 = "RD501_Main\textures\thermal\custom_thermals.png";
  176. };
  177. class CfgEditorSubcategories
  178. {
  179. class macro_editor_cat(aqua)
  180. {
  181. displayName = "Aqua";
  182. };
  183. class macro_editor_cat(car)
  184. {
  185. displayname = "Cars";
  186. };
  187. class macro_editor_cat(CIS_speeders)
  188. {
  189. displayName = "CIS Speeders";
  190. };
  191. class macro_editor_cat(B2)
  192. {
  193. displayName = "B2 Variants";
  194. };
  195. class macro_editor_cat(tank)
  196. {
  197. displayName = "Tanks";
  198. };
  199. class macro_editor_cat(resupply)
  200. {
  201. displayName= "Resupply";
  202. };
  203. class macro_editor_cat(IFV)
  204. {
  205. displayName = "IFV's";
  206. };
  207. class macro_editor_cat(APC)
  208. {
  209. displayName = "APC's";
  210. };
  211. class macro_editor_cat(AA)
  212. {
  213. displayName = "Anti Air";
  214. };
  215. class macro_editor_cat(heavy_armored_infantry)
  216. {
  217. displayName = "Heavy Armored Infantry";
  218. };
  219. class macro_editor_cat(bounty_hunters)
  220. {
  221. displayName = "Bounty Hunters";
  222. };
  223. class macro_editor_cat(syndicate)
  224. {
  225. displayName = "Syndicate";
  226. };
  227. class macro_editor_cat(arty)
  228. {
  229. displayName = "Artillery";
  230. };
  231. class macro_editor_cat(civ)
  232. {
  233. displayName = "Star Wars Civillians";
  234. };
  235. class macro_editor_cat(B1)
  236. {
  237. displayName = "B1 Droids";
  238. };
  239. class macro_editor_cat(Transport)
  240. {
  241. displayName = "Transports";
  242. };
  243. class macro_editor_cat(B1_lowpoly)
  244. {
  245. displayName = "Low Poly B1 Droids";
  246. };
  247. class macro_editor_cat(CIS_SpecOps)
  248. {
  249. displayName = "Special Forces";
  250. };
  251. class macro_editor_cat(CIS_Humans)
  252. {
  253. displayName = "Humans";
  254. };
  255. class macro_editor_cat(posters)
  256. {
  257. displayName = "Star Wars Posters";
  258. };
  259. class macro_editor_cat(static_ships)
  260. {
  261. displayName = "Static Ships";
  262. };
  263. class macro_editor_cat(wall)
  264. {
  265. displayName = "Shield Walls";
  266. };
  267. class macro_editor_cat(static_msc)
  268. {
  269. displayName = "Static Objects";
  270. };
  271. class macro_editor_cat(turrets)
  272. {
  273. displayName = "Turrets";
  274. };
  275. class macro_editor_cat(static_turrets)
  276. {
  277. displayName = "Static Emplacements";
  278. };
  279. class macro_editor_cat_air(Empire_vtol)
  280. {
  281. displayName = "Empire Aircraft";
  282. };
  283. class macro_editor_cat_air(First_Order)
  284. {
  285. displayName = "First Order Aircraft";
  286. };
  287. class macro_editor_cat_air(CIS)
  288. {
  289. displayName = "CIS Aircraft";
  290. };
  291. class macro_editor_cat_air(CIS_heli)
  292. {
  293. displayName = "CIS Helicopters";
  294. };
  295. class macro_editor_cat_air(Rebel_vtol)
  296. {
  297. displayName = "Rebel Aircraft";
  298. };
  299. class macro_editor_cat_air(Rebel_heli)
  300. {
  301. displayName = "Rebel Helicopters";
  302. };
  303. class macro_editor_cat_air(Republic_heli)
  304. {
  305. displayName = "Republic Helicopters";
  306. };
  307. class macro_editor_cat_air(Republic_vtol)
  308. {
  309. displayName = "Republic Aircraft";
  310. };
  311. class macro_editor_cat_air(Resistance)
  312. {
  313. displayName = "Resistance Aircraft";
  314. };
  315. class macro_editor_cat_air(vtol)
  316. {
  317. displayName = "Repulsorlift";
  318. };
  319. class macro_editor_cat_air(heli)
  320. {
  321. displayName = "Starfighter";
  322. };
  323. };
  324. class CfgVehicleClasses
  325. {
  326. class macro_editor_vehicle_type(Car)
  327. {
  328. displayName = "Cars";
  329. };
  330. class macro_editor_vehicle_type(turrets)
  331. {
  332. displayName = "turrets";
  333. };
  334. class macro_editor_vehicle_type(speeders)
  335. {
  336. displayName = "speeeeeders";
  337. };
  338. class macro_editor_vehicle_type_air(Empire)
  339. {
  340. displayName = "X Empire Aircraft";
  341. };
  342. class macro_editor_vehicle_type_air(First_Order)
  343. {
  344. displayName = "X First Order Aircraft";
  345. };
  346. class macro_editor_vehicle_type_air(CIS)
  347. {
  348. displayName = "X CIS Aircraft";
  349. };
  350. class macro_editor_vehicle_type_air(Rebel)
  351. {
  352. displayName = "X Rebel Aircraft";
  353. };
  354. class macro_editor_vehicle_type_air(Republic)
  355. {
  356. displayName = "X Republic Aircraft";
  357. };
  358. class macro_editor_vehicle_type_air(Resistance)
  359. {
  360. displayName = "X Resistance Aircraft";
  361. };
  362. class macro_editor_vehicle_type(tank)
  363. {
  364. displayName = "Tanks";
  365. };
  366. class macro_editor_vehicle_type(AA)
  367. {
  368. displayName = "Anti Air";
  369. };
  370. class macro_editor_vehicle_type(doggo)
  371. {
  372. displayName = "doggie";
  373. };
  374. class macro_editor_vehicle_type(heavy_armored_infantry)
  375. {
  376. displayName = "Heavy Armored Infantry";
  377. };
  378. class macro_editor_vehicle_type(IFV)
  379. {
  380. displayName = "IFV";
  381. };
  382. class macro_editor_vehicle_type(APC)
  383. {
  384. displayName = "APC";
  385. };
  386. class macro_editor_vehicle_type(arty)
  387. {
  388. displayName = "arty";
  389. };
  390. class macro_editor_vehicle_type(static_turrets)
  391. {
  392. displayName = "Static Emplacements";
  393. };
  394. class macro_editor_vehicle_type(statics)
  395. {
  396. displayName = "RD501 Static Walls";
  397. };
  398. };
  399. class CfgVehicles
  400. {
  401. class LandVehicle;
  402. class Car : LandVehicle
  403. {
  404. class ACE_Actions {
  405. class ACE_MainActions {
  406. class rd501_flip_vehicle_flip {
  407. displayName = "Flip Vehicle";
  408. condition = "[_player] call rd501_fnc_canFlipVehicle";
  409. statement = "[_target] call rd501_fnc_flipVehicle";
  410. exceptions[] = {};
  411. icon = "rd501_main\ui_icons\mynock_flip_ace_icon.paa";
  412. };
  413. };
  414. };
  415. };
  416. class Tank : LandVehicle
  417. {
  418. class ACE_Actions {
  419. class ACE_MainActions {
  420. class rd501_flip_vehicle_flip {
  421. displayName = "Flip Vehicle";
  422. condition = "[_player] call rd501_fnc_canFlipVehicle";
  423. statement = "[_target] call rd501_fnc_flipVehicle";
  424. exceptions[] = {};
  425. icon = "rd501_main\ui_icons\mynock_flip_ace_icon.paa";
  426. };
  427. };
  428. };
  429. };
  430. class StaticWeapon: LandVehicle {
  431. class ACE_Actions {
  432. class ACE_MainActions {
  433. class rd501_external_reload {
  434. displayName = "Reload";
  435. condition = "_this call rd501_fnc_canReloadExternal";
  436. statement = "_this call rd501_fnc_reloadExternal";
  437. exceptions[] = {};
  438. runOnHover = 0;
  439. };
  440. };
  441. };
  442. };
  443. class Man;
  444. class CAManBase: Man
  445. {
  446. class ACE_SelfActions
  447. {
  448. class ACE_Equipment
  449. {
  450. class slingHelmet
  451. {
  452. displayName="Sling Helmet";
  453. icon="RD501_Main\ui_icons\helmet_ca.paa";
  454. priority=3;
  455. condition="!(_player getVariable ['GEARF_HelmetAttached', false])";
  456. class slingLeft
  457. {
  458. displayName="Sling Left";
  459. icon="RD501_Main\ui_icons\helmet_ca.paa";
  460. priority=3;
  461. condition="!(_player getVariable ['GEARF_HelmetAttached', false])";
  462. statement="[_player, 'left'] call GEARF_fnc_slingHelmet";
  463. };
  464. class slingRight
  465. {
  466. displayName="Sling Right";
  467. icon="RD501_Main\ui_icons\helmet_ca.paa";
  468. priority=3;
  469. condition="!(_player getVariable ['GEARF_HelmetAttached', false])";
  470. statement="[_player, 'right'] call GEARF_fnc_slingHelmet";
  471. };
  472. };
  473. class unslingHelmet
  474. {
  475. displayName="Unsling Helmet";
  476. icon="RD501_Main\ui_icons\helmet_ca.paa";
  477. priority=3;
  478. condition="_player getVariable ['GEARF_HelmetAttached', false]";
  479. statement="[_player] call GEARF_fnc_unslingHelmet";
  480. };
  481. class RD501_Auto_Radio_Freq
  482. {
  483. displayName = "A.R.F setter";
  484. exceptions[] = {"isNotInside", "isNotSwimming", "isNotSitting"};
  485. condition = "call TFAR_fnc_haveLRRadio";
  486. showDisabled = 0;
  487. priority = 2.5;
  488. icon = "RD501_Main\ui_icons\arf.paa";
  489. statement = "[_player] call rd501_fnc_auto_radio_freq";
  490. runOnHover = 0;
  491. };
  492. };
  493. };
  494. class EventHandlers
  495. {
  496. init="(_this select 0) setVariable ['GEARF_HelmetAttached', false]; (_this select 0) setVariable ['GEARF_HelmetAttachedClass','']; (_this select 0) setVariable ['GEARF_HelmetAdditionalClass',''];";
  497. killed="(_this select 0) setVariable ['GEARF_HelmetAttached', false]; (_this select 0) setVariable ['GEARF_HelmetAttachedClass','']; (_this select 0) setVariable ['GEARF_HelmetAdditionalClass',''];";
  498. getInMan="[(_this select 0), true] call GEARF_fnc_hideSlungHelmet";
  499. getOutMan="[(_this select 0), false] call GEARF_fnc_hideSlungHelmet;";
  500. };
  501. };
  502. };