2015-05-09 20:32:36 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
ADDON = false;
|
|
|
|
|
2015-05-10 18:00:31 +00:00
|
|
|
// Extension engine functions
|
2015-05-10 16:51:16 +00:00
|
|
|
PREP(initializeExtension);
|
2015-05-09 20:32:36 +00:00
|
|
|
PREP(monitorResultsPFH);
|
2015-05-10 16:51:16 +00:00
|
|
|
PREP(parseResult);
|
2015-05-09 20:32:36 +00:00
|
|
|
|
2015-05-10 18:00:31 +00:00
|
|
|
PREP(callExtension);
|
2015-05-10 19:24:22 +00:00
|
|
|
// This value is used for debug loading of the extension with dynload
|
|
|
|
GVAR(extensionLibrary) = "z\ace\extensions\build\vd\Debug\ace_vd.dll";
|
2015-05-10 18:00:31 +00:00
|
|
|
GVAR(async) = true;
|
|
|
|
GVAR(ready) = false;
|
|
|
|
|
2015-05-11 18:01:53 +00:00
|
|
|
// Extension dispatch events
|
|
|
|
PREP(setAnimationNames);
|
|
|
|
|
|
|
|
// To extension send events
|
|
|
|
PREP(getAnimationStates);
|
|
|
|
|
2015-05-10 18:00:31 +00:00
|
|
|
// Core functionality
|
2015-05-09 20:32:36 +00:00
|
|
|
PREP(registerVehicleDamageHandler);
|
|
|
|
PREP(registerVehicleWithExtension);
|
|
|
|
PREP(unregisterWithExtension);
|
|
|
|
|
|
|
|
PREP(dispatchHitPart);
|
|
|
|
PREP(dispatchDamage);
|
|
|
|
PREP(doHit);
|
|
|
|
|
|
|
|
GVAR(vehicle_id) = 0;
|
2015-05-11 18:01:53 +00:00
|
|
|
GVAR(vehicles) = HASH_CREATE;
|
2015-05-09 20:32:36 +00:00
|
|
|
|
|
|
|
FUNC(_textVector) = {
|
|
|
|
private["_str"];
|
|
|
|
_str = format["%1;%2;%3", ((_this select 0) select 0), ((_this select 0) select 1), ((_this select 0) select 2)];
|
|
|
|
_str
|
|
|
|
};
|
|
|
|
|
2015-05-11 00:45:38 +00:00
|
|
|
[] call FUNC(initializeExtension);
|
|
|
|
|
2015-05-09 20:32:36 +00:00
|
|
|
ADDON = true;
|