2015-01-11 16:42:31 +00:00
|
|
|
/*
|
2015-03-24 04:18:00 +00:00
|
|
|
* Author: esteldunedain
|
2015-01-11 16:42:31 +00:00
|
|
|
* Handle mouse buttons.
|
|
|
|
*
|
2016-06-18 09:50:41 +00:00
|
|
|
* Arguments:
|
2015-01-11 16:42:31 +00:00
|
|
|
* 0: 1 if mouse down down, 0 if mouse button up (Number)
|
|
|
|
* 1: Parameters of the mouse button event
|
|
|
|
*
|
2016-06-18 09:50:41 +00:00
|
|
|
* Return Value:
|
2015-01-11 16:42:31 +00:00
|
|
|
* Boolean, true if event was handled
|
|
|
|
*/
|
2015-01-15 21:50:48 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-08-18 02:51:40 +00:00
|
|
|
params ["_dir", "_params"];
|
|
|
|
_params params ["_control", "_button", "_screenPosX", "_screenPosY", "_shiftKey", "_ctrlKey", "_altKey"];
|
2015-08-18 21:57:56 +00:00
|
|
|
TRACE_2("params",_dir,_params);
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2016-06-02 19:36:25 +00:00
|
|
|
private _handled = false;
|
2015-01-16 23:13:26 +00:00
|
|
|
|
2015-01-11 16:42:31 +00:00
|
|
|
// If it's not a left button event, exit
|
2015-08-18 02:51:40 +00:00
|
|
|
if (_button != 0) exitWith {_handled};
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
// If releasing
|
2015-08-18 21:57:56 +00:00
|
|
|
if (_dir != 1) then {
|
|
|
|
if (GVAR(mapTool_isDragging) || GVAR(mapTool_isRotating)) then {
|
|
|
|
GVAR(mapTool_isDragging) = false;
|
|
|
|
GVAR(mapTool_isRotating) = false;
|
|
|
|
_handled = true;
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
// If clicking
|
2016-06-02 19:36:25 +00:00
|
|
|
if !(call FUNC(canUseMapTools)) exitWith {};
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-04-07 19:38:35 +00:00
|
|
|
// Transform mouse screen position to coordinates
|
2016-06-02 19:36:25 +00:00
|
|
|
private _pos = _control ctrlMapScreenToWorld [_screenPosX, _screenPosY];
|
2015-04-07 19:38:35 +00:00
|
|
|
_pos set [count _pos, 0];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-04-07 19:38:35 +00:00
|
|
|
GVAR(mapTool_isDragging) = false;
|
|
|
|
GVAR(mapTool_isRotating) = false;
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-04-07 19:38:35 +00:00
|
|
|
// If no map tool marker then exit
|
2016-06-02 19:36:25 +00:00
|
|
|
if (GVAR(mapTool_Shown) == 0) exitWith {};
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-04-07 19:38:35 +00:00
|
|
|
// Check if clicking the maptool
|
|
|
|
if (_pos call FUNC(isInsideMapTool)) exitWith {
|
|
|
|
// Store data for dragging
|
|
|
|
GVAR(mapTool_startPos) = + GVAR(mapTool_pos);
|
|
|
|
GVAR(mapTool_startDragPos) = + _pos;
|
2016-06-07 16:52:28 +00:00
|
|
|
|
|
|
|
private _rotateKeyPressed = switch (GVAR(rotateModifierKey)) do {
|
|
|
|
case (1): {_altKey};
|
|
|
|
case (2): {_ctrlKey};
|
|
|
|
case (3): {_shiftKey};
|
|
|
|
default {false};
|
|
|
|
};
|
|
|
|
|
|
|
|
if (_rotateKeyPressed) then {
|
2015-04-07 19:38:35 +00:00
|
|
|
// Store data for rotating
|
|
|
|
GVAR(mapTool_startAngle) = + GVAR(mapTool_angle);
|
|
|
|
GVAR(mapTool_startDragAngle) = (180 + ((GVAR(mapTool_startDragPos) select 0) - (GVAR(mapTool_startPos) select 0)) atan2 ((GVAR(mapTool_startDragPos) select 1) - (GVAR(mapTool_startPos) select 1)) mod 360);
|
|
|
|
// Start rotating
|
|
|
|
GVAR(mapTool_isRotating) = true;
|
|
|
|
} else {
|
|
|
|
// Start dragging
|
|
|
|
GVAR(mapTool_isDragging) = true;
|
|
|
|
};
|
|
|
|
_handled = true;
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
_handled
|