ACE3/addons/common/functions/fnc_displayText.sqf

41 lines
1.1 KiB
Plaintext
Raw Normal View History

#include "..\script_component.hpp"
/*
* Author: commy2
* Display a message.
*
2015-09-20 18:25:25 +00:00
* Arguments:
* 0: Message <STRING>
* 1: Play a clicking sound (default: false) <BOOL>
* 2: How long before hiding the message in seconds (default: 2) <NUMBER>
* 3: Priority, higher priority messages will override lesser important ones (default: 0) <NUMBER>
*
* Return Value:
* None
*
* Example:
* ["Message", true, 5, 2] call ace_common_fnc_displayText
*
2015-09-20 18:25:25 +00:00
* Public: Yes
*/
2015-09-20 18:25:25 +00:00
params ["_text", ["_sound", false], ["_delay", 2], ["_priority", 0]];
if (isNil QGVAR(lastHint)) then {
GVAR(lastHint) = [0, 0];
};
2015-09-20 18:25:25 +00:00
if !(typeName _text in ["STRING", "TEXT"]) then {_text = str _text};
2015-12-12 16:26:47 +00:00
GVAR(lastHint) params ["_lastHintTime", "_lastHintPriority"];
2015-09-20 18:25:25 +00:00
2016-03-02 10:01:39 +00:00
private _time = CBA_missionTime;
2015-09-20 18:25:25 +00:00
if (_time > _lastHintTime + _delay || {_priority >= _lastHintPriority}) then {
hintSilent _text;
if (_sound) then {playSound "ACE_Sound_Click"};
GVAR(lastHint) set [0, _time];
GVAR(lastHint) set [1, _priority];
[{if ((_this select 0) == GVAR(lastHint) select 0) then {hintSilent ""};}, [_time], _delay, 0] call CBA_fnc_waitAndExecute;
};