arma:scripting
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
arma:scripting [2008/04/30 15:24] – added bunch of info to the scripting. snakeman | arma:scripting [2024/08/01 10:46] (current) – links added. snakeman | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Scripting ====== | + | ====== |
+ | |||
+ | [[https:// | ||
+ | |||
+ | **ArmA 1** aka Armed Assault (ArmA) | ||
Scripting in ArmA is changed somewhat from OFP times. | Scripting in ArmA is changed somewhat from OFP times. | ||
Line 6: | Line 10: | ||
In a nutshell you never ever should create ArmA SQS content anymore, always create only SQF scripts. | In a nutshell you never ever should create ArmA SQS content anymore, always create only SQF scripts. | ||
+ | |||
+ | |||
+ | ====== Introduction To ArmA Scripting ====== | ||
+ | |||
+ | During mission editing and addon editing you may come across situations where actions or features you would like to have in your mission or addon cannot be accomplished using the basic (or even the more advanced) capabilities of the mission editor or within config files (in the case of addons). Some examples of this might be really cinematic cutscenes in missions or special animations for an addon. | ||
+ | |||
+ | The solution to this is to take advantage of the game-engines ability to call on an even more advanced feature known as scripting. Armed Assault' | ||
+ | |||
+ | |||
+ | ===== Terms ===== | ||
+ | |||
+ | Before getting started, you should understand the meaning of some of these terms. | ||
+ | |||
+ | **Script** | ||
+ | |||
+ | When speaking about a script, it is generally considered a .sqs file, the same can be said for functions, since functions are a kind of script as well, the file ends with a .sqf. Both file types can be edited as a plain text file. | ||
+ | |||
+ | **Game Engine** | ||
+ | |||
+ | The core program of the game which reads and executes your scripting commands at run time. | ||
Line 15: | Line 39: | ||
Example: | Example: | ||
- | < | + | < |
var = [player] execVM " | var = [player] execVM " | ||
</ | </ | ||
- | Argument is passed to the script as local variable _this. | + | Argument is passed to the script as local variable _this. |
The Script is first searched for in the mission folder, then in the campaign scripts folder and finally in the global scripts folder. | The Script is first searched for in the mission folder, then in the campaign scripts folder and finally in the global scripts folder. | ||
ArmA has "" | ArmA has "" | ||
- | < | + | < |
{ | { | ||
if (condition) then | if (condition) then | ||
Line 39: | Line 63: | ||
Instead of the terrible ofp classic | Instead of the terrible ofp classic | ||
- | < | + | < |
{if (condition) then {DoSomething1; | {if (condition) then {DoSomething1; | ||
</ | </ | ||
+ | |||
====== Comments ====== | ====== Comments ====== | ||
Line 47: | Line 72: | ||
Comments are no longer the same character as the end of command character. | Comments are no longer the same character as the end of command character. | ||
- | < | + | < |
// my comment | // my comment | ||
instead of | instead of | ||
Line 55: | Line 80: | ||
You can use block comments now. | You can use block comments now. | ||
- | < | + | < |
/* | /* | ||
Comment line 1 | Comment line 1 | ||
Line 68: | Line 93: | ||
Quotes are no longer a valid substitute for braces. | Quotes are no longer a valid substitute for braces. | ||
- | ====== Some SQF things | + | |
+ | ====== Some SQF Things | ||
Some misc SQF things here ;) | Some misc SQF things here ;) | ||
- | < | + | < |
_resultArray = [0,"" | _resultArray = [0,"" | ||
_handle = [_resultArray] execVM " | _handle = [_resultArray] execVM " | ||
Line 82: | Line 108: | ||
And | And | ||
- | < | + | < |
myFunction1 = compile loadFile " | myFunction1 = compile loadFile " | ||
myFunction2 = compile preprocessFile " | myFunction2 = compile preprocessFile " | ||
Line 92: | Line 118: | ||
Return value? | Return value? | ||
- | < | + | < |
value = call compile preprocessFile " | value = call compile preprocessFile " | ||
// value is now RETURN_VALUE | // value is now RETURN_VALUE | ||
Line 99: | Line 125: | ||
// valid, but RETURN_VALUE is not saved anywhere | // valid, but RETURN_VALUE is not saved anywhere | ||
</ | </ | ||
+ | |||
====== Private ====== | ====== Private ====== | ||
Line 104: | Line 131: | ||
Using the private list. | Using the private list. | ||
- | < | + | < |
- | private [" | + | private [" |
</ | </ | ||
Is to make the _local variables really a private ones in the SQF script. | Is to make the _local variables really a private ones in the SQF script. | ||
- | ====== Exit while loop ====== | ||
- | < | + | ====== Exit While Loop ====== |
+ | |||
+ | < | ||
if (condition) exitWith {Code} | if (condition) exitWith {Code} | ||
Line 117: | Line 145: | ||
</ | </ | ||
- | and | + | And |
- | < | + | < |
for " | for " | ||
{ | { | ||
Line 127: | Line 155: | ||
player sideChat " | player sideChat " | ||
</ | </ | ||
+ | |||
====== Switch ====== | ====== Switch ====== | ||
Line 133: | Line 162: | ||
Example 1 | Example 1 | ||
- | < | + | < |
switch (_a) do | switch (_a) do | ||
{ | { | ||
Line 152: | Line 181: | ||
Example 2 | Example 2 | ||
- | < | + | < |
switch (_a) do | switch (_a) do | ||
{ | { | ||
Line 171: | Line 200: | ||
Example 3 | Example 3 | ||
- | < | + | < |
switch (_a) do | switch (_a) do | ||
{ | { | ||
Line 189: | Line 218: | ||
</ | </ | ||
- | ====== Script | + | |
+ | ====== Script | ||
When you have script like this | When you have script like this | ||
- | < | + | < |
MyScript = compile preProcessFile " | MyScript = compile preProcessFile " | ||
</ | </ | ||
Line 198: | Line 228: | ||
When you want to unload the script, set MyScript equal to nil. | When you want to unload the script, set MyScript equal to nil. | ||
- | < | + | < |
MyScript = nil; | MyScript = nil; | ||
</ | </ | ||
+ | |||
====== Dynamic Variables ====== | ====== Dynamic Variables ====== | ||
- | Dynamic variables are very cool, sometimes on those random/comples | + | Dynamic variables are very cool, sometimes on those random / complex |
- | < | + | < |
_MyVariable = 20; | _MyVariable = 20; | ||
_MyVariableContent = " | _MyVariableContent = " | ||
Line 215: | Line 246: | ||
Another example | Another example | ||
- | < | + | < |
_name = format [" | _name = format [" | ||
call compile format ["%1 = createTrigger [....]", | call compile format ["%1 = createTrigger [....]", | ||
</ | </ | ||
+ | |||
====== Misc PMC Example Scripts ====== | ====== Misc PMC Example Scripts ====== | ||
Place random vehicles + some units on all found **pmc_** gamelogics script, [[arma: | Place random vehicles + some units on all found **pmc_** gamelogics script, [[arma: | ||
+ | |||
+ | |||
+ | ====== Running Scripts " | ||
+ | |||
+ | When you start your mission in mission editor, you can go and edit your scripts and then they are called the next time, they will be reloaded at the same time so your edits to them will be usable. | ||
+ | |||
+ | This is very nice feature to have, just run ArmA in window mode as you should always do when mission editing, then edit away and for example keep a " | ||
+ | |||
+ | You can now run a long mission and always bring new scripts into the play and so on. Imagine how many times have you play tested a mission and had to wrote down notes that "in this and that part you need to add XYZ", but now... you can just write a quick script (or use existing one) and add that to the runme.sqf and just call it up... script is run and you can proceed with the mission. Great. | ||
+ | |||
+ | |||
+ | ====== Global Scripts Dir ====== | ||
+ | |||
+ | Global scripts dir means that you can place your scripts under one single directory which all mission editor missions can read. | ||
+ | |||
+ | In OFP you could place a directory in your OFP root dir called " | ||
+ | |||
+ | However in ArmA it appears it will not work from d: | ||
+ | < | ||
+ | < | ||
+ | </ | ||
+ |
arma/scripting.1209569089.txt.gz · Last modified: 2008/04/30 15:24 (external edit)