ACE3/addons/medical_gui/functions/fnc_updateLogList.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

38 lines
801 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: mharis001
* Updates list control with given logs.
*
* Arguments:
* 0: Log list <CONTROL>
* 1: Log to add <ARRAY>
*
* Return Value:
* None
*
* Example:
* [_ctrlActivityLog, _activityLog] call ace_medical_gui_fnc_updateLogList
*
* Public: No
*/
params ["_ctrl", "_logs"];
lbClear _ctrl;
{
_x params ["_message", "_timeStamp", "_arguments"];
// Localize message and arguments
if (isLocalized _message) then {
_message = localize _message;
};
_arguments = _arguments apply {if (_x isEqualType "" && {isLocalized _x}) then {localize _x} else {_x}};
// Format message with arguments
_message = format ([_message] + _arguments);
_ctrl lbAdd format ["%1 %2", _timeStamp, _message];
} forEach _logs;