CfgFunctions – Arma 3
Jump to navigation
Jump to search
mNo edit summary |
m (Reverted edits by R3vo (talk) to last revision by Lou Montana) Tag: Rollback |
||
Line 1: | Line 1: | ||
Last updated: {{GVI|arma3|1. | Last updated: {{GVI|arma3|1.96}} | ||
{| class="wikitable sortable" border="1" style="border-collapse:collapse; font-size:100%;" cellpadding="0.5em" | {| class="wikitable sortable" border="1" style="border-collapse:collapse; font-size:100%;" cellpadding="0.5em" | ||
! Group | ! Group | ||
Line 619: | Line 619: | ||
:[[BIS_fnc_multiplySquareMatrixByVector]] | :[[BIS_fnc_multiplySquareMatrixByVector]] | ||
:[[BIS_fnc_rotateVector3D]] | :[[BIS_fnc_rotateVector3D]] | ||
|- | |- | ||
!A3 | !A3 | ||
Line 1,252: | Line 1,251: | ||
:[[BIS_fnc_isPosBlacklisted]] | :[[BIS_fnc_isPosBlacklisted]] | ||
:[[BIS_fnc_listPlayers]] | :[[BIS_fnc_listPlayers]] | ||
:[[ | :[[BIS_fnc_posToGrid]] | ||
:[[BIS_fnc_nearestPosition]] | :[[BIS_fnc_nearestPosition]] | ||
:[[BIS_fnc_createmenu]] | :[[BIS_fnc_createmenu]] | ||
Line 2,392: | Line 2,391: | ||
:[[BIN_fnc_updateSpectrumAnalyzerInput]] | :[[BIN_fnc_updateSpectrumAnalyzerInput]] | ||
:[[BIN_fnc_frequencyToString]] | :[[BIN_fnc_frequencyToString]] | ||
|} | |} | ||
Line 2,562: | Line 2,422: | ||
_export = _export + endl + "|}"; | _export = _export + endl + "|}"; | ||
copyToClipboard _export;</syntaxhighlight></spoiler> | copyToClipboard _export;</syntaxhighlight></spoiler> | ||
Revision as of 11:45, 30 September 2020
Last updated: 1.96
Export Function:
private _export = format ["Last updated: {{GVI|arma3|%1}}",productVersion # 2 / 100] + endl + "{| class=""wikitable sortable"" border=""1"" style=""border-collapse:collapse; font-size:100%;"" cellpadding=""0.5em""
! Group
! Category
! Functions";
{ // Config
private _indexConfig = _forEachIndex;
private _nameConfig = _x # 0;
{ // Tags
private _nameTAG = configName _x;
private _valueTAG = getText (_x >> "tag");
if (_valueTAG == "") then { _valueTag = configName _x };
{ // Categories
private _nameCategory = configName _x;
_export = _export + endl + "|-" + endl + "!" + _nameTAG + endl + "!" + _nameCategory + endl + "|";
private _pathCategory = getText (_x >> "file");
{ // Functions
private _prefix = ["BIS_fnc_", "BIN_fnc_"] select (_nameTAG in ["A3_Enoch", "A3_Contact"]);
_export = _export + endl + ":[[" + _prefix + (configName _x) + "]]";
} forEach ((_nameConfig >> "CfgFunctions" >> _nameTAG >> _nameCategory) call BIS_fnc_returnChildren);
} forEach ((_nameConfig >> "CfgFunctions" >> configName _x) call BIS_fnc_returnChildren);
} forEach ((_nameConfig >> "CfgFunctions") call BIS_fnc_returnChildren);
} foreach [[configFile, "configFile"]];
_export = _export + endl + "|}";
copyToClipboard _export;