arma2:scripting
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
arma2:scripting [2010/07/13 13:13] – added general editing stuff. snakeman | arma2:scripting [2024/08/01 22:38] (current) – links added. snakeman | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Scripting ====== | + | ====== |
+ | |||
+ | [[https:// | ||
ArmA 2 will be largely compatible with Armed Assault. To make porting of content from ArmA as simple as possible, there are few important things: | ArmA 2 will be largely compatible with Armed Assault. To make porting of content from ArmA as simple as possible, there are few important things: | ||
Line 9: | Line 11: | ||
* in order to maintain smooth frame rate in real-time content, time limit for all scripts in each frame is enforced by the engine in ArmA 2. Generally speaking, in case of more demanding scripts, be prepared that their result may come way later and also there probably can suffer from significant latency. It is under evaluation if and how possibly allow user scripts to change how much time they may take from the CPU in every frame. | * in order to maintain smooth frame rate in real-time content, time limit for all scripts in each frame is enforced by the engine in ArmA 2. Generally speaking, in case of more demanding scripts, be prepared that their result may come way later and also there probably can suffer from significant latency. It is under evaluation if and how possibly allow user scripts to change how much time they may take from the CPU in every frame. | ||
- | * SQS script format will be fully supported in ArmA 2. | + | * SQS script format will be fully supported in ArmA 2 (but they should never be used). |
- | + | ||
- | **initJIPcompatible.sqf** is automatically started at unknown time, best guess would be when JIP player joins? | + | |
- | + | ||
- | + | ||
- | ====== Scripting Commands ====== | + | |
- | + | ||
- | There' | + | |
- | + | ||
- | Since ArmA 2 you must first initialize a variable before you reference it in your scripts. In ArmA, it was not a problem, at least for conditions. | + | |
- | <code cpp> | + | |
- | // this will error if myBoolean was not previously defined. | + | |
- | if (myBoolean) then { hint " | + | |
- | </ | + | |
- | Usage of isNil is still valid. | + | |
- | + | ||
- | + | ||
- | ===== BIS fnc locations ===== | + | |
- | + | ||
- | BIS fnc locations | + | |
- | + | ||
- | Description: | + | |
- | + | ||
- | Upon registering, | + | |
- | + | ||
- | * " | + | |
- | * " | + | |
- | * " | + | |
- | * " | + | |
- | + | ||
- | If you're registering currently existing object and some of variables above is already stored in it, it won't be replaced. | + | |
- | + | ||
- | Syntax | + | |
- | + | ||
- | Syntax: [type(s), | + | |
- | + | ||
- | Parameters: type(s): String or Array of strings\\ | + | |
- | area: Array in format [center, | + | |
- | debug: (Optional): Boolean | + | |
- | + | ||
- | Return Value: Array - List of registered locations | + | |
- | + | ||
- | Alternative Syntax | + | |
- | + | ||
- | Syntax: [objects] call BIS_fnc_locations | + | |
- | + | ||
- | Parameters: objects: Array of Objects or Locations - list of specific locations to be registered | + | |
- | + | ||
- | Return Value: Array - List of registered locations | + | |
- | + | ||
- | Examples | + | |
- | + | ||
- | Example 1: | + | |
- | <code cpp> | + | |
- | [" | + | |
- | </ | + | |
- | + | ||
- | Example 2: | + | |
- | <code cpp> | + | |
- | [[" | + | |
- | </ | + | |
- | + | ||
- | Example 3: | + | |
- | <code cpp> | + | |
- | [[myLocation1, | + | |
- | </ | + | |
- | + | ||
- | See also: | + | |
- | + | ||
- | Functions Library (above hehe) | + | |
- | + | ||
- | + | ||
- | ===== allowDamage ===== | + | |
- | + | ||
- | Description: | + | |
- | + | ||
- | Syntax: object allowDamage allow | + | |
- | + | ||
- | Parameters: object: Object - allow: Boolean - | + | |
- | + | ||
- | Example 1: | + | |
- | <code cpp> | + | |
- | player allowDamage false | + | |
- | </ | + | |
- | + | ||
- | + | ||
- | ===== setVariable ===== | + | |
- | + | ||
- | setVariable now has a 3rd parameter: Global. | + | |
- | + | ||
- | If you set the 3rd parameter to true, the variable will broadcast its value to every machine. | + | |
- | <code cpp> | + | |
- | _myObject setVariable [" | + | |
- | </ | + | |
- | + | ||
- | setVariable is now usable on any object, like groups for instance. This was not the case in ArmA. | + | |
- | + | ||
- | + | ||
- | ===== uiNameSpace ===== | + | |
- | + | ||
- | Working with UI related scripting commands, is not accepted in global or private variable space, and needs to be done inside uiNameSpace by using setVariable. | + | |
- | + | ||
- | example: | + | |
- | <code cpp> | + | |
- | // set it | + | |
- | uiNameSpace setVariable [" | + | |
- | // use it | + | |
- | ctrl.... (uiNameSpace getVariable " | + | |
- | </ | + | |
- | + | ||
- | + | ||
- | ===== createDiaryRecord ===== | + | |
- | + | ||
- | createDiaryRecord | + | |
- | + | ||
- | <code cpp> | + | |
- | _diary = player createDiaryRecord [" | + | |
- | </ | + | |
- | + | ||
- | + | ||
- | ===== createSimpleTask ===== | + | |
- | + | ||
- | createSimpleTask | + | |
- | + | ||
- | <code cpp> | + | |
- | task1 = player createSimpleTask [" | + | |
- | </ | + | |
- | + | ||
- | + | ||
- | ===== setSimpleTaskDescription ===== | + | |
- | + | ||
- | setSimpleTaskDescription | + | |
- | + | ||
- | <code cpp> | + | |
- | task1 setSimpleTaskDescription [" | + | |
- | </ | + | |
- | + | ||
- | + | ||
- | ===== setSimpleTaskDestination ===== | + | |
- | + | ||
- | setSimpleTaskDestination | + | |
- | + | ||
- | <code cpp> | + | |
- | task1 setSimpleTaskDestination markerPos " | + | |
- | </ | + | |
- | + | ||
- | + | ||
- | ===== setTaskState ===== | + | |
- | + | ||
- | setTaskState | + | |
- | + | ||
- | <code cpp> | + | |
- | task1 setTaskState " | + | |
- | </ | + | |
- | + | ||
- | + | ||
- | ===== setCurrentTask ===== | + | |
- | + | ||
- | setCurrentTask | + | |
- | + | ||
- | <code cpp> | + | |
- | player setCurrentTask task1; | + | |
- | </ | + | |
- | + | ||
- | + | ||
- | ===== attachTo ===== | + | |
- | + | ||
- | attachTo, see also detach. | + | |
- | + | ||
- | <code cpp> | + | |
- | // Make player float exactly 2m above center of car, automatically changing vectordir + relative position as car moves. | + | |
- | player attachTo [car, [0,0,2]]; | + | |
- | detach player; | + | |
- | </ | + | |
- | + | ||
- | + | ||
- | ===== diag_log ===== | + | |
- | + | ||
- | diag_log writes any variable ([_fish, _frog] or " | + | |
- | + | ||
- | + | ||
- | ===== Changing nameSpace ===== | + | |
- | + | ||
- | You can change namespace inside another namespace. Note that 1 misionNamespace refers to the normal global scope and 1 uiNamespace is the one where you are forced to store any control/ | + | |
- | <code cpp> | + | |
- | fish = " | + | |
- | + | ||
- | with uiNamespace do | + | |
- | { | + | |
- | // Do some stuff with dialogs here. | + | |
- | + | ||
- | with missionNamespace do | + | |
- | { | + | |
- | hint fish; // This sees the " | + | |
- | }; | + | |
- | // Do some more stuff with dialogs here. | + | |
- | }; | + | |
- | </ | + | |
- | + | ||
- | I have no idea what the purpose of 1 parsingNamespace is. | + | |
- | + | ||
- | + | ||
- | ===== Access nameSpace ===== | + | |
- | + | ||
- | The command 1 with gives you a much nicer way to access namespaces and is especially cleaner when making multiple accesses: | + | |
- | <code cpp> | + | |
- | with uiNameSpace do | + | |
- | { | + | |
- | // Any globals in this block are taken from uiNameSpace. | + | |
- | // Any locals are normal locals from current scope. | + | |
- | (fishDisplay displayCtrl 102) ctrlSetText _frog; | + | |
- | piesControl ctrlSetText _pies; | + | |
- | cheeseControl ctrlSetText _cheese; | + | |
- | }; | + | |
- | </ | + | |
- | + | ||
- | Rather than: | + | |
- | <code cpp> | + | |
- | ((uiNameSpace getVariable " | + | |
- | (uiNameSpace getVariable " | + | |
- | (uiNameSpace getVariable " | + | |
- | </ | + | |
- | + | ||
- | + | ||
- | ===== fromEditor ===== | + | |
- | + | ||
- | Return if given team was inserted directly from mission editor. | + | |
- | + | ||
- | Syntax: | + | |
- | + | ||
- | fromEditor teamMember | + | |
- | + | ||
- | Parameters: | + | |
- | + | ||
- | teamMember: Team Member | + | |
- | + | ||
- | Return Value: | + | |
- | + | ||
- | Boolean | + | |
- | + | ||
- | Example: | + | |
- | <code cpp> | + | |
- | _fromEditor = fromEditor _member; | + | |
- | </ | + | |
- | + | ||
- | + | ||
- | ===== addTeamMember ===== | + | |
- | + | ||
- | Add given member to given team. | + | |
- | + | ||
- | Syntax: | + | |
- | + | ||
- | team addTeamMember member | + | |
- | + | ||
- | Parameters: | + | |
- | + | ||
- | team: Team_Member\\ | + | |
- | member: Team_Member | + | |
- | + | ||
- | Return Value: | + | |
- | + | ||
- | Nothing | + | |
- | + | ||
- | Example 1: | + | |
- | <code cpp> | + | |
- | _team addTeamMember _teamMember; | + | |
- | </ | + | |
- | + | ||
- | + | ||
- | ===== copyWaypoints ===== | + | |
- | + | ||
- | Copy the chain of waypoints from source to target group. The target group will start to process waypoints from the first one. | + | |
- | + | ||
- | Syntax: | + | |
- | + | ||
- | groupTo copyWaypoints groupFrom | + | |
- | + | ||
- | Parameters: | + | |
- | + | ||
- | groupTo: Group\\ | + | |
- | groupFrom: Group | + | |
- | + | ||
- | Return Value: | + | |
- | + | ||
- | Nothing | + | |
- | + | ||
- | + | ||
- | ===== execFSM ===== | + | |
- | Execute the scripted FSM. The FSM file is first searched in the mission | + | **initJIPcompatible.sqf** initJIPcompatible.sqf gets called from the MP mission |
- | Syntax: | + | [[arma2:scripting: |
- | execFSM filename | + | Multiplayer [[arma2: |
- | Parameters: | + | Some [[arma2:scripting: |
- | filename: - | + | [[arma2:scripting: |
- | Return Value: | + | [[arma2:scripting: |
- | Number | + | Few more [[arma2: |
- | Example 1: | + | [[arma2:scripting: |
- | <code cpp> | + | |
- | execFSM "test.fsm"; | + | |
- | </ | + | |
- | Example 2:\\ | + | [[arma2:scripting:group_in_vehicle|Group in Vehicle]] check. |
- | execFSM: | + | |
- | <code cpp> | + | |
- | hndl = [player] execFSM " | + | |
- | </code? | + | |
- | execVM: | + | [[arma2:scripting: |
- | <code cpp> | + | |
- | hndl = player execVM " | + | |
- | </ | + | |
+ | [[arma2: | ||
- | ====== taskHint.sqf ====== | + | Global scripts dir or common scripts dir is very useful. This feature has been known since OFP, check out the details from [[arma: |
- | How to make task hints | + | Howto create and use [[arma2: |
- | taskHint is relatively useless itself (because it requires too much effort), but there is a script that makes it easier to use. So instead of executing a hint, do this: | + | [[arma2: |
- | <code cpp> | + | |
- | [objNull, objNull, tskExample1, | + | |
- | </ | + | |
- | The first 2 arguments are useless so i just send objNull, the 3rd is the task that you've created, and the 4th is the status. | + | [[arma2: |
- | Supported task states: " | + | [[arma2:scripting: |
- | * This command does not set the state of the task, so you still need to do this command, and the setTaskState command in your trigger. | ||
- | * It creates the hint in the middle of the screen, not at the right side (this means that taskHint and hint can be used at the same time). |
arma2/scripting.1279026790.txt.gz · Last modified: 2010/07/13 13:13 by snakeman