mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
847d2d4179
* Improve adjustment calcs / wound blood loss / medications fix func descriptions Calc wound blood loss on events reorder includes so scritpmacroMed has global effect trivial optimization for getCardiacOutput Fix var Fix wounds not reopening (nil _category) Fix surgical kit inherting canBandage conditional debug hitpoints Update ACE_Medical_Treatment_Actions.hpp Use woundBleeding for IS_BLEEDING macro rework medication vars comments Reset var in init / fullHeal Update addons/medical_treatment/functions/fnc_onMedicationUsage.sqf Co-Authored-By: PabstMirror <pabstmirror@gmail.com> * Update addons/medical_treatment/functions/fnc_onMedicationUsage.sqf Co-Authored-By: PabstMirror <pabstmirror@gmail.com>
39 lines
1.1 KiB
C++
39 lines
1.1 KiB
C++
#define COMPONENT medical_engine
|
|
#define COMPONENT_BEAUTIFIED Medical (Engine)
|
|
#include "\z\ace\addons\main\script_mod.hpp"
|
|
|
|
// #define DEBUG_MODE_FULL
|
|
// #define DISABLE_COMPILE_CACHE
|
|
// #define ENABLE_PERFORMANCE_COUNTERS
|
|
|
|
#ifdef DEBUG_ENABLED_MEDICAL_ENGINE
|
|
#define DEBUG_MODE_FULL
|
|
#endif
|
|
|
|
#ifdef DEBUG_SETTINGS_MEDICAL_ENGINE
|
|
#define DEBUG_SETTINGS DEBUG_SETTINGS_MEDICAL_ENGINE
|
|
#endif
|
|
|
|
#include "\z\ace\addons\medical_engine\script_macros_medical.hpp"
|
|
#include "\z\ace\addons\main\script_macros.hpp"
|
|
#include "\z\ace\addons\medical_engine\script_macros_config.hpp"
|
|
|
|
#define PRELOAD_CLASS(class) \
|
|
INFO_1("Starting preload for (%1)",class);\
|
|
[{\
|
|
1 preloadObject _this;\
|
|
}, {\
|
|
INFO_1("Preload done for (%1)",_this);\
|
|
}, class] call CBA_fnc_waitUntilAndExecute
|
|
|
|
#define PRIORITY_HEAD 3
|
|
#define PRIORITY_BODY 4
|
|
#define PRIORITY_LEFT_ARM (1 + random 1)
|
|
#define PRIORITY_RIGHT_ARM (1 + random 1)
|
|
#define PRIORITY_LEFT_LEG (1 + random 1)
|
|
#define PRIORITY_RIGHT_LEG (1 + random 1)
|
|
|
|
// don't change, these reflect hard coded engine behaviour
|
|
#define DAMAGED_MIN_THRESHOLD 0.45
|
|
#define LIMPING_MIN_DAMAGE 0.5
|