posScreenToWorld: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - ">Posted on April ([0-9]{1})[ a-zA-Z]*, ([0-9]{4})" to ">Posted on $2-04-0$1")
 
(37 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| arma |= Game name
|game1= arma1
|version1= 1.00


|1.00|= Game version
|game2= arma2
____________________________________________________________________________________________
|version2= 1.00


| Convert screen coordinates in map to world coordinates. |= Description
|game3= arma2oa
____________________________________________________________________________________________
|version3= 1.50


| map '''posScreenToWorld''' [x, y] |= Syntax
|game4= tkoh
|version4= 1.00


|p1= map : [[Control]] |= Parameter 1
|game5= arma3
|version5= 0.50


|p2= [x, y]: [[Array]] - format [[Position2D]] |= Parameter 2
|gr1= Positions


| [[Array]] ([[Position2D]] Format) |= Return value
|descr= Converts map screen coordinates into world coordinates. Unlike [[ctrlMapScreenToWorld]], this command returns world position is format [x, y, 0], otherwise it is identical to it.
____________________________________________________________________________________________


|x1= <pre>_WorldCoord = _Control posScreenToWorld _ScreenCoord</pre> |= Example 1
|s1= map [[posScreenToWorld]] [x, y]
|x2= <pre>_WorldCoord = _Control posScreenToWorld [_x,_y]</pre> |= Example 2
_______________________________________________________________________


| [[ctrlMapScreenToWorld]], [[ctrlMapWorldToScreen]], [[posWorldToScreen]] |= See also
|p1= map: [[Control]] - map control


|p2= x: [[Number]] - screen X
|p3= y: [[Number]] - screen Y
|r1= [[Array]] - world position in format [x,y,0]
|x1= <sqf>_worldCoord = _control posScreenToWorld _ScreenCoord;</sqf>
|x2= <sqf>_worldCoord = _control posScreenToWorld [_x, _y];</sqf>
|x3= <sqf>_worldCoord = _control posScreenToWorld [0.5, 0.5];</sqf>
|seealso= [[posWorldToScreen]] [[ctrlMapScreenToWorld]] [[ctrlMapWorldToScreen]]
}}
}}


<h3 style="display:none">Notes</h3>
<dl class="command_description">
<dl class="command_description">


<!-- Note Section BEGIN -->
<dd class="notedate">Posted on 2007-04-07 - 10:03</dd>
<dd class="notedate">Posted on April 7, 2007 - 10:03
<dt class="note">[[User:LowFly|LowFly]]</dt>
<dt class="note">'''[[User:LowFly|LowFly]]'''<dd class="note">''Notes:''
<dd class="note">''Notes:''


You can get the screen coordinates by the [[User_Interface_Event_Handlers|UI Event Handlers]] onMouseButtonDown, onMouseButtonUp, onMouseButtonClick, onMouseButtonDblClick.   
You can get the screen coordinates by the [[User_Interface_Event_Handlers|UI Event Handlers]] onMouseButtonDown, onMouseButtonUp, onMouseButtonClick, onMouseButtonDblClick.   


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


<!-- Note Section END -->
</dl>
</dl>
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands|POSSCREENTOWORLD]]
[[Category:Scripting Commands ArmA|POSSCREENTOWORLD]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]

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 ctrlMapScreenToWorld, this command returns world position is format [x, y, 0], otherwise it is identical to it.
Groups:
Positions

Syntax

Syntax:
map posScreenToWorld [x, y]
Parameters:
map: Control - map control
x: Number - screen X
y: Number - screen Y
Return Value:
Array - world position in format [x,y,0]

Examples

Example 1:
_worldCoord = _control posScreenToWorld _ScreenCoord;
Example 2:
_worldCoord = _control posScreenToWorld [_x, _y];
Example 3:
_worldCoord = _control posScreenToWorld [0.5, 0.5];

Additional Information

See also:
posWorldToScreen ctrlMapScreenToWorld ctrlMapWorldToScreen

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-07 - 10:03
LowFly
Notes: 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;