Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

XEH - Add missing event handlers with SPE 1.0 #1587

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions addons/xeh/compat_spe/config.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
#include "\x\cba\addons\xeh\script_component.hpp"
#undef COMPONENT
#define COMPONENT xeh_compat_spe

class CfgPatches {
class ADDON {
units[] = {};
weapons[] = {};
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = { "cba_xeh", "WW2_SPE_Assets_c_Vehicles_ZZZ_LastLoaded_c" };
skipWhenMissingDependencies = 1;
author = "$STR_CBA_Author";
VERSION_CONFIG;
// this prevents any patched class from requiring XEH
addonRootClass = "A3_Characters_F";
};
};
class XEH_CLASS_BASE;

class CfgVehicles {
class Tank;
class SPE_Armored_Target_Dummy: Tank {
class EventHandlers {
// This class has an empty CBA_Extended_EventHandlers, repopulate with actual event handlers
class CBA_Extended_EventHandlers {
EXTENDED_EVENTHANDLERS
};
};
SLX_XEH_DISABLED = 0;
Comment on lines +23 to +29
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
class EventHandlers {
// This class has an empty CBA_Extended_EventHandlers, repopulate with actual event handlers
class CBA_Extended_EventHandlers {
EXTENDED_EVENTHANDLERS
};
};
SLX_XEH_DISABLED = 0;
SLX_XEH_DISABLED = 1;

};
class ModuleEmpty_F;
class SPE_MineObject_base: ModuleEmpty_F {
XEH_ENABLED;
};
class SPE_Minefield_base: SPE_MineObject_base {};
class SPE_MINE_TMI42_Field_30x30: SPE_Minefield_base {
XEH_ENABLED;
};
class SPE_MINE_TMI42_Field_70x30: SPE_Minefield_base {
XEH_ENABLED;
};
class SPE_MINE_US_M1A1_ATMINE_Field_30x30: SPE_Minefield_base {
XEH_ENABLED;
};
};