mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
eca7657ffa
*Obsolete, as of: 6fdaf4c400
39 lines
1.1 KiB
Plaintext
39 lines
1.1 KiB
Plaintext
#include "script_component.hpp"
|
|
|
|
#include "initKeybinds.sqf"
|
|
|
|
GVAR(currentbulletID) = -1;
|
|
|
|
GVAR(bulletDatabase) = [];
|
|
GVAR(bulletDatabaseStartTime) = [];
|
|
GVAR(bulletDatabaseSpeed) = [];
|
|
GVAR(bulletDatabaseFrames) = [];
|
|
GVAR(bulletDatabaseLastFrame) = [];
|
|
GVAR(bulletDatabaseHDeflect) = [];
|
|
GVAR(bulletDatabaseSpinDrift) = [];
|
|
GVAR(bulletDatabaseOccupiedIndices) = [];
|
|
GVAR(bulletDatabaseFreeIndices) = [];
|
|
|
|
GVAR(WindInfo) = false;
|
|
GVAR(WindInfoStart) = time;
|
|
|
|
GVAR(Protractor) = false;
|
|
GVAR(ProtractorStart) = time;
|
|
|
|
GVAR(currentGrid) = 0;
|
|
GVAR(INIT_MESSAGE_ENABLED) = false;
|
|
|
|
GVAR(extensionAvailable) = true;
|
|
/* @TODO: Remove this until verisoning 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);
|