Difference between revisions of "Manual:Timer Engine"

From Mudlet
Jump to navigation Jump to search
(Created page with "=The Timer Engine= Mudlet supports 4 different sort of timers: # Regular GUI Timers that fire repeatedly in a certain interval specified by the user. # Offset Timers are child ...")
 
(correcting grammar)
(31 intermediate revisions by 4 users not shown)
Line 1: Line 1:
=The Timer Engine=
+
{{TOC right}}
 +
{{#description2:Manual on handling timers via GUI or Lua code, starting, stopping, nesting, etc.}}
  
Mudlet supports 4 different sort of timers:
+
=Timer Engine=
  
# Regular GUI Timers that fire repeatedly in a certain interval specified by the user.
+
Mudlet supports 3 different sorts of timers:
# Offset Timers are child timers of a parent timer and fire a single shot after a specified timeout after their parent fired its respective timeout. This interval is an offset to the interval of its parent timer. Example: parent timer fires every 30 seconds and by doing so kicks off 3 offset timers with an offset of 5 seconds each. Consequently, the 3 children fire 5 seconds after each time the parent timer fired. Offset timers differ visually from regular timers and are represented with a + icon for offset. Offset timers can be turned on and off by the user just like any other timer.
 
# Temporary Timers are very useful, and are the most common type of timer used for scripting purposes. They behave like regular timers, but they are one shot only timers.
 
# Batch Job Timers are a form of timer that issue a sequence of commands/scripts according to a certain timeout instead of a single command/script. This is a very important tool if the sequence of commands is important. Timers depend largely on the operating system you are using and it cannot be guaranteed under certain conditions that if you have set up 5 timers to fire after 1.3 seconds that the sequence in which they fire is the same sequence in which they were created. If the sequence of commands is important, you should always use batch job timers as this form of timers guarantees that the sequence of commands is observed. For example: If you want to make an auto-miner bot that digs its way into a gold mine digging left, down, down, right, left, down until a trigger catches a message that indicates that the mine is going to collapse and bury your poor soul unless you run for your life and head out of the mine. In this scenario the sequence of commands is vital as you’d lose your way and die. This is a classical case for a batch job timer.
 
  
The most common usage of temporary timers is the function tempTimer(). It lets you specify a timeout after which a script is being run e.g.
+
#  Regular GUI Timers
 +
#  Temporary Timers
 +
#  Offset Timers
  
tempTimer( 0.3, <nowiki>[[send("kill rat")]]</nowiki> )
+
The first can be configured by clicking and will start some code in regular intervals. The second and third can be used in other scripts you code. All of them are described in more detail below.
  
This will issue the command "kill rat" after 0.3 seconds. Other clients call this kind of function wait() or doAfter() etc. It is one of the most used functions in MUD scripting. tempTimer() is a single shot timer. It will only fire once and is then marked for deletion. TempTriggers(), by contrast, live through the entire session and are never deleted unless you explicitly delete them or disable them.
+
==Regular GUI Timers==
 +
<span style="color:#0000FF">'''Regular GUI Timers'''</span> that fire repeatedly in a certain interval specified by the user. To make one, go to the ''Timers'' section '''(1)''' in Mudlet, click ''Add'' '''(2)''', select the time periods you'd like the timer to be going off at - save '''(3)''' and activate it '''(4)'''. The timer will go off after your specified interval and then at regular specified intervals after that, until disabled.
  
Another often used function in the context of timers is enableTimer( timerName ), or disableTimer( timerName ). Those are the counterparts of enableTrigger( triggerName ) and disableTrigger( triggerName ), enableKey( keyName ) etc..
+
[[File:Simple timer.png|center|800px]]
 +
 
 +
You can also enable/disable this timer via scripting with [[Manual:Mudlet_Object_Functions#enableTimer|enableTimer()]] and [[Manual:Mudlet_Object_Functions#disableTimer|disableTimer()]]:
 +
 
 +
<syntaxhighlight lang="lua">
 +
enableTimer("Newbie timer") -- enables the timer, so 2s after being enabled, it'll tick - and every 2s after that
 +
 
 +
disableTimer("Newbie timer") -- disables it, so it won't go off anymore
 +
</syntaxhighlight>
 +
 
 +
==Temporary Timers==
 +
<span style="color:#0000FF">'''Temporary Timers'''</span> are timers that go off only once and are the most common type of timer used for scripting purposes. You don't work with them from the Timers section - you just code with them only.
 +
 
 +
For a basic introduction to temporary timers, [[Manual:Introduction#Timers|read up about them here]]. Here, we'll continue expanding on what you've learnt so far.
 +
 
 +
One thing to keep in mind when working with tempTimers is that they are unlike #wait statements you might see in other clients. While #waits are typically cumulative, tempTimers aren't - they go off from the same point in time. Thus if you'd like two timers to go off - one after 3s, and another 1s after the first one - you'd set the second timer to go off at 4s. For example:
 +
 
 +
<syntaxhighlight lang="lua">
 +
tempTimer(3, [[ echo("this is timer #1 going off 3s after being made\n") ]])
 +
tempTimer(4, [[ echo("this is timer #2 going off 4s after being made - and 1s after the first one\n") ]])
 +
</syntaxhighlight>
  
 
{{note}} Temporary timers cannot be accessed from the GUI and are not saved in profiles.
 
{{note}} Temporary timers cannot be accessed from the GUI and are not saved in profiles.
  
To be continued ….
+
===Stopping===
 +
To stop a temporary timer once you've made it and before before it went off - you use [[Manual:Mudlet_Object_Functions#killTimer|killTimer()]]. You give killTimer(id) the ID of the timer that you've made - which you get from Mudlet when you make it. Here's an example:
 +
 
 +
<syntaxhighlight lang="lua">
 +
-- get and store the timer ID in the global "greeting_timer_id" variable
 +
greeting_timer_id = tempTimer(2, [[ echo("hello!\n") ]])
 +
 
 +
-- delete the timer - thus nothing will actually happen!
 +
killTimer(greeting_timer_id)
 +
</syntaxhighlight>
 +
 
 +
===Refreshing===
 +
You can also use [[Manual:Mudlet_Object_Functions#killTimer|killTimer()]] to "refresh" a timer - the following code example will delete the previous timer if one exists and create the new one, thus making sure you don't get multiple copies of it:
 +
 
 +
<syntaxhighlight lang="lua">
 +
if portal_timer then killTimer(portal_timer) end
 +
portal_timer = tempTimer(2, [[ send("enter portal") ]])
 +
</syntaxhighlight>
 +
 
 +
===Using variables===
 +
To embed a value of a variable in tempTimer code, you might try using this given what you've learnt:
 +
 
 +
<syntaxhighlight lang="lua">
 +
tempTimer(1.4, [[ echo("hello, "..matches[2].."!\n") ]])
 +
</syntaxhighlight>
 +
 
 +
But that won't work as you'd expect it to - that will try and use the value of matches[2] ''when the timer goes off'' - while by then, the variable could have changed! Instead, you take it outside the square [[ ]] brackets - this is correct:
 +
 
 +
<syntaxhighlight lang="lua">
 +
tempTimer(1.4, [[ echo("hello, ]]..matches[2]..[[!\n") ]])
 +
 
 +
-- or with less brackets:
 +
tempTimer(1.4, function() echo("hello, "..matches[2].."!\n") end)
 +
</syntaxhighlight>
 +
 
 +
===Nesting===
 +
If you'd like, you can also nest tempTimers one inside another - though the first [[]]'s will become [=[ ]=]:
 +
 
 +
<syntaxhighlight lang="lua">
 +
tempTimer(1, [=[
 +
  echo("this is timer #1 reporting, 1s after being made!\n")
 +
  tempTimer(1, [[
 +
    echo("this is timer #2 reporting, 1s after the first one and 2s after the start\n")
 +
  ]])
 +
]=])
 +
</syntaxhighlight>
 +
 
 +
If you'd like to nest more of them, you'd increase the amount of ='s on the outside:
 +
 
 +
<syntaxhighlight lang="lua">
 +
tempTimer(1, [==[
 +
  echo("this is timer #1 reporting, 1s after being made!\n")
 +
  tempTimer(1, [=[
 +
    echo("this is timer #2 reporting, 1s after the first one and 2s after the start\n")
 +
 
 +
    tempTimer(1, [[
 +
      echo("this is timer #2 reporting, 1s after the second one, 2s after the first one, 3s after the start\n")
 +
    ]])
 +
  ]=])
 +
]==])
 +
</syntaxhighlight>
 +
 
 +
===Closures===
 +
Last but not least, you can also use [http://www.lua.org/pil/6.1.html closures] with tempTimer - using a slightly different syntax that has advantages. For example, you have access variables in its scope, when it goes off:
 +
 
 +
<syntaxhighlight lang="lua">
 +
local name = matches[2]
 +
tempTimer(2.4, function() echo("hello, "..name.."!\n") end)
 +
</syntaxhighlight>
 +
 
 +
Also syntax highlighting will work as expected, because the function will not be given as a string.
 +
 
 +
{{note}} In this case, you mustn't use matches[2] directly in the echo() command. It will not work as expected. Instead, bind the it to a new variable like name as seen in the example above.
 +
 
 +
==Offset Timers==
 +
<span style="color:#0000FF">'''Offset Timers'''</span> are child timers of a parent timer and fire a single shot after a specified timeout after their parent fired its respective timeout. This interval is an offset to the interval of its parent timer. To make them, add a regular GUI timer (see above), then create another timer and '''drag it onto the timer'''. This will make the timer that is "inside" the timer (the child inside the parent) go off at a certain time after its parent goes off. Offset timers differ visually from regular timers and are represented with a + icon for offset. Offset timers can be turned on and off by the user just like any other timer. For example - a  parent timer fires every 30 seconds and by doing so kicks off 3 offset timers with an offset of 5 seconds each. Consequently, the 3 children fire 5 seconds after each time the parent timer fired. To make this happen, make the parent timer tic every 30 seconds, drag 3 timers into it with an offset of 5s on each:
 +
 
 +
[[File:Offset timers.png|center]]
 +
 
 +
<!-- Not implemented yet!
 +
 
 +
==Batch Job Timers==
 +
<span style="color:#0000FF">'''Batch Job Timers'''</span> are a form of timer that issue a sequence of commands/scripts according to a certain timeout instead of a single command/script. This is a very important tool if the sequence of commands is important. Timers depend largely on the operating system you are using and it cannot be guaranteed under certain conditions that if you have set up 5 timers to fire after 1.3 seconds that the sequence in which they fire is the same sequence in which they were created. If the sequence of commands is important, you should always use batch job timers as this form of timers guarantees that the sequence of commands is observed. For example: If you want to make an auto-miner bot that digs its way into a gold mine digging left, down, down, right, left, down until a trigger catches a message that indicates that the mine is going to collapse and bury your poor soul unless you run for your life and head out of the mine. In this scenario the sequence of commands is vital as you’d lose your way and die. This is a classical case for a batch job timer.
 +
 
 +
-->
 +
 
 +
==Uses and examples==
 +
 
 +
=== Enable/disable triggers ===
 +
This'll make use of tempTimer to enable a trigger and disable it after a short period of time:
 +
 
 +
<syntaxhighlight lang="lua">
 +
enableTrigger("Get enemy list")
 +
tempTimer(3, [[disableTrigger("Get enemy list")]])
 +
</syntaxhighlight>
 +
 
 +
=== Running a script after the current triggers ===
 +
A useful trick to get your code to run right after all of the current triggers (GUI and temporary) ran would be to use a time of 0:
 +
 
 +
<syntaxhighlight lang="lua">
 +
-- in a script, this will run after all scripts were loaded - including the system, wherever in the order it is.
 +
tempTimer(0, function()
 +
  print("this timer is running after all triggers have run")
 +
end)
 +
</syntaxhighlight>
 +
 
 +
Have more examples you'd like to see? Please add or [https://discord.gg/kuYvMQ9 request them]!

Revision as of 01:30, 17 January 2023


Timer Engine

Mudlet supports 3 different sorts of timers:

  1. Regular GUI Timers
  2. Temporary Timers
  3. Offset Timers

The first can be configured by clicking and will start some code in regular intervals. The second and third can be used in other scripts you code. All of them are described in more detail below.

Regular GUI Timers

Regular GUI Timers that fire repeatedly in a certain interval specified by the user. To make one, go to the Timers section (1) in Mudlet, click Add (2), select the time periods you'd like the timer to be going off at - save (3) and activate it (4). The timer will go off after your specified interval and then at regular specified intervals after that, until disabled.

Simple timer.png

You can also enable/disable this timer via scripting with enableTimer() and disableTimer():

enableTimer("Newbie timer") -- enables the timer, so 2s after being enabled, it'll tick - and every 2s after that

disableTimer("Newbie timer") -- disables it, so it won't go off anymore

Temporary Timers

Temporary Timers are timers that go off only once and are the most common type of timer used for scripting purposes. You don't work with them from the Timers section - you just code with them only.

For a basic introduction to temporary timers, read up about them here. Here, we'll continue expanding on what you've learnt so far.

One thing to keep in mind when working with tempTimers is that they are unlike #wait statements you might see in other clients. While #waits are typically cumulative, tempTimers aren't - they go off from the same point in time. Thus if you'd like two timers to go off - one after 3s, and another 1s after the first one - you'd set the second timer to go off at 4s. For example:

tempTimer(3, [[ echo("this is timer #1 going off 3s after being made\n") ]])
tempTimer(4, [[ echo("this is timer #2 going off 4s after being made - and 1s after the first one\n") ]])

Note Note: Temporary timers cannot be accessed from the GUI and are not saved in profiles.

Stopping

To stop a temporary timer once you've made it and before before it went off - you use killTimer(). You give killTimer(id) the ID of the timer that you've made - which you get from Mudlet when you make it. Here's an example:

-- get and store the timer ID in the global "greeting_timer_id" variable
greeting_timer_id = tempTimer(2, [[ echo("hello!\n") ]])

-- delete the timer - thus nothing will actually happen!
killTimer(greeting_timer_id)

Refreshing

You can also use killTimer() to "refresh" a timer - the following code example will delete the previous timer if one exists and create the new one, thus making sure you don't get multiple copies of it:

if portal_timer then killTimer(portal_timer) end
portal_timer = tempTimer(2, [[ send("enter portal") ]])

Using variables

To embed a value of a variable in tempTimer code, you might try using this given what you've learnt:

tempTimer(1.4, [[ echo("hello, "..matches[2].."!\n") ]])

But that won't work as you'd expect it to - that will try and use the value of matches[2] when the timer goes off - while by then, the variable could have changed! Instead, you take it outside the square [[ ]] brackets - this is correct:

tempTimer(1.4, [[ echo("hello, ]]..matches[2]..[[!\n") ]])

-- or with less brackets:
tempTimer(1.4, function() echo("hello, "..matches[2].."!\n") end)

Nesting

If you'd like, you can also nest tempTimers one inside another - though the first [[]]'s will become [=[ ]=]:

tempTimer(1, [=[
  echo("this is timer #1 reporting, 1s after being made!\n")
  tempTimer(1, [[
    echo("this is timer #2 reporting, 1s after the first one and 2s after the start\n")
  ]])
]=])

If you'd like to nest more of them, you'd increase the amount of ='s on the outside:

tempTimer(1, [==[
  echo("this is timer #1 reporting, 1s after being made!\n")
  tempTimer(1, [=[
    echo("this is timer #2 reporting, 1s after the first one and 2s after the start\n")

    tempTimer(1, [[
      echo("this is timer #2 reporting, 1s after the second one, 2s after the first one, 3s after the start\n")
    ]])
  ]=])
]==])

Closures

Last but not least, you can also use closures with tempTimer - using a slightly different syntax that has advantages. For example, you have access variables in its scope, when it goes off:

local name = matches[2]
tempTimer(2.4, function() echo("hello, "..name.."!\n") end)

Also syntax highlighting will work as expected, because the function will not be given as a string.

Note Note: In this case, you mustn't use matches[2] directly in the echo() command. It will not work as expected. Instead, bind the it to a new variable like name as seen in the example above.

Offset Timers

Offset Timers are child timers of a parent timer and fire a single shot after a specified timeout after their parent fired its respective timeout. This interval is an offset to the interval of its parent timer. To make them, add a regular GUI timer (see above), then create another timer and drag it onto the timer. This will make the timer that is "inside" the timer (the child inside the parent) go off at a certain time after its parent goes off. Offset timers differ visually from regular timers and are represented with a + icon for offset. Offset timers can be turned on and off by the user just like any other timer. For example - a parent timer fires every 30 seconds and by doing so kicks off 3 offset timers with an offset of 5 seconds each. Consequently, the 3 children fire 5 seconds after each time the parent timer fired. To make this happen, make the parent timer tic every 30 seconds, drag 3 timers into it with an offset of 5s on each:

Offset timers.png


Uses and examples

Enable/disable triggers

This'll make use of tempTimer to enable a trigger and disable it after a short period of time:

enableTrigger("Get enemy list")
tempTimer(3, [[disableTrigger("Get enemy list")]])

Running a script after the current triggers

A useful trick to get your code to run right after all of the current triggers (GUI and temporary) ran would be to use a time of 0:

-- in a script, this will run after all scripts were loaded - including the system, wherever in the order it is.
tempTimer(0, function()
  print("this timer is running after all triggers have run")
end)

Have more examples you'd like to see? Please add or request them!