diff --git a/AUTHORS.txt b/AUTHORS.txt
index caa19109a7..8c22096033 100644
--- a/AUTHORS.txt
+++ b/AUTHORS.txt
@@ -53,6 +53,7 @@ Dharma Bellamkonda
Dimaslg
Drill
Dudakov
+Dslyecxi
eRazeri
evromalarkey
F3 Project
diff --git a/README.md b/README.md
index ecbc0dd01d..a407f5a299 100644
--- a/README.md
+++ b/README.md
@@ -1,30 +1,35 @@
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-Requires the latest version of CBA A3 . Visit us on Facebook | YouTube | Twitter | Reddit
+
+
+ Requires the latest version of CBA A3 .
+ Visit us on Twitter | Facebook | YouTube | Reddit
+
**ACE3** is a joint effort by the teams behind **ACE2**, **AGM** and **CSE** to improve the realism and authenticity of Arma 3.
@@ -43,6 +48,7 @@ The mod is **built modularly**, so almost any included PBO can be easily removed
- Captivity system
- Explosives system, including different trigger types
- Map screen improvements – marker placement and map tools
+- Logistics
- Advanced missile guidance and laser designation
#### Additional features
diff --git a/addons/captives/stringtable.xml b/addons/captives/stringtable.xml
index 864fa7c437..0ab6cb457d 100644
--- a/addons/captives/stringtable.xml
+++ b/addons/captives/stringtable.xml
@@ -1,4 +1,4 @@
-
+
@@ -99,7 +99,7 @@
Cable ties that allow you to restrain prisoners.
- Kabelbinder ermöglichen es, Gefangene zu fesseln.
+ Mit Kabelbindern können Gefangene gefesselt werden.
Opaska zaciskowa pozwala na skrępowanie dłoni u więźnia.
Los precintos permiten maniatar prisioneros
Les Serflex permettent de menotter les prisonniers.
@@ -206,7 +206,7 @@
Skuwanie sojuszników
Se puede esposar el bando propio
Může spoutat spolubojovníky
- Kann Teamkollegen fesseln
+ Kann Kameraden fesseln
Pode algemar o próprio lado
Peut libérer sa propre faction
Saját oldal megbilincselhető
@@ -217,7 +217,7 @@
Czy gracze mogą skuwać sojuszników?
Pueden los jugadores esposar unidades en su propio bando
Mohou hráči spoutat jednotky na své straně
- Können Spieler eigene Einheiten fesseln
+ Spieler können eigene Einheiten fesseln.
Os jogadores podem algemar unidades do seu lado
Les joueurs peuvent utiliser les Serflex sur leur propre camp
A játékosok megkötözhetik-e a saját oldalukon lévő egységeket
@@ -239,7 +239,7 @@
Gracze mogą skapitulować po schowaniu swojej broni do kabury
Los jugadores pueden rendirse después de enfundar su arma
Hráč se může vzdát poté, co si skryje zbraň
- Spieler können kapitulieren, nachdem sie ihre Waffe geholstert haben
+ Spieler können kapitulieren, nachdem sie ihre Waffe geholstert haben.
Jogadores podem se render depois de guardar sua arma
Les joueurs peuvent se rendre après avoir rangé leur arme
A játékosok megadhatják magukat a fegyverük elrakása után
@@ -247,6 +247,7 @@
Require surrendering
+ Benötigt Kapitulation
Wymagaj kapitulacji
Requer rendição
Требовать пленения
@@ -254,6 +255,7 @@
Require Players to surrender before they can be arrested
+ Spieler müssen sich erst ergeben, bevor sie gefangen genommen werden können
Wymagaj od graczy kapitulacji zanim będzie można ich zaaresztować
Requer que jogadores se rendam antes de poderem ser presos
Требуется, чтобы игрок сдался в плен прежде, чем его можно будет связать
@@ -261,6 +263,7 @@
Surrendering only
+ Nur Ergeben
Tylko kapitulacja
Somente rendição
Только сдавшийся в плен
@@ -268,6 +271,7 @@
Surrendering or No weapon
+ Ergeben oder keine Waffe
Kapitulacja lub brak broni
Rendição ou desarmado
Сдавшийся или безоружный
diff --git a/addons/common/XEH_preInit.sqf b/addons/common/XEH_preInit.sqf
index ff06c1c3e3..e1cc807bdc 100644
--- a/addons/common/XEH_preInit.sqf
+++ b/addons/common/XEH_preInit.sqf
@@ -133,6 +133,7 @@ PREP(numberToDigitsString);
PREP(numberToString);
PREP(onAnswerRequest);
PREP(owned);
+PREP(parseList);
PREP(player);
PREP(playerSide);
PREP(positionToASL);
diff --git a/addons/common/functions/fnc_assignObjectsInList.sqf b/addons/common/functions/fnc_assignObjectsInList.sqf
index 6bbb31d2dc..a09447a43a 100644
--- a/addons/common/functions/fnc_assignObjectsInList.sqf
+++ b/addons/common/functions/fnc_assignObjectsInList.sqf
@@ -4,50 +4,41 @@
* Used by moduleAssign* within various parts of the ACE3 project.
*
* Arguments:
- * 0: list
- * 1: variableName
- * 2: value
+ * 0: List
+ * 1: Variable Name
+ * 2: Value
* 3: Global
+ * 4: Vehicle (default: false)
*
* Return Value:
- * None
+ * None
+ *
+ * Example:
+ * ["text", "variable", value, true] call ace_common_fnc_assignObjectsInList
*
* Public: No
*/
#include "script_component.hpp"
-params ["_list", "_variable", "_setting", "_global"];
+params ["_list", "_variable", "_setting", "_global", ["_vehicle", false]];
if (typeName _list == "STRING") then {
- private ["_splittedList", "_nilCheckPassedList"];
-
- _splittedList = [_list, ","] call BIS_fnc_splitString;
- _nilCheckPassedList = "";
-
- {
- _x = [_x] call FUNC(stringRemoveWhiteSpace);
- if !(isNil _x) then {
- if (_nilCheckPassedList == "") then {
- _nilCheckPassedList = _x;
- } else {
- _nilCheckPassedList = _nilCheckPassedList + ","+ _x;
- };
- };
- false
- } count _splittedList;
-
- _list = [] call compile format["[%1]",_nilCheckPassedList];
+ _list = [_list, true, true] call FUNC(parseList);
+ TRACE_1("Parsed",_list)
};
{
if (!isNil "_x") then {
if (typeName _x == typeName objNull) then {
if (local _x) then {
- _x setvariable [_variable, _setting, _global];
+ if (_vehicle) then {
+ (vehicle _x) setVariable [_variable, _setting, _global];
+ TRACE_6("Set variable vehicle",_x,vehicle _x,typeOf (vehicle _x),_variable,_setting,_global);
+ } else {
+ _x setVariable [_variable, _setting, _global];
+ TRACE_5("Set variable",_x,typeOf _x,_variable,_setting,_global);
+ };
};
};
};
- false
} count _list;
-
-true
diff --git a/addons/common/functions/fnc_parseList.sqf b/addons/common/functions/fnc_parseList.sqf
new file mode 100644
index 0000000000..ef7eaae92a
--- /dev/null
+++ b/addons/common/functions/fnc_parseList.sqf
@@ -0,0 +1,59 @@
+/*
+ * Author: Glowbal, Jonpas
+ * Makes a list from a string using comma as a delimiter, optionally trim or remove whitespace and check each for object existence.
+ *
+ * Arguments:
+ * 0: List
+ * 1: Remove or Trim Whitespace (default: false (trim))
+ * 2: Check Nil (default: false)
+ *
+ * Return Value:
+ * Parsed List
+ *
+ * Example:
+ * ["text", true, false] call ace_common_fnc_parseList
+ *
+ * Public: No
+ */
+#include "script_component.hpp"
+
+params ["_list", ["_removeWhitespace", false], ["_checkNil", false]];
+
+private ["_whitespaceList", "_nilCheckedList"];
+
+// Split using comma delimiter
+_list = _list splitString ",";
+TRACE_1("Splitted List",_list);
+
+
+// Remove or Trim Whitespace
+_whitespaceList = [];
+{
+ if (_removeWhitespace) then {
+ _whitespaceList pushBack ([_x] call FUNC(stringRemoveWhiteSpace));
+ } else {
+ _whitespaceList pushBack ([_x] call CBA_fnc_trim);
+ };
+ nil
+} count _list;
+
+_list = _whitespaceList;
+TRACE_1("Whitespace List",_list);
+
+
+// Check for object existence
+if (_checkNil) then {
+ _nilCheckedList = [];
+ {
+ if !(isNil _x) then {
+ _nilCheckedList pushBack (missionNamespace getVariable _x);
+ };
+ nil
+ } count _list;
+
+ _list = _nilCheckedList;
+};
+
+TRACE_1("Final List",_list);
+
+_list
diff --git a/addons/concertina_wire/XEH_init.sqf b/addons/concertina_wire/XEH_init.sqf
index dbce4a9b92..dc6424f172 100644
--- a/addons/concertina_wire/XEH_init.sqf
+++ b/addons/concertina_wire/XEH_init.sqf
@@ -1,4 +1,3 @@
#include "script_component.hpp"
-
-PARAMS_1(_wire);
-_wire addEventHandler ["HandleDamage", {_this call FUNC(handleDamage)}];
\ No newline at end of file
+params ["_wire"];
+_wire addEventHandler ["HandleDamage", FUNC(handleDamage)];
diff --git a/addons/concertina_wire/functions/fnc_deploy.sqf b/addons/concertina_wire/functions/fnc_deploy.sqf
index 5548cad649..aedc8b9608 100644
--- a/addons/concertina_wire/functions/fnc_deploy.sqf
+++ b/addons/concertina_wire/functions/fnc_deploy.sqf
@@ -8,10 +8,9 @@
* 1: unit
*
* Return Value:
- * Nothing
- *
- * Return value:
* None
+ *
+ * Public: No
*/
#include "script_component.hpp"
@@ -22,7 +21,7 @@ private ["_wireNoGeo", "_dir", "_pos", "_wireNoGeoPos"];
_wireNoGeo = "ACE_ConcertinaWireNoGeo" createVehicle [0,0,0];
{
_wireNoGeo animate [_x, 1];
-} foreach WIRE_FAST;
+} count WIRE_FAST;
GVAR(placer) = _unit;
_dir = getDir _unit;
@@ -37,8 +36,9 @@ deleteVehicle _wirecoil;
_unit setVariable [QGVAR(wireDeployed), false];
GVAR(deployPFH) = [{
- EXPLODE_3_PVT(_this select 0,_wireNoGeo,_wireNoGeoPos,_unit);
-
+ params ["_args", "_idPFH"];
+ _args params ["_wireNoGeo", "_wireNoGeoPos", "_unit"];
+
private ["_range", "_posStart", "_posEnd", "_dirVect", "_dir", "_anim", "_wire"];
_posStart = (_wireNoGeo modelToWorldVisual (_wireNoGeo selectionPosition "start")) call EFUNC(common,positionToASL);
_posEnd = (getPosASL _unit) vectorAdd (vectorDir _unit);
@@ -46,37 +46,38 @@ GVAR(deployPFH) = [{
_dir = _dirVect call CBA_fnc_vectDir;
_range = vectorMagnitude _dirVect;
_anim = 0 max (1 - (_range / 12));
-
+
if (!(alive _unit) || _range >= 12 || (_unit getVariable [QGVAR(wireDeployed), false])) exitWith {
_wire = "ACE_ConcertinaWire" createvehicle [0, 0, 0];
{
_wire animate [_x, _anim];
- } foreach WIRE_FAST;
-
+ } count WIRE_FAST;
+
[{
- EXPLODE_5_PVT(_this select 0,_wireNoGeo,_wire,_anim,_dir,_wireNoGeoPos);
+ params ["_args", "_idPFH"];
+ _args params ["_wireNoGeo", "_wire", "_anim", "_dir", "_wireNoGeoPos"];
if (_wire animationPhase "wire_2" == _anim) then {
deleteVehicle _wireNoGeo;
_wire setDir _dir;
_wire setPosASL _wireNoGeoPos;
- [_this select 1] call CBA_fnc_removePerFrameHandler;
+ [_idPFH] call CBA_fnc_removePerFrameHandler;
};
}, 0, [_wireNoGeo, _wire, _anim, _dir, _wireNoGeoPos]] call CBA_fnc_addPerFrameHandler;
-
+
[_unit, "DefaultAction", _unit getVariable [QGVAR(Deploy), -1]] call EFUNC(Common,removeActionEventHandler);
call EFUNC(interaction,hideMouseHint);
-
- [_this select 1] call CBA_fnc_removePerFrameHandler;
+
+ [_idPFH] call CBA_fnc_removePerFrameHandler;
};
-
+
_wireNoGeo setDir _dir;
{
_wireNoGeo animate [_x, _anim];
- } foreach WIRE_FAST;
+ } count WIRE_FAST;
}, 0, [_wireNoGeo, _wireNoGeoPos, _unit]] call CBA_fnc_addPerFrameHandler;
[localize "STR_ACE_ROLLWIRE", "", ""] call EFUNC(interaction,showMouseHint);
-
+
GVAR(placer) setVariable [QGVAR(Deploy),
[GVAR(placer), "DefaultAction",
{GVAR(deployPFH) != -1},
diff --git a/addons/concertina_wire/functions/fnc_dismount.sqf b/addons/concertina_wire/functions/fnc_dismount.sqf
index c9a5d1f9ff..c7ba3f50b1 100644
--- a/addons/concertina_wire/functions/fnc_dismount.sqf
+++ b/addons/concertina_wire/functions/fnc_dismount.sqf
@@ -8,10 +8,9 @@
* 1: unit
*
* Return Value:
- * Nothing
- *
- * Return value:
* None
+ *
+ * Public: No
*/
#include "script_component.hpp"
@@ -21,8 +20,7 @@ if (uiNamespace getVariable [QEGVAR(interact_menu,cursorMenuOpened),false]) exit
_this call FUNC(dismount);
}, _this] call EFUNC(common,execNextFrame);
};
-
-PARAMS_2(_wire,_unit);
+params ["_wire", "_unit"];
private ["_config", "_delay"];
_config = (configFile >> "CfgVehicles" >> typeOf _unit);
diff --git a/addons/concertina_wire/functions/fnc_dismountSuccess.sqf b/addons/concertina_wire/functions/fnc_dismountSuccess.sqf
index a6e34fe44f..a3f5081271 100644
--- a/addons/concertina_wire/functions/fnc_dismountSuccess.sqf
+++ b/addons/concertina_wire/functions/fnc_dismountSuccess.sqf
@@ -7,10 +7,9 @@
* 0: wire
*
* Return Value:
- * Nothing
- *
- * Return value:
* None
+ *
+ * Public: No
*/
#include "script_component.hpp"
@@ -18,25 +17,26 @@ PARAMS_1(_wire);
{
_wire animate [_x, 1];
-} foreach WIRE_FAST;
+} count WIRE_FAST;
[{
- EXPLODE_1_PVT(_this select 0,_wire);
-
+ params ["_args", "_idPFH"];
+ _args params ["_wire"];
+
if (_wire animationPhase "wire_2" == 1) then {
private ["_dir", "_pos", "_wirecoil"];
-
+
_dir = getDir _wire;
_pos = getPosASL _wire;
-
+
_wirecoil = "ACE_ConcertinaWireCoil" createvehicle [0, 0, 0];
deleteVehicle _wire;
-
+
_wirecoil setDir _dir;
_wirecoil setPosASL _pos;
_wirecoil setVelocity [0, 0, 0];
-
- [_this select 1] call CBA_fnc_removePerFrameHandler;
+
+ [_idPFH] call CBA_fnc_removePerFrameHandler;
};
}, 0, [_wire]] call CBA_fnc_addPerFrameHandler;
diff --git a/addons/concertina_wire/functions/fnc_handleDamage.sqf b/addons/concertina_wire/functions/fnc_handleDamage.sqf
index 61cd1c4e7c..43a04641dd 100644
--- a/addons/concertina_wire/functions/fnc_handleDamage.sqf
+++ b/addons/concertina_wire/functions/fnc_handleDamage.sqf
@@ -11,15 +11,12 @@
* 4: projectile
*
* Return Value:
- * Nothing
- *
- * Return value:
* None
+ *
+ * Public: No
*/
#include "script_component.hpp"
-
-PARAMS_5(_wire,_selectionName,_damage,_source,_projectile);
-
+params ["_wire", "", "_damage", "_source", ""];
if (_damage < 0.5) exitWith { 0 };
if (!(isNull _source)) then {
diff --git a/addons/concertina_wire/functions/fnc_handleKilled.sqf b/addons/concertina_wire/functions/fnc_handleKilled.sqf
index f5f84a6afa..ac59798d10 100644
--- a/addons/concertina_wire/functions/fnc_handleKilled.sqf
+++ b/addons/concertina_wire/functions/fnc_handleKilled.sqf
@@ -8,14 +8,12 @@
* 1: killer (vehicle)
*
* Return Value:
- * Nothing
- *
- * Return value:
* None
+ *
+ * Public: No
*/
#include "script_component.hpp"
-
-PARAMS_2(_wire,_killer);
+params ["_wire", "_killer"];
private ["_distance", "_vehicle"];
diff --git a/addons/concertina_wire/functions/fnc_vehicleDamage.sqf b/addons/concertina_wire/functions/fnc_vehicleDamage.sqf
index e7dff30000..41050eb9b9 100644
--- a/addons/concertina_wire/functions/fnc_vehicleDamage.sqf
+++ b/addons/concertina_wire/functions/fnc_vehicleDamage.sqf
@@ -7,14 +7,12 @@
* 1: vehicle
*
* Return Value:
- * Nothing
- *
- * Return value:
* None
+ *
+ * Public: No
*/
#include "script_component.hpp"
-
-PARAMS_2(_wire,_vehicle);
+params ["_wire", "_vehicle"];
private ["_type", "_mode", "_anim", "_parts", "_selectionPart", "_selection", "_pos_w", "_dir_w"];
@@ -43,8 +41,8 @@ _dir_w = getDir _wire;
if (_mode == 0) then {
private ["_x", "_y", "_found", "_wireCheckPosAr", "_no"];
- _x = _pos_w select 0;
- _y = _pos_w select 1;
+ _pos_w params ["_x","_y"];
+
// Check if two Single coils are placed next to each other (i.e playes have built a big wire obstacle)
_wireCheckPosAr = [
[_x + (sin (_dir_w+90) * 1.5),_y + (cos (_dir_w+90) * 1.5)],
diff --git a/addons/dragging/CfgEventHandlers.hpp b/addons/dragging/CfgEventHandlers.hpp
index 7276bc4284..6a64491e00 100644
--- a/addons/dragging/CfgEventHandlers.hpp
+++ b/addons/dragging/CfgEventHandlers.hpp
@@ -22,12 +22,7 @@ class Extended_Init_EventHandlers {
init = QUOTE(_this call DFUNC(initObject));
};
};
- class ReammoBox_F {
- class ADDON {
- init = QUOTE(_this call DFUNC(initObject));
- };
- };
- class ACE_RepairItem_Base {
+ class ThingX {
class ADDON {
init = QUOTE(_this call DFUNC(initObject));
};
diff --git a/addons/kestrel4500/XEH_preInit.sqf b/addons/kestrel4500/XEH_preInit.sqf
index 7b36167a16..b3f8ba755f 100644
--- a/addons/kestrel4500/XEH_preInit.sqf
+++ b/addons/kestrel4500/XEH_preInit.sqf
@@ -15,5 +15,6 @@ PREP(restoreUserData);
PREP(storeUserData);
PREP(updateDisplay);
PREP(updateImpellerState);
-
+PREP(updateMemory);
+PREP(dayOfWeek);
ADDON = true;
diff --git a/addons/kestrel4500/functions/fnc_buttonPressed.sqf b/addons/kestrel4500/functions/fnc_buttonPressed.sqf
index 8f38568462..83c471092a 100644
--- a/addons/kestrel4500/functions/fnc_buttonPressed.sqf
+++ b/addons/kestrel4500/functions/fnc_buttonPressed.sqf
@@ -3,10 +3,10 @@
* Handles the Kestrel 4500 dialog button actions
*
* Arguments:
- * buttonID
+ * button ID
*
* Return Value:
- * Nothing
+ * None
*
* Example:
* 2 call ace_kestrel4500_fnc_buttonPressed
diff --git a/addons/kestrel4500/functions/fnc_canShow.sqf b/addons/kestrel4500/functions/fnc_canShow.sqf
index 0c9e29f9bc..f563138f5c 100644
--- a/addons/kestrel4500/functions/fnc_canShow.sqf
+++ b/addons/kestrel4500/functions/fnc_canShow.sqf
@@ -3,13 +3,13 @@
* Tests if the Kestrel 4500 can be shown
*
* Arguments:
- * Nothing
+ * None
*
* Return Value:
- * canShow (bool)
+ * canShow
*
* Example:
- * [mode] call ace_kestrel4500_fnc_canShow
+ * call ace_kestrel4500_fnc_canShow
*
* Public: No
*/
diff --git a/addons/kestrel4500/functions/fnc_collectData.sqf b/addons/kestrel4500/functions/fnc_collectData.sqf
index 244e719b37..2e25fbcf60 100644
--- a/addons/kestrel4500/functions/fnc_collectData.sqf
+++ b/addons/kestrel4500/functions/fnc_collectData.sqf
@@ -3,18 +3,19 @@
* Gathers the weather data for the Kestrel 4500
*
* Arguments:
- * Nothing
+ * None
*
* Return Value:
- * Nothing
+ * None
*
* Example:
+ * call ace_kestrel4500_fnc_collectData
*
* Public: No
*/
#include "script_component.hpp"
-private ["_playerDir", "_playerAltitude", "_temperature", "_humidity", "_barometricPressure", "_altitude", "_airDensity", "_densityAltitude", "_chill", "_heatIndex", "_dewPoint", "_wetBulb", "_fnc_updateMemory", "_windSpeed", "_crosswind", "_headwind"];
+private ["_playerDir", "_playerAltitude", "_temperature", "_humidity", "_barometricPressure", "_altitude", "_airDensity", "_densityAltitude", "_chill", "_heatIndex", "_dewPoint", "_wetBulb", "_windSpeed", "_crosswind", "_headwind"];
_playerDir = getDir ACE_player;
_playerAltitude = (getPosASL ACE_player) select 2;
_temperature = _playerAltitude call EFUNC(weather,calculateTemperatureAtHeight);
@@ -35,25 +36,19 @@ if (isNil QGVAR(MIN) || isNil QGVAR(MAX)) then {
{
GVAR(ENTRIES) set [_x, (GVAR(ENTRIES) select _x) + 1];
-} forEach [1, 5, 6, 7, 8, 9, 10, 11, 12, 13];
+} count [1, 5, 6, 7, 8, 9, 10, 11, 12, 13];
-_fnc_updateMemory = {
- PARAMS_2(_slot,_value);
- GVAR(MIN) set [_slot, (GVAR(MIN) select _slot) min _value];
- GVAR(MAX) set [_slot, _value max (GVAR(MAX) select _slot)];
- GVAR(TOTAL) set [_slot, (GVAR(TOTAL) select _slot) + _value];
-};
-[0, _playerDir] call _fnc_updateMemory;
+[0, _playerDir] call FUNC(updateMemory);
if (GVAR(MinAvgMaxMode) == 1) then {
{
GVAR(ENTRIES) set [_x, (GVAR(ENTRIES) select _x) + 1];
- } forEach [2, 3, 4];
+ } count [2, 3, 4];
// Wind SPD
_windSpeed = call FUNC(measureWindSpeed);
- [2, _windSpeed] call _fnc_updateMemory;
+ [2, _windSpeed] call FUNC(updateMemory);
// CROSSWIND
_crosswind = 0;
@@ -62,7 +57,7 @@ if (GVAR(MinAvgMaxMode) == 1) then {
} else {
_crosswind = abs(sin(GVAR(RefHeading)) * _windSpeed);
};
- [3, _crosswind] call _fnc_updateMemory;
+ [3, _crosswind] call FUNC(updateMemory);
// HEADWIND
_headwind = 0;
@@ -80,12 +75,4 @@ if (GVAR(MinAvgMaxMode) == 1) then {
GVAR(TOTAL) set [4, (GVAR(TOTAL) select 4) + _headwind];
};
-[5, _temperature] call _fnc_updateMemory;
-[6, _chill] call _fnc_updateMemory;
-[7, _humidity] call _fnc_updateMemory;
-[8, _heatIndex] call _fnc_updateMemory;
-[9, _dewPoint] call _fnc_updateMemory;
-[10, _wetBulb] call _fnc_updateMemory;
-[11, _barometricPressure] call _fnc_updateMemory;
-[12, _altitude] call _fnc_updateMemory;
-[13, _densityAltitude] call _fnc_updateMemory;
+{ _x call FUNC(updateMemory); true } count [[5, _temperature],[6, _chill],[7, _humidity],[8, _heatIndex],[9, _dewPoint],[10, _wetBulb],[11, _barometricPressure],[12, _altitude],[13, _densityAltitude]];
diff --git a/addons/kestrel4500/functions/fnc_createKestrelDialog.sqf b/addons/kestrel4500/functions/fnc_createKestrelDialog.sqf
index 289d0825fc..a11982968c 100644
--- a/addons/kestrel4500/functions/fnc_createKestrelDialog.sqf
+++ b/addons/kestrel4500/functions/fnc_createKestrelDialog.sqf
@@ -3,12 +3,13 @@
* Opens the Kestrel 4500 dialog
*
* Arguments:
- * Nothing
+ * None
*
* Return Value:
- * Nothing
+ * None
*
* Example:
+ * call ace_kestrel4500_fnc_createKestrelDialog
*
* Public: No
*/
@@ -29,7 +30,7 @@ createDialog 'Kestrel4500_Display';
GVAR(Kestrel4500) = false;
[_this select 1] call CBA_fnc_removePerFrameHandler;
};
-
+
[] call FUNC(updateDisplay);
}, 1, _this select 0] call CBA_fnc_addPerFrameHandler;
diff --git a/addons/kestrel4500/functions/fnc_dayOfWeek.sqf b/addons/kestrel4500/functions/fnc_dayOfWeek.sqf
new file mode 100644
index 0000000000..f63a3969b0
--- /dev/null
+++ b/addons/kestrel4500/functions/fnc_dayOfWeek.sqf
@@ -0,0 +1,26 @@
+/*
+ * Author: Ruthberg
+ * Calculate Current Day in the Week
+ *
+ * Arguments:
+ * 0: Year
+ * 1: Month
+ * 2: Day
+ *
+ * Return Value:
+ * Day of The Week
+ *
+ * Example:
+ * [1995, 10, 21] call ace_kestrel4500_fnc_buttonPressed
+ *
+ * Public: No
+ */
+#include "script_component.hpp"
+private "_table";
+params ["_year", "_month", "_day"];
+
+_table = [0, 3, 2, 5, 0, 3, 5, 1, 4, 6, 2, 4];
+if (_month < 3) then {
+ _year = _year - 1;
+};
+(_year + floor(_year/4) - floor(_year/100) + floor(_year/400) + (_table select (_month - 1)) + _day) % 7
diff --git a/addons/kestrel4500/functions/fnc_displayKestrel.sqf b/addons/kestrel4500/functions/fnc_displayKestrel.sqf
index 679ecce6af..64d06fea1c 100644
--- a/addons/kestrel4500/functions/fnc_displayKestrel.sqf
+++ b/addons/kestrel4500/functions/fnc_displayKestrel.sqf
@@ -3,12 +3,13 @@
* Shows the Kestrel 4500 as rsc title
*
* Arguments:
- * Nothing
+ * None
*
* Return Value:
- * Nothing
+ * None
*
* Example:
+ * call ace_kestrel4500_fnc_displayKestrel
*
* Public: No
*/
@@ -50,49 +51,66 @@ if (GVAR(Kestrel4500) && dialog) then {
GVAR(Overlay) = true;
-[{
+[{
// abort condition
if (!GVAR(Overlay) || {!(("ACE_Kestrel4500" in (uniformItems ACE_player)) || ("ACE_Kestrel4500" in (vestItems ACE_player)))}) exitWith {
GVAR(Overlay) = false;
3 cutText ["", "PLAIN"];
[_this select 1] call CBA_fnc_removePerFrameHandler;
};
-
+
if (ACE_diagTime > GVAR(updateTimer)) then {
GVAR(updateTimer) = ACE_diagTime + 1;
-
+
private ["_outputData"];
_outputData = [] call FUNC(generateOutputData);
-
+
3 cutRsc ["RscKestrel4500", "PLAIN", 1, false];
-
- __ctrlTop ctrlSetText (_outputData select 0);
- __ctrlCenterBig ctrlSetText (_outputData select 1);
-
- __ctrlTop ctrlSetText (_outputData select 0);
- __ctrlCenterBig ctrlSetText (_outputData select 1);
- __ctrlCenter ctrlSetText (_outputData select 2);
-
- __ctrlCenterLine1Left ctrlSetText (_outputData select 3);
- __ctrlCenterLine2Left ctrlSetText (_outputData select 4);
- __ctrlCenterLine3Left ctrlSetText (_outputData select 5);
+ _outputData params [
+ "_ctrlTop",
+ "_ctrlCenterBig",
+ "_ctrlCenter",
+ "_ctrlCenterLine1Left",
+ "_ctrlCenterLine2Left",
+ "_ctrlCenterLine3Left",
+ "_ctrlCenterLine1Right",
+ "_ctrlCenterLine2Right",
+ "_ctrlCenterLine3Right",
+ "_ctrlInfoLine1",
+ "_ctrlInfoLine2",
+ "_ctrlBottomBig",
+ "_ctrlCenterLine1",
+ "_ctrlCenterLine2",
+ "_ctrlCenterLine3",
+ "_ctrlCenterLine4",
+ "_ctrlCenterLine5",
+ "_ctrlCenterLine6"
+ ];
- __ctrlCenterLine1Right ctrlSetText (_outputData select 6);
- __ctrlCenterLine2Right ctrlSetText (_outputData select 7);
- __ctrlCenterLine3Right ctrlSetText (_outputData select 8);
+ __ctrlTop ctrlSetText _ctrlTop;
+ __ctrlCenterBig ctrlSetText _ctrlCenterBig;
+ __ctrlCenter ctrlSetText _ctrlCenter;
+
+ __ctrlCenterLine1Left ctrlSetText _ctrlCenterLine1Left;
+ __ctrlCenterLine2Left ctrlSetText _ctrlCenterLine2Left;
+ __ctrlCenterLine3Left ctrlSetText _ctrlCenterLine3Left;
+
+ __ctrlCenterLine1Right ctrlSetText _ctrlCenterLine1Right;
+ __ctrlCenterLine2Right ctrlSetText _ctrlCenterLine2Right;
+ __ctrlCenterLine3Right ctrlSetText _ctrlCenterLine3Right;
+
+ __ctrlInfoLine1 ctrlSetText _ctrlInfoLine1;
+ __ctrlInfoLine2 ctrlSetText _ctrlInfoLine2;
+
+ __ctrlBottomBig ctrlSetText _ctrlBottomBig;
+
+ __ctrlCenterLine1 ctrlSetText _ctrlCenterLine1;
+ __ctrlCenterLine2 ctrlSetText _ctrlCenterLine2;
+ __ctrlCenterLine3 ctrlSetText _ctrlCenterLine3;
+ __ctrlCenterLine4 ctrlSetText _ctrlCenterLine4;
+ __ctrlCenterLine5 ctrlSetText _ctrlCenterLine5;
+ __ctrlCenterLine6 ctrlSetText _ctrlCenterLine6;
- __ctrlInfoLine1 ctrlSetText (_outputData select 9);
- __ctrlInfoLine2 ctrlSetText (_outputData select 10);
-
- __ctrlBottomBig ctrlSetText (_outputData select 11);
-
- __ctrlCenterLine1 ctrlSetText (_outputData select 12);
- __ctrlCenterLine2 ctrlSetText (_outputData select 13);
- __ctrlCenterLine3 ctrlSetText (_outputData select 14);
- __ctrlCenterLine4 ctrlSetText (_outputData select 15);
- __ctrlCenterLine5 ctrlSetText (_outputData select 16);
- __ctrlCenterLine6 ctrlSetText (_outputData select 17);
-
if (GVAR(referenceHeadingMenu) == 1) then {
if (GVAR(referenceHeadingAutoSet)) then {
__ctrlCenterLine3 ctrlSetTextColor [0, 0, 0, 0.6];
@@ -106,10 +124,10 @@ GVAR(Overlay) = true;
__ctrlCenterLine4 ctrlSetTextColor [0, 0, 0, 1.0];
};
};
-
+
call FUNC(updateImpellerState);
__ctrlKestrel4500 ctrlSetText format [QUOTE(PATHTOF(UI\Kestrel4500_%1.paa)), floor(GVAR(ImpellerState) % 7)];
-
+
}, 0.01, []] call CBA_fnc_addPerFrameHandler;
true
diff --git a/addons/kestrel4500/functions/fnc_generateOutputData.sqf b/addons/kestrel4500/functions/fnc_generateOutputData.sqf
index d61a1f48e4..016baebef7 100644
--- a/addons/kestrel4500/functions/fnc_generateOutputData.sqf
+++ b/addons/kestrel4500/functions/fnc_generateOutputData.sqf
@@ -3,12 +3,29 @@
* Generates the Kestrel 4500 output text.
*
* Arguments:
- * Nothing
+ * None
*
* Return Value:
- * [top , centerBig , CenterLine1Left , CenterLine2Left , CenterLine3Left , CenterLine1Right , CenterLine2Right , CenterLine3Right , InfoLine1 , InfoLine2 ]
+ * 0: top
+ * 1: centerBig
+ * 2: CenterLine1Left
+ * 3: CenterLine2Left
+ * 4: CenterLine3Left
+ * 5: CenterLine1Right
+ * 6: CenterLine2Right
+ * 7: CenterLine3Right
+ * 8: InfoLine1
+ * 9: InfoLine2
+ * 10: Bottom Big
+ * 11: Center Line 1
+ * 11: Center Line 2
+ * 12: Center Line 3
+ * 13: Center Line 4
+ * 14: Center Line 5
+ * 15: Center Line 6
*
* Example:
+ * _var = call ace_kestrel4500_fnc_generateOutputData
*
* Public: No
*/
@@ -16,7 +33,7 @@
if (ACE_diagTime - GVAR(headingSetDisplayTimer) < 0.8) exitWith {["", "", " Heading Set", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""]};
-private ["_playerDir", "_playerAltitude", "_temperature", "_humidity", "_barometricPressure", "_airDensity", "_densityAltitude", "_chill", "_heatIndex", "_dewPoint", "_wetBulb", "_fnc_dayOfWeek", "_dayString", "_monthString", "_windSpeed", "_windDir", "_textTop", "_textCenterBig", "_textCenter", "_textCenterLine1Left", "_textCenterLine2Left", "_textCenterLine3Left", "_textCenterLine1Right", "_textCenterLine2Right", "_textCenterLine3Right", "_textInfoLine1", "_textInfoLine2", "_textBottomBig", "_textCenterLine1", "_textCenterLine2", "_textCenterLine3", "_textCenterLine4", "_textCenterLine5", "_textCenterLine6"];
+private ["_playerDir", "_playerAltitude", "_temperature", "_humidity", "_barometricPressure", "_airDensity", "_densityAltitude", "_chill", "_heatIndex", "_dewPoint", "_wetBulb", "_dayString", "_monthString", "_windSpeed", "_windDir", "_textTop", "_textCenterBig", "_textCenter", "_textCenterLine1Left", "_textCenterLine2Left", "_textCenterLine3Left", "_textCenterLine1Right", "_textCenterLine2Right", "_textCenterLine3Right", "_textInfoLine1", "_textInfoLine2", "_textBottomBig", "_textCenterLine1", "_textCenterLine2", "_textCenterLine3", "_textCenterLine4", "_textCenterLine5", "_textCenterLine6"];
[] call FUNC(collectData);
@@ -59,19 +76,6 @@ _heatIndex = [_temperature, _humidity] call EFUNC(weather,calculateHeatIndex);
_dewPoint = [_temperature, _humidity] call EFUNC(weather,calculateDewPoint);
_wetBulb = [_temperature, _barometricPressure, _humidity] call EFUNC(weather,calculateWetBulb);
-_fnc_dayOfWeek = {
- private ["_year", "_month", "_day", "_table"];
- _year = _this select 0;
- _month = _this select 1;
- _day = _this select 2;
-
- _table = [0, 3, 2, 5, 0, 3, 5, 1, 4, 6, 2, 4];
- if (_month < 3) then {
- _year = _year - 1;
- };
- (_year + floor(_year/4) - floor(_year/100) + floor(_year/400) + (_table select (_month - 1)) + _day) % 7
-};
-
GVAR(Direction) = 4 * floor(_playerDir / 90);
if (_playerDir % 90 > 10) then { GVAR(Direction) = GVAR(Direction) + 1};
if (_playerDir % 90 > 35) then { GVAR(Direction) = GVAR(Direction) + 1};
@@ -82,8 +86,8 @@ GVAR(Direction) = GVAR(Direction) % 16;
if (GVAR(referenceHeadingMenu) == 0) then {
switch (GVAR(Menu)) do {
case 0: { // Date
- EXPLODE_3_PVT(date,_year,_month,_day);
- _dayString = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"] select (date call _fnc_dayOfWeek);
+ date params ["_year", "_month", "_day"];
+ _dayString = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"] select (date call FUNC(dayOfWeek));
_monthString = localize (["str_january","str_february","str_march","str_april","str_may","str_june","str_july","str_august","str_september","str_october","str_november","str_december"] select (_month - 1));
_textTop = _dayString;
_textCenter = format["%1 %2 %3", _day, _monthString, _year];
diff --git a/addons/kestrel4500/functions/fnc_measureWindSpeed.sqf b/addons/kestrel4500/functions/fnc_measureWindSpeed.sqf
index 73b4e228d6..2a8a4bbbb3 100644
--- a/addons/kestrel4500/functions/fnc_measureWindSpeed.sqf
+++ b/addons/kestrel4500/functions/fnc_measureWindSpeed.sqf
@@ -3,12 +3,13 @@
* Measures the wind speed, stores the information in GVAR(MeasuredWindSpeed) and updates GVAR(ImpellerState)
*
* Arguments:
- * Nothing
+ * None
*
* Return Value:
* wind speed
*
* Example:
+ * call ace_kestrel4500_fnc_canShow
*
* Public: No
*/
diff --git a/addons/kestrel4500/functions/fnc_onCloseDialog.sqf b/addons/kestrel4500/functions/fnc_onCloseDialog.sqf
index a45a9decc3..2474f30d94 100644
--- a/addons/kestrel4500/functions/fnc_onCloseDialog.sqf
+++ b/addons/kestrel4500/functions/fnc_onCloseDialog.sqf
@@ -1,3 +1,18 @@
+/*
+ * Author: Ruthberg
+ * Called if Kestrel Dialog is closed
+ *
+ * Arguments:
+ * None
+ *
+ * Return Value:
+ * None
+ *
+ * Example:
+ * call ace_kestrel4500_fnc_onCloseDialog
+ *
+ * Public: No
+ */
#include "script_component.hpp"
uiNamespace setVariable ['Kestrel4500_Display', nil];
diff --git a/addons/kestrel4500/functions/fnc_onCloseDisplay.sqf b/addons/kestrel4500/functions/fnc_onCloseDisplay.sqf
index efb60b322a..bdc701ddb1 100644
--- a/addons/kestrel4500/functions/fnc_onCloseDisplay.sqf
+++ b/addons/kestrel4500/functions/fnc_onCloseDisplay.sqf
@@ -1,3 +1,18 @@
+/*
+ * Author: Ruthberg
+ * Called if Kestrel Display is closed
+ *
+ * Arguments:
+ * None
+ *
+ * Return Value:
+ * None
+ *
+ * Example:
+ * call ace_kestrel4500_fnc_onCloseDisplay
+ *
+ * Public: No
+ */
#include "script_component.hpp"
uiNamespace setVariable ['RscKestrel4500', nil];
diff --git a/addons/kestrel4500/functions/fnc_restoreUserData.sqf b/addons/kestrel4500/functions/fnc_restoreUserData.sqf
index 0ce463ad67..c1d9c0ebb3 100644
--- a/addons/kestrel4500/functions/fnc_restoreUserData.sqf
+++ b/addons/kestrel4500/functions/fnc_restoreUserData.sqf
@@ -6,7 +6,7 @@
* Nothing
*
* Return Value:
- * Nothing
+ * None
*
* Example:
* call ace_kestrel4500_fnc_restore_user_data
diff --git a/addons/kestrel4500/functions/fnc_storeUserData.sqf b/addons/kestrel4500/functions/fnc_storeUserData.sqf
index a5d069b31d..80fa219a3c 100644
--- a/addons/kestrel4500/functions/fnc_storeUserData.sqf
+++ b/addons/kestrel4500/functions/fnc_storeUserData.sqf
@@ -3,10 +3,10 @@
* Saves user data into profileNamespace
*
* Arguments:
- * Nothing
+ * None
*
* Return Value:
- * Nothing
+ * None
*
* Example:
* call ace_kestrel4500_fnc_store_user_data
diff --git a/addons/kestrel4500/functions/fnc_updateDisplay.sqf b/addons/kestrel4500/functions/fnc_updateDisplay.sqf
index 90f77f5f6a..e63b18bcfc 100644
--- a/addons/kestrel4500/functions/fnc_updateDisplay.sqf
+++ b/addons/kestrel4500/functions/fnc_updateDisplay.sqf
@@ -3,10 +3,10 @@
* Updates the Kestrel 4500 dialog text boxes.
*
* Arguments:
- * Nothing
+ * None
*
* Return Value:
- * Nothing
+ * None
*
* Example:
*
@@ -22,29 +22,9 @@ private ["_outputData"];
_outputData = [] call FUNC(generateOutputData);
-ctrlSetText [74100, _outputData select 0];
-ctrlSetText [74200, _outputData select 1];
-ctrlSetText [74201, _outputData select 2];
-
-ctrlSetText [74300, _outputData select 3];
-ctrlSetText [74301, _outputData select 4];
-ctrlSetText [74302, _outputData select 5];
-
-ctrlSetText [74303, _outputData select 6];
-ctrlSetText [74304, _outputData select 7];
-ctrlSetText [74305, _outputData select 8];
-
-ctrlSetText [74400, _outputData select 9];
-ctrlSetText [74401, _outputData select 10];
-
-ctrlSetText [74500, _outputData select 11];
-
-ctrlSetText [74600, _outputData select 12];
-ctrlSetText [74601, _outputData select 13];
-ctrlSetText [74602, _outputData select 14];
-ctrlSetText [74603, _outputData select 15];
-ctrlSetText [74604, _outputData select 16];
-ctrlSetText [74605, _outputData select 17];
+{
+ ctrlSetText [_x , _outputData select _foreachindex];
+} forEach [74100, 74200, 74201, 74300, 74301, 74302, 74303, 74304, 74305, 74400, 74401, 74500, 74600, 74601, 74602, 74603, 74604, 74605];
if (GVAR(referenceHeadingMenu) == 1) then {
if (GVAR(referenceHeadingAutoSet)) then {
diff --git a/addons/kestrel4500/functions/fnc_updateImpellerState.sqf b/addons/kestrel4500/functions/fnc_updateImpellerState.sqf
index 075ed80080..75a0d10f4c 100644
--- a/addons/kestrel4500/functions/fnc_updateImpellerState.sqf
+++ b/addons/kestrel4500/functions/fnc_updateImpellerState.sqf
@@ -3,10 +3,10 @@
* Updates the Kestrel 4500 Impeller state
*
* Arguments:
- * Nothing
+ * None
*
* Return Value:
- * Nothing
+ * None
*
* Example:
*
diff --git a/addons/kestrel4500/functions/fnc_updateMemory.sqf b/addons/kestrel4500/functions/fnc_updateMemory.sqf
new file mode 100644
index 0000000000..c393aee14f
--- /dev/null
+++ b/addons/kestrel4500/functions/fnc_updateMemory.sqf
@@ -0,0 +1,21 @@
+/*
+ * Author: Ruthberg
+ * Update Memory of Kestrel
+ *
+ * Arguments:
+ * 0: Slot
+ * 1: Value
+ *
+ * Return Value:
+ * None
+ *
+ * Example:
+ * [1, "test"] call ace_kestrel4500_fnc_updateMemory
+ *
+ * Public: No
+ */
+#include "script_component.hpp"
+params ["_slot", "_value"];
+GVAR(MIN) set [_slot, (GVAR(MIN) select _slot) min _value];
+GVAR(MAX) set [_slot, _value max (GVAR(MAX) select _slot)];
+GVAR(TOTAL) set [_slot, (GVAR(TOTAL) select _slot) + _value];
diff --git a/addons/kestrel4500/functions/script_component.hpp b/addons/kestrel4500/functions/script_component.hpp
index 32c774cd89..bc42218de7 100644
--- a/addons/kestrel4500/functions/script_component.hpp
+++ b/addons/kestrel4500/functions/script_component.hpp
@@ -1 +1 @@
-#include "\z\ace\addons\kestrel4500\script_component.hpp"
\ No newline at end of file
+#include "\z\ace\addons\kestrel4500\script_component.hpp"
diff --git a/addons/map/ACE_Settings.hpp b/addons/map/ACE_Settings.hpp
index 4e2a5d5706..c0d2718c1f 100644
--- a/addons/map/ACE_Settings.hpp
+++ b/addons/map/ACE_Settings.hpp
@@ -2,33 +2,55 @@ class ACE_Settings {
class GVAR(BFT_Interval) {
value = 1.0;
typeName = "SCALAR";
+ displayName = CSTRING(BFT_Interval_DisplayName);
+ description = CSTRING(BFT_Interval_Description);
};
class GVAR(BFT_Enabled) {
value = 0;
typeName = "BOOL";
+ displayName = CSTRING(BFT_Enabled_DisplayName);
+ description = CSTRING(BFT_Enabled_Description);
};
class GVAR(BFT_HideAiGroups) {
value = 0;
typeName = "BOOL";
+ displayName = CSTRING(BFT_HideAiGroups_DisplayName);
+ description = CSTRING(BFT_HideAiGroups_Description);
};
class GVAR(mapIllumination) {
value = 1;
typeName = "BOOL";
+ displayName = CSTRING(MapIllumination_DisplayName);
+ description = CSTRING(MapIllumination_Description);
};
class GVAR(mapGlow) {
value = 1;
typeName = "BOOL";
+ displayName = CSTRING(MapGlow_DisplayName);
+ description = CSTRING(MapGlow_Description);
};
class GVAR(mapShake) {
value = 1;
typeName = "BOOL";
+ displayName = CSTRING(MapShake_DisplayName);
+ description = CSTRING(MapShake_Description);
};
class GVAR(mapLimitZoom) {
value = 0;
typeName = "BOOL";
+ displayName = CSTRING(MapLimitZoom_DisplayName);
+ description = CSTRING(MapLimitZoom_Description);
};
class GVAR(mapShowCursorCoordinates) {
value = 0;
typeName = "BOOL";
+ displayName = CSTRING(MapShowCursorCoordinates_DisplayName);
+ description = CSTRING(MapShowCursorCoordinates_Description);
+ };
+ class GVAR(DefaultChannel) {
+ value = -1;
+ typeName = "SCALAR";
+ displayName = CSTRING(DefaultChannel_DisplayName);
+ description = CSTRING(DefaultChannel_Description);
};
};
diff --git a/addons/map/CfgVehicles.hpp b/addons/map/CfgVehicles.hpp
index 5f471c3fbb..6aab03f3b7 100644
--- a/addons/map/CfgVehicles.hpp
+++ b/addons/map/CfgVehicles.hpp
@@ -55,6 +55,20 @@ class CfgVehicles {
typeName = "BOOL";
defaultValue = 0;
};
+ class DefaultChannel {
+ displayName = CSTRING(DefaultChannel_DisplayName);
+ description = CSTRING(DefaultChannel_Description);
+ typeName = "NUMBER";
+ class values {
+ class disable {name = ECSTRING(common,Disabled); value = -1; default = 1;};
+ class global {name = "$STR_channel_global"; value = 0;};
+ class side {name = "$STR_channel_side"; value = 1;};
+ class command {name = "$STR_channel_command"; value = 2;};
+ class group {name = "$STR_channel_group"; value = 3;};
+ class vehicle {name = "$STR_channel_vehicle"; value = 4;};
+ class direct {name = "$STR_channel_direct"; value = 5;};
+ };
+ };
};
class ModuleDescription {
description = CSTRING(Module_Description);
diff --git a/addons/map/XEH_postInitClient.sqf b/addons/map/XEH_postInitClient.sqf
index 41f7155bd0..e5398536f6 100644
--- a/addons/map/XEH_postInitClient.sqf
+++ b/addons/map/XEH_postInitClient.sqf
@@ -56,6 +56,21 @@ call FUNC(determineZoom);
}, 0] call CBA_fnc_addPerFrameHandler;
["SettingsInitialized", {
+ if (isMultiplayer && {GVAR(DefaultChannel) != -1}) then {
+ //Set the chat channel once the map has finished loading
+ [{
+ if ((isNull findDisplay 37) && {isNull findDisplay 52} && {isNull findDisplay 53} && {isNull findDisplay 12}) exitWith {};
+ [_this select 1] call CBA_fnc_removePerFrameHandler;
+
+ setCurrentChannel GVAR(DefaultChannel);
+ if (currentChannel == GVAR(DefaultChannel)) then {
+ // ACE_LOGINFO_1("Channel Set - %1", currentChannel);
+ } else {
+ ACE_LOGERROR_2("Failed To Set Channel %1 (is %2)", GVAR(DefaultChannel), currentChannel);
+ };
+ }, 0, []] call CBA_fnc_addPerFrameHandler;
+ };
+
// Start Blue Force Tracking if Enabled
if (GVAR(BFT_Enabled)) then {
GVAR(BFT_markers) = [];
diff --git a/addons/map/functions/fnc_moduleMap.sqf b/addons/map/functions/fnc_moduleMap.sqf
index b7db6996d6..605c15127e 100644
--- a/addons/map/functions/fnc_moduleMap.sqf
+++ b/addons/map/functions/fnc_moduleMap.sqf
@@ -13,7 +13,7 @@
if !(isServer) exitWith {};
-params ["_logic", "_units", "_activated"];
+params ["_logic", "", "_activated"];
if !(_activated) exitWith {};
@@ -22,5 +22,6 @@ if !(_activated) exitWith {};
[_logic, QGVAR(mapShake), "MapShake" ] call EFUNC(common,readSettingFromModule);
[_logic, QGVAR(mapLimitZoom), "MapLimitZoom" ] call EFUNC(common,readSettingFromModule);
[_logic, QGVAR(mapShowCursorCoordinates), "MapShowCursorCoordinates"] call EFUNC(common,readSettingFromModule);
+[_logic, QGVAR(DefaultChannel), "DefaultChannel" ] call EFUNC(common,readSettingFromModule);
ACE_LOGINFO("Map Module Initialized.");
diff --git a/addons/map/stringtable.xml b/addons/map/stringtable.xml
index 103e66dd27..4617c1be29 100644
--- a/addons/map/stringtable.xml
+++ b/addons/map/stringtable.xml
@@ -280,5 +280,13 @@
Desativar %1
Деактивировать %1
+
+ Set Channel At Start
+ Ust. domyślny kanał
+
+
+ Change the starting marker channel at mission start
+ Ustaw domyślny kanał dla markerów przy starcie misji
+
\ No newline at end of file
diff --git a/addons/map_gestures/$PBOPREFIX$ b/addons/map_gestures/$PBOPREFIX$
new file mode 100644
index 0000000000..8672ea58f4
--- /dev/null
+++ b/addons/map_gestures/$PBOPREFIX$
@@ -0,0 +1 @@
+z\ace\addons\map_gestures
diff --git a/addons/map_gestures/ACE_Settings.hpp b/addons/map_gestures/ACE_Settings.hpp
new file mode 100644
index 0000000000..0038027e3b
--- /dev/null
+++ b/addons/map_gestures/ACE_Settings.hpp
@@ -0,0 +1,61 @@
+class ACE_Settings {
+ class GVAR(enabled) {
+ displayName = CSTRING(enabled_displayName);
+ description = CSTRING(enabled_description);
+ category = CSTRING(mapGestures_category);
+ typeName = "BOOL";
+ value = 1;
+ };
+ class GVAR(maxRange) {
+ displayName = CSTRING(maxRange_displayName);
+ description = CSTRING(maxRange_description);
+ category = CSTRING(mapGestures_category);
+ typeName = "SCALAR";
+ value = 7;
+ };
+ class GVAR(interval) {
+ displayName = CSTRING(interval_displayName);
+ description = CSTRING(interval_description);
+ category = CSTRING(mapGestures_category);
+ typeName = "SCALAR";
+ value = 0.03;
+ };
+ class GVAR(nameTextColor) {
+ displayName = CSTRING(nameTextColor_displayName);
+ description = CSTRING(nameTextColor_description);
+ category = CSTRING(mapGestures_category);
+ isClientSettable = 1;
+ typeName = "COLOR";
+ value[] = {0.2, 0.2, 0.2, 0.3};
+ };
+ class GVAR(defaultLeadColor) {
+ displayName = CSTRING(defaultLeadColor_displayName);
+ description = CSTRING(defaultLeadColor_description);
+ category = CSTRING(mapGestures_category);
+ isClientSettable = 1;
+ typeName = "COLOR";
+ value[] = {1, 0.88, 0, 0.95};
+ };
+ class GVAR(defaultColor) {
+ displayName = CSTRING(defaultColor_displayName);
+ description = CSTRING(defaultColor_description);
+ category = CSTRING(mapGestures_category);
+ isClientSettable = 1;
+ typeName = "COLOR";
+ value[] = {1, 0.88, 0, 0.7};
+ };
+ class GVAR(GroupColorConfigurations) {
+ displayName = CSTRING(GroupColorConfigurations_displayName);
+ description = CSTRING(GroupColorConfigurations_description);
+ category = CSTRING(mapGestures_category);
+ typeName = "ARRAY";
+ value[] = {};
+ };
+ class GVAR(GroupColorConfigurationMapping) {
+ displayName = CSTRING(GroupColorConfigurationMapping_displayName);
+ description = CSTRING(GroupColorConfigurationMapping_description);
+ category = CSTRING(mapGestures_category);
+ typeName = "ARRAY";
+ value[] = {{}, {}};
+ };
+};
diff --git a/addons/map_gestures/CfgEventHandlers.hpp b/addons/map_gestures/CfgEventHandlers.hpp
new file mode 100644
index 0000000000..7e0c8d2ce3
--- /dev/null
+++ b/addons/map_gestures/CfgEventHandlers.hpp
@@ -0,0 +1,12 @@
+class Extended_PreInit_EventHandlers {
+ class ADDON {
+ init = QUOTE(call COMPILE_FILE(XEH_preInit));
+ };
+};
+
+class Extended_PostInit_EventHandlers {
+ class ADDON {
+ init = QUOTE(call COMPILE_FILE(XEH_postInit));
+ serverInit = QUOTE(call COMPILE_FILE(XEH_serverPostInit));
+ };
+};
diff --git a/addons/map_gestures/CfgVehicles.hpp b/addons/map_gestures/CfgVehicles.hpp
new file mode 100644
index 0000000000..f5c2ae8f38
--- /dev/null
+++ b/addons/map_gestures/CfgVehicles.hpp
@@ -0,0 +1,66 @@
+class CfgVehicles {
+ class ACE_Module;
+ class GVAR(moduleSettings): ACE_Module {
+ scope = 2;
+ category = "ACE";
+ displayName = CSTRING(moduleSettings_displayName);
+ function = QFUNC(moduleSettings);
+ isGlobal = 0;
+ author = ECSTRING(common,ACETeam);
+ icon = PATHTOF(ui\icon_module_map_gestures_ca.paa);
+ class Arguments {
+ class enabled {
+ displayName = CSTRING(enabled_DisplayName);
+ typeName = "BOOL";
+ defaultValue = 1;
+ };
+ class maxRange {
+ displayName = CSTRING(maxRange_displayName);
+ description = CSTRING(maxRange_description);
+ typeName = "NUMBER";
+ defaultValue = 4;
+ };
+ class interval {
+ displayName = CSTRING(interval_displayName);
+ description = CSTRING(interval_description);
+ typeName = "NUMBER";
+ defaultValue = 0.03;
+ };
+ class defaultLeadColor {
+ displayName = CSTRING(defaultLeadColor_displayName);
+ description = CSTRING(defaultLeadColor_description);
+ typeName = "STRING";
+ defaultValue = "0,0,0,0";
+ };
+ class defaultColor {
+ displayName = CSTRING(defaultColor_displayName);
+ description = CSTRING(defaultColor_description);
+ typeName = "STRING";
+ defaultValue = "0,0,0,0";
+ };
+ };
+ };
+ class GVAR(moduleGroupSettings): ACE_Module {
+ scope = 2;
+ category = "ACE";
+ displayName = CSTRING(moduleGroupSettings_displayName);
+ function = QFUNC(moduleGroupSettings);
+ isGlobal = 0;
+ author = ECSTRING(common,ACETeam);
+ icon = PATHTOF(ui\icon_module_map_gestures_ca.paa);
+ class Arguments {
+ class leadColor {
+ displayName = CSTRING(leadColor_displayName);
+ description = CSTRING(leadColor_description);
+ typeName = "STRING";
+ defaultValue = "0,0,0,0";
+ };
+ class color {
+ displayName = CSTRING(color_displayName);
+ description = CSTRING(color_description);
+ typeName = "STRING";
+ defaultValue = "0,0,0,0";
+ };
+ };
+ };
+};
diff --git a/addons/map_gestures/XEH_postInit.sqf b/addons/map_gestures/XEH_postInit.sqf
new file mode 100644
index 0000000000..777463e86a
--- /dev/null
+++ b/addons/map_gestures/XEH_postInit.sqf
@@ -0,0 +1,16 @@
+#include "script_component.hpp"
+
+if (!hasInterface) exitWith {};
+
+["SettingsInitialized", {
+ [{
+ if (isNull (findDisplay 12)) exitWith {};
+
+ params ["", "_pfhId"];
+
+ call FUNC(receiverInit);
+ call FUNC(transmitterInit);
+
+ [_pfhId] call CBA_fnc_removePerFrameHandler;
+ }, 1, []] call CBA_fnc_addPerFrameHandler;
+}] call EFUNC(common,addEventHandler);
diff --git a/addons/map_gestures/XEH_preInit.sqf b/addons/map_gestures/XEH_preInit.sqf
new file mode 100644
index 0000000000..8154106fd6
--- /dev/null
+++ b/addons/map_gestures/XEH_preInit.sqf
@@ -0,0 +1,17 @@
+#include "script_component.hpp"
+
+ADDON = false;
+
+PREP(assignClientIDOnServer);
+PREP(drawMapGestures);
+PREP(endTransmit);
+PREP(getProximityPlayers);
+PREP(initTransmit);
+PREP(isValidColorArray);
+PREP(moduleGroupSettings);
+PREP(moduleSettings);
+PREP(receiverInit);
+PREP(transmit);
+PREP(transmitterInit);
+
+ADDON = true;
diff --git a/addons/map_gestures/XEH_serverPostInit.sqf b/addons/map_gestures/XEH_serverPostInit.sqf
new file mode 100644
index 0000000000..bde1cdc55b
--- /dev/null
+++ b/addons/map_gestures/XEH_serverPostInit.sqf
@@ -0,0 +1,3 @@
+#include "script_component.hpp"
+
+[EVENT_PLAYER_HAS_NO_OWNER_ID, FUNC(assignClientIDOnServer)] call EFUNC(common,addEventHandler);
diff --git a/addons/map_gestures/config.cpp b/addons/map_gestures/config.cpp
new file mode 100644
index 0000000000..72e7f82078
--- /dev/null
+++ b/addons/map_gestures/config.cpp
@@ -0,0 +1,17 @@
+#include "script_component.hpp"
+
+class CfgPatches {
+ class ADDON {
+ units[] = {};
+ weapons[] = {};
+ requiredVersion = REQUIRED_VERSION;
+ requiredAddons[] = {"ace_common"};
+ author[] = {"Dslyecxi", "MikeMatrix"};
+ authorUrl = "https://github.com/MikeMatrix";
+ VERSION_CONFIG;
+ };
+};
+
+#include "ACE_Settings.hpp"
+#include "CfgEventHandlers.hpp"
+#include "CfgVehicles.hpp"
diff --git a/addons/map_gestures/functions/fnc_assignClientIDOnServer.sqf b/addons/map_gestures/functions/fnc_assignClientIDOnServer.sqf
new file mode 100644
index 0000000000..92b1e95ab5
--- /dev/null
+++ b/addons/map_gestures/functions/fnc_assignClientIDOnServer.sqf
@@ -0,0 +1,24 @@
+/*
+ * Author: Dslyecxi, MikeMatrix
+ * Assign readable client ID to unit on the server.
+ *
+ * Arguments:
+ * 0: Unit name
+ *
+ * Return Value:
+ * None
+ *
+ * Example:
+ * ["MikeMatrix"] call ace_map_gestures_fnc_assignClientIDOnServer
+ *
+ * Public: No
+ */
+#include "script_component.hpp"
+
+params ["_unitName"];
+
+{
+ if (name _x == _unitName) exitWith {
+ _x setVariable [QGVAR(owner_id), owner _x, true];
+ };
+} count playableUnits;
diff --git a/addons/map_gestures/functions/fnc_drawMapGestures.sqf b/addons/map_gestures/functions/fnc_drawMapGestures.sqf
new file mode 100644
index 0000000000..b369686501
--- /dev/null
+++ b/addons/map_gestures/functions/fnc_drawMapGestures.sqf
@@ -0,0 +1,61 @@
+/*
+ * Author: Dslyecxi, MikeMatrix
+ * Receives and draws map gestures from nearby players.
+ *
+ * Arguments:
+ * 0: Map Handle
+ *
+ * Return Value:
+ * None
+ *
+ * Example:
+ * [findDisplay 12 displayCtrl 51] call ace_map_gesutres_fnc_drawMapGestures
+ *
+ * Public: No
+ */
+#include "script_component.hpp"
+
+#define ICON_RENDER_SIZE 55
+#define ICON_TEXT_ALIGN "left"
+#define ICON_ANGLE 0
+#define ICON_SHADOW 1
+#define TEXT_FONT "PuristaBold"
+#define TEXT_ICON_RENDER_SIZE 20
+#define TEXT_SIZE 0.030
+#define TEXT_SHADOW 0
+
+if (!GVAR(enabled) || !visibleMap) exitWith {};
+
+private["_color", "_drawPosVariableName", "_group", "_grpName", "_pos", "_unitUID"];
+
+params ["_mapHandle"];
+
+// Iterate over all nearby players and render their pointer if player is transmitting.
+{
+ // Data variable name for unit
+ _unitUID = getPlayerUID _x;
+ _drawPosVariableName = if (!isNil "_unitUID" && _unitUID != "") then {format [QGVAR(%1_DrawPos), _unitUID]} else {nil};
+
+ if (!isNil "_drawPosVariableName") then {
+ if (isNil {missionNamespace getVariable _drawPosVariableName}) then {missionNamespace setVariable [_drawPosVariableName, [1, 1, 1]];};
+ _pos = missionNamespace getVariable _drawPosVariableName;
+
+ // Only render if the unit is alive and transmitting
+ if (alive _x && {_x getVariable QGVAR(Transmit)}) then {
+ _group = group _x;
+ _grpName = groupID _group;
+
+ // If color settings for the group exist, then use those, otherwise fall back to the default colors
+ _color = if (HASH_HASKEY(GVAR(GroupColorConfigurationMapping),_grpName)) then {
+ (GVAR(GroupColorConfigurations) select (HASH_GET(GVAR(GroupColorConfigurationMapping),_grpName))) select (_x != leader _group)
+ } else {
+ if (_x == leader _group) then {GVAR(defaultLeadColor)} else {GVAR(defaultColor)};
+ };
+
+ // Render icon and player name
+ _mapHandle drawIcon ["\a3\ui_f\data\gui\cfg\Hints\icon_text\group_1_ca.paa", _color, _pos, ICON_RENDER_SIZE, ICON_RENDER_SIZE, ICON_ANGLE, "", ICON_SHADOW, TEXT_SIZE, TEXT_FONT, ICON_TEXT_ALIGN];
+ _mapHandle drawIcon ["#(argb,8,8,3)color(0,0,0,0)", GVAR(nameTextColor), _pos, TEXT_ICON_RENDER_SIZE, TEXT_ICON_RENDER_SIZE, ICON_ANGLE, name _x, TEXT_SHADOW, TEXT_SIZE, TEXT_FONT, ICON_TEXT_ALIGN];
+ };
+ };
+ nil
+} count ([ACE_player, GVAR(maxRange)] call FUNC(getProximityPlayers));
diff --git a/addons/map_gestures/functions/fnc_endTransmit.sqf b/addons/map_gestures/functions/fnc_endTransmit.sqf
new file mode 100644
index 0000000000..fc3e0e81e1
--- /dev/null
+++ b/addons/map_gestures/functions/fnc_endTransmit.sqf
@@ -0,0 +1,21 @@
+/*
+ * Author: Dslyecxi, MikeMatrix
+ * Ensure that all variables used to indicate transmission are disabled.
+ *
+ * Arguments:
+ * None
+ *
+ * Return Value:
+ * None
+ *
+ * Example:
+ * [] call ace_map_gestures_fnc_endTransmit
+ *
+ * Public: No
+ */
+#include "script_component.hpp"
+
+if (!GVAR(enabled)) exitWith {};
+
+ACE_player setVariable [QGVAR(Transmit), false, true];
+GVAR(EnableTransmit) = false;
diff --git a/addons/map_gestures/functions/fnc_getProximityPlayers.sqf b/addons/map_gestures/functions/fnc_getProximityPlayers.sqf
new file mode 100644
index 0000000000..dded0b1273
--- /dev/null
+++ b/addons/map_gestures/functions/fnc_getProximityPlayers.sqf
@@ -0,0 +1,26 @@
+/*
+ * Author: Dslyecxi, MikeMatrix
+ * Returns all players in a given range and in the units vehicle.
+ *
+ * Arguments:
+ * 0: Unit
+ * 1: Range
+ *
+ * Return Value:
+ * All units in proximity
+ *
+ * Example:
+ * ["example value"] call ace_module_fnc_functionName
+ *
+ * Public: No
+ */
+#include "script_component.hpp"
+
+private "_proximityPlayers";
+
+params ["_unit", "_range"];
+
+_proximityPlayers = (getPos _unit) nearEntities [["CAMAnBase"], _range];
+_proximityPlayers deleteAt (_proximityPlayers find _unit);
+_proximityPlayers append (crew vehicle _unit);
+_proximityPlayers
diff --git a/addons/map_gestures/functions/fnc_initTransmit.sqf b/addons/map_gestures/functions/fnc_initTransmit.sqf
new file mode 100644
index 0000000000..604bf9e233
--- /dev/null
+++ b/addons/map_gestures/functions/fnc_initTransmit.sqf
@@ -0,0 +1,21 @@
+/*
+ * Author: Dslyecxi, MikeMatrix
+ * Initializes transmitting map gestures.
+ *
+ * Arguments:
+ * None
+ *
+ * Return Value:
+ * None
+ *
+ * Example:
+ * [] call ace_map_gestures_fnc_initTransmit
+ *
+ * Public: No
+ */
+#include "script_component.hpp"
+
+if (!GVAR(enabled)) exitWith {};
+
+GVAR(EnableTransmit) = true;
+[FUNC(transmit), GVAR(interval), []] call CBA_fnc_addPerFrameHandler;
diff --git a/addons/map_gestures/functions/fnc_isValidColorArray.sqf b/addons/map_gestures/functions/fnc_isValidColorArray.sqf
new file mode 100644
index 0000000000..809bbaf117
--- /dev/null
+++ b/addons/map_gestures/functions/fnc_isValidColorArray.sqf
@@ -0,0 +1,30 @@
+/*
+ * Author: MikeMatrix
+ * Validate if an array is in the propper color format.
+ *
+ * Arguments:
+ * 0: Color Array
+ *
+ * Return Value:
+ * Is valid Color Array
+ *
+ * Example:
+ * [[1, 0.2, 1, 0.5]] call ace_map_gestures_fnc_isValidColorArray
+ *
+ * Public: No
+ */
+#include "script_component.hpp"
+
+scopeName "main";
+
+params ["_colorArray"];
+
+if (isNil "_colorArray") exitWith {false};
+if ((typeName _colorArray) != "ARRAY") exitWith {false};
+if (count _colorArray != 4) exitWith {false};
+
+{
+ if ((typeName _x) != "SCALAR" || _x < 0 || _x > 1) exitWith {false breakOut "main"};
+} count _colorArray;
+
+true
diff --git a/addons/map_gestures/functions/fnc_moduleGroupSettings.sqf b/addons/map_gestures/functions/fnc_moduleGroupSettings.sqf
new file mode 100644
index 0000000000..9c21bf867d
--- /dev/null
+++ b/addons/map_gestures/functions/fnc_moduleGroupSettings.sqf
@@ -0,0 +1,45 @@
+/*
+ * Author: Dslyecxi, MikeMatrix
+ * Initializes Settings for the groups modules and transcodes settings to a useable format.
+ *
+ * Arguments:
+ * 0: Logic
+ * 1: Units
+ * 2: Activated
+ *
+ * Return Value:
+ * None
+ *
+ * Example:
+ * [module, [player], true] call ace_map_gestures_fnc_moduleGroupSettings
+ *
+ * Public: No
+ */
+#include "script_component.hpp"
+
+private ["_color", "_configurationGroupMappings", "_configurationIndex", "_configurations", "_leadColor"];
+
+params ["_logic", "_units", "_activated"];
+
+if (!_activated || !isServer) exitWith {};
+
+// Transcode string setting into usable array. Example: "1,1,1,1" -> [1, 1, 1, 1]
+_leadColor = call compile ("[" + (_logic getVariable ["leadColor", ""]) + "]");
+if (!([_leadColor] call FUNC(isValidColorArray))) exitWith {ERROR("leadColor is not a valid color array.")};
+_color = call compile ("[" + (_logic getVariable ["color", ""]) + "]");
+if (!([_color] call FUNC(isValidColorArray))) exitWith {ERROR("color is not a valid color array.")};
+
+// If we already have color configurations from another source, use those, otherwise use default.
+_configurations = if (isNil QGVAR(GroupColorConfigurations)) then { [] } else { +GVAR(GroupColorConfigurations) };
+_configurationGroupMappings = if(isNil QGVAR(GroupColorConfigurationMapping)) then { HASH_CREATE } else { +GVAR(GroupColorConfigurationMapping) };
+
+// Save custom color configuration and keep the index of the entry.
+_configurationIndex = _configurations pushBack [_leadColor, _color];
+
+// Add all synchronized groups and reference custom configuration for them
+{
+ HASH_SET(_configurationGroupMappings,groupID (group _x),_configurationIndex);
+} count _units;
+
+[QGVAR(GroupColorConfigurations), _configurations, false, true] call EFUNC(common,setSetting);
+[QGVAR(GroupColorConfigurationMapping), _configurationGroupMappings, false, true] call EFUNC(common,setSetting);
diff --git a/addons/map_gestures/functions/fnc_moduleSettings.sqf b/addons/map_gestures/functions/fnc_moduleSettings.sqf
new file mode 100644
index 0000000000..99583074fc
--- /dev/null
+++ b/addons/map_gestures/functions/fnc_moduleSettings.sqf
@@ -0,0 +1,37 @@
+/*
+ * Author: Dslyecxi, MikeMatrix
+ * Initializes Settings for the module and transcodes settings to a useable format.
+ *
+ * Arguments:
+ * 0: Logic
+ * 1: Units
+ * 2: Activated
+ *
+ * Return Value:
+ * None
+ *
+ * Example:
+ * [module, [player], true] call ace_map_gestures_fnc_moduleGroupSettings
+ *
+ * Public: No
+ */
+#include "script_component.hpp"
+
+private ["_defaultColor", "_defaultLeadColor"];
+
+params ["_logic", "", "_activated"];
+
+if (!_activated || !isServer) exitWith {};
+
+[_logic, QGVAR(enabled), "enabled"] call EFUNC(common,readSettingFromModule);
+[_logic, QGVAR(maxRange), "maxRange"] call EFUNC(common,readSettingFromModule);
+[_logic, QGVAR(interval), "interval"] call EFUNC(common,readSettingFromModule);
+
+_defaultLeadColor = call compile ("[" + (_logic getVariable ["defaultLeadColor", ""]) + "]");
+if (!([_defaultLeadColor] call FUNC(isValidColorArray))) exitWith {ERROR("defaultLeadColor is not a valid color array.")};
+
+_defaultColor = call compile ("[" + (_logic getVariable ["defaultColor", ""]) + "]");
+if (!([_defaultColor] call FUNC(isValidColorArray))) exitWith {ERROR("defaultColor is not a valid color array.")};
+
+[QGVAR(defaultLeadColor), _defaultLeadColor, false, true] call EFUNC(common,setSetting);
+[QGVAR(defaultColor), _defaultColor, false, true] call EFUNC(common,setSetting);
diff --git a/addons/map_gestures/functions/fnc_receiverInit.sqf b/addons/map_gestures/functions/fnc_receiverInit.sqf
new file mode 100644
index 0000000000..b132dad1d7
--- /dev/null
+++ b/addons/map_gestures/functions/fnc_receiverInit.sqf
@@ -0,0 +1,25 @@
+/*
+ * Author: Dslyecxi, MikeMatrix
+ * Initializes the receiver and hooks it to the Draw event of the map.
+ *
+ * Arguments:
+ * None
+ *
+ * Return Value:
+ * None
+ *
+ * Example:
+ * [] call ace_map_gestures_fnc_receiverInit
+ *
+ * Public: No
+ */
+#include "script_component.hpp"
+
+ACE_player setVariable [QGVAR(Transmit), false, true];
+GVAR(EnableTransmit) = false;
+
+if (!isNil QGVAR(DrawMapHandlerID)) then {
+ (findDisplay 12 displayCtrl 51) ctrlRemoveEventHandler ["Draw", GVAR(DrawMapHandlerID)];
+ GVAR(DrawMapHandlerID) = nil;
+};
+GVAR(DrawMapHandlerID) = findDisplay 12 displayCtrl 51 ctrlAddEventHandler ["Draw", FUNC(drawMapGestures)];
diff --git a/addons/map_gestures/functions/fnc_transmit.sqf b/addons/map_gestures/functions/fnc_transmit.sqf
new file mode 100644
index 0000000000..c9dc487db2
--- /dev/null
+++ b/addons/map_gestures/functions/fnc_transmit.sqf
@@ -0,0 +1,45 @@
+/*
+ * Author: Dslyecxi, MikeMatrix
+ * Transmit PFH
+ *
+ * Arguments:
+ * 0: Arguments
+ * 1: PFH ID
+ *
+ * Return Value:
+ * Return description
+ *
+ * Example:
+ * [[], 2] call ace_map_gestures_fnc_transmit
+ *
+ * Public: No
+ */
+#include "script_component.hpp"
+
+private ["_ownerID", "_unitUID", "_drawPosVariableName", "_playerOwnerID"];
+
+params ["", "_pfhId"];
+
+if (!visibleMap) then {
+ call FUNC(endTransmit);
+};
+
+if (!GVAR(EnableTransmit) || !visibleMap) exitWith {
+ [_pfhId] call CBA_fnc_removePerFrameHandler;
+};
+
+{
+ _ownerID = _x getVariable QGVAR(owner_id);
+ if (isNil "_ownerID") then {
+ [EVENT_PLAYER_HAS_NO_OWNER_ID, [name _x]] call EFUNC(common,serverEvent);
+ } else {
+ _playerOwnerID = ACE_player getVariable QGVAR(owner_id);
+ if (!isNil "_playerOwnerID" && _ownerID != _playerOwnerID) then {
+ _unitUID = getPlayerUID ACE_Player;
+ _drawPosVariableName = if (!isNil "_unitUID" && _unitUID != "") then {format [QGVAR(%1_DrawPos), _unitUID]} else {nil};
+ if (!isNil "_drawPosVariableName") then {
+ _ownerID publicVariableClient _drawPosVariableName;
+ };
+ };
+ };
+} count ([ACE_player, GVAR(maxRange)] call FUNC(getProximityPlayers));
diff --git a/addons/map_gestures/functions/fnc_transmitterInit.sqf b/addons/map_gestures/functions/fnc_transmitterInit.sqf
new file mode 100644
index 0000000000..897855dc00
--- /dev/null
+++ b/addons/map_gestures/functions/fnc_transmitterInit.sqf
@@ -0,0 +1,70 @@
+/*
+ * Author: Dslyecxi, MikeMatrix
+ * Initializes the transmitting event handlers.
+ *
+ * Arguments:
+ * None
+ *
+ * Return Value:
+ * None
+ *
+ * Example:
+ * [] call ace_map_gestures_fnc_transmitterInit
+ *
+ * Public: No
+ */
+#include "script_component.hpp"
+
+private ["_mapCtrl", "_unitUID", "_drawPosVariableName"];
+
+disableSerialization;
+
+_mapCtrl = findDisplay 12 displayCtrl 51;
+
+// MouseMoving EH.
+if (!isNil QGVAR(MouseMoveHandlerID)) then {
+ _mapCtrl ctrlRemoveEventHandler ["MouseMoving", GVAR(MouseMoveHandlerID)];
+ GVAR(MouseMoveHandlerID) = nil;
+};
+GVAR(MouseMoveHandlerID) = _mapCtrl ctrlAddEventHandler ["MouseMoving", {
+ // Don't transmit any data if we're using the map tools
+ if (!GVAR(EnableTransmit) || EGVAR(maptools,drawing_isDrawing) || EGVAR(maptools,mapTool_isDragging) || EGVAR(maptools,mapTool_isRotating)) exitWith {};
+
+ params ["_control", "_posX", "_posY"];
+
+ if (!(ACE_player getVariable QGVAR(Transmit))) then {
+ ACE_player setVariable [QGVAR(Transmit), true, true];
+ };
+
+ _unitUID = getPlayerUID ACE_player;
+ _drawPosVariableName = if (!isNil "_unitUID" && _unitUID != "") then {format [QGVAR(%1_DrawPos), _unitUID]} else {nil};
+ if (!isNil "_drawPosVariableName") then {
+ missionNamespace setVariable [_drawPosVariableName, _control ctrlMapScreenToWorld [_posX, _posY]];
+ };
+}];
+
+// MouseDown EH
+if (!isNil QGVAR(MouseDownHandlerID)) then {
+ _mapCtrl ctrlRemoveEventHandler ["MouseButtonDown",GVAR(MouseDownHandlerID)];
+ GVAR(MouseDownHandlerID) = nil;
+};
+GVAR(MouseDownHandlerID) = _mapCtrl ctrlAddEventHandler ["MouseButtonDown", {
+ if (!GVAR(enabled)) exitWith {};
+
+ params ["", "_button"];
+
+ if (_button == 0) then {call FUNC(initTransmit);};
+}];
+
+// MouseUp EH
+if (!isNil QGVAR(MouseUpHandlerID)) then {
+ _mapCtrl ctrlRemoveEventHandler ["MouseButtonUp", GVAR(MouseUpHandlerID)];
+ GVAR(MouseUpHandlerID) = nil;
+};
+GVAR(MouseUpHandlerID) = _mapCtrl ctrlAddEventHandler ["MouseButtonUp", {
+ if (!GVAR(enabled)) exitWith {};
+
+ params ["", "_button"];
+
+ if (_button == 0) then {call FUNC(endTransmit);};
+}];
diff --git a/addons/map_gestures/functions/script_component.hpp b/addons/map_gestures/functions/script_component.hpp
new file mode 100644
index 0000000000..65841c15f9
--- /dev/null
+++ b/addons/map_gestures/functions/script_component.hpp
@@ -0,0 +1 @@
+#include "\z\ace\addons\map_gestures\script_component.hpp"
diff --git a/addons/map_gestures/script_component.hpp b/addons/map_gestures/script_component.hpp
new file mode 100644
index 0000000000..1a5ecada12
--- /dev/null
+++ b/addons/map_gestures/script_component.hpp
@@ -0,0 +1,14 @@
+#define COMPONENT map_gestures
+#include "\z\ace\addons\main\script_mod.hpp"
+
+#ifdef DEBUG_ENABLED_MAP_GESTURES
+ #define DEBUG_MODE_FULL
+#endif
+
+#ifdef DEBUG_SETTINGS_MAP_GESTURES
+ #define DEBUG_SETTINGS DEBUG_SETTINGS_MAP_GESTURES
+#endif
+
+#include "\z\ace\addons\main\script_macros.hpp"
+
+#define EVENT_PLAYER_HAS_NO_OWNER_ID "PlayerNameHasNoOwnerID"
diff --git a/addons/map_gestures/stringtable.xml b/addons/map_gestures/stringtable.xml
new file mode 100644
index 0000000000..e5eab426a3
--- /dev/null
+++ b/addons/map_gestures/stringtable.xml
@@ -0,0 +1,98 @@
+
+
+
+
+ Map Gestures
+
+
+ Enabled
+
+
+ Map Gesture Max Range
+
+
+ Max range between players to show the map gesture indicator [default: 7 meters]
+
+
+ Lead Default Alpha
+
+
+ Fallback Alpha value for group leaders.
+
+
+ Default Alpha
+
+
+ Fallback Alpha value.
+
+
+ Lead Default Color
+
+
+ Fallback Color value for group leaders.
+
+
+ Default Color
+
+
+ Fallback Color value.
+
+
+ Lead Alpha
+
+
+ Alpha value for group leaders of groups synced with this module.
+
+
+ Alpha
+
+
+ Alpha value for group members of groups synced with this module.
+
+
+ Lead Color
+
+
+ Color value for group leaders of groups synced with this module.
+
+
+ Color
+
+
+ Color value for group members of groups synced with this module.
+
+
+ Map Gestures - Group Settings
+
+
+ Update Interval
+
+
+ Time between data updates.
+
+
+ Group color configurations
+
+
+ Group color configuration containing arrays of color pairs ([leadColor, color]).
+
+
+ Hash of Group ID mapped to the Group color configuration index.
+
+
+ GroupID Color configuration mapping
+
+
+ Enables the Map Gestures.
+
+
+ Name Text Color
+
+
+ Color of the name tag text besides the map gestures mark.
+
+
+ Map Gestures
+
+
+
diff --git a/addons/map_gestures/ui/icon_module_map_gestures_ca.paa b/addons/map_gestures/ui/icon_module_map_gestures_ca.paa
new file mode 100644
index 0000000000..2d2bcbdf07
Binary files /dev/null and b/addons/map_gestures/ui/icon_module_map_gestures_ca.paa differ
diff --git a/addons/medical/functions/fnc_moduleAssignMedicRoles.sqf b/addons/medical/functions/fnc_moduleAssignMedicRoles.sqf
index e295c55a2e..92814ed052 100644
--- a/addons/medical/functions/fnc_moduleAssignMedicRoles.sqf
+++ b/addons/medical/functions/fnc_moduleAssignMedicRoles.sqf
@@ -1,61 +1,26 @@
/*
* Author: Glowbal
- * Assign a medical role to a unit
+ * Assign a medical role to a unit.
*
* Arguments:
- * 0: The module logic
- * 1: units
- * 2: activated
+ * 0: The module logic
+ * 1: Synchronized units
+ * 2: Activated
*
* Return Value:
* None
*
* Public: No
*/
-
#include "script_component.hpp"
-private ["_setting", "_objects", "_list", "_splittedList", "_nilCheckPassedList", "_parsedList"];
-params [["_logic", objNull, [objNull]]];
+params ["_logic"];
if (!isNull _logic) then {
- _list = _logic getvariable ["EnableList",""];
+ private ["_list", "_setting"];
+ _list = _logic getVariable ["EnableList", ""];
+ _setting = _logic getVariable ["role", 0];
- _splittedList = [_list, ","] call BIS_fnc_splitString;
- _nilCheckPassedList = "";
- {
- _x = [_x] call EFUNC(common,stringRemoveWhiteSpace);
- if !(isnil _x) then {
- if (_nilCheckPassedList == "") then {
- _nilCheckPassedList = _x;
- } else {
- _nilCheckPassedList = _nilCheckPassedList + ","+ _x;
- };
- };
- } foreach _splittedList;
-
- _list = "[" + _nilCheckPassedList + "]";
- _parsedList = [] call compile _list;
- _setting = _logic getvariable ["role",0];
- _objects = synchronizedObjects _logic;
- if (!(_objects isEqualTo []) && _parsedList isEqualTo []) then {
- {
- if (!isnil "_x") then {
- if (typeName _x == typeName objNull) then {
- if (local _x) then {
- _x setvariable [QGVAR(medicClass), _setting, true];
- };
- };
- };
- } foreach _objects;
- };
- {
- if (!isnil "_x") then {
- if (typeName _x == typeName objNull) then {
- if (local _x) then {
- _x setvariable [QGVAR(medicClass), _setting, true];
- };
- };
- };
- } foreach _parsedList;
- };
+ [_list, QGVAR(medicClass), _setting, true] call EFUNC(common,assignObjectsInList);
+ [synchronizedObjects _logic, QGVAR(medicClass), _setting, true] call EFUNC(common,assignObjectsInList);
+};
diff --git a/addons/medical/functions/fnc_moduleAssignMedicalVehicle.sqf b/addons/medical/functions/fnc_moduleAssignMedicalVehicle.sqf
index 8481aaf293..2bc6d3a332 100644
--- a/addons/medical/functions/fnc_moduleAssignMedicalVehicle.sqf
+++ b/addons/medical/functions/fnc_moduleAssignMedicalVehicle.sqf
@@ -1,11 +1,11 @@
/*
* Author: Glowbal
- * Assign vehicle as a medical vehicle
+ * Assign vehicle as a medical vehicle.
*
* Arguments:
- * 0: The module logic
- * 1: units
- * 2: activated
+ * 0: The module logic
+ * 1: Synchronized units
+ * 2: Activated
*
* Return Value:
* None
@@ -14,50 +14,13 @@
*/
#include "script_component.hpp"
-private ["_setting", "_objects", "_list", "_splittedList", "_nilCheckPassedList", "_parsedList", "_xVehicle"];
-params [["_logic", objNull, [objNull]]];
+params ["_logic"];
if (!isNull _logic) then {
- _list = _logic getvariable ["EnableList",""];
+ private ["_list", "_setting"];
+ _list = _logic getVariable ["EnableList", ""];
+ _setting = _logic getVariable ["enabled", 0];
- _splittedList = [_list, ","] call BIS_fnc_splitString;
- _nilCheckPassedList = "";
- {
- _x = [_x] call EFUNC(common,stringRemoveWhiteSpace);
- if !(isnil _x) then {
- if (_nilCheckPassedList == "") then {
- _nilCheckPassedList = _x;
- } else {
- _nilCheckPassedList = _nilCheckPassedList + ","+ _x;
- };
- };
- } foreach _splittedList;
-
- _list = "[" + _nilCheckPassedList + "]";
- _parsedList = [] call compile _list;
- _setting = _logic getvariable ["enabled", 0];
- _objects = synchronizedObjects _logic;
- if (!(_objects isEqualTo []) && _parsedList isEqualTo []) then {
- {
- if (!isnil "_x") then {
- if (typeName _x == typeName objNull) then {
- if (local _x) then {
- _xVehicle = vehicle _x;
- TRACE_3("setting medical vehicle", _x, _xVehicle, (typeOf _xVehicle));
- _xVehicle setvariable [QGVAR(medicClass), _setting, true];
- };
- };
- };
- } foreach _objects;
- };
- {
- if (!isnil "_x") then {
- if (typeName _x == typeName objNull) then {
- if (local _x) then {
- TRACE_2("setting medical vehicle", _x, (typeOf _x));
- _x setvariable [QGVAR(medicClass), _setting, true];
- };
- };
- };
- } foreach _parsedList;
+ [_list, QGVAR(medicClass), _setting, true] call EFUNC(common,assignObjectsInList);
+ [synchronizedObjects _logic, QGVAR(medicClass), _setting, true, true] call EFUNC(common,assignObjectsInList);
};
diff --git a/addons/missileguidance/functions/fnc_seekerType_Optic.sqf b/addons/missileguidance/functions/fnc_seekerType_Optic.sqf
index 872f33a917..1cc71c1d94 100644
--- a/addons/missileguidance/functions/fnc_seekerType_Optic.sqf
+++ b/addons/missileguidance/functions/fnc_seekerType_Optic.sqf
@@ -17,7 +17,7 @@ TRACE_1("", _launchParams);
// TODO:: Make sure the missile maintains LOS
_foundTargetPos = [0,0,0];
if(!isNil "_target") then {
- _foundTargetPos = getPosASL _target;
+ _foundTargetPos = aimPos _target ;
//_foundTargetPos = (_target modelToWorldVisual (getCenterOfMass _target));
};
@@ -48,4 +48,4 @@ if(!_angleOkay || !_losOkay) then {
};
-_foundTargetPos;
\ No newline at end of file
+_foundTargetPos;
diff --git a/addons/repair/functions/fnc_moduleAddSpareParts.sqf b/addons/repair/functions/fnc_moduleAddSpareParts.sqf
index 46689951a7..cceb62e10c 100644
--- a/addons/repair/functions/fnc_moduleAddSpareParts.sqf
+++ b/addons/repair/functions/fnc_moduleAddSpareParts.sqf
@@ -11,51 +11,35 @@
* None
*
* Example:
- * function = "ace_repair_fnc_moduleAssignRepairVehicle"
+ * function = "ace_repair_fnc_moduleAddSpareParts"
*
* Public: No
*/
-#define DEBUG_MODE_FULL
#include "script_component.hpp"
params ["_logic"];
if (!isNull _logic) then {
- private ["_list", "_part", "_amount", "_nilCheckPassedList"];
- // Module settings
+ private ["_list", "_part", "_amount"];
_list = _logic getVariable ["List", ""];
_part = _logic getVariable ["Part", 0];
_amount = _logic getVariable ["Amount", 1];
// Parse list
- _nilCheckPassedList = "";
- {
- _x = [_x] call EFUNC(common,stringRemoveWhiteSpace);
- if !(isnil _x) then {
- if (_nilCheckPassedList == "") then {
- _nilCheckPassedList = _x;
- } else {
- _nilCheckPassedList = _nilCheckPassedList + "," + _x;
- };
- };
- } forEach ([_list, ","] call BIS_fnc_splitString);
- _list = "[" + _nilCheckPassedList + "]";
- _list = [] call compile _list;
+ _list = [_list, true, true] call EFUNC(common,parseList);
// Add synchronized objects to list
{
_list pushBack _x;
- } forEach (synchronizedObjects _logic);
+ nil
+ } count (synchronizedObjects _logic);
if (_list isEqualTo []) exitWith {};
- TRACE_3("module info parsed",_list,_part,_amount);
+ TRACE_3("Module info parsed",_list,_part,_amount);
+
// Add spare parts
{
- if (!isNil "_x" && {typeName _x == typeName objNull}) then {
- [_x, _amount, _part, true] call FUNC(addSpareParts);
- };
- } forEach _list;
+ [_x, _amount, _part, true] call FUNC(addSpareParts);
+ } count _list;
};
-
-true
diff --git a/addons/repair/functions/fnc_moduleAssignEngineer.sqf b/addons/repair/functions/fnc_moduleAssignEngineer.sqf
index 9fb9ed8431..240a8c3b62 100644
--- a/addons/repair/functions/fnc_moduleAssignEngineer.sqf
+++ b/addons/repair/functions/fnc_moduleAssignEngineer.sqf
@@ -21,11 +21,9 @@ params ["_logic"];
if (!isNull _logic) then {
private ["_list", "_setting"];
- _list = _logic getVariable ["EnableList",""];
- _setting = _logic getVariable ["role",0];
+ _list = _logic getVariable ["EnableList", ""];
+ _setting = _logic getVariable ["role", 0];
[_list, "ACE_IsEngineer", _setting, true] call EFUNC(common,assignObjectsInList);
[synchronizedObjects _logic, "ACE_IsEngineer", _setting, true] call EFUNC(common,assignObjectsInList);
- };
-
-true
+};
diff --git a/addons/repair/functions/fnc_moduleAssignRepairFacility.sqf b/addons/repair/functions/fnc_moduleAssignRepairFacility.sqf
index 00cb847866..7150d0226b 100644
--- a/addons/repair/functions/fnc_moduleAssignRepairFacility.sqf
+++ b/addons/repair/functions/fnc_moduleAssignRepairFacility.sqf
@@ -21,11 +21,9 @@ params ["_logic"];
if (!isNull _logic) then {
private ["_list", "_setting"];
- _list = _logic getVariable ["EnableList",""];
- _setting = _logic getVariable ["role",0];
+ _list = _logic getVariable ["EnableList", ""];
+ _setting = _logic getVariable ["role", 0];
[_list, "ACE_isRepairFacility", _setting, true] call EFUNC(common,assignObjectsInList);
[synchronizedObjects _logic, "ACE_isRepairFacility", _setting, true] call EFUNC(common,assignObjectsInList);
};
-
-true
diff --git a/addons/repair/functions/fnc_moduleAssignRepairVehicle.sqf b/addons/repair/functions/fnc_moduleAssignRepairVehicle.sqf
index 69d2a2c52f..647b5fe52c 100644
--- a/addons/repair/functions/fnc_moduleAssignRepairVehicle.sqf
+++ b/addons/repair/functions/fnc_moduleAssignRepairVehicle.sqf
@@ -21,11 +21,9 @@ params ["_logic"];
if (!isNull _logic) then {
private ["_list", "_setting"];
- _list = _logic getVariable ["EnableList",""];
- _setting = _logic getVariable ["role",0];
+ _list = _logic getVariable ["EnableList", ""];
+ _setting = _logic getVariable ["role", 0];
[_list, "ACE_isRepairVehicle", _setting, true] call EFUNC(common,assignObjectsInList);
[synchronizedObjects _logic, "ACE_isRepairVehicle", _setting, true] call EFUNC(common,assignObjectsInList);
- };
-
-true
+};
diff --git a/addons/sitting/CfgEventHandlers.hpp b/addons/sitting/CfgEventHandlers.hpp
index 1e804e8cc9..3481fa1fb5 100644
--- a/addons/sitting/CfgEventHandlers.hpp
+++ b/addons/sitting/CfgEventHandlers.hpp
@@ -17,3 +17,12 @@ class Extended_Killed_EventHandlers {
};
};
};
+
+// Need initPost or there are problems with setVariable
+class Extended_InitPost_EventHandlers {
+ class ThingX {
+ class ADDON {
+ init = QUOTE(_this call DFUNC(addSitActions));
+ };
+ };
+};
diff --git a/addons/sitting/CfgVehicles.hpp b/addons/sitting/CfgVehicles.hpp
index a156d5e87e..4ac0d0edb7 100644
--- a/addons/sitting/CfgVehicles.hpp
+++ b/addons/sitting/CfgVehicles.hpp
@@ -34,79 +34,67 @@ class CfgVehicles {
};
};
- #define MACRO_SEAT_ACTION \
- class ACE_Actions { \
- class ACE_MainActions { \
- displayName = ECSTRING(interaction,MainAction); \
- selection = ""; \
- distance = 1.5; \
- condition = "true"; \
- class GVAR(Sit) { \
- displayName = CSTRING(Sit); \
- condition = QUOTE(_this call FUNC(canSit)); \
- statement = QUOTE(_this call FUNC(sit)); \
- showDisabled = 0; \
- priority = 0; \
- icon = PATHTOF(UI\sit_ca.paa); \
- }; \
- }; \
- };
-
class ThingX;
// Folding Chair
class Land_CampingChair_V1_F: ThingX {
XEH_ENABLED;
- MACRO_SEAT_ACTION
GVAR(canSit) = 1;
GVAR(sitDirection) = 180;
GVAR(sitPosition[]) = {0, -0.1, -0.45};
- GVAR(sitRotation) = 10;
+ EGVAR(dragging,canCarry) = 1;
+ EGVAR(dragging,carryPosition[]) = {0, 0.75, 0.5};
+ EGVAR(dragging,carryDirection) = 180;
};
// Camping Chair
class Land_CampingChair_V2_F: ThingX {
XEH_ENABLED;
- MACRO_SEAT_ACTION
GVAR(canSit) = 1;
GVAR(sitDirection) = 180;
GVAR(sitPosition[]) = {0, -0.1, -0.45};
- GVAR(sitRotation) = 45;
+ EGVAR(dragging,canCarry) = 1;
+ EGVAR(dragging,carryPosition[]) = {0, 0.75, 0.5};
+ EGVAR(dragging,carryDirection) = 180;
};
class Furniture_base_F;
// Chair (Plastic)
class Land_ChairPlastic_F: Furniture_base_F {
XEH_ENABLED;
- MACRO_SEAT_ACTION
GVAR(canSit) = 1;
GVAR(sitDirection) = 90;
GVAR(sitPosition[]) = {0, 0, -0.5};
- GVAR(sitRotation) = 5;
+ EGVAR(dragging,canCarry) = 1;
+ EGVAR(dragging,carryPosition[]) = {0, 0.75, 0.5};
+ EGVAR(dragging,carryDirection) = 270;
};
// Chair (Wooden)
class Land_ChairWood_F: Furniture_base_F {
XEH_ENABLED;
- MACRO_SEAT_ACTION
GVAR(canSit) = 1;
GVAR(sitDirection) = 180;
GVAR(sitPosition[]) = {0, -0.05, 0};
- GVAR(sitRotation) = 75;
+ EGVAR(dragging,canCarry) = 1;
+ EGVAR(dragging,carryPosition[]) = {0, 0.75, 0.5};
+ EGVAR(dragging,carryDirection) = 180;
};
// Office Chair
class Land_OfficeChair_01_F: Furniture_base_F {
XEH_ENABLED;
- MACRO_SEAT_ACTION
GVAR(canSit) = 1;
GVAR(sitDirection) = 180;
GVAR(sitPosition[]) = {0, 0, -0.6};
- GVAR(sitRotation) = 15;
+ EGVAR(dragging,canCarry) = 1;
+ EGVAR(dragging,carryPosition[]) = {0, 0.75, 0.5};
+ EGVAR(dragging,carryDirection) = 180;
};
// Rattan Chair
class Land_RattanChair_01_F: Furniture_base_F {
XEH_ENABLED;
- MACRO_SEAT_ACTION
GVAR(canSit) = 1;
GVAR(sitDirection) = 180;
GVAR(sitPosition[]) = {0, -0.1, -1}; // Z must be -1 due to chair's geometry (magic floating seat point)
- GVAR(sitRotation) = 2;
+ EGVAR(dragging,canCarry) = 1;
+ EGVAR(dragging,carryPosition[]) = {0, 0.75, 0.5};
+ EGVAR(dragging,carryDirection) = 180;
};
};
diff --git a/addons/sitting/XEH_clientInit.sqf b/addons/sitting/XEH_clientInit.sqf
index 9cf8278877..23816bd8d7 100644
--- a/addons/sitting/XEH_clientInit.sqf
+++ b/addons/sitting/XEH_clientInit.sqf
@@ -4,7 +4,7 @@
if (!hasInterface) exitWith {};
// Add interaction menu exception
-["isNotSitting", {!((_this select 0) getVariable [QGVAR(isSitting), false])}] call EFUNC(common,addCanInteractWithCondition);
+["isNotSitting", {isNil {(_this select 0) getVariable QGVAR(isSitting)}}] call EFUNC(common,addCanInteractWithCondition);
// Handle interruptions
["medical_onUnconscious", {_this call DFUNC(handleInterrupt)}] call EFUNC(common,addEventhandler);
diff --git a/addons/sitting/XEH_preInit.sqf b/addons/sitting/XEH_preInit.sqf
index 86912ada6b..15ffe281c8 100644
--- a/addons/sitting/XEH_preInit.sqf
+++ b/addons/sitting/XEH_preInit.sqf
@@ -2,6 +2,7 @@
ADDON = false;
+PREP(addSitActions);
PREP(canSit);
PREP(canStand);
PREP(getRandomAnimation);
@@ -10,4 +11,6 @@ PREP(moduleInit);
PREP(sit);
PREP(stand);
+GVAR(initializedClasses) = [];
+
ADDON = true;
diff --git a/addons/sitting/functions/fnc_addSitActions.sqf b/addons/sitting/functions/fnc_addSitActions.sqf
new file mode 100644
index 0000000000..18779d9229
--- /dev/null
+++ b/addons/sitting/functions/fnc_addSitActions.sqf
@@ -0,0 +1,42 @@
+/*
+ * Author: Jonpas
+ * Adds sit actions.
+ *
+ * Arguments:
+ * 0: Seat
+ *
+ * Return Value:
+ * None
+ *
+ * Example:
+ * [seat] call ace_sitting_fnc_addSitActions
+ *
+ * Public: No
+ */
+#include "script_component.hpp"
+
+params ["_seat"];
+private ["_type", "_sitAction"];
+
+_type = typeOf _seat;
+
+// Exit if the object is not specified as a seat
+if (getNumber (configFile >> "CfgVehicles" >> _type >> QGVAR(canSit)) != 1) exitWith {};
+
+// Exit if class already initialized
+if (_type in GVAR(initializedClasses)) exitWith {};
+
+GVAR(initializedClasses) pushBack _type;
+
+_sitAction = [
+ QGVAR(Sit),
+ localize LSTRING(Sit),
+ QUOTE(PATHTOF(UI\sit_ca.paa)),
+ {_this call FUNC(sit)},
+ {_this call FUNC(canSit)},
+ {},
+ [],
+ [0, 0, 0],
+ 1.5
+] call EFUNC(interact_menu,createAction);
+[_type, 0, ["ACE_MainActions"], _sitAction] call EFUNC(interact_menu,addActionToClass);
diff --git a/addons/sitting/functions/fnc_canSit.sqf b/addons/sitting/functions/fnc_canSit.sqf
index fef36b4bbd..1dd0c9676f 100644
--- a/addons/sitting/functions/fnc_canSit.sqf
+++ b/addons/sitting/functions/fnc_canSit.sqf
@@ -4,22 +4,20 @@
*
* Arguments:
* 0: Seat
- * 1: Player
*
* Return Value:
* Can Sit Down
*
* Example:
- * [seat, player] call ace_sitting_fnc_canSit
+ * [seat] call ace_sitting_fnc_canSit
*
* Public: No
*/
#include "script_component.hpp"
-params ["_seat", "_player"];
+params ["_seat"];
// Sitting enabled, is seat object, not occupied and standing up (or not on a big slope)
GVAR(enable) &&
-{getNumber (configFile >> "CfgVehicles" >> typeOf _seat >> QGVAR(canSit)) == 1} &&
{isNil {_seat getVariable QGVAR(seatOccupied)}} &&
{round (vectorUp _seat select 0) == 0 && {round (vectorUp _seat select 1) == 0} && {round (vectorUp _seat select 2) == 1}}
diff --git a/addons/sitting/functions/fnc_canStand.sqf b/addons/sitting/functions/fnc_canStand.sqf
index c516485a82..a051e1784e 100644
--- a/addons/sitting/functions/fnc_canStand.sqf
+++ b/addons/sitting/functions/fnc_canStand.sqf
@@ -18,4 +18,4 @@
params ["_player"];
// Sitting
-(_player getVariable [QGVAR(isSitting), false])
+!isNil {_player getVariable QGVAR(isSitting)}
diff --git a/addons/sitting/functions/fnc_handleInterrupt.sqf b/addons/sitting/functions/fnc_handleInterrupt.sqf
index 328675c172..c7e0a545ff 100644
--- a/addons/sitting/functions/fnc_handleInterrupt.sqf
+++ b/addons/sitting/functions/fnc_handleInterrupt.sqf
@@ -17,6 +17,6 @@
params ["_player"];
-if (_player getVariable [QGVAR(isSitting), false]) then {
+if (!isNil {_player getVariable QGVAR(isSitting)}) then {
_player call FUNC(stand);
};
diff --git a/addons/sitting/functions/fnc_sit.sqf b/addons/sitting/functions/fnc_sit.sqf
index 5e9c36947e..24245699bc 100644
--- a/addons/sitting/functions/fnc_sit.sqf
+++ b/addons/sitting/functions/fnc_sit.sqf
@@ -16,23 +16,14 @@
*/
#include "script_component.hpp"
-private ["_actionID", "_configFile", "_sitDirection", "_sitPosition", "_sitRotation", "_seatPosOrig"];
+private ["_actionID", "_configFile", "_sitDirection", "_sitPosition", "_seatPosOrig"];
params ["_seat", "_player"];
-// Set global variable for standing up
-GVAR(seat) = _seat;
-
// Overwrite weird position, because Arma decides to set it differently based on current animation/stance...
_player switchMove "amovpknlmstpsraswrfldnon";
// Add scroll-wheel action to release object
-_actionID = _player getVariable [QGVAR(StandUpActionID), -1];
-
-if (_actionID != -1) then {
- _player removeAction _actionID;
-};
-
_actionID = _player addAction [
format ["%1 ", localize LSTRING(Stand)],
QUOTE((_this select 0) call FUNC(stand)),
@@ -44,13 +35,10 @@ _actionID = _player addAction [
QUOTE(_this call FUNC(canStand))
];
-_player setVariable [QGVAR(StandUpActionID), _actionID];
-
// Read config
_configFile = configFile >> "CfgVehicles" >> typeOf _seat;
_sitDirection = (getDir _seat) + getNumber (_configFile >> QGVAR(sitDirection));
_sitPosition = getArray (_configFile >> QGVAR(sitPosition));
-_sitRotation = if (isNumber (_configFile >> QGVAR(sitRotation))) then {getNumber (_configFile >> QGVAR(sitRotation))} else {45}; // Apply default if config entry not present
// Get random animation and perform it (before moving player to ensure correct placement)
[_player, call FUNC(getRandomAnimation), 2] call EFUNC(common,doAnimation); // Correctly places when using non-transitional animations
@@ -58,11 +46,11 @@ _sitRotation = if (isNumber (_configFile >> QGVAR(sitRotation))) then {getNumber
// Set direction and position
_player setDir _sitDirection;
-// No need for ATL/ASL as modelToWorld returns in format position
-_player setPos (_seat modelToWorld _sitPosition);
+//modelToWorld returns AGL
+_player setPosASL (AGLtoASL (_seat modelToWorld _sitPosition));
-// Set variables
-_player setVariable [QGVAR(isSitting), true];
+// Set variables, save seat object on player
+_player setVariable [QGVAR(isSitting), [_seat, _actionID]];
_seat setVariable [QGVAR(seatOccupied), true, true]; // To prevent multiple people sitting on one seat
@@ -73,7 +61,7 @@ _seatPosOrig = getPosASL _seat;
_args params ["_player", "_seat", "_seatPosOrig"];
// Remove PFH if not sitting any more
- if !(_player getVariable [QGVAR(isSitting), false]) exitWith {
+ if (isNil {_player getVariable QGVAR(isSitting)}) exitWith {
[_pfhId] call CBA_fnc_removePerFrameHandler;
TRACE_1("Remove PFH",_player getVariable [ARR_2(QGVAR(isSitting), false)]);
};
diff --git a/addons/sitting/functions/fnc_stand.sqf b/addons/sitting/functions/fnc_stand.sqf
index ef19d5f586..4c08461746 100644
--- a/addons/sitting/functions/fnc_stand.sqf
+++ b/addons/sitting/functions/fnc_stand.sqf
@@ -16,12 +16,14 @@
#include "script_component.hpp"
params ["_player"];
+private ["_animation"];
-// remove scroll wheel action
-_player removeAction (_player getVariable [QGVAR(StandUpActionID), -1]);
+(_player getVariable QGVAR(isSitting)) params ["_seat", "_actionID"];
+
+// Remove scroll-wheel action
+_player removeAction _actionID;
// Restore animation
-private "_animation";
_animation = switch (currentWeapon _player) do {
case "": {"amovpercmstpsnonwnondnon"};
case (primaryWeapon _player): {"amovpercmstpslowwrfldnon"};
@@ -33,5 +35,5 @@ _animation = switch (currentWeapon _player) do {
// Set variables to nil
_player setVariable [QGVAR(isSitting), nil];
-GVAR(seat) setVariable [QGVAR(seatOccupied), nil, true];
-GVAR(seat) = nil;
+if (isNull _seat) exitWith {};
+_seat setVariable [QGVAR(seatOccupied), nil, true];
diff --git a/addons/slideshow/XEH_preInit.sqf b/addons/slideshow/XEH_preInit.sqf
index 0f9e270896..152c02ec77 100644
--- a/addons/slideshow/XEH_preInit.sqf
+++ b/addons/slideshow/XEH_preInit.sqf
@@ -5,7 +5,6 @@ ADDON = false;
PREP(addSlideActions);
PREP(autoTransition);
PREP(createSlideshow);
-PREP(makeList);
PREP(moduleInit);
GVAR(slideshows) = 0;
diff --git a/addons/slideshow/functions/fnc_makeList.sqf b/addons/slideshow/functions/fnc_makeList.sqf
deleted file mode 100644
index e550e462a7..0000000000
--- a/addons/slideshow/functions/fnc_makeList.sqf
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * Author: Jonpas
- * Makes a list from a string using comma as a delimiter, optionally remove whitespace and check each for object existence.
- *
- * Arguments:
- * 0: Text
- * 1: Trim Whitespace
- * 2: Check Nil
- *
- * Return Value:
- * Parsed List
- *
- * Example:
- * ["text", true, false] call ace_slideshow_fnc_makeList
- *
- * Public: No
- */
-#include "script_component.hpp"
-
-private ["_splittedList", "_listTrimmedWhitespace", "_nilCheckPassedList"];
-params ["_list", "_trimWhitespace", "_checkNil"];
-
-// Split using comma delimiter
-_splittedList = [_list, ","] call BIS_fnc_splitString;
-
-// Remove whitespace
-_listTrimmedWhitespace = [];
-if (_trimWhitespace) then {
- {
- _listTrimmedWhitespace pushBack ([_x] call CBA_fnc_trim);
- nil
- } count _splittedList;
- _list = _listTrimmedWhitespace;
-};
-
-// Check for object existence
-_nilCheckPassedList = "";
-if (_checkNil) then {
- {
- if !(isNil _x) then {
- if (_nilCheckPassedList == "") then {
- _nilCheckPassedList = _x;
- } else {
- _nilCheckPassedList = _nilCheckPassedList + "," + _x;
- };
- };
- } count _list;
-
- // Add Array characters and parse into array
- _list = "[" + _nilCheckPassedList + "]";
- _list = [] call compile _list;
-};
-
-TRACE_4("Lists",_splittedList,_listTrimmedWhitespace,_nilCheckPassedList,_list);
-
-_list // return
diff --git a/addons/slideshow/functions/fnc_moduleInit.sqf b/addons/slideshow/functions/fnc_moduleInit.sqf
index f09dab678d..9c99d15a11 100644
--- a/addons/slideshow/functions/fnc_moduleInit.sqf
+++ b/addons/slideshow/functions/fnc_moduleInit.sqf
@@ -24,10 +24,10 @@ if !(_activated) exitWith {};
if (isNull _logic) exitWith {};
// Extract variables from logic
-_objects = [_logic getVariable ["Objects", ""], true, true] call FUNC(makeList);
-_controllers = [_logic getVariable ["Controllers", ""], true, true] call FUNC(makeList);
-_images = [_logic getVariable ["Images", ""], true, false] call FUNC(makeList);
-_names = [_logic getVariable ["Names", ""], true, false] call FUNC(makeList);
+_objects = [_logic getVariable ["Objects", ""], true, true] call EFUNC(common,parseList);
+_controllers = [_logic getVariable ["Controllers", ""], true, true] call EFUNC(common,parseList);
+_images = [_logic getVariable ["Images", ""], false, false] call EFUNC(common,parseList);
+_names = [_logic getVariable ["Names", ""], false, false] call EFUNC(common,parseList);
_duration = _logic getVariable ["Duration", 0];
// Objects synced to the module
diff --git a/docs/README_DE.md b/docs/README_DE.md
index 24be427392..9f85287589 100644
--- a/docs/README_DE.md
+++ b/docs/README_DE.md
@@ -3,25 +3,25 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Benötigt die aktuellste Version von CBA A3 . Besucht uns auf Facebook | YouTube | Twitter | Reddit
@@ -30,30 +30,54 @@
Da die MOD vollkommen als **open-source** Projekt gestaltet ist, steht es jedem frei Änderungen vorzuschlagen, oder seine eigene, modifizierte Version zu erstellen, solange diese ebenfalls der Öffentlichkeit zugänglich ist und mit GNU General Public License übereinstimmt. (Weitere Informationen ist der Lizenzdatei in diesem Projekt entnehmbar)
-Die Mod ist **modular gestaltet** — beinahe jede PBO kann entfernt werden, sodass jede Gemeinschaft ihre eigene Version der Mod unterhalten kann. Dies kann zum Beispiel einige Funktionalitäten ausschließen, da das Feature nicht gewünscht ist, oder es mit einer anderen MOD in Konflikt gerät etc. .Ebenfalls können viele Einstellungen vom Missionsersteller vorgenommen werden (u.a. am medizinischem System), sodass eine individuelle Erfahrung gewährleistet wird.
+Die Mod ist **modular aufgebaut**. Beinahe jede PBO kann entfernt werden, sodass jede Gemeinschaft ihre eigene Version der Mod unterhalten kann. Dies kann zum Beispiel einige Funktionalitäten ausschließen, wenn gewisse Features nicht gewünscht sind, oder es mit einer anderen Mod in Konflikt gerät. Ebenfalls können viele Einstellungen vom Missionsersteller vorgenommen werden (u.a. am Sanitätssystem), sodass eine individuelle Erfahrung gewährleistet werden kann.
-### Features
-- Verbessertes medizinisches System
-- Logistik System: U.a. Transport und Fahrzeugreparatur
-- Sprengstoffsystem mit unterschiedlichen Zündern
+### Hauptmerkmale
+- Vollkommen neues 3D-Interaktionssystem
+- Leistungs- und stabilitätsoptimiert
+- Hauptmerkmal auf Modularität und individuelle Anpassungsmöglichkeiten
+- Neue, flexible Spieler- und Servereinstellungen
+- Verbessertes Sanitätssystem mit unterschiedlichen Stufen (Basis/Erweitert)
+- Echte und stetige Wettersynchronisation
+- Ballistik basierend auf vielen Faktoren u.a. Wetter und Wind
- Gefangenensystem
-- Reale Namen für Arma 3 Fahrzeuge und Waffen
-- Realistisches, ballistisches Verhalten (Wind und Luftfeuchtigkeit)
-- Simulation der Rückstrahlzone
-- Ein Feuerleitsystem für gepanzerte Fahrzeuge und Hubschrauber
-***und noch viel mehr...***
+- Sprengtoffmechaniken mit unterschiedlichen Zündern
+- Kartenverbesserungen – Setzen von Markierungen / Kartenwerkzeuge
+- Erweitertes Raketenlenksystem
+
+#### Weitere Mechaniken
+- Tragen und Ziehen
+- Waffen und Fahrzeuge tragen die Namen ihrer Vorbilder aus der echten Welt
+- Ein Feuerleitsystem (FLS) für Hubschrauber und Panzer
+- Viele Funktionen werden in C/C++ Erweiterungen berechnet
+- Rückstrahlzonen- und Überdrucksimulation
+- Einwegwaffen
+- Realistische G-Kräfte
+- Fahrzeuge abschließen
+- Realistische Nacht- und Thermalsicht
+- Magazine umpacken
+- Realistische Waffen Er- bzw. Überhitzung
+- Temporäre Taubheit bei zu lauten Geräuschen
+- Verbesserte Ragdoll-Physik
+- Verbesserte Interaktionen für MG2s und Munitionsschlepper
+- Einstellbare Zielfernrohre
+- Keine Ruheanimationen bei gesenkter Waffe
+- Über Hindernisse springen, über Mauern klettern, Zäune durchtrennen
+- Keine "sprechender Charkater"
+- Vector IV, MicroDAGR und Kestrel
+***und noch viel viel mehr...***
#### Anleitungen
Du hast ACE3 installiert, hast aber keine Ahnung was und wie alles funktioniert und wo sich was befindet?
- [Erste Schritte](http://ace3mod.com/wiki/user/getting-started.html).
#### Mitwirken
-Wenn du bei der Entwicklung der MOD mithelfen möchtest, so kannst du dies tun, indem du nach Fehlern Ausschau hältst, oder neue Funktionen vorschlägst. Um etwas beizutragen, "Forke" einfach dieses Archiv (bzw. repository) und erstelle deine "Pull-Request", welche von anderen Entwicklern und Beiträgern überprüft wird. Bitte trage dich dabei in [`AUTHORS.txt`](https://github.com/acemod/ACE3/blob/master/AUTHORS.txt) mit deinem Nutzernamen und einer gütligen Email-Adresse ein.
+Wenn du bei der Entwicklung von ACE3 mithelfen möchtest, kannst du dies tun, indem du nach Fehlern Ausschau hältst oder neue Funktionen vorschlägst. Um etwas beizutragen, "Forke" dieses Repository und erstelle deine "Pull-Requests", welche von anderen Entwicklern und Beiträgern überprüft werden. Bitte trage dich dabei in [`AUTHORS.txt`](https://github.com/acemod/ACE3/blob/master/AUTHORS.txt) mit deinem Nutzernamen und einer gültigen Email-Adresse ein.
-Um einen Fehler oder ein Feature zu melden bzw. ein bereits Bestehendes zu ändern - nutze unseren [Issue Tracker](https://github.com/acemod/ACE3/issues). Besuche auch:
+Um uns einen Fehler, Anregungen oder neue Funktionalitäten mitzuteilen: Nutze unseren [Issue Tracker](https://github.com/acemod/ACE3/issues). Besuche auch:
- [Wie kann ich ein Problem melden](http://ace3mod.com/wiki/user/how-to-report-an-issue.html)
-- [Wie kann ich ein Feature Request erstellen](http://ace3mod.com/wiki/user/how-to-make-a-feature-request.html)
+- [Wie kann ich ein Wunsch zu einer neuen Funktion mitteilen?](http://ace3mod.com/wiki/user/how-to-make-a-feature-request.html)
-#### Testen & MOD erstellen
-Wenn du die neusten Entwicklungen erleben und uns dabei helfen möchtest bestehende Fehler zu entdecken, lade dir einfach die "Master Branch" herunter. Entweder nutzt du [Git](https://help.github.com/articles/fetching-a-remote/) - wenn die Schritte bekannt sind - oder du lädst es dir direkt über [diesen Link](https://github.com/acemod/ACE3/archive/master.zip) herunter.
-Wie du deine eigene Entwicklungsumgebung und eine Testversion von ACE3 erstellst folge [dieser Anleitung](https://github.com/acemod/ACE3/blob/master/documentation/development/setting-up-the-development-environment.md).
+#### Testen & Mod erstellen
+Wenn du die neusten Entwicklungen erleben und uns dabei helfen möchtest bestehende Fehler zu entdecken, lade dir die "Master Branch" herunter. Entweder nutzt du [Git](https://help.github.com/articles/fetching-a-remote/) - wenn die Schritte bekannt sind - oder du lädst es dir direkt über [diesen Link](https://github.com/acemod/ACE3/archive/master.zip) herunter.
+Wie du deine eigene Entwicklungsumgebung und eine Testversion von ACE3 erstellst, folge [dieser Anleitung](https://github.com/acemod/ACE3/blob/master/documentation/development/setting-up-the-development-environment.md).
diff --git a/docs/README_PL.md b/docs/README_PL.md
index b12f574b6f..4d7f5d1e09 100644
--- a/docs/README_PL.md
+++ b/docs/README_PL.md
@@ -3,25 +3,25 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Wymaga najnowszej wersji CBA A3 . Odwiedź nas na Facebook | YouTube | Twitter | Reddit