Splendid Config Viewer – Arma 3

From Bohemia Interactive Community
Jump to navigation Jump to search
(bookmarks: default entries)
m (Text replacement - "{{ExternalLink|" to "{{Link|")
(12 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{TOC|side}}
{{TOC|side}}
The Splendid™ Config Viewer is a way to access the contents of the game's current config.
The Splendid™ Config Viewer is a way to access the contents of the game's current config.
[[File:Config Viewer.png|thumb|The Splendid™ Config Viewer's UI in Arma 3.]]
[[File:Config Viewer.png|thumb|The Splendid™ Config Viewer's UI in {{arma3}}.]]


= Access =
 
The config viewer can be opened via
== Access ==
 
The config viewer can be opened ''via''
* the [[Arma 3: Debug Console|Debug Console]]
* the [[Arma 3: Debug Console|Debug Console]]
* executing {{ic|[] [[spawn]] [[BIS_fnc_configViewer]]}}
* executing <sqf inline>0 spawn BIS_fnc_configViewer</sqf>
* the [[Eden Editor]] [[Eden Editor: Menu Bar|Menu Bar]] and Context Menu
 
 
== Interface ==
 
=== Classes List ===


= Interface =
== Classes List ==
On the left hand side you can find a list of all config classes that are currently loaded by the game. This includes the classes found in the [[Config.cpp/bin_File_Format|main config]] from the base game and mods, the [[campaignConfigFile|campaign's config]] and the [[Description.ext|missions's config]]. Selecting an entry from the list will show the attributes of the class in the right window. A plus to the left of the class indicates that it contains more subclasses. To expand it you can double click the entry. The classes are sorted alphabetically. Be aware that the list list cut off at the end. In case of long configs the last config entries can only be selected by selecting the last visible entry and then using the arrow keys to scroll further down.
On the left hand side you can find a list of all config classes that are currently loaded by the game. This includes the classes found in the [[Config.cpp/bin_File_Format|main config]] from the base game and mods, the [[campaignConfigFile|campaign's config]] and the [[Description.ext|missions's config]]. Selecting an entry from the list will show the attributes of the class in the right window. A plus to the left of the class indicates that it contains more subclasses. To expand it you can double click the entry. The classes are sorted alphabetically. Be aware that the list list cut off at the end. In case of long configs the last config entries can only be selected by selecting the last visible entry and then using the arrow keys to scroll further down.


== Bookmarks ==
=== Bookmarks ===
Below the [[#Classes List|Classes List]] you can find your bookmarked configs. Double clicking on "&lt;Bookmark selected class&gt;" will add the currently selected entry to the list. To remove a bookmark you can select it and press DELETE on your keyboard. Double clicking on a bookmarked class will take you to the config. When opening the Config Viewer the following entries will be added automatically:
 
Below the [[#Classes List|Classes List]] you can find your bookmarked configs. Double clicking on "&lt;Bookmark selected class&gt;" will add the currently selected entry to the list. To remove a bookmark you can select it and press {{Controls|Del}} on your keyboard. Double clicking on a bookmarked class will take you to the config. When opening the Config Viewer the following entries will be added automatically:
* Config of the currently played unit
* Config of the currently played unit
* Config of the currently selected weapon
* Config of the currently selected weapon
Line 19: Line 26:
* Config of the ammunition used by the currently loaded magazine
* Config of the ammunition used by the currently loaded magazine
It is not possible to delete the first two entries. To reset the bookmarks and restore the default entries you can execute the following code:
It is not possible to delete the first two entries. To reset the bookmarks and restore the default entries you can execute the following code:
{{Feature|Warning|This action will also remove any bookmarks you saved!}}
{{Feature|warning|This action will also remove any bookmarks you saved!}}
[[profileNamespace]] [[setVariable]] ["BIS_fnc_configviewer_bookmarks", [[nil]]]
<sqf>profileNamespace setVariable ["BIS_fnc_configViewer_bookmarks", nil];</sqf>
 
=== Attributes List ===


== Attributes List ==
The right window displays the attributes of the currently selected class. The attributes are sorted alphabetically. The attributes are colored according to the data type of the attribute:
The right window displays the attributes of the currently selected class. The attributes are sorted alphabetically. The attributes are colored according to the data type of the attribute:
{| class="wikitable"
{| class="wikitable"
Line 28: Line 36:
! Color !! Data Type
! Color !! Data Type
|-
|-
| <span style="color: green;">Green</span> || [[TokenNameValueTypes|Number]]
| {{Color|green|Green}} || [[TokenNameValueTypes|Number]]
|-
|-
| <span style="color: red;">Red</span> || [[TokenNameValueTypes|String]]
| {{Color|red|Red}} || [[TokenNameValueTypes|String]]
|-
|-
| <span style="color: blue;">Blue</span> || [[TokenNameValueTypes|Array]]
| {{Color|blue|Blue}} || [[TokenNameValueTypes|Array]]
|}
|}


Some attributes are indented a bit which means that those attribute have been [[Class_Inheritance|inherited]] from one of the parent classes. No indentation means that the attribute is specific or new to the config class.
Some attributes are indented a bit which means that those attribute have been [[Class_Inheritance|inherited]] from one of the parent classes. No indentation means that the attribute is specific or new to the config class.


== Path Edit Field ==
=== Path Edit Field ===
 
The content of this edit field can be used with commands such as [[configClasses]], [[configProperties]], etc.. When an attribute from the right window is selected it will also display the path to it which can be used with [[getText]], [[getNumber]] or [[getArray]].
The content of this edit field can be used with commands such as [[configClasses]], [[configProperties]], etc.. When an attribute from the right window is selected it will also display the path to it which can be used with [[getText]], [[getNumber]] or [[getArray]].


== Parents Edit Field ==
=== Parents Edit Field ===
 
This field lists all the classes that the selected class is inheriting from. It is generated by [[BIS_fnc_returnParents]].
This field lists all the classes that the selected class is inheriting from. It is generated by [[BIS_fnc_returnParents]].


== Preview Class ==
=== Preview Class ===
 
The classes from the following parent configs are supported:
The classes from the following parent configs are supported:
* CfgVehicles: Creates the given vehicle class at the position you are looking at
* CfgVehicles: Creates the given vehicle class at the position you are looking at
* CfgWeapons: Creates the given weapon on the ground and also adds all magazines listed in the {{ic|magazines}} attributes
* CfgWeapons: Creates the given weapon on the ground and also adds all magazines listed in the {{hl|magazines}} attributes
 
=== Preview Param ===


== Preview Param ==
You can preview the following attributes:
You can preview the following attributes:
* paa: If the attribute is a string and ends with "paa" it will open a window displaying the paa file
* paa: If the attribute is a string and ends with "paa" it will open a window displaying the paa file
* RGBA color: If the attribute is a 4D array consisting of numbers only it will display the color
* [[Color|RGBA color]]: If the attribute is a 4D array consisting of numbers only it will display the color
 
 
== Shortcuts ==


= Shortcuts =
The config viewer supports a very basic search functionality. If you focus either the classes list or the attributes list and start typing it will search for a match in the given list.
The config viewer supports a very basic search functionality. If you focus either the classes list or the attributes list and start typing it will search for a match in the given list.


Line 60: Line 74:
! Key !! Effect
! Key !! Effect
|-
|-
| BACKSPACE || Go up one config level
| {{Controls|Backspace}} || Go up one config level
|-
|-
| ENTER || Expand the selected config
| {{Controls|Enter}} || Expand the selected config
|}
|}


== Classes List ==
=== Classes List ===
 
{| class="wikitable"
{| class="wikitable"
|-
|-
! Key !! Effect
! Key !! Effect
|-
|-
| CTRL + X || Copy path in viewer format
| {{Controls|Ctrl|X}} || Copy path in viewer format
|-
|-
| CTRL + SHIFT + X || Copy path in config format
| {{Controls|Ctrl|Shift|X}} || Copy path in config format
|-
|-
| CTRL + C || Copy config name
| {{Controls|Ctrl|C}} || Copy config name
|-
|-
| CTRL + SHIFT + C || Copy the names of the subclasses
| {{Controls|Ctrl|Shift|C}} || Copy the names of the subclasses
|-
|-
| CTRL + V || Takes you to the config previously saved to the clipboard with CTRL + X
| {{Controls|Ctrl|V}} || Takes you to the config previously saved to the clipboard with {{Controls|Ctrl|X}}
|}
|}


== Attributes List ==
=== Attributes List ===
 
{| class="wikitable"
{| class="wikitable"
|-
|-
! Key !! Effect
! Key !! Effect
|-
|-
| CTRL + C || Copies the displayed attribute
| {{Controls|Ctrl|C}} || Copies the displayed attribute
|-
|-
| CTRL + SHIFT + C || Copies the entire content of the list
| {{Controls|Ctrl|Shift|C}} || Copies the entire content of the list
|}
|}


= Alternative Tools =
 
== Alternative Tools ==
 
Listed here are some config viewers with more options than the Splendid Config Viewer. If you created one you can add it to the list too.
Listed here are some config viewers with more options than the Splendid Config Viewer. If you created one you can add it to the list too.
* [https://steamcommunity.com/sharedfiles/filedetails/?id=2369477168 '''Advanced Developer Tools''' by Leopard20]
* {{Link|link= https://steamcommunity.com/sharedfiles/filedetails/?id=2369477168|text= '''Advanced Developer Tools''' by Leopard20}}
* [https://steamcommunity.com/sharedfiles/filedetails/?id=1387934106 '''7erra's Editing Extensions''' by Terra]
* {{Link|link= https://steamcommunity.com/sharedfiles/filedetails/?id=1387934106|text= '''7erra's Editing Extensions''' by Terra}}
* {{Link|link= https://steamcommunity.com/sharedfiles/filedetails/?id=1862880106|text= '''Enhanced Config Viewer in POLPOX's Base Functions''' by POLPOX}} - called via <sqf inline>call PLP_fnc_configViewer</sqf>
 
 
{{GameCategory|arma3}}

Revision as of 17:22, 4 January 2023

The Splendid™ Config Viewer is a way to access the contents of the game's current config.

The Splendid™ Config Viewer's UI in Arma 3.


Access

The config viewer can be opened via


Interface

Classes List

On the left hand side you can find a list of all config classes that are currently loaded by the game. This includes the classes found in the main config from the base game and mods, the campaign's config and the missions's config. Selecting an entry from the list will show the attributes of the class in the right window. A plus to the left of the class indicates that it contains more subclasses. To expand it you can double click the entry. The classes are sorted alphabetically. Be aware that the list list cut off at the end. In case of long configs the last config entries can only be selected by selecting the last visible entry and then using the arrow keys to scroll further down.

Bookmarks

Below the Classes List you can find your bookmarked configs. Double clicking on "<Bookmark selected class>" will add the currently selected entry to the list. To remove a bookmark you can select it and press Del on your keyboard. Double clicking on a bookmarked class will take you to the config. When opening the Config Viewer the following entries will be added automatically:

  • Config of the currently played unit
  • Config of the currently selected weapon
  • Config of the currently loaded magazine
  • Config of the ammunition used by the currently loaded magazine

It is not possible to delete the first two entries. To reset the bookmarks and restore the default entries you can execute the following code:

This action will also remove any bookmarks you saved!

profileNamespace setVariable ["BIS_fnc_configViewer_bookmarks", nil];

Attributes List

The right window displays the attributes of the currently selected class. The attributes are sorted alphabetically. The attributes are colored according to the data type of the attribute:

Color Data Type
Green Number
Red String
Blue Array

Some attributes are indented a bit which means that those attribute have been inherited from one of the parent classes. No indentation means that the attribute is specific or new to the config class.

Path Edit Field

The content of this edit field can be used with commands such as configClasses, configProperties, etc.. When an attribute from the right window is selected it will also display the path to it which can be used with getText, getNumber or getArray.

Parents Edit Field

This field lists all the classes that the selected class is inheriting from. It is generated by BIS_fnc_returnParents.

Preview Class

The classes from the following parent configs are supported:

  • CfgVehicles: Creates the given vehicle class at the position you are looking at
  • CfgWeapons: Creates the given weapon on the ground and also adds all magazines listed in the magazines attributes

Preview Param

You can preview the following attributes:

  • paa: If the attribute is a string and ends with "paa" it will open a window displaying the paa file
  • RGBA color: If the attribute is a 4D array consisting of numbers only it will display the color


Shortcuts

The config viewer supports a very basic search functionality. If you focus either the classes list or the attributes list and start typing it will search for a match in the given list.

Key Effect
Go up one config level
Enter ↵ Expand the selected config

Classes List

Key Effect
Ctrl + X Copy path in viewer format
Ctrl + ⇧ Shift + X Copy path in config format
Ctrl + C Copy config name
Ctrl + ⇧ Shift + C Copy the names of the subclasses
Ctrl + V Takes you to the config previously saved to the clipboard with Ctrl + X

Attributes List

Key Effect
Ctrl + C Copies the displayed attribute
Ctrl + ⇧ Shift + C Copies the entire content of the list


Alternative Tools

Listed here are some config viewers with more options than the Splendid Config Viewer. If you created one you can add it to the list too.