mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
e2ac18a05d
* advanced_ballistics * advanced_fatigue * advanced_throwing * ai * aircraft * arsenal * atragmx * attach * backpacks * ballistics * captives * cargo * chemlights * common * concertina_wire * cookoff * dagr * disarming * disposable * dogtags * dragging * explosives * fastroping * fcs * finger * frag * gestures * gforces * goggles * grenades * gunbag * hearing * hitreactions * huntir * interact_menu * interaction * inventory * kestrel4500 * laser * laserpointer * logistics_uavbattery * logistics_wirecutter * magazinerepack * map * map_gestures * maptools * markers * medical * medical_ai * medical_blood * medical_menu * microdagr * minedetector * missileguidance * missionmodules * mk6mortar * modules * movement * nametags * nightvision * nlaw * optics * optionsmenu * overheating * overpressure * parachute * pylons * quickmount * rangecard * rearm * recoil * refuel * reload * reloadlaunchers * repair * respawn * safemode * sandbag * scopes * slideshow * spectator * spottingscope * switchunits * tacticalladder * tagging * trenches * tripod * ui * vector * vehiclelock * vehicles * viewdistance * weaponselect * weather * winddeflection * yardage450 * zeus * arsenal defines.hpp * optionals * DEBUG_MODE_FULL 1 * DEBUG_MODE_FULL 2 * Manual fixes * Add SQF Validator check for #include after block comment * explosives fnc_openTimerUI * fix uniqueItems
190 lines
6.0 KiB
Plaintext
190 lines
6.0 KiB
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: commy2
|
|
* Handles pressing the special vector keys.
|
|
*
|
|
* Arguments:
|
|
* 0: String <STRING>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* ["5"] call ace_vector_fnc_onKeyDown
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
// set vector config settings
|
|
switch (GVAR(modeReticle)) do {
|
|
case (0): {
|
|
[false] call FUNC(adjustBrightness);
|
|
[false] call FUNC(showReticle);
|
|
};
|
|
case (1): {
|
|
[false] call FUNC(adjustBrightness);
|
|
[true] call FUNC(showReticle);
|
|
};
|
|
case (2): {
|
|
[true] call FUNC(adjustBrightness);
|
|
[true] call FUNC(showReticle);
|
|
};
|
|
};
|
|
|
|
private _fnc_setPFH = {
|
|
if (GVAR(holdKeyHandler) > -1) then {
|
|
[GVAR(holdKeyHandler)] call CBA_fnc_removePerFrameHandler;
|
|
GVAR(holdKeyHandler) = -1;
|
|
};
|
|
|
|
GVAR(currentMode) = _this;
|
|
GVAR(holdKeyHandler) = [FUNC(onKeyHold), 0, _this] call CBA_fnc_addPerFrameHandler;
|
|
};
|
|
|
|
switch (_this select 0) do {
|
|
case ("azimuth"): {
|
|
GVAR(keyDownTabCountDistance) = 0;
|
|
|
|
// handle input in option menu
|
|
if (GVAR(currentMode) == "settings") exitWith {
|
|
if (diag_tickTime < GVAR(keyDownTimeMenu) + 1) exitWith {};
|
|
|
|
if (diag_tickTime < GVAR(keyDownTimeAzimuth) + 0.5) then {
|
|
GVAR(keyDownTabCountAzimuth) = (GETGVAR(keyDownTabCountAzimuth,0)) + 1;
|
|
} else {
|
|
GVAR(keyDownTabCountAzimuth) = 1;
|
|
};
|
|
|
|
GVAR(keyDownTimeAzimuth) = diag_tickTime;
|
|
};
|
|
|
|
if (GVAR(currentMode) == "config") exitWith {
|
|
if (diag_tickTime < GVAR(keyDownTimeMenu) + 0.5) exitWith {};
|
|
|
|
["config"] call FUNC(nextMode);
|
|
};
|
|
|
|
// prevent additinal modifier input if advanced mode it set, spaghetti
|
|
if (GETGVAR(isKeyDownDistance,false) && {GETGVAR(currentMode,"") in ["relative_distance", "relative_height+length"]}) exitWith {};
|
|
|
|
["azimuth"] call FUNC(clearDisplay);
|
|
|
|
GVAR(isKeyDownAzimuth) = true;
|
|
[false] call FUNC(showP1);
|
|
|
|
// handle 5 times clicking
|
|
if (diag_tickTime < GVAR(keyDownTimeAzimuth) + 0.5) then {
|
|
GVAR(keyDownTabCountAzimuth) = (GETGVAR(keyDownTabCountAzimuth,0)) + 1;
|
|
GVAR(keyDownTimeAzimuth) = diag_tickTime;
|
|
} else {
|
|
GVAR(keyDownTabCountAzimuth) = 1;
|
|
};
|
|
|
|
// open settings menu
|
|
if (GVAR(keyDownTabCountAzimuth) == 5) exitWith {
|
|
GVAR(keyDownTimeMenu) = diag_tickTime;
|
|
GVAR(keyDownTimeAzimuth) = diag_tickTime;
|
|
GVAR(keyDownTabCountAzimuth) = 0;
|
|
GVAR(configTemp) = [GVAR(useFeet), GVAR(useMil)];
|
|
["settings"] call FUNC(showText);
|
|
"settings" call _fnc_setPFH;
|
|
};
|
|
|
|
if (diag_tickTime < GVAR(keyDownTimeAzimuth) + 0.5) exitWith {
|
|
"azimuth+inclination" call _fnc_setPFH;
|
|
};
|
|
|
|
GVAR(keyDownTimeAzimuth) = diag_tickTime;
|
|
|
|
if (diag_tickTime > GVAR(keyDownTimeDistance) + 0.5) then {
|
|
if !(GETGVAR(isKeyDownDistance,false)) then {
|
|
["distance"] call FUNC(clearDisplay);
|
|
"azimuth" call _fnc_setPFH;
|
|
};
|
|
} else {
|
|
if (GETGVAR(isKeyDownDistance,false)) then {
|
|
"azimuth+distance" call _fnc_setPFH;
|
|
} else {
|
|
["distance"] call FUNC(clearDisplay);
|
|
"azimuth" call _fnc_setPFH;
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
case ("distance"): {
|
|
GVAR(keyDownTabCountAzimuth) = 0;
|
|
|
|
// handle input in option menu
|
|
if (GVAR(currentMode) == "config") exitWith {
|
|
if (diag_tickTime < GVAR(keyDownTimeMenu) + 0.5) exitWith {};
|
|
|
|
if (diag_tickTime < GVAR(keyDownTimeDistance) + 0.5) then {
|
|
GVAR(keyDownTabCountDistance) = (GETGVAR(keyDownTabCountDistance,0)) + 1;
|
|
} else {
|
|
GVAR(keyDownTabCountDistance) = 1;
|
|
};
|
|
|
|
GVAR(keyDownTimeDistance) = diag_tickTime;
|
|
};
|
|
|
|
if (GVAR(currentMode) == "settings") exitWith {
|
|
if (diag_tickTime < GVAR(keyDownTimeMenu) + 0.5) exitWith {};
|
|
|
|
["settings"] call FUNC(nextMode);
|
|
};
|
|
|
|
// prevent additinal modifier input if advanced mode it set, spaghetti
|
|
if (GETGVAR(isKeyDownAzimuth,false) && {GETGVAR(currentMode,"") in ["relative_azimuth+distance", "fall_of_shot"]}) exitWith {};
|
|
|
|
// toggle fos values
|
|
if (GETGVAR(currentMode,"") == "fall_of_shot") exitWith {
|
|
[!(GETGVAR(FOSState,true))] call FUNC(showFallOfShot);
|
|
};
|
|
|
|
["distance"] call FUNC(clearDisplay);
|
|
|
|
GVAR(isKeyDownDistance) = true;
|
|
[false] call FUNC(showP1);
|
|
|
|
// handle 5 times clicking
|
|
if (diag_tickTime < GVAR(keyDownTimeDistance) + 0.5) then {
|
|
GVAR(keyDownTabCountDistance) = (GETGVAR(keyDownTabCountDistance,0)) + 1;
|
|
GVAR(keyDownTimeDistance) = diag_tickTime;
|
|
} else {
|
|
GVAR(keyDownTabCountDistance) = 1;
|
|
};
|
|
|
|
// open config menu
|
|
if (GVAR(keyDownTabCountDistance) == 5) exitWith {
|
|
GVAR(keyDownTimeMenu) = diag_tickTime;
|
|
GVAR(keyDownTimeDistance) = diag_tickTime;
|
|
GVAR(keyDownTabCountDistance) = 0;
|
|
GVAR(configTemp) = GVAR(modeReticle);
|
|
["config"] call FUNC(showText);
|
|
"config" call _fnc_setPFH;
|
|
};
|
|
|
|
if (diag_tickTime < GVAR(keyDownTimeDistance) + 0.5) exitWith {
|
|
"height+distance" call _fnc_setPFH;
|
|
};
|
|
|
|
GVAR(keyDownTimeDistance) = diag_tickTime;
|
|
|
|
if (diag_tickTime > GVAR(keyDownTimeAzimuth) + 0.5) then {
|
|
if !(GETGVAR(isKeyDownAzimuth,false)) then {
|
|
["azimuth"] call FUNC(clearDisplay);
|
|
"distance" call _fnc_setPFH;
|
|
};
|
|
} else {
|
|
if (GETGVAR(isKeyDownAzimuth,false)) then {
|
|
"azimuth+distance" call _fnc_setPFH;
|
|
} else {
|
|
["azimuth"] call FUNC(clearDisplay);
|
|
"distance" call _fnc_setPFH;
|
|
};
|
|
};
|
|
|
|
};
|
|
};
|