Unofficial LSL reference

User Tools

Login

You are currently not logged in! Enter your authentication credentials below to log in. You need to have cookies enabled to log in.

Login

Forgotten your password? Get a new one: Set new password

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

types:key [2014-01-12 04:31 SLT]
sei [Examples of automatic type conversion] Emphasize Globals for clarity
types:key [2015-09-22 10:23 SLT] (current)
sei fix link
Line 1: Line 1:
-===== Type: key =====+$nav 
 +===== Key type =====
  
-The **key** type is similar to the [[types/string]] type, in that it can also hold any string. However, it is meant to hold strings that have the format of an Universally Unique Identifier (UUID). The format of an UUID is:+The $ty[keytype is similar to the $lty[string] type, in that it can also hold any string. However, it is meant to hold strings that have the format of an Universally Unique Identifier (UUID). The format of an UUID is:
  
   * 8 hexadecimal characters.   * 8 hexadecimal characters.
Line 9: Line 10:
   * 12 hexadecimal characters.   * 12 hexadecimal characters.
  
-For example, ​''​5748decc-f629-461c-9a36-a35a221fe21f'' ​is the UUID for [[constants/TEXTURE_BLANK]]. The hexadecimal characters are output in lower case by all functions that output them (such as [[functions/llGenerateKey]]), and are accepted in either case by all functions that accept them (such as [[functions/llGetAgentInfo]]).+For example, ​**5748decc-f629-461c-9a36-a35a221fe21f** is the UUID for $lct[TEXTURE_BLANK]. The hexadecimal characters are output in lower case by all functions that output them (such as $lfn[llGenerateKey]),​ and are accepted in either case by all functions that accept them (such as $lfn[llGetAgentInfo]).
  
-There is a special UUID, the null UUID. Its value is ''​00000000-0000-0000-0000-000000000000''​. Some functions that return a key variable may return a null UUID when it's not possible to retrieve the requested one for any reason. For example, [[functions/llGetLinkKey]] will return the null UUID if the link number is not valid. There is a constant with the string that corresponds to the null UUID, called NULL_KEY.+There is a special UUID, the null UUID. Its value is **00000000-0000-0000-0000-000000000000**. Some functions that return a key variable may return a null UUID when it's not possible to retrieve the requested one for any reason. For example, ​$lfn[llGetLinkKey] will return the null UUID if the link number is not valid. There is a constant with the string that corresponds to the null UUID, called ​$lct[NULL_KEY]. 
 + 
 +Note that since the $ty[key] type can hold any string, it can be (and has been) (ab)used to fulfil the same role as a $ty[string] (for example, in $lev[link_message] events).
  
 === Automatic type conversion between key and string === === Automatic type conversion between key and string ===
  
-Type conversion between ​''​string'' ​and ''​key'' ​happens automatically in most cases. One exception is the string concatenation ​[[/​operators|operator]] (+). When concatenating a key to a string, the key has to be typecast to string first by prefixing it with ''​(string)''​. See examples below.+Type conversion between ​$ty[stringand $ty[keyhappens automatically in most cases. One exception is the string concatenation operator (+). When concatenating a key to a string, the key has to be typecast to string first by prefixing it with ''​(string)''​. See examples below.
  
-There is no syntax to specify a key-typed ​constant; keys need to be type cast from string by using the ''​(key)''​ prefix. Even the predefined [[constants/​]] that hold UUIDs are not of type ''​key'',​ but ''​string''​. This is mostly relevant when storing keys in a [[types/list]], because the elements need the correct type when used with functions such as [[functions/llListFindList]] or [[functions/llGetListEntryType]]. In particular, this bars the possibility of initializing a list with a key constant ​in the globals section of a script, because type casts are not allowed there. The only possibility to initialize ​string with key in the globals section is to define a key-typed variable first and use it in the list. See examples below.+There is no syntax to specify a key-typed ​literal; keys need to be type cast from string by using the ''​(key)''​ prefix. Even the predefined ​$lct[] that hold UUIDs are not of type ''​key'',​ but ''​string''​. This is mostly relevant when storing keys in a $lty[list], because the elements need the correct type when used with functions such as $lfn[llListFindList] or $lfn[llGetListEntryType]. In particular, this bars the possibility of initializing a list with a key literal ​in the globals section of a script, because type casts are not allowed there. The only possibility to include ​key element inside ​list in the globals section is to define a key-typed variable first and use it in the list. See examples below.
  
 === Additional notes === === Additional notes ===
  
-By using ''​if (value)...'',​ where the type of ''​value''​ is ''​key''​, it's possible to check if a key variable is actually a valid UUID or not. The code in the true branch will execute only when the value is not NULL_KEY //​and// ​it represents a valid UUID. It only works that way for the ''​if'' ​statement. In contrast, the expression ''​value != NULL_KEY''​ will //also// be [[constants/TRUE]] for every value that is not a valid UUID. See examples below.+By using ''​if (value)...'',​ where the type of ''​value''​ is $ty[key], it's possible to check if a key variable is actually a valid UUID or not. The code in the true branch will execute only when it represents a //valid// UUID other than the null UUID. It only works that way for the $lkw[ifstatement ​and others that accept conditions ($lkw[while],​ $lkw[do-while],​ $lkw[for]). In contrast, the expression ''​value != NULL_KEY''​ will //also// be $lct[TRUE] for every value that is not a valid UUID. See examples below.
  
 When comparing two key typed values, they are compared as strings. An implication is that if they differ only in case, even when they represent the same UUID, they won't be considered equal. When comparing two key typed values, they are compared as strings. An implication is that if they differ only in case, even when they represent the same UUID, they won't be considered equal.
Line 31: Line 34:
 ===== Examples of automatic type conversion ===== ===== Examples of automatic type conversion =====
  
-[[functions/llGetOwner]] returns a key, and [[functions/llOwnerSay]] expects a string. The following examples illustrate how automatic conversion from ''​key''​ to ''​string''​ happens:+$lfn[llGetOwner] returns a key, and $lfn[llOwnerSay] expects a string. The following examples illustrate how automatic conversion from ''​key''​ to ''​string''​ happens:
 <code lsl2> <code lsl2>
 llOwnerSay(llGetOwner());​ // works llOwnerSay(llGetOwner());​ // works
Line 39: Line 42:
 </​code>​ </​code>​
  
-[[functions/llUnSit]] accepts a parameter of type key. The following examples illustrate how automatic conversion from string to key happens:+$lfn[llUnSit] accepts a parameter of type key. The following examples illustrate how automatic conversion from string to key happens:
  
 <code lsl2> <code lsl2>
Line 46: Line 49:
 </​code>​ </​code>​
  
-How to initialize and how not to initialize lists with key values in the **globals** declarations:​+How to initialize and how not to initialize lists with key values in the $globals declarations:​
  
 <code lsl2> <code lsl2>
-key mykey = "​3d6181b0-6a4b-97ef-18d8-722652995cf1";​ +key mykey = "​3d6181b0-6a4b-97ef-18d8-722652995cf1"; ​// works 
-list mylist = [mykey]; // works+list mylist = [mykey]; // works (this is how to put key-typed constants in globals)
 list mylist = [(key)"​3d6181b0-6a4b-97ef-18d8-722652995cf1"​];​ // FAILS list mylist = [(key)"​3d6181b0-6a4b-97ef-18d8-722652995cf1"​];​ // FAILS
 +list mylist = ["​3d6181b0-6a4b-97ef-18d8-722652995cf1"​];​ // works but it's a string, not a key
 +list mylist = [NULL_KEY]; // works but it's a string, not a key
 </​code>​ </​code>​
  
-Using ''​if'' ​to test validity of a key (complete example):+Using $kw[ifto test validity of a key (complete example):
  
 <code lsl2> <code lsl2>
Line 64: Line 69:
         if ((key)NULL_KEY) llOwnerSay("​1 True"​);​ else llOwnerSay("​1 False"​);​         if ((key)NULL_KEY) llOwnerSay("​1 True"​);​ else llOwnerSay("​1 False"​);​
  
-        // "This is an UUID" is not a valid UUID, so this prints "2 False":​ +        // "This is just text" is not a valid UUID, so this prints "2 False":​ 
-        if ((key)"​This is an UUID") llOwnerSay("​2 True"​);​ else llOwnerSay("​2 False"​);​+        if ((key)"​This is just text") llOwnerSay("​2 True"​);​ else llOwnerSay("​2 False"​);​
  
         // But keys are compared as strings, so this prints "3 True":         // But keys are compared as strings, so this prints "3 True":
-        if ((key)"​This is an UUID" != NULL_KEY) llOwnerSay("​3 True"​);​ else llOwnerSay("​3 False"​);​+        if ((key)"​This is just text" != NULL_KEY) llOwnerSay("​3 True"​);​ else llOwnerSay("​3 False"​);​
  
-        // A valid key meets the if condition, so this prints "4 True":+        // A valid key meets the 'if' ​condition, so this prints "4 True":
         if ((key)"​01234567-89ab-cdef-0123-456789abcdef"​) llOwnerSay("​4 True"​);​ else llOwnerSay("​4 False"​);​         if ((key)"​01234567-89ab-cdef-0123-456789abcdef"​) llOwnerSay("​4 True"​);​ else llOwnerSay("​4 False"​);​
  
Line 79: Line 84:
         // Note that NULL_KEY is NOT a key constant, but a string constant. This         // Note that NULL_KEY is NOT a key constant, but a string constant. This
         // example will output "6 True" because it follows the string rules, not the         // example will output "6 True" because it follows the string rules, not the
-        // key rules. See the string type or the if keyword for an explanation.+        // key rules. See the 'string' ​type or the 'if' ​keyword for an explanation.
         if (NULL_KEY) llOwnerSay("​6 True"​);​ else llOwnerSay("​6 False"​);​         if (NULL_KEY) llOwnerSay("​6 True"​);​ else llOwnerSay("​6 False"​);​
     }     }