Difference between revisions of "LSL Variables"

From Second Life Wiki
Jump to navigation Jump to search
m (Replaced old <LSL> block with <source lang="lsl2">)
 
(9 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Multi-lang}}
{{LSL Header|ml=*}}
{{LSL Header}}


A '''variable''' is a place to store information, like a number or a string.
A '''variable''' is a place to store information, like a number or a string.


A variable has a name, a type, and a value.  The name starts with a letter, and the name convention is similar to C or Java.  Case matters.  ''X'' is not the same as ''x''.
A variable has a name, a type, and a value.  The name starts with a letter or underscore ("_"), and the name convention is similar to C or Java.  Case matters.  ''X'' is not the same as ''x''.


LSL is a strongly and statically typed language. This means that variables must be declared by type and that variables may only hold values of a corresponding type. However, a list variable may hold zero or more values of any other type.
LSL is a strongly and statically typed language. This means that variables must be declared by type and that variables may only hold values of a corresponding type. However, a list variable may hold zero or more values of any other type.


Some examples:
Some examples:
<pre>
<source lang="lsl2">integer count   = 2;           //A whole number
integer count = 2;
float   measure = 1.2;         //A number with decimal places
float measure = 1.2;
string   chars   = "Lee";       //Any text within " "
string chars = "Lee";
list     words   = ["This", "Is", "A", "List"];
list words = ["This", "Is", "A", "List"];
list     entries = ["A list may contain many types of values such as", 2, 1.2, <0.4, 0.8, 1.6>];
list entries = ["A list may contain many types of values such as", 2, 1.2, <0.4, 0.8, 1.6>];
vector   vec_2  = <1,6,2>;     //Generally used for position as xyz, but can be used to store 3 numbers to be parsed out later
vector vec = <1,6,2>;
rotation _rot    = <1,2,3,4>;    //Can also be used to store 4 numbers to be parsed out later</source>
</pre>


== Scope of variables ==
== Scope of variables ==
Line 22: Line 20:


The variable name is in scope from the point it first appears to the end of the scope it is in, or the end of the script for global variables. A name may not be defined twice in the same scope, but a name may be redefined in an inner scope, and it hides the same name at outer scope. Again, the semantics are very similar to C and Java. That is to say, the following code will compile and run.
The variable name is in scope from the point it first appears to the end of the scope it is in, or the end of the script for global variables. A name may not be defined twice in the same scope, but a name may be redefined in an inner scope, and it hides the same name at outer scope. Again, the semantics are very similar to C and Java. That is to say, the following code will compile and run.
<pre>
<source lang="lsl2">integer i = 50;
integer i = 50;


default {
default  
    state_entry() {
{
          string i = "Hello there!"; //This WILL compile just fine, unlike in Java.
    state_entry()  
          llOwnerSay(i); //Will say "Hello there!". There is no way to get the global variable i.
    {
    }
        string i = "Hello there!"; //This WILL compile just fine, unlike in Java.
}
        llOwnerSay(i); //Will say "Hello there!". There is no way to get the global variable i.
</pre>
    }
}</source>


I found this confusing at first, this may make it a little clearer
I found this confusing at first, this may make it a little clearer:
The same rules apply to any variable type, A local variable name will overide any global variable previously defined
The same rules apply to any variable type, a local variable name will overide any global variable previously defined
<pre>
<source lang="lsl2">string j = "Global Hi";
string j = "Global Hi";
integer i = 50;
integer i = 50;
default {
 
    state_entry()  
default  
    {
{
          string i = "Hello there!"; //This WILL compile just fine, unlike in Java.
    state_entry()  
          llOwnerSay(i); //Will say "Hello there!". this is the local variable, accessed only in this part of the script
    {
          llOwnerSay(j); //Will say "Global Hi", this is the global variable that can be accessed anywhere in the script
        string i = "Hello there!"; //This WILL compile just fine, unlike in Java.
    }
        llOwnerSay(i); //Will say "Hello there!". this is the local variable, accessed only in this part of the script
}
        llOwnerSay(j); //Will say "Global Hi", this is the global variable that can be accessed anywhere in the script
</pre>
    }
}</source>




Line 53: Line 51:




<pre>
<source lang="lsl2">integer i = 50;
integer i = 50;
 
