OpenSim: LSL2CS

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
Line 2: Line 2:
 
     state_entry()
 
     state_entry()
 
     {
 
     {
 
+
 
  integer i;
 
  integer i;
 
  for( i=0; i<13;i++ )
 
  for( i=0; i<13;i++ )

Revision as of 06:15, 21 August 2007

default {
    state_entry()
    {

integer i;
for( i=0; i<13;i++ )
{
  llSay(0,(string)i);
}

    }
}

--- can be transformed to

default {
    state_entry()
    {
  llSay(0,"started");

integer i;
i=0;
while( i<13 )
{
  llSay(0,(string)i);
  i++;
}
  llSay(0,"finished");
    }
}

--- can be transformed to

    void state_entry()
    {

int i;
i=0;
SetScope( delegate() 
{ return i<13; }, 
 delegate() 
{
  llSay(0,(string)i);
  i++;
}, delegate()
{
  llSay(0,"finished");
}
);
    }

---

In the above code, the engine will test the condition and call the 'current scope' until the condition is false, then it will set current scope to null and run the third delegate.

Personal tools
General
About This Wiki