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
55 lines
2.2 KiB
Plaintext
55 lines
2.2 KiB
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: commy2
|
|
* Initialized the assigned item fix.
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* call ace_common_fnc_assignedItemFix
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
ACE_isMapEnabled = getMissionConfigValue ["showMap", 1] in [true, 1];
|
|
ACE_isCompassEnabled = getMissionConfigValue ["showCompass", 1] in [true, 1];
|
|
ACE_isWatchEnabled = getMissionConfigValue ["showWatch", 1] in [true, 1];
|
|
ACE_isRadioEnabled = getMissionConfigValue ["showRadio", 1] in [true, 1];
|
|
ACE_isGPSEnabled = getMissionConfigValue ["showGPS", 1] in [true, 1];
|
|
|
|
GVAR(AssignedItems) = [];
|
|
GVAR(AssignedItemsInfo) = [];
|
|
GVAR(AssignedItemsShownItems) = [
|
|
ACE_isMapEnabled,
|
|
ACE_isCompassEnabled,
|
|
ACE_isWatchEnabled,
|
|
ACE_isRadioEnabled,
|
|
ACE_isGPSEnabled
|
|
];
|
|
|
|
["loadout", {
|
|
params ["_unit"];
|
|
|
|
private _assignedItems = getUnitLoadout _unit param [9, ["","","","","",""]]; // ["ItemMap","ItemGPS","ItemRadio","ItemCompass","ItemWatch","NVGoggles"]
|
|
|
|
GVAR(AssignedItemsShownItems) = [
|
|
!((_assignedItems select 0) isEqualTo "") && {getText (configFile >> "CfgWeapons" >> _assignedItems select 0 >> "ACE_hideItemType") != "map"},
|
|
!((_assignedItems select 3) isEqualTo "") && {getText (configFile >> "CfgWeapons" >> _assignedItems select 3 >> "ACE_hideItemType") != "compass"},
|
|
!((_assignedItems select 4) isEqualTo "") && {getText (configFile >> "CfgWeapons" >> _assignedItems select 4 >> "ACE_hideItemType") != "watch"},
|
|
!((_assignedItems select 2) isEqualTo "") && {getText (configFile >> "CfgWeapons" >> _assignedItems select 2 >> "ACE_hideItemType") != "radio"},
|
|
!((_assignedItems select 1) isEqualTo "") && {getText (configFile >> "CfgWeapons" >> _assignedItems select 1 >> "ACE_hideItemType") != "gps"}
|
|
];
|
|
|
|
GVAR(AssignedItemsShownItems) params ["_showMap", "_showCompass", "_showWatch", "_showRadio", "_showGPS"];
|
|
|
|
showMap _showMap;
|
|
showCompass _showCompass;
|
|
showWatch _showWatch;
|
|
showRadio _showRadio;
|
|
showGPS (_showGPS || {cameraOn == getConnectedUAV _unit}); //If player is activly controling a UAV, showGPS controls showing the map (m key)
|
|
}] call CBA_fnc_addPlayerEventHandler;
|