default {
default  
    state_entry()  
{
    {
    state_entry()  
          llOwnerSay((string) i); //Will say "50". the global integer has been changed ( cast ) to a string.
    {
          integer j = 60;
        llOwnerSay((string) i); //Will say "50". the global integer has been changed ( cast ) to a string.
          llOwnerSay((string) j); //Will say "60". the local integer has been changed ( cast ) to a string.
        integer j = 60;
    }
        llOwnerSay((string) j); //Will say "60". the local integer has been changed ( cast ) to a string.
}
    }
</pre>
}</source>
 
 
A global variable can be defined with or without a value and the value can be changed later in the script.
Note that in setting the value of j, only the name was used, the type ( integer) is already set globally,
wheras the variable k, is set locally and has its type and value set there.
<source lang="lsl2">integer i = 50;
integer j;
 
default
{
    state_entry()
    {
        llOwnerSay((string) i); //Will say "50". the integer was given a value at declaration.
        j = 60;  //Value added to a global variable
        llOwnerSay((string) j); //Will say "60". the value was added later.
        integer k = 70; //Name, type and value set within a local scope
    }
}</source>
== See Also ==
== See Also ==
* [[string]]
* [[string]]

Latest revision as of 02:47, 22 January 2015

A variable is a place to store information, like a number or a string.

A variable has a name, a type, and a value. The name starts with a letter or underscore ("_"), and the name convention is similar to C or Java. Case matters. X is not the same as x.

LSL is a strongly and statically typed language. This means that variables must be declared by type and that variables may only hold values of a corresponding type. However, a list variable may hold zero or more values of any other type.

Some examples:

integer  count   = 2;            //A whole number
float    measure = 1.2;          //A number with decimal places
string   chars   = "Lee";        //Any text within " "
list     words   = ["This", "Is", "A", "List"];
list     entries = ["A list may contain many types of values such as", 2, 1.2, <0.4, 0.8, 1.6>];
vector   vec_2   = <1,6,2>;      //Generally used for position as xyz, but can be used to store 3 numbers to be parsed out later
rotation _rot    = <1,2,3,4>;    //Can also be used to store 4 numbers to be parsed out later

Scope of variables

A variable can be limited to only certain parts of the script, depending upon where it is placed. This placement, and the areas where it is enabled is called the "scope." Variables that apply to the entire script are called global variables: they are defined at the top of the script above the state declarations. Variables that are within functions or within nested areas are considered local variables.

The variable name is in scope from the point it first appears to the end of the scope it is in, or the end of the script for global variables. A name may not be defined twice in the same scope, but a name may be redefined in an inner scope, and it hides the same name at outer scope. Again, the semantics are very similar to C and Java. That is to say, the following code will compile and run.

integer i = 50;

default 
{
    state_entry() 
    {
        string i = "Hello there!"; //This WILL compile just fine, unlike in Java.
        llOwnerSay(i); //Will say "Hello there!". There is no way to get the global variable i.
    }
}

I found this confusing at first, this may make it a little clearer: The same rules apply to any variable type, a local variable name will overide any global variable previously defined

string  j = "Global Hi";
integer i = 50;

default 
{
    state_entry() 
    {
        string i = "Hello there!"; //This WILL compile just fine, unlike in Java.
        llOwnerSay(i); //Will say "Hello there!". this is the local variable, accessed only in this part of the script
        llOwnerSay(j); //Will say "Global Hi", this is the global variable that can be accessed anywhere in the script
    }
}


Converting between variable types is know as casting. for example in the script above, the global variable i has a value of 50. This can be cast to a string to send the value as text to the chat window. This can also be done with local variables. This is commonly used for debugging a script.


integer i = 50;

default 
{
    state_entry() 
    {
        llOwnerSay((string) i); //Will say "50". the global integer has been changed ( cast ) to a string.
        integer j = 60;
        llOwnerSay((string) j); //Will say "60". the local integer has been changed ( cast ) to a string.
    }
}


A global variable can be defined with or without a value and the value can be changed later in the script. Note that in setting the value of j, only the name was used, the type ( integer) is already set globally, wheras the variable k, is set locally and has its type and value set there.

integer i = 50;
integer j;

default 
{
    state_entry() 
    {
        llOwnerSay((string) i); //Will say "50". the integer was given a value at declaration.
        j = 60;  //Value added to a global variable
        llOwnerSay((string) j); //Will say "60". the value was added later.
        integer k = 70; //Name, type and value set within a local scope
    }
}

See Also