2015-02-21 20:11:03 +00:00
|
|
|
/*
|
|
|
|
* Author: NouberNou and CAA-Picard
|
|
|
|
* Render a single interaction icon
|
|
|
|
*
|
|
|
|
* Argument:
|
|
|
|
* 0: Text <STRING>
|
|
|
|
* 1: Color <STRING>
|
|
|
|
* 2: 3d position ASL <ARRAY>
|
|
|
|
* 3: ?
|
|
|
|
* 4: ?
|
|
|
|
* 5: ?
|
|
|
|
* 6: Icon <STRING>
|
|
|
|
*
|
|
|
|
* Return value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-01-18 18:38:27 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
#define DEFAULT_ICON QUOTE(\z\ace\addons\interaction\ui\dot_ca.paa)
|
|
|
|
private ["_color", "_pos", "_sPos", "_ctrl", "_icon"];
|
|
|
|
_text = _this select 0;
|
|
|
|
_color = _this select 1;
|
|
|
|
_pos = _this select 2;
|
|
|
|
_icon = _this select 6;
|
2015-02-21 20:11:03 +00:00
|
|
|
|
2015-02-27 04:55:16 +00:00
|
|
|
//systemChat format ["Icon %1 - %2,%3,%4", _text, _pos select 0, _pos select 1, _pos select 2];
|
|
|
|
|
2015-01-18 18:38:27 +00:00
|
|
|
_sPos = worldToScreen _pos;
|
2015-01-28 20:03:30 +00:00
|
|
|
// _sPos = _pos;
|
2015-01-18 18:38:27 +00:00
|
|
|
if(count _sPos > 0) then {
|
2015-02-21 20:11:03 +00:00
|
|
|
|
2015-02-19 13:49:36 +00:00
|
|
|
if(GVAR(iconCount) > (count GVAR(iconCtrls))-1) then {
|
2015-02-28 20:48:46 +00:00
|
|
|
_displayNum = [46,91919] select (uiNamespace getVariable [QGVAR(cursorMenuOpened),false]);
|
|
|
|
//systemChat format ["Displaynum: %1", _displayNum];
|
|
|
|
GVAR(iconCtrls) pushBack ((findDisplay _displayNum) ctrlCreate ["RscStructuredText", 54021+GVAR(iconCount)]);
|
2015-02-19 13:49:36 +00:00
|
|
|
};
|
|
|
|
_ctrl = GVAR(iconCtrls) select GVAR(iconCount);
|
|
|
|
GVAR(iconCount) = GVAR(iconCount) + 1;
|
2015-01-18 18:38:27 +00:00
|
|
|
if(_icon == "") then {
|
|
|
|
_icon = DEFAULT_ICON;
|
|
|
|
};
|
2015-02-19 21:56:43 +00:00
|
|
|
_text = format ["<img image='%1' color='%2' align='center'/><br/><t color ='%3' size='0.75' align='center'>%4</t>", _icon, _color, _color, _text];
|
2015-02-19 13:49:36 +00:00
|
|
|
_ctrl ctrlSetStructuredText (parseText _text);
|
2015-02-19 21:56:43 +00:00
|
|
|
_ctrl ctrlSetPosition [(_sPos select 0)-(0.2*SafeZoneW), (_sPos select 1)-(0.0095*SafeZoneW), 0.4*SafeZoneW, 0.035*SafeZoneW];
|
|
|
|
//_ctrl ctrlSetBackgroundColor [1, 0, 0, 0.1];
|
2015-03-03 02:29:57 +00:00
|
|
|
//_ctrl ctrlSetBackgroundColor [1,0,0,1];
|
2015-02-19 13:49:36 +00:00
|
|
|
_ctrl ctrlCommit 0;
|
2015-01-18 18:38:27 +00:00
|
|
|
};
|