mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
46 lines
1.3 KiB
Plaintext
46 lines
1.3 KiB
Plaintext
/*
|
|
* 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
|
|
*/
|
|
#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;
|
|
|
|
_sPos = worldToScreen _pos;
|
|
// _sPos = _pos;
|
|
if(count _sPos > 0) then {
|
|
|
|
if(GVAR(iconCount) > (count GVAR(iconCtrls))-1) then {
|
|
GVAR(iconCtrls) pushBack ((findDisplay 46) ctrlCreate ["RscStructuredText", 54021+GVAR(iconCount)]);
|
|
};
|
|
_ctrl = GVAR(iconCtrls) select GVAR(iconCount);
|
|
GVAR(iconCount) = GVAR(iconCount) + 1;
|
|
if(_icon == "") then {
|
|
_icon = DEFAULT_ICON;
|
|
};
|
|
_text = format ["<img image='%1' color='%2' align='center'/><br/><t color ='%3' size='0.75' align='center'>%4</t>", _icon, _color, _color, _text];
|
|
_ctrl ctrlSetStructuredText (parseText _text);
|
|
_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];
|
|
// _ctrl ctrlSetBackgroundColor [1,0,0,1];
|
|
_ctrl ctrlCommit 0;
|
|
};
|