BIS fnc recompile: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "_{10,} " to "")
m (Text replacement - " |s1=[" to " |s1= [")
 
(25 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Function|Comments=
{{RV|type=function


| arma2 |Game name=
|game1= arma2
|version1= 1.00


|1.00|Game version=
|game2= arma2oa
|version2= 1.50


|gr1 = Diagnostic |GROUP1=
|game3= tkoh
|version3= 1.00


| Can be used to recompile functions. |DESCRIPTION=
|game4= arma3
|version4= 0.50


| [mode] call [[BIS_fnc_recompile]] |SYNTAX=
|gr1= Diagnostic
 
|descr= Can be used to recompile functions.
{{Feature|informative|As a security measure, functions are by default protected against rewriting during the mission. This restriction does '''not''' apply to:
* missions previewed from the editor
* missions with the following attribute in [[Description.ext]]: <syntaxhighlight lang="cpp">allowFunctionsRecompile = 1;</syntaxhighlight>
}}
 
|s1= [mode] call [[BIS_fnc_recompile]]


|p1= mode (Optional, default 0):
|p1= mode (Optional, default 0):
Line 19: Line 31:
** 3 - Create missionNamespace variables and initialize mission
** 3 - Create missionNamespace variables and initialize mission
** 4 - Create only missionNamespace variables
** 4 - Create only missionNamespace variables
** 5 - Recompile all functions, and initialize mission (used for editor preview with function recompile) |PARAMETER1=
** 5 - Recompile all functions, and initialize mission (used for editor preview with function recompile)
 


| [[Boolean]] |RETURNVALUE=
|r1= [[Boolean]]


|x1= <code>[] [[call]] [[BIS_fnc_recompile]];</code> |EXAMPLE1=
|x1= <sqf>[] call BIS_fnc_recompile;</sqf>


|x2= <code>[3] [[call]] [[BIS_fnc_recompile]];</code> |EXAMPLE2=
|x2= <sqf>[3] call BIS_fnc_recompile;</sqf>


|x3= <code>["BIS_fnc_spawnVehicle"] [[call]] [[BIS_fnc_recompile]];</code> |EXAMPLE3=
|x3= <sqf>["BIS_fnc_spawnVehicle"] call BIS_fnc_recompile;</sqf>


| [[compile]], [[compileFinal]] |SEEALSO=
|seealso= [[compile]] [[compileFinal]]
}}
}}
<h3 style="display:none">Notes</h3>
<dl class="command_description">
<!-- Note Section BEGIN -->
<!-- Note Section END -->
</dl>
<h3 style="display:none">Bottom Section</h3>
[[Category:Functions|{{uc:recompile}}]]
[[Category:{{Name|arma2}}: Functions|{{uc:recompile}}]]
[[Category:{{Name|arma2oa}}: Functions|{{uc:recompile}}]]
[[Category:{{Name|tkoh}}: Functions|{{uc:recompile}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:recompile}}]]

Latest revision as of 00:11, 13 July 2022

Hover & click on the images for description

Description

Description:
Can be used to recompile functions.
As a security measure, functions are by default protected against rewriting during the mission. This restriction does not apply to:
  • missions previewed from the editor
  • missions with the following attribute in Description.ext:
    allowFunctionsRecompile = 1;
    
Execution:
call
Groups:
Diagnostic

Syntax

Syntax:
[mode] call BIS_fnc_recompile
Parameters:
mode (Optional, default 0):
  • String - name of the function to be recompiled
  • Number - can be:
    • 0 - Autodetect what compile type should be used
    • 1 - Forced recompile of all the things
    • 2 - Create only uiNamespace variables (used in UI)
    • 3 - Create missionNamespace variables and initialize mission
    • 4 - Create only missionNamespace variables
    • 5 - Recompile all functions, and initialize mission (used for editor preview with function recompile)
Return Value:
Boolean

Examples

Example 1:
[] call BIS_fnc_recompile;
Example 2:
[3] call BIS_fnc_recompile;
Example 3:
["BIS_fnc_spawnVehicle"] call BIS_fnc_recompile;

Additional Information

See also:
compile compileFinal

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note