BIS fnc taskCreate: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Added info for task description / CfgTaskDescriptions, reformatted to match BIS_fnc_setTask page)
m (Text replacement - "" to "")
 
(48 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{Function|= Comments
{{RV|type=function
____________________________________________________________________________________________


| arma3 |= Game name
|game1= arma3
|version1= 1.00


|1.00|= Game version
|gr1= Tasks
____________________________________________________________________________________________


| Create a task. |= Description
|arg= global
____________________________________________________________________________________________
|eff= global


| [owner, taskID, description, destination, state, priority, showNotification, type, visibleIn3D] call [[BIS_fnc_taskCreate]] |= Syntax
|descr= Create a task.
 
|s1= [owner, taskID, description, destination, state, priority, showNotification, type, visibleIn3D] call [[BIS_fnc_taskCreate]]


|p1= '''owner''': Task owner(s)
|p1= '''owner''': Task owner(s)
<br>[[Boolean]] - true to set task of all playable units
* [[Boolean]] - true to set task of all playable units
<br>[[Object]] - set task of a specific object
* [[Object]] - set task of a specific object
<br>[[Group]] - set tasks of all objects in the group
* [[Group]] - set tasks of all objects in the group
<br>[[Side]] - set tasks of all objects of the given side
* [[Side]] - set tasks of all objects of the given side
<br>[[Array]] - collection of above types |= Parameter 1
* [[Array]] - collection of above types
 
|p2= '''taskID''':
|p2= '''taskID''':
<br>[[String]] - Task ID
* [[String]] - Task ID
<br>[[Array]] - In the format of [task ID, parent task ID] |= Parameter 2
* [[Array]] - In the format of [task ID, parent task ID]
 
|p3= '''description''':
|p3= '''description''':
<br>[[Array]] - Task description in the format ["description", "title", "marker"]
* [[Array]] - Task description in the format ["description", "title", "marker"] - "marker" is depreciated, functionally does nothing
<br>[[String]] - [[Description.ext#CfgTaskDescriptions|CfgTaskDescriptions]] class name, if empty string is used then [[Description.ext#CfgTaskDescriptions|CfgTaskDescriptions]] is searched for a class matching the tasks TaskID |= Parameter 3
** Description and Title can also be a [[format]] array [ "Text", var1, var2, ... ] where Text will be localized and then formatted per client, see {{Link|#Example 4}}
* [[String]] - [[Description.ext#CfgTaskDescriptions|CfgTaskDescriptions]] class name, if empty string is used then [[Description.ext#CfgTaskDescriptions|CfgTaskDescriptions]] is searched for a class matching the tasks TaskID
 
|p4= '''destination''' (Optional): Task destination
|p4= '''destination''' (Optional): Task destination
<br>[[Object]] - Use [[objNull]] to set no position
* [[Object]] - Use [[objNull]] to set no position
<br>[[Array]] - Either position in format [x,y,z], or [object,precision] as used by setSimpleTaskTarget command |= Parameter 4
* [[Array]] - can be one of:
|p5= '''state''' (Optional): Task state
** format [[Position]]
<br>[[String]] - can be one of following:
** [target, precision] (as used by [[setSimpleTaskTarget]])
<br>"CREATED"
*** target: [[Object]]
<br>"ASSIGNED"
*** precision: [[Boolean]] - [[false]] to use ''owner''<nowiki/>'s knowledge of ''target'', [[true]] to force display even if ''target'' is unknown to ''owner''
<br>"AUTOASSIGNED" ("ASSIGNED" when no task is assigned yet, otherwise "CREATED")
 
<br>"SUCCEEDED"
|p5= '''state''': (Optional, default "CREATED") task state. Can be:
<br>"FAILED"
* [[String]] - can be one of following:
<br>"CANCELED"
** "CREATED"
<br>[[Boolean]] - true to set the task as current |= Parameter 5
** "ASSIGNED"
|p6= '''priority''' (Optional): [[Number]] - priority. When a current task is completed, system select a next one with the larges priority >{{=}} 0 |= Parameter 6
** "AUTOASSIGNED" ("ASSIGNED" when no task is assigned yet, otherwise "CREATED")
|p7= '''showNotification''' (Optional): [[Boolean]] - true to show notification (default), false to disable it |= Parameter 7
** "SUCCEEDED"
|p8= '''type''' (Optional): [[String]] - task type from CfgTaskTypes, if not defined, type "" is being used |= Parameter 8
** "FAILED"
|p9= '''visibleIn3D''' (Optional): [[Boolean]] - true to make task always visible in 3D (default: false) |= Parameter 9
** "CANCELED"
* [[Boolean]] - [[true]] to set the task as current
* [[Number]]
** 0 or less for [[false]]
** > 0 as [[true]]
 
|p6= '''priority''': [[Number]] - (Optional) priority. When the current task is completed, the system selects the one with the largest priority >= 0. To avoid auto assignment of that task, give it a priority of -1.


| [[Boolean]] |= Return value
|p7= '''showNotification''': [[Boolean]] - (Optional, default [[true]]) true to show notification, false to disable it
____________________________________________________________________________________________


|x1= <code><nowiki>[</nowiki>[[civilian]],["task1"],["Do this and you get a cookie","Earn Cookie","cookiemarker"],[0,0,0],1,2,[[true]]] [[call]] [[BIS_fnc_taskCreate]]</code> |=
|p8= '''type''': [[String]] - (Optional, default "") task type from [[Description.ext#CfgTaskTypes|CfgTaskTypes]], if not defined, type "" is being used


|x2= <code><nowiki>[</nowiki>[[west]],["task2"],["Good luck finding this cookie","Find Cookie","cookiemarker2"],[[objNull]],1,3,true] call [[BIS_fnc_taskCreate]] //Task without a map location</code> |=
|p9= '''visibleIn3D''': [[Boolean]] - (Optional, default [[false]]) true to make task always visible in 3D
____________________________________________________________________________________________


| [[BIS_fnc_deleteTask]],[[BIS_fnc_setTask]],[[BIS_fnc_setTaskLocal]],[[BIS_fnc_sharedObjectives]],[[BIS_fnc_taskAlwaysVisible]],[[BIS_fnc_taskChildren]],[[BIS_fnc_taskCompleted]],[[BIS_fnc_taskCurrent]],[[BIS_fnc_taskDescription]],[[BIS_fnc_taskDestination]],[[BIS_fnc_taskExists]],[[BIS_fnc_taskHint]],[[BIS_fnc_taskParent]],[[BIS_fnc_taskReal]],[[BIS_fnc_taskSetAlwaysVisible]],[[BIS_fnc_taskSetCurrent]],[[BIS_fnc_taskSetDescription]],[[BIS_fnc_taskSetDestination]],[[BIS_fnc_taskSetState]],[[BIS_fnc_taskSetType]],[[BIS_fnc_taskState]],[[BIS_fnc_tasksUnit]],[[BIS_fnc_taskType]],[[BIS_fnc_taskTypeIcon]],[[BIS_fnc_taskVar]],[[Arma 3 Task Framework]],[[Arma 3 Tasks Overhaul]] |= See also
|r1= [[Boolean]]
}}
 
|x1= <sqf>[civilian, "task1", ["Do this and you get a cookie", "Earn Cookie", "cookiemarker"], [0,0,0], "ASSIGNED", 2, true] call BIS_fnc_taskCreate;</sqf>
 
|x2= <sqf>
[west, "parentTask", ["This is the parent task.", "Parent task", "cookiemarker2"], objNull, 1, 3, true] call BIS_fnc_taskCreate;
[west, ["subTask", "parentTask"], ["This is the subTask.", "subTask", "cookiemarker2"], objNull, 1, 3, true] call BIS_fnc_taskCreate;
</sqf>
 
|x3= in [[Description.ext]]
<syntaxhighlight lang="cpp">
class CfgTaskTypes
{
class my_CfgTaskType
{
displayname = "Tank";
icon = "Tank_MCO.paa";
icon3D = "Tank_MCO.paa";
};
};
</syntaxhighlight>
SQF:
<sqf>[east, ["taskType_"], ["Setting taskType", "The simple way", "marker2"], objNull, 1, 3, true, "my_CfgTaskType"] call BIS_fnc_taskCreate; // task with a custom icon</sqf>


<h3 style="display:none">Notes</h3>
|x4= in [[Stringtable.xml]]
<dl class="command_description">
<syntaxhighlight lang="xml">
<!-- Note Section BEGIN -->
<Key ID="STR_CITY_TASK">
<English>Clear %1 of enemies</English>
<!-- more languages -->
</Key>
</syntaxhighlight>


<!-- Note Section END -->
SQF:
</dl>
<sqf>
[
_side,
_taskID,
[
// format array, string to be localised, parameters for format %1, %2 ...
[ "STR_CITY_TASK", _cityName ],
[ "STR_CITY_TASK", _cityName ],
""
]
] call BIS_fnc_taskCreate;</sqf>


<h3 style="display:none">Bottom Section</h3>
|seealso= [[Arma 3: Task Framework]]
[[Category:Function Group: Tasks|{{uc:taskCreate}}]]
}}
[[Category:Functions|{{uc:taskCreate}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:taskCreate}}]]


<!-- CONTINUE Notes -->
{{Note
<dl class="command_description">
|user= Lou Montana
<dd class="notedate">Posted on February 2, 2018 - 13:15 (UTC)</dd>
|timestamp= 20180202131500
<dt class="note">[[User:Lou Montana|Lou Montana]]</dt>
|text= You can define a [[Description.ext#CfgTaskDescriptions|CfgTaskDescriptions]] part in [[Description.ext|description.ext]], such as:
<dd class="note">
<syntaxhighlight lang="cpp">
You can define a [[Description.ext#CfgTaskDescriptions|CfgTaskDescriptions]] part in [[description.ext]], such as:
class CfgTaskDescriptions
<syntaxhighlight lang="cpp">class CfgTaskDescriptions
{
{
class myTask
class myTask
{
{
title = $STR_MyTaskTitle;
title = "$STR_MyTaskTitle";
description = $STR_MyTaskDescription;
description = "$STR_MyTaskDescription";
};
};
};</syntaxhighlight>
};
</syntaxhighlight>
This should allow tasks to be localised for every player in MP '''if created locally'''.
This should allow tasks to be localised for every player in MP '''if created locally'''.
You can use "myTask" as ''details'' parameter.
You can use "myTask" as ''description'' (3<sup>rd</sup>) parameter.
</dd>
{{Feature|important|For a proper localisation everywhere, see [[User:Hypoxic125|Hypoxic125]]'s note below.}}
</dl>
}}
<!-- DISCONTINUE Notes -->
 
{{Note
|user= Hypoxic125
|timestamp= 20221113041319
|text= Example of Correct Localization Setup Using CfgTaskDescriptions
<syntaxhighlight lang="cpp">
class CfgTaskDescriptions
{
class hyp_infiltrate
{
title = "STR_HYP_TASKS_INFILTRATE_TITLE";
description = "STR_HYP_TASKS_INFILTRATE_DESCRIPTION";
// requires stringtable key - NOT localized string
// note the lack of "$" before the stringtable key - if "$" is included, languages will be incorrect
};
};
</syntaxhighlight>
<sqf>
// Server Execution
[east, "infiltrate", "hyp_infiltrate", objNull, "ASSIGNED", -1, true, "MOVE", false] call BIS_fnc_taskCreate;
</sqf>
}}

Latest revision as of 17:04, 23 April 2024

Hover & click on the images for description

Description

Description:
Create a task.
Execution:
call
Groups:
Tasks

Syntax

Syntax:
[owner, taskID, description, destination, state, priority, showNotification, type, visibleIn3D] call BIS_fnc_taskCreate
Parameters:
owner: Task owner(s)
  • Boolean - true to set task of all playable units
  • Object - set task of a specific object
  • Group - set tasks of all objects in the group
  • Side - set tasks of all objects of the given side
  • Array - collection of above types
taskID:
  • String - Task ID
  • Array - In the format of [task ID, parent task ID]
description:
  • Array - Task description in the format ["description", "title", "marker"] - "marker" is depreciated, functionally does nothing
    • Description and Title can also be a format array [ "Text", var1, var2, ... ] where Text will be localized and then formatted per client, see Example 4
  • String - CfgTaskDescriptions class name, if empty string is used then CfgTaskDescriptions is searched for a class matching the tasks TaskID
destination (Optional): Task destination
state: (Optional, default "CREATED") task state. Can be:
  • String - can be one of following:
    • "CREATED"
    • "ASSIGNED"
    • "AUTOASSIGNED" ("ASSIGNED" when no task is assigned yet, otherwise "CREATED")
    • "SUCCEEDED"
    • "FAILED"
    • "CANCELED"
  • Boolean - true to set the task as current
  • Number
priority: Number - (Optional) priority. When the current task is completed, the system selects the one with the largest priority >= 0. To avoid auto assignment of that task, give it a priority of -1.
showNotification: Boolean - (Optional, default true) true to show notification, false to disable it
type: String - (Optional, default "") task type from CfgTaskTypes, if not defined, type "" is being used
visibleIn3D: Boolean - (Optional, default false) true to make task always visible in 3D
Return Value:
Boolean

Examples

Example 1:
[civilian, "task1", ["Do this and you get a cookie", "Earn Cookie", "cookiemarker"], [0,0,0], "ASSIGNED", 2, true] call BIS_fnc_taskCreate;
Example 2:
[west, "parentTask", ["This is the parent task.", "Parent task", "cookiemarker2"], objNull, 1, 3, true] call BIS_fnc_taskCreate; [west, ["subTask", "parentTask"], ["This is the subTask.", "subTask", "cookiemarker2"], objNull, 1, 3, true] call BIS_fnc_taskCreate;
Example 3:
in Description.ext
class CfgTaskTypes
{
	class my_CfgTaskType
	{
		displayname = "Tank";
		icon = "Tank_MCO.paa";
		icon3D = "Tank_MCO.paa";
	};
};

SQF:

[east, ["taskType_"], ["Setting taskType", "The simple way", "marker2"], objNull, 1, 3, true, "my_CfgTaskType"] call BIS_fnc_taskCreate; // task with a custom icon
Example 4:
in Stringtable.xml
<Key ID="STR_CITY_TASK">
	<English>Clear %1 of enemies</English>
	<!-- more languages -->
</Key>

SQF:

[ _side, _taskID, [ // format array, string to be localised, parameters for format %1, %2 ... [ "STR_CITY_TASK", _cityName ], [ "STR_CITY_TASK", _cityName ], "" ] ] call BIS_fnc_taskCreate;

Additional Information

See also:
Arma 3: Task Framework

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
Lou Montana - c
Posted on Feb 02, 2018 - 13:15 (UTC)
You can define a CfgTaskDescriptions part in description.ext, such as:
class CfgTaskDescriptions
{
	class myTask
	{
		title = "$STR_MyTaskTitle";
		description = "$STR_MyTaskDescription";
	};
};

This should allow tasks to be localised for every player in MP if created locally. You can use "myTask" as description (3rd) parameter.

For a proper localisation everywhere, see Hypoxic125's note below.
Hypoxic125 - c
Posted on Nov 13, 2022 - 04:13 (UTC)
Example of Correct Localization Setup Using CfgTaskDescriptions
class CfgTaskDescriptions
{
	class hyp_infiltrate
	{
		title = "STR_HYP_TASKS_INFILTRATE_TITLE";
		description = "STR_HYP_TASKS_INFILTRATE_DESCRIPTION";
		// requires stringtable key - NOT localized string
		// note the lack of "$" before the stringtable key - if "$" is included, languages will be incorrect
	};
};

// Server Execution [east, "infiltrate", "hyp_infiltrate", objNull, "ASSIGNED", -1, true, "MOVE", false] call BIS_fnc_taskCreate;