ACE3/addons/huntir/functions/fnc_huntir.sqf

109 lines
4.1 KiB
Plaintext
Raw Normal View History

#include "script_component.hpp"
2015-06-06 12:13:34 +00:00
/*
* Author: Norrin, Rocko, Ruthberg
*
* HuntIR monitor system
*
* Arguments:
2015-08-13 22:02:19 +00:00
* None
2015-06-06 12:13:34 +00:00
*
* Return Value:
2015-08-13 22:02:19 +00:00
* None
2015-06-06 12:13:34 +00:00
*
* Example:
* call ACE_huntir_fnc_huntir
*
2015-06-06 12:13:34 +00:00
* Public: No
*/
#define __TYPE_WRITER_DELAY 0.05
if ((ACE_player call CBA_fnc_getUnitAnim) select 0 == "stand") then {
ACE_player playMove "AmovPercMstpSrasWrflDnon_diary";
};
2015-06-07 11:55:35 +00:00
HUNTIR_BACKGROUND_LAYER_ID cutText ["", "BLACK", 0];
2016-07-20 04:15:18 +00:00
createDialog QGVAR(cam_dialog_off);
2015-06-06 12:13:34 +00:00
[{
if (!dialog) exitWith {
2015-06-07 11:55:35 +00:00
HUNTIR_BACKGROUND_LAYER_ID cutText ["", "PLAIN", 0];
2015-06-06 12:13:34 +00:00
};
closeDialog 0;
2016-07-20 04:15:18 +00:00
createDialog QGVAR(cam_dialog_inactive);
uiNameSpace setVariable [QGVAR(monitor), findDisplay 18881];
2015-06-06 12:13:34 +00:00
[{
2016-03-02 10:01:39 +00:00
GVAR(startTime) = CBA_missionTime;
2015-06-06 12:13:34 +00:00
GVAR(done) = false;
GVAR(connectionDelay) = 5;
GVAR(state) = "searching";
GVAR(message) = [];
2015-08-13 22:02:19 +00:00
GVAR(messageSearching) = toArray "Searching.....";
2015-06-06 12:13:34 +00:00
GVAR(messageConnecting) = toArray "Connecting.....";
[{
//Close monitor if we no longer have item:
2016-07-20 04:15:18 +00:00
if ((!([ACE_player, "ACE_HuntIR_monitor"] call EFUNC(common,hasItem))) && {!isNull (uiNameSpace getVariable [QGVAR(monitor), displayNull])}) then {
closeDialog 0;
};
2015-08-13 22:02:19 +00:00
private _elapsedTime = CBA_missionTime - GVAR(startTime);
private _nearestHuntIRs = ACE_player nearEntities ["ACE_HuntIR", HUNTIR_MAX_TRANSMISSION_RANGE];
2015-08-13 22:02:19 +00:00
if ((GVAR(state) in ["connecting", "connected"]) && {_nearestHuntIRs isEqualTo []}) then {
TRACE_1("reseting back to search because no valid ammo exists anymore",GVAR(state));
GVAR(state) = "searching";
GVAR(done) = false;
GVAR(message) = [];
GVAR(connectionDelay) = 5;
};
2015-06-06 12:13:34 +00:00
if ((!dialog) || GVAR(done)) exitWith {
2015-11-30 15:45:20 +00:00
[_this select 1] call CBA_fnc_removePerFrameHandler;
2015-08-13 22:02:19 +00:00
2015-06-06 12:13:34 +00:00
if (dialog && GVAR(state) == "connected") then {
[_nearestHuntIRs select 0] call FUNC(cam);
} else {
2015-06-07 11:55:35 +00:00
HUNTIR_BACKGROUND_LAYER_ID cutText ["", "PLAIN"];
2015-06-06 12:13:34 +00:00
};
};
switch (GVAR(state)) do {
case "searching": {
if (count GVAR(message) < count GVAR(messageSearching)) then {
GVAR(message) pushBack (GVAR(messageSearching) select (count GVAR(message)));
ctrlSetText [1, toString GVAR(message)];
} else {
GVAR(message) = [];
if (_elapsedTime > 10) then {
GVAR(state) = "noGDS";
};
if (_elapsedTime > 5 && {{_x getHitPointDamage "HitCamera" < 0.25} count _nearestHuntIRs > 0}) then {
2015-06-06 12:13:34 +00:00
GVAR(state) = "connecting";
};
};
};
case "connecting": {
if (count GVAR(message) < count GVAR(messageConnecting)) then {
GVAR(message) pushBack (GVAR(messageConnecting) select (count GVAR(message)));
ctrlSetText [1, toString GVAR(message)];
} else {
GVAR(message) = [];
GVAR(connectionDelay) = GVAR(connectionDelay) - 1;
if (GVAR(connectionDelay) <= 0) then {
GVAR(done) = true;
GVAR(state) = "connected";
};
};
};
case "noGDS": {
ctrlSetText [1, "No GDS System detected"];
[{
GVAR(done) = true;
closedialog 0;
2015-06-07 11:55:35 +00:00
HUNTIR_BACKGROUND_LAYER_ID cutText ["", "PLAIN"];
}, [], 3, 0] call CBA_fnc_waitAndExecute;
2015-06-06 12:13:34 +00:00
};
};
}, __TYPE_WRITER_DELAY, []] call CBA_fnc_addPerFrameHandler;
}, [], 0.5, 0] call CBA_fnc_waitAndExecute;
}, [], 1, 0] call CBA_fnc_waitAndExecute;