hasLightSource: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Added MacroFunction template and Light Function category)
No edit summary
 
(7 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{MacroFunction
{{MacroFunction
|name=hasLightSource
|name=hasLightSource
|version=1.3b48
|description=
|description=
Returns 1 if the [[Token:Current Token|Current Token]] has any [[LightSource:light source|light source]]s that match the criteria passed in or 0 if there are no matches. If no arguments are passed to the function then it will return 1 if any [[LightSource:light source|light source]] is on. If only the first argument is passed it will return 1 if any [[LightSource:light source|light source]] of that [[LightSource:light source type|light source type]] is on. If both arguments are passed to the function it will return 1 if the [[LightSource:light source|light source]] with the specified name and specified [[LightSource:light source type|light source type]] is on.
Returns 1 if the [[Current Token]] has any [[Introduction to Lights and Sights|light source]]s that match the criteria passed in or 0 if there are no matches. If no arguments are passed to the function then it will return 1 if any [[Introduction to Lights and Sights|light source]] is on. If only the first argument is passed it will return 1 if any light source of that light source type is on. If both arguments are passed to the function it will return 1 if the light source with the specified name and specified light source type is on.


|usage=
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: hasLight = hasLightSource()]
hasLightSource()
[h: hasLight = hasLightSource(type)]
hasLightSource(type)
[h: hasLight = hasLightSource(type, name)]
hasLightSource(type, name)
</source>
hasLightSource(type, name, id)
Where
hasLightSource(type, name, id, mapname)
* type is the [[LightSource:light source type|light source type]], (e.g. "Generic", "D20")
</syntaxhighlight>
* name is the name of the [[LightSource:light source|light source]].


 
'''Parameters'''
 
{{param|type|The light source type, (e.g. "Generic", "D20"). If "*" is entered, all light sources types are checked. Defaults to "*".}}
If delim is specified then it is used to separate the values in the list, if it is not specified then it defaults to ','.
{{param|name|the name of the [[Introduction to Lights and Sights|light source]]. If "*" is entered, all light sources names are checked. Defaults to "*".}}
{{param|id|The token {{code|id}} of the token which is checked for light sources, defaults to the [[Current Token]]. {{TrustedParameter}} }}
{{param|mapname|The name of the map to find the token.  Defaults to the current map.}}


|examples=
|examples=
Check to see if any light source is on.
Check to see if any light source is on.
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: l = hasLightSource()]
[h: l = hasLightSource()]
</source>
</syntaxhighlight>


Check to see if a "D20" lamp is on.
Check to see if a "D20" lamp is on.
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: l = hasLightSource("D20", "Lamp - 15")]
[h: l = hasLightSource("D20", "Lamp - 15")]
</source>
</syntaxhighlight>


Check to see if any "D20" light source is on.
Check to see if any "D20" light source is on.
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: l = hasLightSource("D20")
[h: l = hasLightSource("D20")
</source>
</syntaxhighlight>
 
|changes=
{{change|1.5.4|Added {{code|id}} and {{code|mapname}} parameter options. Changed behavior if {{code|type}} or {{code|name}} are set to "*".}}
 
}}
}}
[[Category:Light Function]]
[[Category:Light Function]]

Latest revision as of 16:01, 15 March 2023

hasLightSource() Function

Introduced in version 1.3b48
Returns 1 if the Current Token has any light sources that match the criteria passed in or 0 if there are no matches. If no arguments are passed to the function then it will return 1 if any light source is on. If only the first argument is passed it will return 1 if any light source of that light source type is on. If both arguments are passed to the function it will return 1 if the light source with the specified name and specified light source type is on.

Usage

hasLightSource()
hasLightSource(type)
hasLightSource(type, name)
hasLightSource(type, name, id)
hasLightSource(type, name, id, mapname)

Parameters

  • type - The light source type, (e.g. "Generic", "D20"). If "*" is entered, all light sources types are checked. Defaults to "*".
  • name - the name of the light source. If "*" is entered, all light sources names are checked. Defaults to "*".
  • id - The token id of the token which is checked for light sources, 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.

Examples

Check to see if any light source is on.
[h: l = hasLightSource()]

Check to see if a "D20" lamp is on.

[h: l = hasLightSource("D20", "Lamp - 15")]

Check to see if any "D20" light source is on.

[h: l = hasLightSource("D20")

Version Changes

  • 1.5.4 - Added id and mapname parameter options. Changed behavior if type or name are set to "*".