defineFunction: Difference between revisions
No edit summary |
m (Cleaned up syntax examples; added HTML table for parameter combinations) |
||
Line 10: | Line 10: | ||
<syntaxhighlight lang="mtmacro" line> | <syntaxhighlight lang="mtmacro" line> | ||
defineFunction(function, macro) | defineFunction(function, macro) | ||
defineFunction(function, macro, ignoreOutput) | defineFunction(function, macro, ignoreOutput) | ||
defineFunction(function, macro, ignoreOutput, newScope) | defineFunction(function, macro, ignoreOutput, newScope) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 21: | Line 17: | ||
{{param|macro|The name and location of the macro that is called when the user defined function is used.}} | {{param|macro|The name and location of the macro that is called when the user defined function is used.}} | ||
{{param|ignoreOutput|If the defined function should ignore all output and only return the value of {{code|macro.return}}, defaults to {{false}}.}} | {{param|ignoreOutput|If the defined function should ignore all output and only return the value of {{code|macro.return}}, defaults to {{false}}.}} | ||
{{param|newScope| | {{param|newScope|Whether the defined function should create a new variable scope when executed. Defaults to {{true}}. In the default setting, a function can reference only those variables it sets itself, variables passed to it, and global variables defined in token properties. When set to {{false}}, this function may reference variables defined in the calling function. | ||
{{note|Note: Best practice is to use the default setting. The danger lies in inadvertently changing values in the calling function which makes it difficult to track down where the variable is being changed. Using a prefix on your variable declarations like {{code|'''v_'''varName}} is one practice to insure this doesn't happen and is a good visual indicator that the function shares a scope with the calling function. There is ''still'' a risk, however, as the calling function could've defined its variables with the same prefix!}} }} | |||
Interactions between the {{code|ignoreOutput}} parameter and the [[macro.return]] special variable: | Interactions between the {{code|ignoreOutput}} parameter and the [[macro.return]] special variable: | ||
Line 32: | Line 28: | ||
* If the UDF has output to chat, [[macro.return]] is not set and {{code|ignoreOutput}} is {{code|1}} then the return value and [[macro.return]] are empty. | * If the UDF has output to chat, [[macro.return]] is not set and {{code|ignoreOutput}} is {{code|1}} then the return value and [[macro.return]] are empty. | ||
The following table summarizes how these parameters are used. It assumes that the user-defined function is named {{code|UDF}} and is invoked as in <code>[var = UDF()]</code> | |||
<!-- It seems to be impossible to insert a table inside a template. | |||
The vertical bar ("¦") is used as the separator between parameters to | |||
the template, so "{¦" indicates a new parameter and not the beginning | |||
of a wiki table. Even using {{!}} to generate a vertical bar doesn't seem to | |||
work. I also tried {<nowiki/>{{!}} with no luck. | |||
{<nowiki/>{{!}} | |||
|+ Summary of [[macro.return]] and {{code|ignoreOutput}} parameter | |||
|- | |||
! [[macro.return]] !! {{code|ignoreOutput}} !! Called By !! Output Result !! Return Result | |||
|- | |||
| [h: macro.return="abc"]def || {{code|0}} || [var=UDF()] || {{code|"def"}} stored in {{code|var}} || [[macro.return]] contains {{code|"abc"}} | |||
|} | |||
So here's the table in raw HTML. | |||
--> | |||
<table class="wikitable" style="margin:auto; width:100%"> | |||
<caption>Summary of {{code|macro.return}} and {{code|ignoreOutput}} parameter usage</caption> | |||
<tr><th>UDF Code | |||
<th>{{code|ignoreOutput}} | |||
<th>Output Result | |||
<th>Return Result | |||
</tr> | |||
<tr><td><code>[h: macro.return="abc"]<br/>def</code> | |||
<td>{{code|0}} | |||
<td>{{code|"def"}} stored in {{code|var}} | |||
<td>{{code|macro.return}} contains {{code|"abc"}} | |||
</tr> | |||
<tr><td><code>[h: macro.return="abc"]<br/>def</code> | |||
<td>{{code|1}} | |||
<td>{{code|"abc"}} stored in {{code|var}} | |||
<td>{{code|macro.return}} contains {{code|"abc"}} | |||
</tr> | |||
<tr><td>''macro.return not set''<br/><code>def</code> | |||
<td>{{code|0}} | |||
<td>{{code|"def"}} stored in {{code|var}} | |||
<td>{{code|macro.return}} is empty | |||
</tr> | |||
<tr><td>''macro.return not set''<br/><code>def</code> | |||
<td>{{code|1}} | |||
<td>{{code|var}} is empty | |||
<td>{{code|macro.return}} is empty | |||
</tr> | |||
</table> | |||
|example= | |example= |
Latest revision as of 03:20, 3 July 2023
This article is a stub, you can help the RPTools Wiki project by contributing content to expand this article.
This article needs: Could use examples of the ignoreOutput and newScope parameters.
defineFunction() Function
Note: This function can only be used in a Trusted Macro
Usage
defineFunction(function, macro)
defineFunction(function, macro, ignoreOutput)
defineFunction(function, macro, ignoreOutput, newScope)
Parameters
function
- The name of the user defined function to be defined.macro
- The name and location of the macro that is called when the user defined function is used.ignoreOutput
- If the defined function should ignore all output and only return the value ofmacro.return
, defaults tofalse
(0
).newScope
- Whether the defined function should create a new variable scope when executed. Defaults totrue
(1
). In the default setting, a function can reference only those variables it sets itself, variables passed to it, and global variables defined in token properties. When set tofalse
(0
), this function may reference variables defined in the calling function.
v_varName
is one practice to insure this doesn't happen and is a good visual indicator that the function shares a scope with the calling function. There is still a risk, however, as the calling function could've defined its variables with the same prefix!Interactions between the ignoreOutput
parameter and the macro.return special variable:
- If the UDF sets the value of macro.return and
ignoreOutput
is0
then any output is the return value and macro.return has the value assigned.
- If the UDF sets the value of macro.return and
ignoreOutput
is1
then the return value is the value assigned to macro.return and macro.return has the value assigned.
- If the UDF has output to chat, macro.return is not set and
ignoreOutput
is0
then that output is the return value and macro.return is empty.
- If the UDF has output to chat, macro.return is not set and
ignoreOutput
is1
then the return value and macro.return are empty.
The following table summarizes how these parameters are used. It assumes that the user-defined function is named UDF
and is invoked as in [var = UDF()]
UDF Code | ignoreOutput
| Output Result | Return Result |
---|---|---|---|
[h: macro.return="abc"]
| 0
| "def" stored in var
| macro.return contains "abc"
|
[h: macro.return="abc"]
| 1
| "abc" stored in var
| macro.return contains "abc"
|
macro.return not setdef
| 0
| "def" stored in var
| macro.return is empty
|
macro.return not setdef
| 1
| var is empty
| macro.return is empty
|
Example
[h: defineFunction("character.heal", "heal@Lib:Character")]
Defines a function character.heal()
which calls heal@Lib:Character
when evoked. Note that in this case there must exist a function called "heal" on a token called "lib:Character". The advantage of using the prefix "lib:" on the token name is that it becomes a "lib:token" which is accessible from ANY map instead of only the map you happen to have active.
Should you pass on any arguments e.g.
[h: character.heal("hello", "hi")]
then these parameters can be accessed inside character.heal()
by using
[h: firstArg = arg(0)]
[h: theOtherOne = arg(1)]
See Also
Version Changes
- 1.3b56 - Added
ignoreOutput
andnewScope
parameter options.