llSetObjectDesc

From Second Life Wiki
Revision as of 17:50, 16 June 2007 by Geuis Dassin (talk | contribs)
Jump to navigation Jump to search

Summary

Function: llSetObjectDesc( string desc );

Sets the prims description

• string desc

Caveats

  • The object description is limited to 127 bytes, any string longer then that will be truncated. This truncation does not always happen when the attribute is set or read.
All Issues ~ Search JIRA for related Bugs

Examples

Notes

TEMPORARY EXTRA MEMORY STORAGE IN RUNNING SCRIPTS

At the current time, you can hold up to 8034 characters in a prim's description while a script is running. Once the script ends, whatever data is written into the description will be truncated to 127 - 255 characters. While this is not stable for long-term data storage like it used to be, at the present time it can be a useful trick for dealing with larger amounts of data in a script.

The following scenario is one that demonstrates this effect:

Increment a string up to 7127 characters and then write that to the prim desc using llSetObjectDesc(). Clear the variable, desc_data = "", Read the data back into a different variable, string tmp; tmp = llGetObjectDesc(); Show the length of tmp, it shows 7127,

Test this with a timer(has been proven up to 4 minutes at least, then clear tmp = "";

Read in the data again using a 3rd variable, string new; new = llGetObjectDesc(); then it shows the same length, 7127.

Now, comment out the code that writes the initial data, and just read the description data with llGetObjectDesc(), it only comes back 255 as the string length,

So it seems, as long as you write and read the data within the same occurrence of the script, its fine. But if you try and read the data back in a different script iteration, its limited to 255.

The assumption is that when a script is finished running, the state of the prim description and name are being updated, cutting it off at 127 to 255 characters. --Geuis Dassin 6/16/07

    touch_start(integer total_number)
    {
        llOwnerSay("start");

        //127 characters long, fills up viewable space
        desc_data = "DO NOT EDIT THIS. DO NOT CLICK HERE............................................................................................";

        //build the initial string, in this case the result will be 7127 characters long
        integer i=0;
        for(i=0;i<1500;i++){
    
            if(i % 100 == 0){
                //keep letting the user know the script is running.
                llOwnerSay((string)i);   
            }
            desc_data = (desc_data="") + desc_data + "aaaaa";
        }

        //show the length of the string before writing it
        llOwnerSay((string)llStringLength(desc_data));

        //##### COMMENT OUT THIS LINE DURING THE 2nd SCRIPT RUN TO PROVE THIS EXPERIMENT. 
        //##### THE DATA RETURNED WILL BE TRUNCATED AFTER THIS SCRIPT ENDS
        //write the string to the prim description
        llSetObjectDesc(desc_data);

        //empty the first variable
        desc_data = "";

        //read the data we just wrote back into a new variable
        string temp;
        temp = (temp="") + temp + llGetObjectDesc();

        //show the length
        llOwnerSay((string)llStringLength(temp));

        //sleep for X number of seconds, to prove that it holds state while the script is running.
        llSleep(10);
        llOwnerSay("slept 10");


        //read it in again into a 3rd variable
        string new;
        new = (new="") + new + llGetObjectDesc();

        //show the string length again.
        llOwnerSay((string)llStringLength(new));
    }

See Also

Functions

•  llGetObjectDesc Returns the object description.
•  llGetObjectName Gets the object name.
•  llSetObjectName Sets the object name.

Deep Notes

Search JIRA for related Issues

Signature

function void llSetObjectDesc( string desc );