mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
39 lines
1.2 KiB
Plaintext
39 lines
1.2 KiB
Plaintext
#include "script_component.hpp"
|
|
|
|
#include "initKeybinds.sqf"
|
|
|
|
GVAR(currentbulletID) = -1;
|
|
|
|
GVAR(Protractor) = false;
|
|
GVAR(ProtractorStart) = ACE_time;
|
|
GVAR(allBullets) = [];
|
|
GVAR(currentGrid) = 0;
|
|
|
|
GVAR(extensionAvailable) = true;
|
|
/* @TODO: Remove this until versioning is in sync with cmake/build versioning
|
|
GVAR(extensionVersion) = ("ace_advanced_ballistics" callExtension "version");
|
|
GVAR(extensionAvailable) = (GVAR(extensionVersion) == EXTENSION_REQUIRED_VERSION);
|
|
if (!GVAR(extensionAvailable)) exitWith {
|
|
if (GVAR(extensionVersion) == "") then {
|
|
diag_log text "[ACE] ERROR: ace_advanced_ballistics.dll is missing";
|
|
} else {
|
|
diag_log text "[ACE] ERROR: ace_advanced_ballistics.dll is incompatible";
|
|
};
|
|
};
|
|
*/
|
|
[] call FUNC(initializeTerrainExtension);
|
|
|
|
if (!hasInterface) exitWith {};
|
|
|
|
["SettingsInitialized", {
|
|
//If not enabled, dont't add PFEH
|
|
if (!GVAR(enabled)) exitWith {};
|
|
|
|
// Register fire event handler
|
|
["firedPlayer", DFUNC(handleFired)] call EFUNC(common,addEventHandler);
|
|
["firedPlayerNonLocal", DFUNC(handleFired)] call EFUNC(common,addEventHandler);
|
|
|
|
[] call FUNC(updateTrajectoryPFH);
|
|
|
|
}] call EFUNC(common,addEventHandler);
|