57 lines
1.8 KiB
Plaintext
57 lines
1.8 KiB
Plaintext
#include "..\script_component.hpp"
|
|
|
|
/*
|
|
* Compatibility adapter for the object-style HVT task implementation.
|
|
*/
|
|
|
|
params [
|
|
["_taskID", "", [""]],
|
|
["_limitFail", -1, [0]],
|
|
["_limitSuccess", -1, [0]],
|
|
["_extZone", "", [""]],
|
|
["_companyFunds", 0, [0]],
|
|
["_ratingFail", 0, [0]],
|
|
["_ratingSuccess", 0, [0]],
|
|
["_type", [true, false], [[]]],
|
|
["_endSuccess", false, [false]],
|
|
["_endFail", false, [false]],
|
|
["_timeLimit", 0, [0]],
|
|
["_equipmentRewards", [], [[]]],
|
|
["_supplyRewards", [], [[]]],
|
|
["_weaponRewards", [], [[]]],
|
|
["_vehicleRewards", [], [[]]],
|
|
["_specialRewards", [], [[]]]
|
|
];
|
|
|
|
private _taskParams = createHashMapFromArray [
|
|
["limitFail", _limitFail],
|
|
["limitSuccess", _limitSuccess],
|
|
["extractionZone", _extZone],
|
|
["funds", _companyFunds],
|
|
["ratingFail", _ratingFail],
|
|
["ratingSuccess", _ratingSuccess],
|
|
["type", _type],
|
|
["captureHvt", _type param [0, true, [false]]],
|
|
["endSuccess", _endSuccess],
|
|
["endFail", _endFail],
|
|
["timeLimit", _timeLimit],
|
|
["useTaskStore", true]
|
|
];
|
|
|
|
if (_equipmentRewards isNotEqualTo []) then { _taskParams set ["equipment", _equipmentRewards]; };
|
|
if (_supplyRewards isNotEqualTo []) then { _taskParams set ["supplies", _supplyRewards]; };
|
|
if (_weaponRewards isNotEqualTo []) then { _taskParams set ["weapons", _weaponRewards]; };
|
|
if (_vehicleRewards isNotEqualTo []) then { _taskParams set ["vehicles", _vehicleRewards]; };
|
|
if (_specialRewards isNotEqualTo []) then { _taskParams set ["special", _specialRewards]; };
|
|
|
|
private _task = createHashMapObject [
|
|
GVAR(HVTTaskBaseClass),
|
|
[
|
|
_taskID,
|
|
createHashMapFromArray [["hvts", GVAR(TaskStore) call ["getTaskEntities", ["hvts", _taskID]]]],
|
|
_taskParams
|
|
]
|
|
];
|
|
|
|
_task call ["runLoop", []];
|