getAllPropertyNames: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Text replacement - "source>" to "syntaxhighlight>")
 
(17 intermediate revisions by 8 users not shown)
Line 1: Line 1:
==Function getAllPropertyNames==
{{MacroFunction
{{ProposedChange}}
|name=getAllPropertyNames
|version=1.3b48
|description=Gets a list containing the [[Token:token property|token property]] names that are defined in the [[Introduction_to_Properties|Campaign Properties]]. The type of the list returned depends on the delimiter parameter.
* If the delimiter is not specified then a [[Macros:string list|string list]] is returned and the default value of {{code|","}} is used.
* If the delimiter is {{code|"json"}} then a [[JSON Array]] is returned.
* Otherwise, a [[Macros:string list|string list]] is returned using the delimiter passed in.
 
|usage=
<syntaxhighlight lang="mtmacro">
getAllPropertyNames()
getAllPropertyNames(type)
getAllPropertyNames(type, delim)
</syntaxhighlight>
'''Parameters'''
{{param|type|The name of the property set to be retrieved. Defaults to all defined token property sets. Use {{code|"*"}} or {{code|""}} when using a delimiter to get all sets. }}
{{param|delim|The delimiter to be used in the list of names returned. Default is {{code|,}} }}


Gets a [[Macros:string list|string list]] containing the the [[Token:token property|token property]] names that are defined in the [[Campaign:campaign properties|campaign properties]].
If type is specified then the [[Macros:string list|string list]] contains the [[Token:token property|property]] names for that [[Token:token property type|token property type]], otherwise it will contain the [[Token:token property|token property]] names for all [[Token:token property type|token property type]]s. If delim is specified then it is used to separate the values in the [[Macros:string list|string list]], if it is not specified then it defaults to ','.


===Usage===
|examples=
<source lang="mtmacro" line>
You can use the following code to print out all of the properties in the [[Introduction_to_Properties|campaign properties]] list..
[h: player = getAllPropertyNames()]
<syntaxhighlight lang="mtmacro" line>
[h: player = getAllPropertyNames(type)]
[h: player = getAllPropertyNames(type, delim)]
</source>
 
If type is specified then the [[Macros:string list|string list]] contains the [[Token:token property|property] names for that [[Token:token property type|token property type]], otherwise it will contain the [[Token:token property|token property]] names for all [[Token:token property type|token property type]]s. If delim is specified then it is used to separate the values in the [[Macros:string list|string list]], if it is not specified then it defaults to ','.
 
===Examples===
You can use the following code to print out all of the properties in the [[Campaign:campaign properties|campaign properties]] list..
<source lang="mtmacro" line>
Campaign Properties<br>
Campaign Properties<br>
[h: props = getAllPropertyNames()]
[h: props = getAllPropertyNames()]
[foreach(name, props, "<br>"): name]
[foreach(name, props, "<br>"): name]
</source>
</syntaxhighlight>
 
If you have two token property sets, for instance "PC" and "NPC", you could print out all of the properties for the "PC" property set like so:
<syntaxhighlight lang="mtmacro" line>
PC Properties<br>
[h: props=getAllPropertyNames("PC")]
[foreach(name, props, "<br>"): name]
</syntaxhighlight>
 
Get the Basic properties in a [[JSON Array]]:
<syntaxhighlight lang="mtmacro" line>
[r: props=getAllPropertyNames("Basic","json")]
</syntaxhighlight>
 
|changes=
{{change|1.3b49|Added {{code|json}} delimiter option.}}
 
}}
[[Category:Token Function]][[Category:Property Function]]

Latest revision as of 18:25, 14 March 2023

getAllPropertyNames() Function

Introduced in version 1.3b48
Gets a list containing the token property names that are defined in the Campaign Properties. The type of the list returned depends on the delimiter parameter.
  • If the delimiter is not specified then a string list is returned and the default value of "," is used.
  • If the delimiter is "json" then a JSON Array is returned.
  • Otherwise, a string list is returned using the delimiter passed in.
 

Usage

getAllPropertyNames()
getAllPropertyNames(type)
getAllPropertyNames(type, delim)

Parameters

  • type - The name of the property set to be retrieved. Defaults to all defined token property sets. Use "*" or "" when using a delimiter to get all sets.
  • delim - The delimiter to be used in the list of names returned. Default is ,

If type is specified then the string list contains the property names for that token property type, otherwise it will contain the token property names for all token property types. If delim is specified then it is used to separate the values in the string list, if it is not specified then it defaults to ','.

Examples

You can use the following code to print out all of the properties in the campaign properties list..
Campaign Properties<br>
[h: props = getAllPropertyNames()]
[foreach(name, props, "<br>"): name]

If you have two token property sets, for instance "PC" and "NPC", you could print out all of the properties for the "PC" property set like so:

PC Properties<br>
[h: props=getAllPropertyNames("PC")]
[foreach(name, props, "<br>"): name]

Get the Basic properties in a JSON Array:

[r: props=getAllPropertyNames("Basic","json")]

Version Changes

  • 1.3b49 - Added json delimiter option.