You are currently not logged in! Enter your authentication credentials below to log in. You need to have cookies enabled to log in.
This shows you the differences between two versions of the page.
types:key [2015-01-13 18:49 SLT] sei Consistency |
types:key [2015-09-22 10:23 SLT] (current) sei fix link |
||
---|---|---|---|
Line 2: | Line 2: | ||
===== Key type ===== | ===== 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[key] type 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 10: | 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 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[string] and $ty[key] happens 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 include a key element inside a list 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 a key element inside a 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[if] statement 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 32: | 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 40: | 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 47: | 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"; // works | 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[if] to test validity of a key (complete example): |
<code lsl2> | <code lsl2> |