Scheduler

From Second Life Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Scheduler

A lot of scripters (myself included) have a lot of trouble managing multiple events using LSL's single timer capability. For this reason I wrote myself a simple scheduling engine, it's as efficient as I can really make it given LSL's limitations, and unfortunately Mono is unlikely to speed it up significantly.

When making use of this script template/library you should consider your requirements carefully, as it is not advisable to schedule a lot of rapid events. If however you want to trigger events with around 10 seconds or more between them then you should be just fine using this library.

Please see the example at the bottom of this page on how to use this library.

Notes

This scheduling system is primarily intended for use in scheduling single unique events. If you wish to repeatedly trigger an event at a set interval then you should still use an ordinary timer event, using another script as required. You can use this script for recurring events if you really want, by having your event schedule itself again. This should only be done if the events are relatively infrequent, as LSL list operations are not particularly efficient.

Global variables and functions

The following code segment should be entered at the top of your script. You may rename the variables themselves as you see fit, but make sure to rename them in the rest of the script!

<lsl>list events = []; integer nextEvent = 0; string nextData = "";

// PARAMS: // id - the unique id you associate with your event, use of global variables is recommended here // time - the time at which you want the event to try and execute scheduleEvent(integer id, integer time, string data) {

   events = llListSort((events = []) + events + [time, id, data], 3, TRUE);
   setTimer();

}

// This function sets the timer correctly for the next scheduled event, or de-activates the timer // if there are no event remaining setTimer() {

   if ((events != []) > 0) { // Are there any list items?
       integer time   = llList2Integer(events, 0);
       integer id     = llList2Integer(events, 1);
       if (id != nextEvent) {
           nextEvent = id;
           nextData = llList2String(events, 2);
       }
       float t = (float)(time - llGetUnixTime());
       if (t <= 0.0) t = 0.01;
       llSetTimerEvent(t);
   } else llSetTimerEvent(0.0);

}

// Place your event handling code in here handleEvent(integer id, string data) {

   //if (id == 1) {
   //    llOwnerSay(data);
   //    scheduleEvent(2, llGetUnixTime() + 10, "Done");
   //} else if (id == 2) llOwnerSay(data);

} </lsl>

Timer event

Enter this timer event into your script. It is important that you do not edit it unless you know what you are doing! During normal use you should only have to modify the contents of the handleEvent() function.

<lsl>timer() {

   // Clear timer or it might fire again before we're done
   llSetTimerEvent(0.0);
   // Fire the event
   handleEvent(nextEvent, nextData);
       
   // Get rid of the first item as we're executing it
   integer l = events != [];
   if (l > 0) {
       if (l > 3)
           events = llList2List((events = []) + events, 3, -1);
       else events = [];
   }
   // Prepare the timer for the next event
   setTimer();

}</lsl>

Example

This example simply has two events, 10 seconds apart. The first says "Half-way there" and the second says "Done".

<lsl>list events = []; integer nextEvent = 0; string nextData = "";

// PARAMS: // id - the unique id you associate with your event, use of global variables is recommended here // time - the time at which you want the event to try and execute scheduleEvent(integer id, integer time, string data) {

   events = llListSort((events = []) + events + [time, id, data], 3, TRUE);
   setTimer();

}

// This function sets the timer correctly for the next scheduled event, or de-activates the timer // if there are no event remaining setTimer() {

   if ((events != []) > 0) { // Are there any list items?
       integer time   = llList2Integer(events, 0);
       integer id     = llList2Integer(events, 1);
       nextEvent = id;
       nextData = llList2String(events, 2);
       float t = (float)(time - llGetUnixTime());
       if (t <= 0.0) t = 0.01;
       llSetTimerEvent(t);
   } else llSetTimerEvent(0.0);

}

// Place your event handling code in here handleEvent(integer id, string data) {

   if (id == 1) {
       llOwnerSay(data);
       scheduleEvent(2, llGetUnixTime() + 10, "Done");
   } else if (id == 2) llOwnerSay(data);

}

default {

   state_entry() {
       scheduleEvent(1, llGetUnixTime() + 10, "Half-way there");
   }
   timer() {
       // Clear timer or it might fire again before we're done
       llSetTimerEvent(0.0);
       
       // Fire the event
       handleEvent(nextEvent, nextData);
       
       // Get rid of the first item as we're executing it
       integer l = events != [];
       if (l > 0) {
           if (l > 3)
               events = llList2List((events = []) + events, 3, -1);
           else events = [];
       }
       // Prepare the timer for the next event
       setTimer();
   }

}</lsl>