init commit 9m14

This commit is contained in:
Brandon Danyluk 2021-05-06 15:01:50 -06:00
parent 80b2595abb
commit 20a3277ac8
18 changed files with 128 additions and 2 deletions

View File

@ -0,0 +1 @@
z\ace\addons\malyutka

View File

@ -0,0 +1,4 @@
class CfgAmmo {
};

View File

@ -0,0 +1,17 @@
class Extended_PreStart_EventHandlers {
class ADDON {
init = QUOTE(call COMPILE_FILE(XEH_preStart));
};
};
class Extended_PreInit_EventHandlers {
class ADDON {
init = QUOTE(call COMPILE_FILE(XEH_preInit));
};
};
class Extended_PostInit_EventHandlers {
class ADDON {
init = QUOTE(call COMPILE_FILE(XEH_postInit));
};
};

View File

@ -0,0 +1,3 @@
class CfgMagazines {
};

View File

@ -0,0 +1,3 @@
class CfgVehicles {
};

View File

@ -0,0 +1,4 @@
class CfgWeapons {
};

12
addons/malyutka/README.md Normal file
View File

@ -0,0 +1,12 @@
ace_malutka
===================
Adds 9M14 Malyutka MCLOS ATGM
## Maintainers
The people responsible for merging changes to this component or answering potential questions.
- [Brandon-TCVM](https://github.com/TheCandianVendingMachine)

View File

View File

@ -0,0 +1,2 @@
#include "script_component.hpp"

View File

@ -0,0 +1,10 @@
#include "script_component.hpp"
ADDON = false;
PREP_RECOMPILE_START;
#include "XEH_PREP.hpp"
PREP_RECOMPILE_END;
ADDON = true;

View File

@ -0,0 +1,4 @@
#include "script_component.hpp"
#include "XEH_PREP.hpp"

View File

@ -0,0 +1,22 @@
#include "script_component.hpp"
class CfgPatches {
class ADDON {
name = COMPONENT_NAME;
units[] = {};
weapons[] = {};
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {"ace_common","ace_missileguidance"};
author = ECSTRING(common,ACETeam);
authors[] = {"Brandon (TCVM)"};
url = ECSTRING(main,URL);
VERSION_CONFIG;
};
};
#include "CfgEventHandlers.hpp"
#include "CfgAmmo.hpp"
#include "CfgMagazines.hpp"
#include "CfgWeapons.hpp"
#include "CfgVehicles.hpp"

Binary file not shown.

View File

@ -0,0 +1,20 @@
class CfgSkeletons {
class Default {
isDiscrete = 1;
skeletonInherit = "";
skeletonBones[] = {};
};
class ACE_Malyutka: Default {};
};
class CfgModels {
class Default {
sectionsInherit = "";
sections[] = {};
skeletonName = "";
};
class ACE_Malyutka : Default {
sectionsInherit = "";
sections[] = {};
skeletonName = "ACE_Malyutka";
};
};

View File

@ -0,0 +1 @@
#include "\z\ace\addons\malyutka\script_component.hpp"

View File

@ -0,0 +1,18 @@
#define COMPONENT malyutka
#define COMPONENT_BEAUTIFIED Malyutka
#include "\z\ace\addons\main\script_mod.hpp"
// #define DEBUG_MODE_FULL
// #define DISABLE_COMPILE_CACHE
// #define ENABLE_PERFORMANCE_COUNTERS
#ifdef DEBUG_ENABLED_MALYUTKA
#define DEBUG_MODE_FULL
#endif
#ifdef DEBUG_SETTINGS_MALYUTKA
#define DEBUG_SETTINGS DEBUG_SETTINGS_MALYUTKA
#endif
#include "\z\ace\addons\main\script_macros.hpp"

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project name="ACE">
<Package name="malyutka">
</Package>
</Project>

View File

@ -2,10 +2,10 @@
#define COMPONENT_BEAUTIFIED Missile Guidance
#include "\z\ace\addons\main\script_mod.hpp"
// #define DRAW_GUIDANCE_INFO
#define DRAW_GUIDANCE_INFO
// #define ENABLE_PROJECTILE_CAMERA
// #define DEBUG_MODE_FULL
// #define DISABLE_COMPILE_CACHE
#define DISABLE_COMPILE_CACHE
// #define ENABLE_PERFORMANCE_COUNTERS
#ifdef DEBUG_ENABLED_MISSILEGUIDANCE