Difference between revisions of "LlGetInventoryType"

From Second Life Wiki
Jump to navigation Jump to search
(22 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{LSLFunctionAll
{{LSL_Function
|func_id=301
|func_id=301|func_sleep=0.0|func_energy=10.0
|func_sleep=0.0
|func_energy=10.0
|func=llGetInventoryType
|func=llGetInventoryType
|return_type=integer
|return_type=integer
|p1_type=string
|p1_type=string|p1_name=name|p1_desc=name of an inventory item
|p1_name=name
|func_footnote=If {{LSLP|name}} does not exist, [[INVENTORY_NONE]] is returned (no errors or messages are generated), making this function ideal for testing the existence of inventory.
|p1_desc=The name of an inventory item.
|return_text=that is the type of the inventory item {{LSLP|name}}
|func_footnote=This function returns the inventory type of the requested inventory item.<br />
If the item does not exist, INVENTORY_NONE is returned.
|return_text=that is the type of the inventory item name
|spec
|spec
|caveats
|caveats
|examples
|examples=
|helpers=
<source lang="lsl2">
<lsl>
string get_type_info(integer inputInteger)
string InventoryName(string name, integer type)
{
    if (inputInteger == INVENTORY_TEXTURE)
        return "INVENTORY_TEXTURE";
    else if (inputInteger == INVENTORY_SOUND)
        return "INVENTORY_SOUND";
    else if (inputInteger == INVENTORY_LANDMARK)
        return "INVENTORY_LANDMARK";
    else if (inputInteger == INVENTORY_CLOTHING)
        return "INVENTORY_CLOTHING";
    else if (inputInteger == INVENTORY_OBJECT)
        return "INVENTORY_OBJECT";
    else if (inputInteger == INVENTORY_NOTECARD)
        return "INVENTORY_NOTECARD";
    else if (inputInteger == INVENTORY_SCRIPT)
        return "INVENTORY_SCRIPT";
    else if (inputInteger == INVENTORY_BODYPART)
        return "INVENTORY_BODYPART";
    else if (inputInteger == INVENTORY_ANIMATION)
        return "INVENTORY_ANIMATION";
    else if (inputInteger == INVENTORY_GESTURE)
        return "INVENTORY_GESTURE";
    else if (inputInteger == INVENTORY_SETTING)
        return "INVENTORY_SETTING";
//  else
        return "<!-- inventory type unknown --!>";
}
 
default
{
    touch_start(integer num_detected)
    {
        integer totalItems = llGetInventoryNumber(INVENTORY_ALL);
 
        integer index;
        while (index < totalItems)
        {
            string itemName = llGetInventoryName(INVENTORY_ALL, index);
            integer type = llGetInventoryType(itemName);
 
            // PUBLIC_CHANNEL has the integer value 0
            llSay(PUBLIC_CHANNEL,
                "'" + itemName + "' (" + get_type_info(type) + ")");
 
            ++index;
        }
    }
}
</source>
|helpers=<source lang="lsl2">string InventoryName(string name, integer type)
{//finds an item in a case insensitive fashion of the given type and returns its true name.
{//finds an item in a case insensitive fashion of the given type and returns its true name.
     integer a = llGetInventoryType(name);  
     integer a = llGetInventoryType(name);  
Line 31: Line 85:
         }
         }
     }
     }
     else if((a == type) ^ (!~type))//return name, aslong as a == type or type == INVENTORY_ALL
     else if((a == type) ^ (!~type))//return name, as long as a == type or type == INVENTORY_ALL
     {//we already know that a != INVENTORY_NONE, but just incase we use xor instead of or.
     {//we already know that a != INVENTORY_NONE, but just in case we use xor instead of or.
         return name;
         return name;
     }
     }
Line 41: Line 95:
{//only included to show how this type of check could be done if the value of 'type' is not constant and could be INVENTORY_ALL.
{//only included to show how this type of check could be done if the value of 'type' is not constant and could be INVENTORY_ALL.
     return (llGetInventoryType(name) == type) ^ (!~type);
     return (llGetInventoryType(name) == type) ^ (!~type);
}//Since INVENTORY_ALL == INVENTORY_NONE, the extra part on the end is required to invert the result.
}//Since INVENTORY_ALL == INVENTORY_NONE, the extra part on the end is required to invert the result.</source>
</lsl>
|also_functions=
|related
{{LSL DefineRow||[[llGetInventoryName]]|Returns the inventory item's name}}
|also
{{LSL DefineRow||[[llGetInventoryNumber]]|Returns the number of items of a specific type in inventory}}
{{LSL DefineRow||[[llGetInventoryCreator]]|Returns the inventory item's creator}}
{{LSL DefineRow||[[llGetInventoryPermMask]]|Returns the inventory item's permissions}}
{{LSL DefineRow||[[llGetInventoryKey]]|Returns the inventory item's [[UUID]] (if full perm)}}
|also_tests=
{{LSL DefineRow||[[llGetInventoryType_Test]]}}
|also_articles
|also_events
|notes
|notes
|constants=
|history
<table style="{{Prettytable}}" valign="top">
|constants={{LSL_Constants_Inventory}}
<tr>
|cat1=Inventory
<td> '''Flag'''
|cat2
<td> '''Value'''
|cat3
<td> '''Inventory Type'''
|cat4
<tr>
<td> <tt>INVENTORY_NONE</tt><br/><tt>INVENTORY_ALL</tt>
<td> -1
<td> Item does not exist
<tr>
<td> <tt>INVENTORY_TEXTURE</tt>
<td> 0
<td> [[texture]]
<tr>
<td> <tt>INVENTORY_SOUND</tt>
<td> 1
<td> [[sound]]
<tr>
<td> <tt>INVENTORY_LANDMARK</tt>
<td> 3
<td> [[landmark]]
<tr>
<td> <tt>INVENTORY_CLOTHING</tt>
<td> 5
<td> clothing
<tr>
<td> <tt>INVENTORY_OBJECT</tt>
<td> 6
<td> [[object]]
<tr>
<td> <tt>INVENTORY_NOTECARD</tt>
<td> 7
<td> [[notecard]]
<tr>
<td> <tt>INVENTORY_SCRIPT</tt>
<td> 10
<td> [[script]]
<tr>
<td> <tt>INVENTORY_BODYPART</tt>
<td> 13
<td> body part
<tr>
<td> <tt>INVENTORY_ANIMATION</tt>
<td> 20
<td> [[animation]]
<tr>
<td> <tt>INVENTORY_GESTURE</tt>
<td> 21
<td> [[gesture]]
</table>
}}
}}
[[Category:LSL_Functions]]
[[Category:LSL_Inventory]]

Revision as of 11:34, 1 February 2019

Summary

Function: integer llGetInventoryType( string name );

Returns an integer that is the type of the inventory item name

• string name name of an inventory item

If name does not exist, INVENTORY_NONE is returned (no errors or messages are generated), making this function ideal for testing the existence of inventory.

Flag Inventory Type
INVENTORY_NONE -1 Item does not exist.
INVENTORY_ALL Any inventory type.
INVENTORY_TEXTURE 0 texture
INVENTORY_SOUND 1 sound
INVENTORY_LANDMARK 3 landmark
INVENTORY_CLOTHING 5 clothing
INVENTORY_OBJECT 6 object
Flag Inventory Type
INVENTORY_NOTECARD 7 notecard
INVENTORY_SCRIPT 10 script
INVENTORY_BODYPART 13 body part
INVENTORY_ANIMATION 20 animation
INVENTORY_GESTURE 21 gesture
INVENTORY_SETTING 56 setting
INVENTORY_MATERIAL 57 material

Examples

string get_type_info(integer inputInteger)
{
    if (inputInteger == INVENTORY_TEXTURE)
        return "INVENTORY_TEXTURE";
 
    else if (inputInteger == INVENTORY_SOUND)
        return "INVENTORY_SOUND";
 
    else if (inputInteger == INVENTORY_LANDMARK)
        return "INVENTORY_LANDMARK";
 
    else if (inputInteger == INVENTORY_CLOTHING)
        return "INVENTORY_CLOTHING";
 
    else if (inputInteger == INVENTORY_OBJECT)
        return "INVENTORY_OBJECT";
 
    else if (inputInteger == INVENTORY_NOTECARD)
        return "INVENTORY_NOTECARD";
 
    else if (inputInteger == INVENTORY_SCRIPT)
        return "INVENTORY_SCRIPT";
 
    else if (inputInteger == INVENTORY_BODYPART)
        return "INVENTORY_BODYPART";
 
    else if (inputInteger == INVENTORY_ANIMATION)
        return "INVENTORY_ANIMATION";
 
    else if (inputInteger == INVENTORY_GESTURE)
        return "INVENTORY_GESTURE";
 
    else if (inputInteger == INVENTORY_SETTING)
        return "INVENTORY_SETTING";
 
//  else
        return "<!-- inventory type unknown --!>";
}

default
{
    touch_start(integer num_detected)
    {
        integer totalItems = llGetInventoryNumber(INVENTORY_ALL);

        integer index;
        while (index < totalItems)
        {
            string itemName = llGetInventoryName(INVENTORY_ALL, index);
            integer type = llGetInventoryType(itemName);

            // PUBLIC_CHANNEL has the integer value 0
            llSay(PUBLIC_CHANNEL,
                "'" + itemName + "' (" + get_type_info(type) + ")");

            ++index;
        }
    }
}

Useful Snippets

string InventoryName(string name, integer type)
{//finds an item in a case insensitive fashion of the given type and returns its true name.
    integer a = llGetInventoryType(name); 
    if(!~a)//a == INVENTORY_NONE
    {//it should be noted that INVENTORY_NONE == INVENTORY_ALL == -1; which is why '!~a' works.
        string lc_name = llToLower(name);
        a = llGetInventoryNumber(type);
        while(a)
        {//(a = ~-a) is equivalent to --a, but runs faster.
            if(llToLower(name = llGetInventoryName(type, a = ~-a)) == lc_name)
            {//we found a match ^_^
                return name;
            }
        }
    }
    else if((a == type) ^ (!~type))//return name, as long as a == type or type == INVENTORY_ALL
    {//we already know that a != INVENTORY_NONE, but just in case we use xor instead of or.
        return name;
    }
    return "";//no match ~_~
}

integer InventoryExists(string name, integer type)
{//only included to show how this type of check could be done if the value of 'type' is not constant and could be INVENTORY_ALL.
    return (llGetInventoryType(name) == type) ^ (!~type);
}//Since INVENTORY_ALL == INVENTORY_NONE, the extra part on the end is required to invert the result.

See Also

Functions

•  llGetInventoryName Returns the inventory item's name
•  llGetInventoryNumber Returns the number of items of a specific type in inventory
•  llGetInventoryCreator Returns the inventory item's creator
•  llGetInventoryPermMask Returns the inventory item's permissions
•  llGetInventoryKey Returns the inventory item's UUID (if full perm)

Deep Notes

Search JIRA for related Issues

Tests

•  llGetInventoryType_Test

Signature

function integer llGetInventoryType( string name );