inGameUISetEventHandler: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
m (Replaced <code> with <sqf> (missed something before))
 
(111 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| arma |= Game name
|game1= arma1
|1.00|= Game version
|version1= 1.00
|eff= local|= Effects in MP
____________________________________________________________________________________________


| Sets given event handler of in-game UI. If EH function returns [[true]], performed action is overridden. Event handlers available are:
|game2= arma2
|version2= 1.00
 
|game3= arma2oa
|version3= 1.50
 
|game4= tkoh
|version4= 1.00
 
|game5= arma3
|version5= 0.50
 
|eff= local
 
|gr1= GUI Control - Event Handlers
|gr2= Event Handlers
|gr3= Interaction
 
|descr= Sets given event handler of in-game UI. If EH function returns [[true]], performed action is overridden. Event handlers available are:
* "PrevAction" - mouse scroll up
* "PrevAction" - mouse scroll up
* "Action" - action key press
* "Action" - action key press
* "NextAction" - mouse scroll down
* "NextAction" - mouse scroll down
This is "set" type EH, which means it will replace previously set EH of the same type. So to remove EH, set another one with empty string "" for the function.
In order to remove a previously added event handler, set it again with an empty ''code'' string {{hl|""}}.
<br><br>
 
Since Arma 3 v1.49.131743 this EH returns array of params for selected/activated action in ''_this'' variable:
{{Feature|important|This is a "set" command, which means event handlers are not stackable and will replace previously set event handlers of the same type.}}
* 0: [[Object]] - target object to which action is attached
 
* 1: [[Object]] - caller object, basically [[player]]
{{Feature|arma3|Since {{arma3}} v1.50 the event handler receives an array of the selected/activated action's arguments in {{hl|_this}} variable:
* 2: [[Number]] - index of the action in action menu (0 - top most)
<sqf>params ["_target", "_caller", "_index", "_engineName", "_text", "_priority", "_showWindow", "_hideOnUse", "_shortcut", "_visibleMenu", "_eventName"];</sqf>
* 3: [[String]] - engine based action name ("User" for user added actions)
* _target: [[Object]] - target object to which action is attached
* 4: [[String]] - [[localize]]d action plain text as seen by the caller
* _caller: [[Object]] - caller object, basically [[player]]
* 5: [[Number]] - action ''priority'' value
* _index: [[Number]] - index of the action in action menu (0 - top most)
* 6: [[Boolean]] - action ''showWindow'' value
* _engineName: [[String]] - engine based action name ("User" for user added actions)
* 7: [[Boolean]] - action ''hideOnUse'' value
* _text: [[String]] - [[localize]]d action plain text as seen by the caller
* 8: [[String]] - action ''shortcut'' name or ""
* _priority: [[Number]] - action ''priority'' value
* 9: [[Boolean]] - action menu visibility (on first scroll or action press the menu is still invisible, so no action is performed, only menu is shown)
* _showWindow: [[Boolean]] - action ''showWindow'' value
* 10: [[String]] - EH event name|= Description
* _hideOnUse: [[Boolean]] - action ''hideOnUse'' value
____________________________________________________________________________________________
* _shortcut: [[String]] - action ''shortcut'' name or ""
* _visibleMenu: [[Boolean]] - [[isActionMenuVisible|action menu visibility]] - on first scroll or action press the menu is still invisible, the menu is shown but no action is performed
* _eventName: [[String]] - event name
}}


| '''inGameUISetEventHandler''' [handlerName, function] |= Syntax
|s1= [[inGameUISetEventHandler]] [handlerName, code]


|p1= [handlerName, function]: [[Array]] |= Parameter 1
|p1= handlerName: [[String]]
|p2= handlerName: [[String]] |= Parameter 1
|p3= function: [[String]] |= Parameter 1


|p2= code: [[String]]


| [[Nothing]] |= Return value
|r1= [[Nothing]]


|x1= <code>[[inGameUISetEventHandler]] ["Action","hint 'Lights, Camera, Action!'; [[true]]"];</code>|= EXAMPLE1
|x1= <sqf>inGameUISetEventHandler ["Action", "hint 'Lights, Camera, Action!'; true"];
sleep 10;
inGameUISetEventHandler ["Action", ""]; // removes the "Action" EH</sqf>


|x2= <code>[[inGameUISetEventHandler]] ["PrevAction", "[[hint]] [[str]] _this; [[false]]"];
|x2= <sqf>inGameUISetEventHandler ["PrevAction", "hint str _this; false"];
[[inGameUISetEventHandler]] ["NextAction", "[[hint]] [[str]] _this; [[false]]"];
inGameUISetEventHandler ["NextAction", "hint str _this; false"];
[[inGameUISetEventHandler]] ["Action", "[[hint]] [[str]] _this; [[false]]"];</code>|= EXAMPLE2
inGameUISetEventHandler ["Action", "hint str _this; false"];</sqf>


|x3= Deny any weapon disassembly: <code>[[inGameUISetEventHandler]] ["Action", "
|x3= Deny any weapon disassembly:
[[if]] (_this [[select]] 3 == 'DisAssemble') [[then]] {
<sqf>inGameUISetEventHandler ["Action", "
[[hint]] 'You are not allowed to do this';  
if (_this select 3 == 'DisAssemble') then {
[[true]]
hint 'You are not allowed to do this';
true
}
}
"];</code>|= EXAMPLE3
"];</sqf>


|x4= Detect explosive/mine placement:<code>onMagazineUse = '
|x4= Detect explosive/mine placement:
[[params]] ["_target", "", "", "_action", "", "", "", "", "", "", "_event"];
<sqf>private _onMagazineUse = '
[[if]] (_action == "UseMagazine") [[then]] {
params ["_target", "", "", "_action", "", "", "", "", "", "", "_event"];
[[if]] (_event == "Action") [[then]] {
if (_action == "UseMagazine") then {
0 = _target [[spawn]] {
if (_event == "Action") then {
[[waitUntil]] {!(all_magazines [[isEqualTo]] [[magazines]] _this)};
_target spawn {
waitUntil {!(all_magazines isEqualTo magazines _this)};
{
{
0 = all_magazines [[deleteAt]] (all_magazines [[find]] _x);
0 = all_magazines deleteAt (all_magazines find _x);
} [[count]] [[magazines]] _this;
} count magazines _this;
[[hint]] [[format]] ["Magazine Used: %1", all_magazines [[select]] 0];
hint format ["Magazine Used: %1", all_magazines select 0];
}
};
} [[else]] {
} else {
all_magazines = [[magazines]] _target;
all_magazines = magazines _target;
};
};
};
};
[[false]]
false
';
';
[[inGameUISetEventHandler]] ["PrevAction", onMagazineUse];
inGameUISetEventHandler ["PrevAction", _onMagazineUse];
[[inGameUISetEventHandler]] ["NextAction", onMagazineUse];
inGameUISetEventHandler ["NextAction", _onMagazineUse];
[[inGameUISetEventHandler]] ["Action", onMagazineUse];</code>|= EXAMPLE4
inGameUISetEventHandler ["Action", _onMagazineUse];</sqf>
____________________________________________________________________________________________


| [[addEventHandler]], [[ctrlAddEventHandler]], [[displayAddEventHandler]] |= See also
|seealso= [[isActionMenuVisible]] [[addEventHandler]] [[ctrlAddEventHandler]] [[displayAddEventHandler]] [[actionIDs]] [[actionParams]] [[addAction]] [[setUserActionText]] [[showHUD]] [[inputAction]] [[removeAction]] [[removeAllActions]] [[action]] [[enableWeaponDisassembly]]
}}


{{Note
|user= AgentRev
|timestamp= 20160512205100
|text= In case of the "Action" event, (''_showWindow'' {{!}}{{!}} ''_visibleMenu'') also denotes if the action is performed or not. For example, if the action menu is closed or fading off, pressing Spacebar will bring it up and trigger an "Action" event; in that case, ''_visibleMenu'' is false. But if the action menu is open, and Spacebar is pressed to perform the selected action, then ''_visibleMenu'' will be true. If ''_showWindow'' is true, then it means the action was performed, regardless of ''_visibleMenu''.
}}
}}
<h3 style="display:none">Notes</h3>
<dl class="command_description">
<!-- Note Section BEGIN -->
<!-- Note Section END -->
</dl>
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands|INGAMEUISETEVENTHANDLER]]
[[Category:Scripting Commands ArmA|INGAMEUISETEVENTHANDLER]]
[[Category:Command_Group:_GUI_Control|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
<!-- CONTINUE Notes -->
<dl class="command_description">
<dd class="notedate">Posted on May 12, 2016 - 20:51 (UTC)</dd>
<dt class="note">[[User:AgentRevolution|AgentRevolution]]</dt>
<dd class="note">
In case of the "Action" event, param 9 (action menu visibility) also denotes if the action is performed or not. For example, if the action menu is closed or fading off, pressing Spacebar will bring it up and trigger an "Action" event; in that case, param 9 is false. But if the action menu is open, and Spacebar is pressed to perform the selected action, then param 9 will be true.
</dd>
</dl>
<!-- DISCONTINUE Notes -->

Latest revision as of 14:19, 14 May 2022

Hover & click on the images for description

Description

Description:
Sets given event handler of in-game UI. If EH function returns true, performed action is overridden. Event handlers available are:
  • "PrevAction" - mouse scroll up
  • "Action" - action key press
  • "NextAction" - mouse scroll down
In order to remove a previously added event handler, set it again with an empty code string "".
This is a "set" command, which means event handlers are not stackable and will replace previously set event handlers of the same type.
Arma 3
Since Arma 3 v1.50 the event handler receives an array of the selected/activated action's arguments in _this variable:

params ["_target", "_caller", "_index", "_engineName", "_text", "_priority", "_showWindow", "_hideOnUse", "_shortcut", "_visibleMenu", "_eventName"];

  • _target: Object - target object to which action is attached
  • _caller: Object - caller object, basically player
  • _index: Number - index of the action in action menu (0 - top most)
  • _engineName: String - engine based action name ("User" for user added actions)
  • _text: String - localized action plain text as seen by the caller
  • _priority: Number - action priority value
  • _showWindow: Boolean - action showWindow value
  • _hideOnUse: Boolean - action hideOnUse value
  • _shortcut: String - action shortcut name or ""
  • _visibleMenu: Boolean - action menu visibility - on first scroll or action press the menu is still invisible, the menu is shown but no action is performed
  • _eventName: String - event name
Groups:
GUI Control - Event HandlersEvent HandlersInteraction

Syntax

Syntax:
inGameUISetEventHandler [handlerName, code]
Parameters:
handlerName: String
code: String
Return Value:
Nothing

Examples

Example 1:
inGameUISetEventHandler ["Action", "hint 'Lights, Camera, Action!'; true"]; sleep 10; inGameUISetEventHandler ["Action", ""]; // removes the "Action" EH
Example 2:
inGameUISetEventHandler ["PrevAction", "hint str _this; false"]; inGameUISetEventHandler ["NextAction", "hint str _this; false"]; inGameUISetEventHandler ["Action", "hint str _this; false"];
Example 3:
Deny any weapon disassembly:
inGameUISetEventHandler ["Action", " if (_this select 3 == 'DisAssemble') then { hint 'You are not allowed to do this'; true } "];
Example 4:
Detect explosive/mine placement:
private _onMagazineUse = ' params ["_target", "", "", "_action", "", "", "", "", "", "", "_event"]; if (_action == "UseMagazine") then { if (_event == "Action") then { _target spawn { waitUntil {!(all_magazines isEqualTo magazines _this)}; { 0 = all_magazines deleteAt (all_magazines find _x); } count magazines _this; hint format ["Magazine Used: %1", all_magazines select 0]; }; } else { all_magazines = magazines _target; }; }; false '; inGameUISetEventHandler ["PrevAction", _onMagazineUse]; inGameUISetEventHandler ["NextAction", _onMagazineUse]; inGameUISetEventHandler ["Action", _onMagazineUse];

Additional Information

See also:
isActionMenuVisible addEventHandler ctrlAddEventHandler displayAddEventHandler actionIDs actionParams addAction setUserActionText showHUD inputAction removeAction removeAllActions action enableWeaponDisassembly

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
AgentRev - c
Posted on May 12, 2016 - 20:51 (UTC)
In case of the "Action" event, (_showWindow || _visibleMenu) also denotes if the action is performed or not. For example, if the action menu is closed or fading off, pressing Spacebar will bring it up and trigger an "Action" event; in that case, _visibleMenu is false. But if the action menu is open, and Spacebar is pressed to perform the selected action, then _visibleMenu will be true. If _showWindow is true, then it means the action was performed, regardless of _visibleMenu.