mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
57 lines
1.9 KiB
Plaintext
57 lines
1.9 KiB
Plaintext
/*
|
|
* Author: Karel Moricky, SilentSpike
|
|
* Handles the spectator UI toolbar values and applies them to the camera
|
|
*
|
|
* Arguments:
|
|
* 0: Parameters <ANY>
|
|
* 1: PFH handle <NUMBER>
|
|
*
|
|
* Return Value:
|
|
* None <NIL>
|
|
*
|
|
* Example:
|
|
* [ace_spectator_fnc_handleToolbar, 0, _display] call CBA_fnc_addPerFrameHandler;
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
params ["_display"];
|
|
|
|
// Kill PFH when display is closed
|
|
if (isNull _display) exitWith { [_this select 1] call CBA_fnc_removePerFrameHandler; };
|
|
|
|
GVAR(camera) camSetFov -(linearConversion [0.1,2,GVAR(camZoom),-2,-0.1,true]);
|
|
GVAR(camera) camCommit 0;
|
|
|
|
// Reduce overhead when toolbar is hidden
|
|
if !(ctrlShown (_display displayCtrl IDC_TOOL)) exitWith {};
|
|
|
|
private ["_name","_depth","_fov","_speed","_mode","_time","_toolbar"];
|
|
_toolbar = _display displayCtrl IDC_TOOL;
|
|
|
|
// Find all tool values
|
|
if (GVAR(camMode) == 0) then {
|
|
_depth = format ["%1 m", floor(getPosASL GVAR(camera) select 2)];
|
|
_fov = format ["%1x", floor(GVAR(camZoom) * 100) * 0.01];
|
|
_name = localize "STR_VOICE_MASK_NONE";
|
|
_speed = format ["%1 m/s", floor(GVAR(camSpeed) * 100) * 0.01];
|
|
} else {
|
|
_depth = format ["%1 m", floor(getPosASL GVAR(camUnit) select 2)];
|
|
_fov = WFSideText (group GVAR(camUnit));
|
|
_name = name GVAR(camUnit);
|
|
_speed = format ["%1 km/h", floor(speed GVAR(camUnit)) max 0];
|
|
};
|
|
|
|
_mode = [localize LSTRING(ViewFree),localize LSTRING(ViewInternal),localize LSTRING(ViewExternal)] select GVAR(camMode);
|
|
_time = [daytime,"HH:MM"] call BIS_fnc_timeToString;
|
|
|
|
// Update the UI tools
|
|
(_toolbar controlsGroupCtrl IDC_TOOL_CLOCK) ctrlSetText _time;
|
|
(_toolbar controlsGroupCtrl IDC_TOOL_DEPTH) ctrlSetText _depth;
|
|
(_toolbar controlsGroupCtrl IDC_TOOL_FOV) ctrlSetText _fov;
|
|
(_toolbar controlsGroupCtrl IDC_TOOL_NAME) ctrlSetText _name;
|
|
(_toolbar controlsGroupCtrl IDC_TOOL_SPEED) ctrlSetText _speed;
|
|
(_toolbar controlsGroupCtrl IDC_TOOL_VIEW) ctrlSetText _mode;
|