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
|
|
|
* Return true if the position is inside the map marker (to allow dragging).
|
|
|
|
*
|
2015-04-07 20:01:44 +00:00
|
|
|
* Arguments:
|
|
|
|
* 0: x Position (in meters) <NUMBER>
|
|
|
|
* 1: y Position (in meters) <NUMBER>
|
2015-01-11 16:42:31 +00:00
|
|
|
*
|
2016-06-18 09:50:41 +00:00
|
|
|
* Return Value:
|
2015-01-11 16:42:31 +00:00
|
|
|
* Boolean
|
|
|
|
*/
|
2015-01-15 21:50:48 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-01-16 04:30:04 +00:00
|
|
|
if (GVAR(mapTool_Shown) == 0) exitWith {false};
|
2016-06-02 19:36:25 +00:00
|
|
|
private _textureWidth = [TEXTURE_WIDTH_IN_M, TEXTURE_WIDTH_IN_M / 2] select (GVAR(mapTool_Shown) - 1);
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2016-06-02 19:36:25 +00:00
|
|
|
private _pos = [_this select 0, _this select 1, 0];
|
|
|
|
private _relPos = _pos vectorDiff [GVAR(mapTool_pos) select 0, GVAR(mapTool_pos) select 1, 0];
|
|
|
|
private _dirVector = [sin(GVAR(mapTool_angle)), cos(GVAR(mapTool_angle)), 0];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
// Projection of the relative position over the longitudinal axis of the map tool
|
2016-06-02 19:36:25 +00:00
|
|
|
private _lambdaLong = _dirVector vectorDotProduct _relPos;
|
2015-01-11 16:42:31 +00:00
|
|
|
if (_lambdaLong < DIST_BOTTOM_TO_CENTER_PERC * _textureWidth) exitWith {false};
|
|
|
|
|
|
|
|
// Projection of the relative position over the trasversal axis of the map tool
|
2016-06-02 19:36:25 +00:00
|
|
|
private _lambdaTrasAbs = vectorMagnitude (_relPos vectorDiff (_dirVector vectorMultiply _lambdaLong));
|
2015-01-11 16:42:31 +00:00
|
|
|
if (_lambdaLong > DIST_TOP_TO_CENTER_PERC * _textureWidth) exitWith {false};
|
|
|
|
if (_lambdaTrasAbs > DIST_LEFT_TO_CENTER_PERC * _textureWidth) exitWith {false};
|
|
|
|
|
|
|
|
true
|