execVM: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\|seealso= *\[\[([^ ]+)\]\], \[\[([^ ]+)\]\]" to "|seealso= $1 $2")
m (Text replacement - "{{HashLink" to "{{Link")
 
(One intermediate revision by the same user not shown)
Line 21: Line 21:
|gr1= Program Flow
|gr1= Program Flow


|descr= Compiles and adds an [[SQF Syntax|SQF]] [[Script Handle|script]] to the [[Scheduler|scheduler]] queue and returns script handle (see also {{HashLink|#Example 4}}).
|descr= Compiles and adds an [[SQF Syntax|SQF]] [[Script Handle|script]] to the [[Scheduler|scheduler]] queue and returns script handle (see also {{Link|#Example 4}}).
The script does not execute immediately upon running [[execVM]] command but with some delay depending on the VM's scripts queue and engine load.
The script does not execute immediately upon running [[execVM]] command but with some delay depending on the VM's scripts queue and engine load.


Line 52: Line 52:
|r2= [[Script Handle]]
|r2= [[Script Handle]]


|x1= <code>_handle = [[execVM]] "test.sqf";</code>
|x1= <sqf>execVM "test.sqf";</sqf>


|x2= <code>_handle = [[player]] [[execVM]] "test.sqf";
|x2= <sqf>
[[waitUntil]] { [[scriptDone]] _handle };</code>
_handle = player execVM "test.sqf";
waitUntil { scriptDone _handle };
</sqf>
The following is also possible in {{arma3}}:
The following is also possible in {{arma3}}:
<code>[[private]] _handle = [[execVM]] "123.sqf";
<sqf>
[[waitUntil]] { [[isNull]] _handle };</code>
private _handle = execVM "123.sqf";
waitUntil { isNull _handle };
</sqf>


|x3= <code>[<nowiki/>[[player]], 0.75] [[execVM]] "setDamage.sqf";</code>
|x3= <sqf>[player, 0.75] execVM "setDamage.sqf";</sqf>
setDamage.sqf:
setDamage.sqf:
<code>[[params]] ["_unit", "_damage"];
<sqf>
_unit [[setDamage]] _damage;</code>
params ["_unit", "_damage"];
_unit setDamage _damage;
</sqf>


|x4= [[execVM]] equivalence:<code>[[private]] _handle = _args [[execVM]] "someFile.sqf";
|x4= [[execVM]] equivalence:
{{cc|is practically identical to}}
<sqf>
[[private]] _handle = _args [[spawn]] [[compile]] [[preprocessFileLineNumbers]] "someFile.sqf";</code>
private _handle = _args execVM "someFile.sqf";
// is practically identical to
private _handle = _args spawn compile preprocessFileLineNumbers "someFile.sqf";
</sqf>


|seealso= [[call]] [[spawn]] [[exec]] [[execFSM]] [[scriptDone]] [[scriptNull]] [[terminate]] [[sleep]] [[uiSleep]] [[waitUntil]] [[canSuspend]] [[diag_activeScripts]] [[diag_activeSQFScripts]] [[SQF Syntax]] [[Control Structures]]
|seealso= [[call]] [[spawn]] [[exec]] [[execFSM]] [[scriptDone]] [[scriptNull]] [[terminate]] [[sleep]] [[uiSleep]] [[waitUntil]] [[canSuspend]] [[diag_activeScripts]] [[diag_activeSQFScripts]] [[SQF Syntax]] [[Control Structures]]
}}
}}

Latest revision as of 18:44, 4 January 2023

Hover & click on the images for description

Description

Description:
Compiles and adds an SQF script to the scheduler queue and returns script handle (see also Example 4). The script does not execute immediately upon running execVM command but with some delay depending on the VM's scripts queue and engine load.
  • If the same script is to be executed more than one time, declaring it as a Function is recommended to avoid recompiling and wasting performance with every execution.
  • The script is searched for in the following directories in that order:
    • mission directory
    • campaign scripts directory
    • global scripts directory.
  • To see what VM scripts are currently in the scheduler, use diag_activeSQFScripts command.
  • The .sqf file extension is not mandatory but is strongly recommended as using non-standard extensions may cause problems during binarisation
  • If the script file is not prepared using UTF-8 encoding and contains some characters with codes > 127, they might convert incorrectly.
Groups:
Program Flow

Syntax

Syntax:
arguments execVM filename
Parameters:
arguments: Anything - arguments accessible as _this in the script
filename: String - path to the SQF script file
Return Value:
Script Handle

Alternative Syntax

Syntax:
execVM filename
Parameters:
filename: String - path to the SQF script file
Return Value:
Script Handle

Examples

Example 1:
execVM "test.sqf";
Example 2:
_handle = player execVM "test.sqf"; waitUntil { scriptDone _handle };
The following is also possible in Arma 3:
private _handle = execVM "123.sqf"; waitUntil { isNull _handle };
Example 3:
[player, 0.75] execVM "setDamage.sqf";
setDamage.sqf:
params ["_unit", "_damage"]; _unit setDamage _damage;
Example 4:
execVM equivalence:
private _handle = _args execVM "someFile.sqf"; // is practically identical to private _handle = _args spawn compile preprocessFileLineNumbers "someFile.sqf";

Additional Information

See also:
call spawn exec execFSM scriptDone scriptNull terminate sleep uiSleep waitUntil canSuspend diag_activeScripts diag_activeSQFScripts SQF Syntax Control Structures

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