Automate Updating a Token Property: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Cleanup)
Line 1: Line 1:
===How to automate updating a token property===
This section expects that you are already familiar with how to add [[Introduction to Macro Writing|macro buttons]] to the MapTool user interface.


This section expects that you are already familiar with how to add [[Macros:introduction|macro buttons]] to the MapTool user interface.
===Example: Updating Hit Points===


====Example: Updating Hit Points====
Let's say you have a property to represent hit points. We'll call our property {{code|HP}}.  Now we want some easy way to update {{code|HP}}, so we're going to create a [[macro button]] that executes a [[macro]].


Let's say you have a property to represent hit points.  We'll call our property '''HP'''Now we want some easy way to update '''HP''', so we're going to create a [[macro button]] that executes a [[macro]].
First, consider how you want this to work.  We want a window to popup on the screen and ask the user to enter a numberThat number will be subtracted from {{code|HP}}, so the user can use a positive number to represent damage and a negative number to represent healing.  (We'll show another approach later.)


First, consider how you want this to work.  We want a window to popup on the screen and ask the user to enter a number.  That number will be subtracted from '''HP''', so the user can use a positive number to represent damage and a negative number to represent healing.  (We'll show another approach later.)
The first step will be to prompt for the number.  MapTool has this ability built-in.  All we need to do is use a variable name that doesn't exist yet and MapTool will popup the prompt!  The name of the variable is part of the prompt, so we'll use a descriptive name.  How about {{code|AmountOfDamage}}?
 
The first step will be to prompt for the number.  MapTool has this ability built-in.  All we need to do is use a variable name that doesn't exist yet and MapTool will popup the prompt!  The name of the variable is part of the prompt, so we'll use a descriptive name.  How about '''AmountOfDamage'''?


<source lang="mtmacro" line>
<source lang="mtmacro" line>
Line 15: Line 13:
</source>
</source>


Notice the extra variable name and the equals sign?  That tells MapTool to calculate whatever is on the right of the equals sign and store the result into the variable on the left.  In this case, there's no formula, so this becomes simply a copy -- from the variable '''AmountOfDamage''' to '''damage'''.  But when MapTool tries to read the value of the variable and it doesn't exist, the popup will automatically appear!  That's perfect for what we want!
Notice the extra variable name and the equals sign?  That tells MapTool to calculate whatever is on the right of the equals sign and store the result into the variable on the left.  In this case, there's no formula, so this becomes simply a copy -- from the variable {{code|AmountOfDamage}} to {{code|damage}}.  But when MapTool tries to read the value of the variable and it doesn't exist, the popup will automatically appear!  That's perfect for what we want!


Now the next step is to subtract that from the '''HP''' property.  Fortunately, what you learned in the last paragraph can be used again:
Now the next step is to subtract that from the {{code|HP}} property.  Fortunately, what you learned in the last paragraph can be used again:


<source lang="mtmacro" line>
<source lang="mtmacro" line>
Line 24: Line 22:
</source>
</source>


This time the second line calculates the formula on the right ('''HP - damage''') and stores the result into ... '''HP'''?  Isn't that going to screw up our '''HP''' value?
This time the second line calculates the formula on the right ({{code|HP - damage}}) and stores the result into ... {{code|HP}}?  Isn't that going to screw up our {{code|HP}} value?


No, it doesn't screw it up, but it does ''replace'' that value with the result.  And because '''HP''' is a property, the result is stored back into the token's property.  If you were to right-click on the token and save it to an external file, the new value of '''HP''' is stored with it.  When the token is later reloaded, that value will come with it.
No, it doesn't screw it up, but it does ''replace'' that value with the result.  And because {{code|HP}} is a property, the result is stored back into the token's property.  If you were to right-click on the token and save it to an external file, the new value of {{code|HP}} is stored with it.  When the token is later reloaded, that value will come with it.


If you want to add to the hit points instead, you have two choices:  either the user can enter a negative number, or you can change the '''-''' to a '''+'''.  The first option is easy because it puts the burden on the user!  The second option is really an option -- who wants to edit their macro every time they want to switch from damage to healing?  Another choice not listed above would be to create a second macro.  Then there could be one macro for adding damage and one for adding healing.
If you want to add to the hit points instead, you have two choices:  either the user can enter a negative number, or you can change the {{code|-}} to a {{code|+}}.  The first option is easy because it puts the burden on the user!  The second option is really an option -- who wants to edit their macro every time they want to switch from damage to healing?  Another choice not listed above would be to create a second macro.  Then there could be one macro for adding damage and one for adding healing.


There's a few things still needed here to make this a little prettier, but those are future steps.  Go ahead and try this out right now on a token that you create in MapTool.  (The default property type, ''Basic'', includes a property named '''HP'''.)  And try adding the second macro as well, just for the practice.  (Believe me, the more practice you get early in the process, the easier it will become later on.)
There's a few things still needed here to make this a little prettier, but those are future steps.  Go ahead and try this out right now on a token that you create in MapTool.  (The default property type, ''Basic'', includes a property named {{code|HP}}.)  And try adding the second macro as well, just for the practice.  (Believe me, the more practice you get early in the process, the easier it will become later on.)


====Example:  Let's Rest for a Minute...====
===Example:  Let's Rest for a Minute...===


So let's say that you now have a macro button that prompts you to change the token's hit points through damage or healing as described above.  How do we reset their hit points to their maximum when they rest?
So let's say that you now have a macro button that prompts you to change the token's hit points through damage or healing as described above.  How do we reset their hit points to their maximum when they rest?


We already know that we have a '''HP''' and '''HPmax''' properties, so when they are healed up we simply need to copy the value in '''HPmax''' into '''HP'''.  That should give you what you need to create a simple one-line macro:
We already know that we have a {{code|HP}} and {{code|HPmax}} properties, so when they are healed up we simply need to copy the value in {{code|HPmax}} into {{code|HP}}.  That should give you what you need to create a simple one-line macro:


<source lang="mtmacro" line>
<source lang="mtmacro" line>
Line 42: Line 40:
</source>
</source>


Simple, right?  But for the sake of argument, let's expand on this a bit.  Instead of restoring all of the hit points to the creature, we will prompt the user for the number of hours that the creature will be resting.  For my demonstration, I'm assuming that there's a property named '''Level'''.  If it rests for less than 24 hours, it gets back '''Level*2''' hit points.  If it rests for 24 hours or more, it gets back '''Level*6'''.
Simple, right?  But for the sake of argument, let's expand on this a bit.  Instead of restoring all of the hit points to the creature, we will prompt the user for the number of hours that the creature will be resting.  For my demonstration, I'm assuming that there's a property named {{code|Level}}.  If it rests for less than 24 hours, it gets back {{code|Level*2}} hit points.  If it rests for 24 hours or more, it gets back {{code|Level*6}}.


<source lang="mtmacro" line>
<source lang="mtmacro" line>
Line 50: Line 48:
</source>
</source>


You may notice the [[Macros:Functions:if|if()]] function on the second line.  One word of warning when using the [[Macros:Functions:if|if()]] function:  both the true and the false sections are executed!  For that reason, you may want the [[Macros:Branching_and_Looping#IF_Option|IF()]] option instead.  Note that the syntax is slightly different between the two, so be careful about which one you choose.
You may notice the {{func|if}} function on the second line.  One word of warning when using the {{func|if}} function:  both the true and the false sections are executed!  For that reason, you may want the {{roll|if}} roll option instead.  Note that the syntax is slightly different between the two, so be careful about which one you choose.
 
====Example:  One Macro to Rule Them All====


{{Clarify|This article needs cleanup and formatting}}
===Example: One Macro to Rule Them All===
[[Category:How To]]


Okay, so let's say you want to have one macro to handle all your healing needs. Using D&D 4th Edition, for example, you can:
Okay, so let's say you want to have one macro to handle all your healing needs. Using D&D 4th Edition, for example, you can:
Line 65: Line 60:
- gain Temporary HP (alone or in addition to a Healing Surge, and temporary HPs don't stack)
- gain Temporary HP (alone or in addition to a Healing Surge, and temporary HPs don't stack)


Using the simple variable prompt explained above becomes clumsy, so let's use the [[input|{{code|input()}}]] function instead:
Using the simple variable prompt explained above becomes clumsy, so let's use the {{func|input}} function instead:


<source lang="mtmacro" line>
<source lang="mtmacro" line>
Line 75: Line 70:
</source>
</source>


This will prompt you for all possible variations detailed above, in a single input screen. ((image needed)) Then, you can use some [[if|{{code|if()}}]] functions or [if(): ] roll options to update all the properties involved. This example assumes that you're using the token properties {{code|HP}}, {{code|TempHP}}, {{code|SurgeRemain}} and {{code|SurgeValue}}:
This will prompt you for all possible variations detailed above, in a single input screen. ((image needed)) Then, you can use some {{func|if}} functions or {{roll|if}} roll options to update all the properties involved. This example assumes that you're using the token properties {{code|HP}}, {{code|TempHP}}, {{code|SurgeRemain}} and {{code|SurgeValue}}:


<source lang="mtmacro" line>
<source lang="mtmacro" line>
Line 89: Line 84:
</source>
</source>


Notice that the [[abort|{{code|abort()}}]] function was used after the [[input|{{code|input()}}]] function to make sure that, in case the user clicked "Cancel" in the input window, the properties wouldn't be updated.
Notice that the {{func|abort}} function was used after the {{func|input}} function to make sure that, in case the user clicked "Cancel" in the input window, the properties wouldn't be updated.
[[Category:How To]]

Revision as of 03:52, 12 May 2009

This section expects that you are already familiar with how to add macro buttons to the MapTool user interface.

Example: Updating Hit Points

Let's say you have a property to represent hit points. We'll call our property HP. Now we want some easy way to update HP, so we're going to create a macro button that executes a macro.

First, consider how you want this to work. We want a window to popup on the screen and ask the user to enter a number. That number will be subtracted from HP, so the user can use a positive number to represent damage and a negative number to represent healing. (We'll show another approach later.)

The first step will be to prompt for the number. MapTool has this ability built-in. All we need to do is use a variable name that doesn't exist yet and MapTool will popup the prompt! The name of the variable is part of the prompt, so we'll use a descriptive name. How about AmountOfDamage?

[ damage = AmountOfDamage ]

Notice the extra variable name and the equals sign? That tells MapTool to calculate whatever is on the right of the equals sign and store the result into the variable on the left. In this case, there's no formula, so this becomes simply a copy -- from the variable AmountOfDamage to damage. But when MapTool tries to read the value of the variable and it doesn't exist, the popup will automatically appear! That's perfect for what we want!

Now the next step is to subtract that from the HP property. Fortunately, what you learned in the last paragraph can be used again:

[ damage = AmountOfDamage ]
[ HP = HP - damage ]

This time the second line calculates the formula on the right (HP - damage) and stores the result into ... HP? Isn't that going to screw up our HP value?

No, it doesn't screw it up, but it does replace that value with the result. And because HP is a property, the result is stored back into the token's property. If you were to right-click on the token and save it to an external file, the new value of HP is stored with it. When the token is later reloaded, that value will come with it.

If you want to add to the hit points instead, you have two choices: either the user can enter a negative number, or you can change the - to a +. The first option is easy because it puts the burden on the user! The second option is really an option -- who wants to edit their macro every time they want to switch from damage to healing? Another choice not listed above would be to create a second macro. Then there could be one macro for adding damage and one for adding healing.

There's a few things still needed here to make this a little prettier, but those are future steps. Go ahead and try this out right now on a token that you create in MapTool. (The default property type, Basic, includes a property named HP.) And try adding the second macro as well, just for the practice. (Believe me, the more practice you get early in the process, the easier it will become later on.)

Example: Let's Rest for a Minute...

So let's say that you now have a macro button that prompts you to change the token's hit points through damage or healing as described above. How do we reset their hit points to their maximum when they rest?

We already know that we have a HP and HPmax properties, so when they are healed up we simply need to copy the value in HPmax into HP. That should give you what you need to create a simple one-line macro:

[ HP = HPmax ]

Simple, right? But for the sake of argument, let's expand on this a bit. Instead of restoring all of the hit points to the creature, we will prompt the user for the number of hours that the creature will be resting. For my demonstration, I'm assuming that there's a property named Level. If it rests for less than 24 hours, it gets back Level*2 hit points. If it rests for 24 hours or more, it gets back Level*6.

[ hours = NumberOfHours ]
[ healing = if(hours < 24, Level * 2, Level * 6) ]
[ HP = HP + healing ]

You may notice the if() function on the second line. One word of warning when using the if() function: both the true and the false sections are executed! For that reason, you may want the [if():] roll option instead. Note that the syntax is slightly different between the two, so be careful about which one you choose.

Example: One Macro to Rule Them All

Okay, so let's say you want to have one macro to handle all your healing needs. Using D&D 4th Edition, for example, you can:

- spend a Healing Surge and regain HP - spend a Healing Surge without gaining HP - gain HP as if you spent a Healing Surge - gain a set number of HP (alone or in addition to a Healing Surge) - gain Temporary HP (alone or in addition to a Healing Surge, and temporary HPs don't stack)

Using the simple variable prompt explained above becomes clumsy, so let's use the input() function instead:

[ cancel = input("SpendSurge | 1 | Spend Healing Surge? | CHECK",
                 "GainSurge | 1 | Gain Surge HP? | CHECK",
                 "ExtraHeal | 0 | Additional Healing",
                 "GainTempHP | 0 | Temporary Hit Points") ]
[ abort(cancel) ]

This will prompt you for all possible variations detailed above, in a single input screen. ((image needed)) Then, you can use some if() functions or [if():] roll options to update all the properties involved. This example assumes that you're using the token properties HP, TempHP, SurgeRemain and SurgeValue:

[ cancel = input("SpendSurge | 1 | Spend Healing Surge? | CHECK",
                 "GainSurge | 1 | Gain Surge HP? | CHECK",
                 "ExtraHeal | 0 | Additional Healing",
                 "GainTempHP | 0 | Temporary Hit Points") ]
[ abort(cancel) ]
[ if(SpendSurge): SurgeRemain = SurgeRemain - 1 ]
[ if(GainSurge): HP = HP + SurgeValue ]
[ HP = HP + ExtraHeal ]
[ TempHP = max(TempHP, GainTempHP) ]

Notice that the abort() function was used after the input() function to make sure that, in case the user clicked "Cancel" in the input window, the properties wouldn't be updated.