Difference between revisions of "LlGetLinkName/zh-Hant"

From Second Life Wiki
Jump to navigation Jump to search
Line 8: Line 8:
|return_text=連結集合中連結編號為'''linknum'''的名稱
|return_text=連結集合中連結編號為'''linknum'''的名稱
|spec
|spec
|caveats=*The prim name attribute is limited to 63 bytes, any string longer then that will be truncated. This truncation does not always happen when the attribute is set or read.
|caveats=*Prim的名稱長度限制為64位元組,若是超過此長度則會有名稱被截斷的情形發生。
*The only LINK_* flag that '''linknum''' currently supports  is [[LINK_ROOT]]. [[#SVC-600|SVC-600]]
*The only LINK_* flag that '''linknum''' currently supports  is [[LINK_ROOT]]. [[#SVC-600|SVC-600]]
**Use [[llGetLinkNumber]]() as the parameter to retreive the prim's name, not [[LINK_THIS]].
**Use [[llGetLinkNumber]]() as the parameter to retreive the prim's name, not [[LINK_THIS]].
|constants
|constants
|examples=Listen on channel 10 for a name; check if a prim with that name is part of this object
|examples=監聽頻道10中使用者給的prim名稱,再檢查物件中是否有名稱符合的prim
<lsl>
<lsl>
integer check_for_prim(string name)
integer check_for_prim(string name)

Revision as of 19:54, 7 May 2011

概要

函式: string llGetLinkName( integer linknum );
145 函式ID
0.0 延遲
10.0 能量

回傳一個string為連結集合中連結編號為linknum的名稱。

• integer linknum Link number (0: unlinked, 1: root prim, >1: child prims and seated avatars) or a LINK_* flag
Flag Description
LINK_ROOT 1 refers to the root prim in a multi-prim linked set[1]
LINK_SET -1 refers to all prims
LINK_ALL_OTHERS -2 refers to all other prims
Flag Description
LINK_ALL_CHILDREN -3 refers to all children, (everything but the root)
LINK_THIS -4 refers to the prim the script is in

注意事項

  • Prim的名稱長度限制為64位元組,若是超過此長度則會有名稱被截斷的情形發生。
  • The only LINK_* flag that linknum currently supports is LINK_ROOT. SVC-600
All Issues ~ Search JIRA for related Bugs

範例

監聽頻道10中使用者給的prim名稱,再檢查物件中是否有名稱符合的prim <lsl> integer check_for_prim(string name) {

   integer i = llGetNumberOfPrims();
   for (; i >= 0; --i)
   {
       if (llGetLinkName(i) == name)
       {
           return TRUE;
       }
   }
   return FALSE;

} default {

   state_entry()
   {
       llListen(10, "", llGetOwner(), "");
   }
   listen(integer chan, string obj, key id, string msg)
   {
       if (check_for_prim(msg))
       {
           llOwnerSay("found a linked prim named \"" + msg + "\"");
       }
       else
       {
           llOwnerSay("this object does not have any linked prims named \"" + msg + "\"");
       }
   }
}</lsl>

筆記

Link Numbers

Each prim that makes up an object has an address, a link number. To access a specific prim in the object, the prim's link number must be known. In addition to prims having link numbers, avatars seated upon the object do as well.

  • If an object consists of only one prim, and there are no avatars seated upon it, the (root) prim's link number is zero.
  • However, if the object is made up of multiple prims or there is an avatar seated upon the object, the root prim's link number is one.

When an avatar sits on an object, it is added to the end of the link set and will have the largest link number. In addition to this, while an avatar is seated upon an object, the object is unable to link or unlink prims without unseating all avatars first.

Counting Prims & Avatars

There are two functions of interest when trying to find the number of prims and avatars on an object.

integer GetPrimCount() { //always returns only the number of prims
    if(llGetAttached())//Is it attached?
        return llGetNumberOfPrims();//returns avatars and prims but attachments can't be sat on.
    return llGetObjectPrimCount(llGetKey());//returns only prims but won't work on attachments.
}
See llGetNumberOfPrims for more about counting prims and avatars.

Errata

If a script located in a child prim erroneously attempts to access link 0, it will get or set the property of the linkset's root prim. This bug (BUG-5049) is preserved for broken legacy scripts.

參照

函式

•  llGetLinkNumber Returns the link number of the prim the script is in.
•  llGetLinkKey Gets the instance UUID of the link
•  llGetObjectName Get the prims name
•  llSetObjectName Set the prims name
•  llGetObjectDesc Get the prims description
•  llSetObjectDesc Set the prims description
•  llGetObjectDetails

文章

•  Limits SL limits and constrictions
•  Prim Attribute Overloading

Deep Notes

All Issues

~ Search JIRA for related Issues
   llGetLinkKey returns the wrong result when passed LINK_THIS

Footnotes

  1. ^ LINK_ROOT does not work on single prim objects. Unless there is an avatar sitting on the object.