setTokenShape: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
(Modified trusted usage, parameters and result)
No edit summary
 
(11 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{stub|Confirm the shape strings that can be used.<br />
{{stub|No examples yet.}}
No examples yet.}}
{{MacroFunction
{{MacroFunction
|name=setTokenShape
|name=setTokenShape
Line 7: Line 6:
|version=1.3b89
|version=1.3b89
|description=
|description=
This function sets the token's shape (top-down, circle, square).
Sets the token's shape (top down, circle, square, figure).


|usage=
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
setTokenShape(shape)
setTokenShape(shape)
setTokenShape(shape, id)
setTokenShape(shape, id)
</source>
setTokenShape(shape, id, mapname)
</syntaxhighlight>
'''Parameters'''
'''Parameters'''
{{param|shape|String value: {{code|"TOP-DOWN"}}, {{code|"CIRCLE"}}, {{code|"SQUARE"}}.}}
{{param|shape|String value: {{code|"TOP_DOWN"}}, {{code|"CIRCLE"}}, {{code|"SQUARE"}}, {{code|"FIGURE"}}.}}
{{param|id|The token id of the token to check for the state, defaults to the [[Current Token]].}}{{TrustedParameter}}
{{param|id|The token id of the token to set to a new shape, defaults to the [[Current Token]].}}{{TrustedParameter}}
{{param|mapname|The name of the map to find the token.  Defaults to the current map.}}
 


'''Result'''<br />
'''Result'''<br />
The token's shape as a string value: {{code|"TOP-DOWN"}}, {{code|"CIRCLE"}}, {{code|"SQUARE"}}.|example=
The function returns the token's shape as a string value: {{code|"TOP_DOWN"}}, {{code|"CIRCLE"}}, {{code|"SQUARE"}}, {{code|"FIGURE"}}.
This example doesn't really do anything.
 
<source lang="mtmacro" line>
|example=
[h: exampleVariable = "a,b,c"]
On current token.
[r: exampleFunction(exampleVariable, reverse)]
<syntaxhighlight lang="mtmacro" line>
</source>
[h: newShape = "CIRCLE"]
[r: setTokenShape(newShape)]
</syntaxhighlight>
Returns:
<syntaxhighlight lang="mtmacro" line>
Circle
</syntaxhighlight>
With Token ID.
<syntaxhighlight lang="mtmacro" line>
[h: newShape = "TOP_DOWN"]
[h: tokenName = "Some Token"]
[r: setTokenShape(newShape,tokenName)]
</syntaxhighlight>
Returns:
Returns:
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
c,b,a
Top down
</source>
</syntaxhighlight>
 
|changes=
{{change|1.9.0|Shape parameter {{code|TOP_DOWN}} works with or without underscore character.}}
{{change|1.5.4|Added {{code|mapname}} parameter option.}}


|also=
|also=

Latest revision as of 17:49, 14 March 2023

 This article is a stub, you can help the RPTools Wiki project by contributing content to expand this article.
 This article needs: No examples yet.

setTokenShape() Function

Introduced in version 1.3b89
Sets the token's shape (top down, circle, square, figure).

Usage

setTokenShape(shape)
setTokenShape(shape, id)
setTokenShape(shape, id, mapname)

Parameters

  • shape - String value: "TOP_DOWN", "CIRCLE", "SQUARE", "FIGURE".
  • id - The token id of the token to set to a new shape, defaults to the Current Token.

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

  • mapname - The name of the map to find the token. Defaults to the current map.


Result
The function returns the token's shape as a string value: "TOP_DOWN", "CIRCLE", "SQUARE", "FIGURE".

Example

On current token.
[h: newShape = "CIRCLE"]
[r: setTokenShape(newShape)]

Returns:

Circle

With Token ID.

[h: newShape = "TOP_DOWN"]
[h: tokenName = "Some Token"]
[r: setTokenShape(newShape,tokenName)]

Returns:

Top down

See Also

Version Changes

  • 1.9.0 - Shape parameter TOP_DOWN works with or without underscore character.
  • 1.5.4 - Added mapname parameter option.