getExposedTokenNames: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
mNo edit summary
No edit summary
 
(6 intermediate revisions by 2 users not shown)
Line 3: Line 3:
|trusted=true
|trusted=true
|version=1.3b48
|version=1.3b48
|description=Gets a list containing the names of all of the [[Token:token|token]]s on the current [[Map:map|map]] that have been exposed, (i.e. not covered by [[Map:fog of war|fog of war]]). The type of the value returned depends on the delimiter parameter.  
|description=Gets a list containing the names of all of the [[Token:token|token]]s on the current [[Introduction to Mapping|map]] that have been exposed, (i.e. not covered by [[Introduction to Lights and Sights#Fog of War|fog of war]]). The type of the value 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 not specified then a [[Macros:string list|string list]] is returned and the default value of {{code|","}} is used.
* If the delimiter {{code|"json"}} then a [[JSON Array]] is returned.
* If the delimiter {{code|"json"}} then a [[JSON Array]] is returned.
Line 9: Line 9:
 
 
|usage=
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
getExposedTokenNames()
getExposedTokenNames()
getExposedTokenNames(delim)
getExposedTokenNames(delim)
</source>
</syntaxhighlight>


If delim is specified then it is used as the delimiter that separates the [[Token:token|token]] names.
If delim is specified then it is used as the delimiter that separates the [[Token:token|token]] names.


|example=
|example=
The following example will print out the names of all the [[Token:token|token]]s on the current [[Map:map|map]] not covered by [[Map:fog of war|fog of war]].
The following example will print out the names of all the [[Token:token|token]]s on the current [[Introduction to Mapping|map]] not covered by [[Introduction to Lights and Sights#Fog of War|fog of war]].
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: names = getExposedTokenNames()]
[h: names = getExposedTokenNames()]
[r: foreach(name, names, "<br>"): name]
[r: foreach(name, names, "<br>"): name]
</source>
</syntaxhighlight>


The following example will return the exposed tokens from the TOKEN layer only.
The following example will return the exposed tokens from the TOKEN layer only.
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
<!-- get all tokens from the token layer and store in json array -->
<!-- get all tokens from the token layer and store in json array -->
[h:allToks = getTokenNames("json",'{layer:["TOKEN"]}')]
[h:allToks = getTokenNames("json",'{layer:["TOKEN"]}')]
Line 33: Line 33:
<!-- sort the result ascending -->
<!-- sort the result ascending -->
[h:tokExposed = json.sort(allToks, allExp,"a")]
[h:tokExposed = json.sort(allToks, allExp,"a")]
</source>
</syntaxhighlight>


This is exactly the same example as the one above, but then nested, so you can have the result in one line of code.
This is exactly the same example as the one above, but then nested, so you can have the result in one line of code.
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h:tokExposed = json.sort(json.intersection(getTokenNames("json",'{layer:["TOKEN"]}'), getExposedTokenNames("json")),"a")]
[h:tokExposed = json.sort(json.intersection(getTokenNames("json",'{layer:["TOKEN"]}'), getExposedTokenNames("json")),"a")]
</source>
</syntaxhighlight>





Latest revision as of 17:03, 20 April 2023

getExposedTokenNames() Function

 Note: This function can only be used in a Trusted Macro

Introduced in version 1.3b48
Gets a list containing the names of all of the tokens on the current map that have been exposed, (i.e. not covered by fog of war). The type of the value 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 "json" then a JSON Array is returned.
  • Otherwise, a string list is returned with the delimiter passed in.
 

Usage

getExposedTokenNames()
getExposedTokenNames(delim)

If delim is specified then it is used as the delimiter that separates the token names.

Example

The following example will print out the names of all the tokens on the current map not covered by fog of war.
[h: names = getExposedTokenNames()]
[r: foreach(name, names, "<br>"): name]

The following example will return the exposed tokens from the TOKEN layer only.

<!-- get all tokens from the token layer and store in json array -->
[h:allToks		= getTokenNames("json",'{layer:["TOKEN"]}')]
<!-- get all exposed tokens from map -->
[h:allExposed	= getExposedTokenNames("json")]
<!-- get the intersection of token layer tokens and all the exposed tokens, resulting in token layer exposed tokens only -->
[h:tokExposed	= json.intersection(allToks, allExp)]
<!-- sort the result ascending -->
[h:tokExposed	= json.sort(allToks, allExp,"a")]

This is exactly the same example as the one above, but then nested, so you can have the result in one line of code.

[h:tokExposed	= json.sort(json.intersection(getTokenNames("json",'{layer:["TOKEN"]}'), getExposedTokenNames("json")),"a")]


Version Changes

  • 1.3b49 - Added "json" delimiter option.
  • 1.3b91 - Apparently now tokens from ALL layers are returned, instead of TOKEN LAYER only. Added example to correct this.