From 82ea87d1de6b9ef212382a33384eb254e6bf4317 Mon Sep 17 00:00:00 2001 From: PabstMirror Date: Thu, 12 Mar 2015 00:05:28 -0500 Subject: [PATCH] Parachute - Config Division/Formating --- addons/parachute/CfgVehicles.hpp | 34 +++++++++++++++++ addons/parachute/CfgWeapons.hpp | 9 +++++ addons/parachute/config.cpp | 65 ++++++-------------------------- 3 files changed, 54 insertions(+), 54 deletions(-) create mode 100644 addons/parachute/CfgVehicles.hpp create mode 100644 addons/parachute/CfgWeapons.hpp diff --git a/addons/parachute/CfgVehicles.hpp b/addons/parachute/CfgVehicles.hpp new file mode 100644 index 0000000000..2d8545a607 --- /dev/null +++ b/addons/parachute/CfgVehicles.hpp @@ -0,0 +1,34 @@ +class CfgVehicles { + class Box_NATO_Support_F; + class ACE_Box_Misc: Box_NATO_Support_F { + class TransportItems { + class _xx_ACE_Altimeter { + name = "ACE_Altimeter"; + count = 6; + }; + }; + class TransportBackpacks { + class _xx_ACE_NonSteerableParachute { + backpack = "ACE_NonSteerableParachute"; + count = 4; + }; + }; + }; + + class B_Parachute; + class ACE_NonSteerableParachute: B_Parachute { + author = "$STR_ACE_Common_ACETeam"; + scope = 2; + displayName = "$STR_ACE_Parachute_NonSteerableParachute"; + //picture = "\A3\Characters_F\data\ui\icon_b_parachute_ca.paa"; // @todo + //model = "\A3\Weapons_F\Ammoboxes\Bags\Backpack_Parachute"; // @todo + // backpackSimulation = "ParachuteNonSteerable"; //ParachuteSteerable //Bis broke this in 1.40 + ParachuteClass = "NonSteerable_Parachute_F"; + maximumLoad = 0; + mass = 100; + }; + + class B_Soldier_05_f; class B_Pilot_F: B_Soldier_05_f {backpack = "ACE_NonSteerableParachute";}; + class I_Soldier_04_F; class I_pilot_F: I_Soldier_04_F {backpack = "ACE_NonSteerableParachute";}; + class O_helipilot_F; class O_Pilot_F: O_helipilot_F {backpack = "ACE_NonSteerableParachute";}; +}; diff --git a/addons/parachute/CfgWeapons.hpp b/addons/parachute/CfgWeapons.hpp new file mode 100644 index 0000000000..6388bbd5a1 --- /dev/null +++ b/addons/parachute/CfgWeapons.hpp @@ -0,0 +1,9 @@ +class CfgWeapons { + class ItemWatch; + class ACE_Altimeter:ItemWatch { + author = "$STR_ACE_Common_ACETeam"; + descriptionShort = "$STR_ACE_Parachute_AltimeterDescription"; + displayName = "$STR_ACE_Parachute_AltimeterDisplayName"; + picture = PATHTOF(UI\watch_altimeter.paa); + }; +}; diff --git a/addons/parachute/config.cpp b/addons/parachute/config.cpp index 78ca51fb97..3671177e28 100644 --- a/addons/parachute/config.cpp +++ b/addons/parachute/config.cpp @@ -1,61 +1,18 @@ #include "script_component.hpp" class CfgPatches { - class ACE_Parachute { - units[] = {"ACE_NonSteerableParachute"}; - weapons[] = {"ACE_Altimeter"}; - requiredVersion = REQUIRED_VERSION; - requiredAddons[] = {"ace_common"}; - VERSION_CONFIG; - author[] = {"Garth 'LH' de Wet"}; - authorUrl = "http://garth.snakebiteink.co.za/"; - }; + class ACE_Parachute { + units[] = {"ACE_NonSteerableParachute"}; + weapons[] = {"ACE_Altimeter"}; + requiredVersion = REQUIRED_VERSION; + requiredAddons[] = {"ace_common"}; + VERSION_CONFIG; + author[] = {"Garth 'LH' de Wet"}; + authorUrl = "http://garth.snakebiteink.co.za/"; + }; }; #include "CfgEventHandlers.hpp" +#include "CfgVehicles.hpp" +#include "CfgWeapons.hpp" #include "RscTitles.hpp" - -class CfgWeapons { - class ItemWatch; - class ACE_Altimeter:ItemWatch { - author = "$STR_ACE_Common_ACETeam"; - descriptionShort = "$STR_ACE_Parachute_AltimeterDescription"; - displayName = "$STR_ACE_Parachute_AltimeterDisplayName"; - picture = PATHTOF(UI\watch_altimeter.paa); - }; -}; - -class CfgVehicles { - class Box_NATO_Support_F; - class ACE_Box_Misc: Box_NATO_Support_F { - class TransportItems { - class _xx_ACE_Altimeter { - name = "ACE_Altimeter"; - count = 6; - }; - }; - class TransportBackpacks { - class _xx_ACE_NonSteerableParachute { - backpack = "ACE_NonSteerableParachute"; - count = 4; - }; - }; - }; - - class B_Parachute; - class ACE_NonSteerableParachute: B_Parachute { - author = "$STR_ACE_Common_ACETeam"; - scope = 2; - displayName = "$STR_ACE_Parachute_NonSteerableParachute"; - //picture = "\A3\Characters_F\data\ui\icon_b_parachute_ca.paa"; // @todo - //model = "\A3\Weapons_F\Ammoboxes\Bags\Backpack_Parachute"; // @todo - // backpackSimulation = "ParachuteNonSteerable"; //ParachuteSteerable //Bis broke this in 1.40 - ParachuteClass = "NonSteerable_Parachute_F"; - maximumLoad = 0; - mass = 100; - }; - - class B_Soldier_05_f; class B_Pilot_F: B_Soldier_05_f {backpack = "ACE_NonSteerableParachute";}; - class I_Soldier_04_F; class I_pilot_F: I_Soldier_04_F {backpack = "ACE_NonSteerableParachute";}; - class O_helipilot_F; class O_Pilot_F: O_helipilot_F {backpack = "ACE_NonSteerableParachute";}; -};