BIS fnc diagAAR: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Add BIS_fnc_diagAARrecord entries)
m (Fix description and example)
Line 7: Line 7:
____________________________________________________________________________________________
____________________________________________________________________________________________


| Show '''AAR''' display (end mission display) and fill it with '''BIS_fnc_diagAAR_data''' content.<br />
| Fill an '''AAR''' (After Action Review) display with data and Event Handlers.<br />
{{Important|
{{Important|
[[BIS_fnc_diagAARrecord]] '''must''' have been previously executed to have data to display.}} |= Description
[[BIS_fnc_diagAARrecord]] '''must''' have been previously executed to have data to display.}} |= Description
Line 15: Line 15:


|p1= mode: [[String]] - can be one of:
|p1= mode: [[String]] - can be one of:
* "Init" - Starts '''AAR'''
* "Init" - Fill display with AAR data
* "Init_List" - ''internal function usage''
* "Init_List" - ''internal function usage''
* "Display_keydown" - ''internal function usage''
* "Display_keydown" - ''internal function usage''
Line 23: Line 23:
* "draw" - ''internal function usage'' |= Parameter 1
* "draw" - ''internal function usage'' |= Parameter 1


|p2= arguments: [[Anything]] - (Optional, default [])
|p2= arguments:
* "Init" arguments: display: [[Display]]
* "Init" arguments: [display]: [[Display]]
* "Init_List" arguments: display: [[Display]]
* "Init_List" arguments: [display]: [[Display]]
* "Display_keydown" arguments: see [[User_Interface_Event_Handlers#onKeyDown|onKeyDown]] event
* "Display_keydown" arguments: see [[User_Interface_Event_Handlers#onKeyDown|onKeyDown]] event
* "Timeline_sliderposchanged" arguments: see [[User_Interface_Event_Handlers#onSliderPosChanged|onSliderPosChanged]] event
* "Timeline_sliderposchanged" arguments: see [[User_Interface_Event_Handlers#onSliderPosChanged|onSliderPosChanged]] event
* "ListMissions_lbselchanged" arguments: see [[User_Interface_Event_Handlers#onLbSelChanged|onLbSelChanged]] event
* "ListMissions_lbselchanged" arguments: see [[User_Interface_Event_Handlers#onLbSelChanged|onLBSelChanged]] event
* "ListSessions_lbselchanged" arguments: see [[User_Interface_Event_Handlers#onLbSelChanged|onLbSelChanged]] event
* "ListSessions_lbselchanged" arguments: see [[User_Interface_Event_Handlers#onLbSelChanged|onLBSelChanged]] event
* "draw" arguments: see [[User_Interface_Event_Handlers#onDraw|onDraw]] event |= Parameter 2
* "draw" arguments: see [[User_Interface_Event_Handlers#onDraw|onDraw]] event |= Parameter 2


Line 35: Line 35:
____________________________________________________________________________________________
____________________________________________________________________________________________


|x1= <code>["Init", <nowiki>[</nowiki>[[call]] [[BIS_fnc_displayMission]]]] [[call]] [[BIS_fnc_diagAAR]];</code> |= Example 1
|x1= <code>["Init", [_anAARDisplay]] [[call]] [[BIS_fnc_diagAAR]];</code> |= Example 1
____________________________________________________________________________________________
____________________________________________________________________________________________



Revision as of 16:34, 8 May 2018

Hover & click on the images for description

Description

Description:
Fill an AAR (After Action Review) display with data and Event Handlers.
BIS_fnc_diagAARrecord must have been previously executed to have data to display.
Execution:
call
Groups:
Uncategorised

Syntax

Syntax:
[mode, arguments] call BIS_fnc_diagAAR
Parameters:
mode: String - can be one of:
  • "Init" - Fill display with AAR data
  • "Init_List" - internal function usage
  • "Display_keydown" - internal function usage
  • "Timeline_sliderposchanged" - internal function usage
  • "ListMissions_lbselchanged" - internal function usage
  • "ListSessions_lbselchanged" - internal function usage
  • "draw" - internal function usage
arguments:
Return Value:
Script handle

Examples

Example 1:
["Init", [_anAARDisplay]] call BIS_fnc_diagAAR;

Additional Information

See also:
BIS_fnc_diagAARrecord

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

Notes

Bottom Section