2015-07-21 19:19:54 +00:00
|
|
|
/*
|
|
|
|
* Author: SilentSpike
|
|
|
|
* Adds or removes spectator vision modes from the selection available to the local player.
|
|
|
|
* The default selection is [-2,-1,0,1].
|
|
|
|
* Possible vision modes are:
|
|
|
|
* - -2: Normal
|
|
|
|
* - -1: Night vision
|
|
|
|
* - 0: White hot
|
|
|
|
* - 1: Black hot
|
|
|
|
* - 2: Light Green Hot / Darker Green cold
|
|
|
|
* - 3: Black Hot / Darker Green cold
|
2015-07-21 20:51:32 +00:00
|
|
|
* - 4: Light Red Hot / Darker Red Cold
|
2015-07-21 19:19:54 +00:00
|
|
|
* - 5: Black Hot / Darker Red Cold
|
2015-07-21 20:51:32 +00:00
|
|
|
* - 6: White Hot / Darker Red Cold
|
2015-07-21 19:19:54 +00:00
|
|
|
* - 7: Thermal (Shade of Red and Green, Bodies are white)
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Vision modes to add <ARRAY>
|
|
|
|
* 1: Vision modes to remove <ARRAY>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Available vision modes <ARRAY>
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [[0], [1,2]] call ace_spectator_fnc_updateVisionModes
|
|
|
|
*
|
|
|
|
* Public: Yes
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
params [["_addModes",[],[[]]], ["_removeModes",[],[[]]]];
|
2015-07-21 20:51:32 +00:00
|
|
|
private ["_newModes","_currentModes"];
|
|
|
|
|
|
|
|
_currentModes = GVAR(availableVisions);
|
2015-07-21 19:19:54 +00:00
|
|
|
|
|
|
|
// Restrict additions to only possible values
|
2015-07-21 20:51:32 +00:00
|
|
|
_newModes = _addModes arrayIntersect [-2,-1,0,1,2,3,4,5,6,7];
|
|
|
|
_newModes append (_currentModes - _removeModes);
|
|
|
|
|
2015-07-27 17:32:21 +00:00
|
|
|
_newModes = _newModes arrayIntersect _newModes;
|
2015-07-21 20:51:32 +00:00
|
|
|
_newModes sort true;
|
2015-07-21 19:19:54 +00:00
|
|
|
|
2015-07-21 20:51:32 +00:00
|
|
|
// Can't become an empty array
|
|
|
|
if (_newModes isEqualTo []) then {
|
2015-07-22 13:36:55 +00:00
|
|
|
["Cannot remove all vision modes (%1)", QFUNC(updateVisionModes)] call BIS_fnc_error;
|
2015-07-21 20:51:32 +00:00
|
|
|
} else {
|
|
|
|
GVAR(availableVisions) = _newModes;
|
|
|
|
};
|
2015-07-21 19:19:54 +00:00
|
|
|
|
2015-07-21 20:51:32 +00:00
|
|
|
// Update camera in case of change
|
|
|
|
if !(isNil QGVAR(camera)) then {
|
|
|
|
[] call FUNC(transitionCamera);
|
|
|
|
};
|
2015-07-21 19:19:54 +00:00
|
|
|
|
2015-07-21 20:51:32 +00:00
|
|
|
_newModes
|