forked from IDI-Systems/acre2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfnc_setSpatial.sqf
57 lines (53 loc) · 1.32 KB
/
fnc_setSpatial.sqf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include "..\script_component.hpp"
/*
* Author: ACRE2Team
* SHORT DESCRIPTION
*
* Arguments:
* 0: ARGUMENT ONE <TYPE>
* 1: ARGUMENT TWO <TYPE>
*
* Return Value:
* RETURN VALUE <TYPE>
*
* Example:
* [ARGUMENTS] call acre_sys_sem70_fnc_setSpatial
*
* Public: No
*/
/*
* This function sets the spatialization state of
* the radio. The spatialization is set through
* a "setState" Event. It is generally recommended
* to insert a check if the values are safe for this
* kind of parameter.
* Spatial settings are -1/0/1 for left/center/right
* if set through the keybindings. Nevertheless
* they could represent any other numeric value.
* However this is not recommended because of possible
* confusion for the player.
*
*
* Type of Event:
* Data
* Event:
* setSpatial
* Event raised by:
* - Several functions
*
* Parsed parameters:
* 0: Radio ID
* 1: Event (-> "setSpatial")
* 2: Eventdata
* 2.0: Spatialization to set
* 3: Radiodata
* 4: Remote Call (-> false)
*
* Returned parameters:
* nil
*/
params ["_radioId", "", "_eventData", ""];
private _spatial = _eventData;
if (_spatial in [-1, 0, 1]) then {
[_radioId, "setState", ["ACRE_INTERNAL_RADIOSPATIALIZATION", _spatial]] call EFUNC(sys_data,dataEvent);
};