ACE3/addons/spectator/functions/fnc_handleMouse.sqf

39 lines
838 B
Plaintext
Raw Normal View History

2015-07-17 15:45:16 +00:00
/*
* Author: F3 Project, Head, SilentSpike
* Processes the change in mouse position for the spectator camera
*
* Arguments:
2015-07-21 12:31:00 +00:00
* 0: Mouse x coord <NUMBER>
* 1: Mouse y coord <NUMBER>
2015-07-17 15:45:16 +00:00
*
* Return Value:
* None <NIL>
*
* Example:
2015-07-21 12:31:00 +00:00
* [0.5, 0.5] call ace_spectator_fnc_handleMouse;
2015-07-17 15:45:16 +00:00
*
* Public: No
*/
2015-07-15 11:11:19 +00:00
#include "script_component.hpp"
2015-07-18 15:59:05 +00:00
params ["_x","_y"];
private ["_leftButton","_rightButton","_oldX","_oldY","_deltaX","_deltaY"];
2015-07-15 11:11:19 +00:00
_leftButton = GVAR(mouse) select 0;
_rightButton = GVAR(mouse) select 1;
2015-07-18 15:59:05 +00:00
_oldX = GVAR(mousePos) select 0;
_oldY = GVAR(mousePos) select 1;
2015-07-15 11:11:19 +00:00
// Get change in pos
_deltaX = _oldX - _x;
_deltaY = _oldY - _y;
if (_rightButton && !_leftButton) then {
GVAR(camPan) = GVAR(camPan) - (_deltaX * 360);
GVAR(camTilt) = ((GVAR(camTilt) + (_deltaY * 180)) min 89) max -89;
};
2015-07-18 15:59:05 +00:00
GVAR(mousePos) = [_x,_y];