2015-01-14 06:24:17 +00:00
|
|
|
#define COMPONENT vector
|
2016-06-20 09:41:17 +00:00
|
|
|
#define COMPONENT_BEAUTIFIED Vector
|
2015-01-14 06:24:17 +00:00
|
|
|
#include "\z\ace\addons\main\script_mod.hpp"
|
|
|
|
|
2016-01-29 05:26:02 +00:00
|
|
|
// #define DEBUG_MODE_FULL
|
|
|
|
// #define DISABLE_COMPILE_CACHE
|
|
|
|
// #define ENABLE_PERFORMANCE_COUNTERS
|
|
|
|
|
2015-01-14 06:24:17 +00:00
|
|
|
#ifdef DEBUG_ENABLED_VECTOR
|
|
|
|
#define DEBUG_MODE_FULL
|
|
|
|
#endif
|
|
|
|
|
2015-01-14 18:34:24 +00:00
|
|
|
#ifdef DEBUG_SETTINGS_VECTOR
|
|
|
|
#define DEBUG_SETTINGS DEBUG_SETTINGS_VECTOR
|
2015-01-14 06:24:17 +00:00
|
|
|
#endif
|
|
|
|
|
2016-06-20 09:41:17 +00:00
|
|
|
#include "\z\ace\addons\main\script_macros.hpp"
|
2019-05-27 15:46:07 +00:00
|
|
|
|
|
|
|
#include "\a3\ui_f\hpp\defineDIKCodes.inc"
|
|
|
|
|
|
|
|
#define IDC_CENTER 1301
|
|
|
|
#define IDC_CROSSHAIR 1302
|
|
|
|
|
|
|
|
#define IDC_DIGIT_0 1310
|
|
|
|
#define IDC_DIGIT_1 1311
|
|
|
|
#define IDC_DIGIT_2 1312
|
|
|
|
#define IDC_DIGIT_3 1313
|
|
|
|
#define IDC_DIGIT_4 1314
|
|
|
|
#define IDC_DIGIT_5 1315
|
|
|
|
#define IDC_DIGIT_6 1316
|
|
|
|
#define IDC_DIGIT_7 1317
|
|
|
|
#define IDC_DIGIT_8 1318
|
|
|
|
#define IDC_DIGIT_9 1319
|
|
|
|
|
|
|
|
#define IDC_DIGIT_E1 1321
|
|
|
|
#define IDC_DIGIT_E2 1322
|
|
|
|
#define IDC_DIGIT_E3 1323
|
|
|
|
#define IDC_DIGIT_E4 1324
|
|
|
|
|
|
|
|
#define ILLUM_CONTROLS [\
|
|
|
|
IDC_CENTER, IDC_CROSSHAIR,\
|
|
|
|
IDC_DIGIT_0, IDC_DIGIT_1, IDC_DIGIT_2, IDC_DIGIT_3, IDC_DIGIT_4,\
|
|
|
|
IDC_DIGIT_5, IDC_DIGIT_6, IDC_DIGIT_7, IDC_DIGIT_8, IDC_DIGIT_9,\
|
|
|
|
IDC_DIGIT_E1, IDC_DIGIT_E2, IDC_DIGIT_E3, IDC_DIGIT_E4\
|
|
|
|
]
|