ACE3/addons/common/functions/fnc_addScrollWheelEventHandler.sqf

35 lines
895 B
Plaintext
Raw Normal View History

/*
* Author: commy2
* Add an event handler that executes every time the scroll wheel is used. This is needed, because adding a MouseZ display event handler to display 46 will break in save games.
2015-09-18 06:47:14 +00:00
* _this will be [Interval] where 'Interval' is a number.
*
2015-09-18 06:47:14 +00:00
* Arguments:
* 0: Code to execute <CODE, STRING>
*
2015-09-18 06:47:14 +00:00
* Return Value:
* ID of the event script (used to remove it later). <NUMBER>
*
2015-09-18 06:47:14 +00:00
* Public: Yes
*/
2015-01-13 19:56:02 +00:00
#include "script_component.hpp"
2015-09-18 06:47:14 +00:00
params ["_statement"];
if (typeName _statement == "STRING") then {
2015-09-18 06:47:14 +00:00
_statement = compile _statement;
};
2015-09-18 06:47:14 +00:00
private "_actionsVar";
_actionsVar = missionNamespace getVariable ["ACE_EventHandler_ScrollWheel", [-1, [], []]];
2015-09-18 06:47:14 +00:00
_actionsVar params ["_id", "_actionIDs", "_actions"];
_id = _id + 1;
_actionIDs pushBack _id;
_actions pushBack _statement;
missionNamespace setVariable ["ACE_EventHandler_ScrollWheel", [_id, _actionIDs, _actions]];
_id