getMBL: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Change <source> to <syntaxhighlight>)
m (Text replacement - "source>" to "syntaxhighlight>")
 
(5 intermediate revisions by 3 users not shown)
Line 10: Line 10:
|usage=
|usage=
<syntaxhighlight lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
getMBL(shape)
getMBL(shape,format)
getMBL(shape,format)
</syntaxhighlight>
</syntaxhighlight>


This function retrieves the MBL found in the given shape.
This function retrieves the MBL found in the given shape(s).


'''Parameters'''
'''Parameters'''
{{param|shape|A JSON object as described in {{func|drawMBL}}.}}
{{param|shape|A JSON object or array of JSON objects, as described in {{func|drawMBL}}. If an array, gets all the MBL within all provided shapes, otherwise just the MBL in the single provided shape.}}
{{param|format|Boolean. Returns a JSON object if {{false}}, or an JSON array of coordinates if {{true}}.  In either case, the returned shape covers the MBL found in the area.}}
{{param|format|OPTIONAL Boolean. Returns a JSON object if {{false}}, or a JSON array of coordinates if {{true}}.  In either case, the returned shape covers the MBL found in the area. Defaults to {{false}}}}




''Example:''
|examples=
<syntaxhighlight lang="mtmacro">
<syntaxhighlight lang="mtmacro">
[h:rectangle = "{'shape':'rectangle','x':50,'y':50,'w':100,'h':200,'r':45,'fill':1,'thickness':1,'scale':0}"]
[h:rectangle = '{"shape":"rectangle","x":50,"y":50,"w":100,"h":200,"r":45,"fill":1,"thickness":1,"scale":0}']
[r:mblData  = getMBL(rectangle , 0)]
[r:mblData  = getMBL(rectangle , 0)]
</syntaxhighlight><br />
</syntaxhighlight><br />

Latest revision as of 18:19, 14 March 2023

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

getMBL() Function

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

Introduced in version 1.9.0
Gets the Movement Blocking Layer (MBL) shapes for the area specified in the shape parameter.

Usage

getMBL(shape)
getMBL(shape,format)

This function retrieves the MBL found in the given shape(s).

Parameters

  • shape - A JSON object or array of JSON objects, as described in drawMBL(). If an array, gets all the MBL within all provided shapes, otherwise just the MBL in the single provided shape.
  • format - OPTIONAL Boolean. Returns a JSON object if false(0), or a JSON array of coordinates if true(1). In either case, the returned shape covers the MBL found in the area. Defaults to false(0)

Examples

[h:rectangle = '{"shape":"rectangle","x":50,"y":50,"w":100,"h":200,"r":45,"fill":1,"thickness":1,"scale":0}']
[r:mblData   = getMBL(rectangle , 0)]

See Also