ctrlMapScreenToWorld: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "Position2D" to "Position2D")
m (Text replacement - ">Posted on April ([0-9]{1})[ a-zA-Z]*, ([0-9]{4})" to ">Posted on $2-04-0$1")
 
(14 intermediate revisions by the same user not shown)
Line 30: Line 30:
|r1= [[Array]] - world coordinates in format [[Position#Introduction|Position2D]]
|r1= [[Array]] - world coordinates in format [[Position#Introduction|Position2D]]


|x1= <code>_worldCoord = _control [[ctrlMapScreenToWorld]] _ScreenCoord;</code>
|x1= <sqf>_worldCoord = _control ctrlMapScreenToWorld _ScreenCoord;</sqf>


|x2= <code>_worldCoord = _control [[ctrlMapScreenToWorld]] [_x, _y];</code>
|x2= <sqf>_worldCoord = _control ctrlMapScreenToWorld [_x, _y];</sqf>


|x3= <code>_worldCoord = [[findDisplay]] 12 [[displayCtrl]] 51 [[ctrlMapScreenToWorld]] [0.5, 0.5];</code>
|x3= <sqf>_worldCoord = findDisplay 12 displayCtrl 51 ctrlMapScreenToWorld [0.5, 0.5];</sqf>


|seealso= [[ctrlMapWorldToScreen]], [[posScreenToWorld]], [[posWorldToScreen]], [[findDisplay]], [[displayCtrl]]
|seealso= [[ctrlMapWorldToScreen]] [[posScreenToWorld]] [[posWorldToScreen]] [[findDisplay]] [[displayCtrl]]
}}
}}


Line 42: Line 42:


<dt><dt>
<dt><dt>
<dd class="notedate">Posted on April 6, 2007 - 23:41</dd>
<dd class="notedate">Posted on 2007-04-06 - 23:41</dd>
<dt class="note">[[User:LowFly|LowFly]]</dt>
<dt class="note">[[User:LowFly|LowFly]]</dt>


Line 48: Line 48:


The return Array is in 2D, you can use it with all set-position commands.
The return Array is in 2D, you can use it with all set-position commands.
<code>_x = returnArray [[select]] 0;
<sqf>_x = returnArray select 0;
_y = returnArray [[select]] 1;</code>
_y = returnArray select 1;</sqf>
</dd>
</dd>


Line 60: Line 60:


<dt><dt>
<dt><dt>
<dd class="notedate">Posted on August 28, 2017 - 0:05</dd>
<dd class="notedate">Posted on 2017-08-28 - 0:05</dd>
<dt class="note">[[User:Icaruk|Icaruk]]</dt>
<dt class="note">[[User:Icaruk|Icaruk]]</dt>
<dd class="note">
<dd class="note">
This example creates a RscMapControl and hints you the [x,y] position where you clicked.
This example creates a RscMapControl and hints you the [x,y] position where you clicked.


<code>0 spawn {
<sqf>
0 spawn {
disableSerialization;
disableSerialization;
_map = findDisplay 46 createDisplay "RscCredits" ctrlCreate ["RscMapControl", -1];
_map = findDisplay 46 createDisplay "RscCredits" ctrlCreate ["RscMapControl", -1];
_map ctrlSetPosition [0,0,1,1];
_map ctrlSetPosition [0,0,1,1];
_map ctrlCommit 0;<br>
_map ctrlCommit 0;
 
_map ctrlAddEventHandler ["mouseButtonDown", {
_map ctrlAddEventHandler ["mouseButtonDown", {
_ctrl = _this select 0;
_ctrl = _this select 0;
_x = _this select 2;
_x = _this select 2;
_y = _this select 3;<br>
_y = _this select 3;
_pos = _ctrl [[ctrlMapScreenToWorld]] [_x, _y];
 
_pos = _ctrl ctrlMapScreenToWorld [_x, _y];
hint format ["pos: %1", _pos];
hint format ["pos: %1", _pos];
}];
}];
};</code>
};
</sqf>
</dd>
</dd>


</dl>
</dl>

Latest revision as of 00:07, 14 May 2023

Hover & click on the images for description

Description

Description:
Converts map screen coordinates into world coordinates. Unlike posScreenToWorld, this command returns world position is format [x, y], otherwise it is identical to posScreenToWorld.
Groups:
GUI Control - Map

Syntax

Syntax:
control ctrlMapScreenToWorld [x, y]
Parameters:
control: Control - map control
x: Number - screen X
y: Number - screen Y
Return Value:
Array - world coordinates in format Position2D

Examples

Example 1:
_worldCoord = _control ctrlMapScreenToWorld _ScreenCoord;
Example 2:
_worldCoord = _control ctrlMapScreenToWorld [_x, _y];
Example 3:
_worldCoord = findDisplay 12 displayCtrl 51 ctrlMapScreenToWorld [0.5, 0.5];

Additional Information

See also:
ctrlMapWorldToScreen posScreenToWorld posWorldToScreen findDisplay displayCtrl

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
Posted on 2007-04-06 - 23:41
LowFly
You can get the screen coordinates by the UI Event Handlers onMouseButtonDown, onMouseButtonUp, onMouseButtonClick, onMouseButtonDblClick. The return Array is in 2D, you can use it with all set-position commands.
_x = returnArray select 0; _y = returnArray select 1;
Ceeeb
The command parameters are screen position coordinates, which may not equate to the map control's coordinates. A map control's screen coordinates and size can be found use the ctrlPosition command. This is an issue when using the Arma 3 in-game map, which is not fullscreen (all previous titles used full screen map controls, so map control coords did equate to screen coords).
Posted on 2017-08-28 - 0:05
Icaruk
This example creates a RscMapControl and hints you the [x,y] position where you clicked.
0 spawn { disableSerialization; _map = findDisplay 46 createDisplay "RscCredits" ctrlCreate ["RscMapControl", -1]; _map ctrlSetPosition [0,0,1,1]; _map ctrlCommit 0; _map ctrlAddEventHandler ["mouseButtonDown", { _ctrl = _this select 0; _x = _this select 2; _y = _this select 3; _pos = _ctrl ctrlMapScreenToWorld [_x, _y]; hint format ["pos: %1", _pos]; }]; };