2015-02-22 13:54:54 +00:00
|
|
|
/*
|
2015-09-20 18:25:25 +00:00
|
|
|
* Author: Glowbal
|
|
|
|
* Draw progress bar and execute given function if succesful.
|
|
|
|
* Finish/Failure/Conditional are all passed [args, elapsedTime, totalTime, errorCode]
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: icon ID <STRING>
|
|
|
|
* 1: show <BOOL>
|
|
|
|
* 2: Icon Path <STRING>
|
|
|
|
* 3: Icon color <ARRAY>
|
|
|
|
* 4: timeAlive. -1 = forever (default: 6) <NUMBER>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* ["myID", true, QUOTE(PATHTOF(data\icon_group.paa)), [1,1,1,1], 0] call ace_gui_fnc_displayIcon;
|
|
|
|
*
|
|
|
|
* Public: Yes
|
|
|
|
*/
|
2015-02-14 19:06:55 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
// positions for the icon UI
|
|
|
|
#define RIGHT_SIDE (safezoneW + safezoneX)
|
|
|
|
#define LEFT_SIDE safezoneX
|
|
|
|
#define TOP_SIDE safeZoneY
|
|
|
|
#define BOTTOM_SIDE (safeZoneH + safezoneY)
|
|
|
|
#define ICON_WIDTH (2 * (((safezoneW / safezoneH) min 1.2) / 40))
|
|
|
|
#define X_POS_ICONS (RIGHT_SIDE - (1.5 * ICON_WIDTH))
|
|
|
|
#define Y_POS_ICONS (TOP_SIDE + (2.5 * ICON_WIDTH))
|
|
|
|
#define DIFFERENCE_ICONS (1.1 * ICON_WIDTH)
|
|
|
|
#define X_POS_ICONS_SECOND (RIGHT_SIDE - (4.4 * ICON_WIDTH))
|
|
|
|
#define Y_POS_ICONS_SECOND (TOP_SIDE + (1.1 * ICON_WIDTH))
|
|
|
|
|
|
|
|
// setting values
|
2015-04-06 16:22:43 +00:00
|
|
|
#define TOP_RIGHT_DOWN 1
|
|
|
|
#define TOP_RIGHT_LEFT 2
|
|
|
|
#define TOP_LEFT_DOWN 3
|
|
|
|
#define TOP_LEFT_RIGHT 4
|
2015-02-14 19:06:55 +00:00
|
|
|
|
|
|
|
// other constants
|
2015-04-06 16:22:43 +00:00
|
|
|
#define DEFAULT_TIME 6
|
2015-02-14 19:06:55 +00:00
|
|
|
|
2015-09-20 18:25:25 +00:00
|
|
|
disableSerialization;
|
2015-05-14 18:06:06 +00:00
|
|
|
|
2015-09-20 18:25:25 +00:00
|
|
|
params ["_iconId", "_show", "_icon", "_color", ["_timeAlive", DEFAULT_TIME]];
|
2015-05-14 18:06:06 +00:00
|
|
|
|
2015-12-12 15:48:54 +00:00
|
|
|
private _list = missionNamespace getVariable [QGVAR(displayIconList), []];
|
2015-02-14 19:06:55 +00:00
|
|
|
|
2015-12-12 15:48:54 +00:00
|
|
|
private _refresh = {
|
2015-04-06 16:22:43 +00:00
|
|
|
// Refreshing of all icons..
|
2015-12-12 15:48:54 +00:00
|
|
|
private _allControls = missionNamespace getVariable [QGVAR(displayIconListControls), []];
|
2015-09-20 18:25:25 +00:00
|
|
|
|
2015-04-06 16:22:43 +00:00
|
|
|
{
|
|
|
|
ctrlDelete _x;
|
2015-09-20 18:25:25 +00:00
|
|
|
false
|
|
|
|
} count _allControls;
|
2015-02-14 19:06:55 +00:00
|
|
|
|
2015-04-06 16:22:43 +00:00
|
|
|
_allControls = [];
|
2015-02-14 19:06:55 +00:00
|
|
|
|
2015-12-12 15:48:54 +00:00
|
|
|
private _setting = missionNamespace getVariable [QGVAR(settingFeedbackIcons), 0];
|
2015-09-20 18:25:25 +00:00
|
|
|
|
2015-04-06 16:22:43 +00:00
|
|
|
if (_setting > 0) then {
|
|
|
|
{
|
2015-09-20 18:25:25 +00:00
|
|
|
_x params ["", "_xicon", "_xcolor"];
|
|
|
|
|
2015-04-06 16:22:43 +00:00
|
|
|
// +19000 because we want to make certain we are using free IDCs..
|
2015-12-12 15:48:54 +00:00
|
|
|
private _ctrl = (findDisplay 46) ctrlCreate ["RscPicture", _forEachIndex + 19000];
|
2015-09-20 18:25:25 +00:00
|
|
|
|
2015-12-12 15:48:54 +00:00
|
|
|
private _position = switch (_setting) do {
|
2015-11-30 16:23:48 +00:00
|
|
|
case TOP_RIGHT_DOWN: {[X_POS_ICONS, Y_POS_ICONS + (_forEachIndex * DIFFERENCE_ICONS), ICON_WIDTH, ICON_WIDTH]};
|
|
|
|
case TOP_RIGHT_LEFT: {[X_POS_ICONS_SECOND - ((_forEachIndex+3) * DIFFERENCE_ICONS), Y_POS_ICONS_SECOND - (ICON_WIDTH / 2), ICON_WIDTH, ICON_WIDTH]};
|
|
|
|
case TOP_LEFT_DOWN: {[LEFT_SIDE + (0.5 * ICON_WIDTH), Y_POS_ICONS + (_forEachIndex * DIFFERENCE_ICONS), ICON_WIDTH, ICON_WIDTH]};
|
|
|
|
case TOP_LEFT_RIGHT: {[LEFT_SIDE + (0.5 * ICON_WIDTH) - ((_forEachIndex+3) * DIFFERENCE_ICONS), Y_POS_ICONS_SECOND, ICON_WIDTH, ICON_WIDTH]};
|
|
|
|
default {[X_POS_ICONS, Y_POS_ICONS + (_forEachIndex * DIFFERENCE_ICONS), ICON_WIDTH, ICON_WIDTH]};
|
2015-04-06 16:22:43 +00:00
|
|
|
};
|
2015-09-20 18:25:25 +00:00
|
|
|
|
2015-04-06 16:22:43 +00:00
|
|
|
_ctrl ctrlSetPosition _position;
|
2015-09-20 18:25:25 +00:00
|
|
|
_ctrl ctrlSetText _xicon;
|
|
|
|
_ctrl ctrlSetTextColor _xcolor;
|
2015-04-06 16:22:43 +00:00
|
|
|
_ctrl ctrlCommit 0;
|
2015-09-20 18:25:25 +00:00
|
|
|
_allControls pushBack _ctrl;
|
|
|
|
false
|
|
|
|
} forEach (missionNamespace getVariable [QGVAR(displayIconList),[]]);
|
2015-04-06 16:22:43 +00:00
|
|
|
};
|
2015-09-20 18:25:25 +00:00
|
|
|
|
|
|
|
missionNamespace setVariable [QGVAR(displayIconListControls), _allControls];
|
2015-02-14 19:06:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if (_show) then {
|
2015-09-20 18:25:25 +00:00
|
|
|
if ({_x select 0 == _iconId} count _list == 0) then {
|
|
|
|
_list pushBack [_iconId, _icon, _color, ACE_time];
|
2015-04-06 16:22:43 +00:00
|
|
|
} else {
|
|
|
|
{
|
2015-11-30 16:14:05 +00:00
|
|
|
if (_x select 0 == _iconId) exitWith {
|
2015-09-20 18:25:25 +00:00
|
|
|
_list set [_forEachIndex, [_iconId, _icon, _color, ACE_time]];
|
2015-04-06 16:22:43 +00:00
|
|
|
};
|
2015-05-14 18:06:06 +00:00
|
|
|
} forEach _list;
|
2015-04-06 16:22:43 +00:00
|
|
|
};
|
2015-09-20 18:25:25 +00:00
|
|
|
|
|
|
|
missionNamespace setVariable [QGVAR(displayIconList), _list];
|
2015-04-06 16:22:43 +00:00
|
|
|
call _refresh;
|
2015-02-14 19:06:55 +00:00
|
|
|
|
2015-04-06 16:22:43 +00:00
|
|
|
if (_timeAlive >= 0) then {
|
|
|
|
[{
|
2015-09-20 18:25:25 +00:00
|
|
|
[_this select 0, false, "", [0,0,0], 0] call FUNC(displayIcon);
|
|
|
|
}, [_iconId], _timeAlive, _timeAlive] call FUNC(waitAndExecute);
|
2015-04-06 16:22:43 +00:00
|
|
|
};
|
2015-02-14 19:06:55 +00:00
|
|
|
|
|
|
|
} else {
|
2015-09-20 18:25:25 +00:00
|
|
|
|
|
|
|
if ({_x select 0 == _iconId} count _list == 1) then {
|
2015-12-12 15:48:54 +00:00
|
|
|
private _newList = [];
|
2015-09-20 18:25:25 +00:00
|
|
|
|
2015-04-06 16:22:43 +00:00
|
|
|
{
|
|
|
|
if (_x select 0 != _iconId) then {
|
2015-09-20 18:25:25 +00:00
|
|
|
_newList pushBack _x;
|
2015-04-06 16:22:43 +00:00
|
|
|
};
|
2015-09-20 18:25:25 +00:00
|
|
|
false
|
|
|
|
} count _list;
|
2015-02-14 19:06:55 +00:00
|
|
|
|
2015-09-20 18:25:25 +00:00
|
|
|
missionNamespace setVariable [QGVAR(displayIconList), _newList];
|
2015-04-06 16:22:43 +00:00
|
|
|
call _refresh;
|
|
|
|
};
|
2015-02-14 19:06:55 +00:00
|
|
|
};
|