js:MapTool.clientInfo: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Conversion script moved page Js:MapTool.clientInfo to js:MapTool.clientInfo: Converting page titles to lowercase)
No edit summary
 
Line 10: Line 10:


|usage=
|usage=
<source lang="javascript" line>
<syntaxhighlight lang="javascript" line>
MapTool.clientInfo.faceEdge();
MapTool.clientInfo.faceEdge();
</source>
</syntaxhighlight>


'''Parameters'''
'''Parameters'''
Line 27: Line 27:


|usage=
|usage=
<source lang="javascript" line>
<syntaxhighlight lang="javascript" line>
MapTool.clientInfo.faceVertex();
MapTool.clientInfo.faceVertex();
</source>
</syntaxhighlight>


'''Parameters'''
'''Parameters'''
Line 43: Line 43:


|usage=
|usage=
<source lang="javascript" line>
<syntaxhighlight lang="javascript" line>
MapTool.clientInfo.portraitSize();
MapTool.clientInfo.portraitSize();
</source>
</syntaxhighlight>


'''Parameters'''
'''Parameters'''
Line 60: Line 60:


|usage=
|usage=
<source lang="javascript" line>
<syntaxhighlight lang="javascript" line>
MapTool.clientInfo.showStatSheet();
MapTool.clientInfo.showStatSheet();
</source>
</syntaxhighlight>


'''Parameters'''
'''Parameters'''
Line 78: Line 78:


|usage=
|usage=
<source lang="javascript" line>
<syntaxhighlight lang="javascript" line>
MapTool.clientInfo.version();
MapTool.clientInfo.version();
</source>
</syntaxhighlight>


'''Parameters'''
'''Parameters'''
Line 94: Line 94:


|usage=
|usage=
<source lang="javascript" line>
<syntaxhighlight lang="javascript" line>
MapTool.clientInfo.fullScreen();
MapTool.clientInfo.fullScreen();
</source>
</syntaxhighlight>


'''Parameters'''
'''Parameters'''
Line 111: Line 111:


|usage=
|usage=
<source lang="javascript" line>
<syntaxhighlight lang="javascript" line>
MapTool.clientInfo.timeInMs();
MapTool.clientInfo.timeInMs();
</source>
</syntaxhighlight>


'''Parameters'''
'''Parameters'''
Line 129: Line 129:


|usage=
|usage=
<source lang="javascript" line>
<syntaxhighlight lang="javascript" line>
MapTool.clientInfo.timeDate();
MapTool.clientInfo.timeDate();
</source>
</syntaxhighlight>


'''Parameters'''
'''Parameters'''
Line 146: Line 146:


|usage=
|usage=
<source lang="javascript" line>
<syntaxhighlight lang="javascript" line>
MapTool.clientInfo.libraryTokens();
MapTool.clientInfo.libraryTokens();
</source>
</syntaxhighlight>


'''Parameters'''
'''Parameters'''
Line 163: Line 163:


|usage=
|usage=
<source lang="javascript" line>
<syntaxhighlight lang="javascript" line>
MapTool.clientInfo.userDefinedFunctions();
MapTool.clientInfo.userDefinedFunctions();
</source>
</syntaxhighlight>


'''Parameters'''
'''Parameters'''
Line 180: Line 180:


|usage=
|usage=
<source lang="javascript" line>
<syntaxhighlight lang="javascript" line>
MapTool.clientInfo.clientId();
MapTool.clientInfo.clientId();
</source>
</syntaxhighlight>


'''Parameters'''
'''Parameters'''

Latest revision as of 18:39, 15 March 2023

 This article describes a feature or macro function that is experimental and may be subject to change.

Within the javascript environment used by js.eval, MapTool.clientInfo gives information about the client and user settings.


clientInfo.faceEdge() Function

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

Introduced in version 1.10.0
Returns true if tokens face the edge.

Usage

MapTool.clientInfo.faceEdge();

Parameters

  • return true if tokens face the edge, false otherwise.


clientInfo.faceVertex() Function

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

Introduced in version 1.10.0
Opposite of faceEdge

Usage

MapTool.clientInfo.faceVertex();

Parameters

  • return true if tokens face the vertex, false otherwise.


clientInfo.portraitSize() Function

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

Introduced in version 1.10.0
Returns the number of pixels used to display portraits

Usage

MapTool.clientInfo.portraitSize();

Parameters

  • return Number of pixels high and wide a portrait is.


clientInfo.showStatSheet() Function

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

Introduced in version 1.10.0
Returns true if the player has show stat sheet selected in preferences.

Usage

MapTool.clientInfo.showStatSheet();

Parameters

  • return true if the stat sheet is show.



clientInfo.version() Function

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

Introduced in version 1.10.0
Version string of maptool.

Usage

MapTool.clientInfo.version();

Parameters

  • return The version information of MapTool, as a string.


clientInfo.fullScreen() Function

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

Introduced in version 1.10.0
Returns if the current frame is fullscreen.

Usage

MapTool.clientInfo.fullScreen();

Parameters

  • return true if the current frame is fullscreen.


clientInfo.timeInMs() Function

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

Introduced in version 1.10.0
Returns the current time with ms precision.

Usage

MapTool.clientInfo.timeInMs();

Parameters

  • return System time in miliseconds as an integer.


clientInfo.timeDate() Function

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

Introduced in version 1.10.0
Returns the current time and date as an opaque object. Just use new Date() instead.

Usage

MapTool.clientInfo.timeDate();

Parameters

  • return System time as a java Date object. It can be converted to an integer or a string, but is otherwise opaque.


clientInfo.libraryTokens() Function

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

Introduced in version 1.10.0
Returns a map of all library tokens.

Usage

MapTool.clientInfo.libraryTokens();

Parameters

  • return Javascript object mapping library token names to library versions.


clientInfo.userDefinedFunctions() Function

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

Introduced in version 1.10.0
Returns a list of user defined function aliases.

Usage

MapTool.clientInfo.userDefinedFunctions();

Parameters

  • return A list of user defined function aliases.


clientInfo.getClientId() Function

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

Introduced in version 1.10.0
Returns the unique ID of the current client as a string.

Usage

MapTool.clientInfo.clientId();

Parameters

  • return Current client ID.


See Also

JS: MapTool