Difference between revisions of "Fix Small Prims"

From Second Life Wiki
Jump to navigation Jump to search
(New page: {{LSL Header}}{{RightToc}} <div id="box"> == About == <div style="padding: 0.5em"> Fix Small Prims by Emma Nowhere Shrinking linked prims is difficult because no pri...)
 
m (<lsl> tag to <source>)
 
(12 intermediate revisions by 3 users not shown)
Line 5: Line 5:
Fix Small Prims by [[User:Emma_Nowhere|Emma Nowhere]]
Fix Small Prims by [[User:Emma_Nowhere|Emma Nowhere]]


Shrinking linked prims is difficult because no prim in the linked set can be smaller that .01 meters in any dimension.
Now updated to use [https://jira.secondlife.com/browse/SVC-224 LLGetLinkPrimitiveParams].
This script finds the smallest prims and increases their size slightly so that the link set can be sized down.
 
In Second Life, no prim can be less that .01 meters in any given dimension (width, length, or height). When you try to resize an object, you often find you can't shrink it below a certain size.  This is because one of the prims in the object is already at its minimum size in one of it's dimensions.  This script checks every prim in an object and slightly increases the sizes of the prims which are already at their smallest possible sizes, so that the overall object that the prim is part of can be scaled down.  This usually lets you reduce the object in size by an additional 20%.  You can repeat the process several times if you're not able to shrink the object enough on the first try. 
 
In the instructions below, we'll refer to your object that you want to resize, such as a necklace or a tree, as a "linkset".  We call it this because the object consists of a linked set of prims, rather than one single prim.
 
If you're not familiar with how prims and linking work, please read the following wiki pages:
 
[[Prim]]
 
[[Link]]
 
How to use with menu:
 
#Install this script in the root prim of a linked set of prims (aka "linkset")
#Type /1fsp to show the menu
#Hit the "Fix" button to fix all the small prims
#Resize the linkset object to the desired size with the Viewer Editing Tools
#Type /1fsp to show the menu again
#Hit the "Finish" button to remove the script and finalize prim sizes
 
 
(Advanced) How to use with chat commands:
 
#Install this script in the root prim of a linked set of prims (aka "linkset").
#Type /1fsprun to fix all the small prims
#Resize the linkset object to the desired size with the Viewer Editing Tools
#Type /1fsprestore if you need to return them to their original sizes (you should only use this for no-copy objects, otherwise make a copy before you start)
#Type /1fspcleanup to remove the scripts from the linkset and finalize prim sizes
 
 
'''IMPORTANT:'''  You should always make a backup copy of the object before using this script.


1. Install this script in the root prim of a linked set of prims (aka "linkset")
2. Type /1fspsetup to copy copy scripts into all the prims in the linkset
3. Take the linkset into inventory
4. Re-rez the linkset from inventory
5. Select the linkset and choose "Set Scripts to Running in Selection" under the Tools menu
6. Type /1fsprun to fix all the small prims
7. Resize the linkset object to the desired size
8. Type /1fspcleanup to remove the scripts from the linkset


</div></div>
</div></div>


<div id="box">
<div id="box">
== UpdateServer ==
 
== FixSmallPrims ==
<div style="padding: 0.5em">
<div style="padding: 0.5em">
<pre>
<source lang="lsl2">
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// FixSmallPrims
// FixSmallPrims2
// by Emma Nowhere
// by Emma Nowhere
//
//
// How to use:
// Last modified: 5/30/2010
//
// How to use with menu:
// 1. Install this script in the root prim of a linked set of prims (aka "linkset")
// 2. Type /1fsp to show the menu
// 3. Hit the "Fix" button to fix all the small prims
// 4. Resize the linkset object to the desired size with the Editing Tools
// 5. Type /1fsp to show the menu again
// 6. Hit the "Finish" button to remove the script and finalize prim sizes
//
// (Advanced) How to use via chat commands:
// 1. Install this script in the root prim of a linked set of prims (aka "linkset")
// 1. Install this script in the root prim of a linked set of prims (aka "linkset")
// 2. Type /1fspsetup to copy copy scripts into all the prims in the linkset
// 2. Type /1fsp to show the menu
// 3. Take the linkset into inventory
// 3. Type /1fsprun to fix all the small prims
// 4. Re-rez the linkset from inventory
// 4. Resize the linkset object to the desired size with the Editing Tools
// 5. Select the linkset and choose "Set Scripts to Running in Selection" under the Tools menu
// 5. Type /1fsprestore to return them to their original sizes
// 6. Type /1fsprun to fix all the small prims
// 6. Type /1fspcleanup to remove the script and finalize prim sizes
// 7. Resize the linkset object to the desired size
// 8. Type /1fspcleanup to remove the scripts from the linkset
 
integer CHANNEL = 1;
integer CHANNEL = 1;
 
integer MENU_CHANNEL = -1001;
vector backupScale = ZERO_VECTOR;
list backupScales = [];
integer backupStored = FALSE;
integer backupStored = FALSE;
 
integer rescaleX = FALSE;
list rescaleFlags = [];
integer rescaleY = FALSE;
integer rescaleZ = FALSE;
 
backup() {
backup() {
     if (!backupStored) {
     if (!backupStored) {
         backupScale = llGetScale();
         llOwnerSay("Backing up prim sizes");
        backupScales = [];
        integer p = llGetNumberOfPrims();
        integer i = 0;
        for (i = 1; i <= p; i++)
        {
            list params = llGetLinkPrimitiveParams(i, [PRIM_SIZE]);
            vector scale = llList2Vector(params, 0);
            backupScales = backupScales + [scale];
        }
         backupStored = TRUE;
         backupStored = TRUE;
        llOwnerSay("Prim sizes backed up");
     }
     }
}
}
 
restore() {
restore() {
     if (backupStored) {
     if (backupStored) {
         llSetScale(backupScale);
         llOwnerSay("Restoring previously backed up prim sizes");
        integer p = llGetNumberOfPrims();
        integer i = 0;
        for (i = 1; i <= p; i++)
        {
            vector scale = llList2Vector(backupScales, i - 1);
            llSetLinkPrimitiveParamsFast(i, [PRIM_SIZE, scale]);
        }
        llOwnerSay("Previously backed up prim sizes restored");
     }
     }
     rescaleX = FALSE;
     rescaleFlags = [];
    rescaleY = FALSE;
    rescaleZ = FALSE;
}
}
 
cleanup() {
cleanup() {
     vector scale = llGetScale();
     llOwnerSay("Cleaning up FixSmallPrims data and finalizing prim sizes");
 
    integer p = llGetNumberOfPrims();
    if (rescaleX) {
    integer i = 0;
        scale.x = backupScale.x;
    for (i = 1; i <= p; i++)
    {
        vector backupScale = llList2Vector(backupScales, i - 1);
        integer rescaleI = (i - 1) * 3;
        integer rescaleX = llList2Integer(rescaleFlags, rescaleI);
        integer rescaleY = llList2Integer(rescaleFlags, rescaleI + 1);
        integer rescaleZ = llList2Integer(rescaleFlags, rescaleI + 2);
        list params = llGetLinkPrimitiveParams(i, [PRIM_SIZE]);
        vector scale = llList2Vector(params, 0);
        if (rescaleX) {
            scale.x = backupScale.x;
        }
        if (rescaleY) {
            scale.y = backupScale.y;
        }
        if (rescaleZ) {
            scale.z = backupScale.z;
        }
        if (rescaleX || rescaleY || rescaleZ) {
            llOwnerSay("Cleaning size of linked prim #" + (string)i);
            llSetLinkPrimitiveParamsFast(i, [PRIM_SIZE, scale]);
        }
     }
     }
 
     if (rescaleY) {
     llOwnerSay("Deleting FixSmallPrims script");
        scale.y = backupScale.y;
    }
 
    if (rescaleZ) {
        scale.z = backupScale.z;
    }
 
    if (rescaleX || rescaleY || rescaleZ) {
        llSay(0, "Cleaning scale of linked prim #" + (string)llGetLinkNumber());
        llSetScale(scale);
    }
 
     llRemoveInventory(llGetScriptName());  
     llRemoveInventory(llGetScriptName());  
}
}
 
process() {
process() {
     restore();
     restore();
     backup();
     backup();
 
     vector scale = llGetScale();
     llOwnerSay("Starting fixing prims");
 
     rescaleFlags = [];
     if (scale.x < .015) {
        scale.x = .015;
        rescaleX = TRUE;
    }
 
    if (scale.y < .015) {
        scale.y = .015;
        rescaleY = TRUE;
    }
 
    if (scale.z < .015) {
        scale.z = .015;
        rescaleZ = TRUE;
    }
 
    if (rescaleX || rescaleY || rescaleZ) {
        llSay(0, "Fixing size of linked prim #" + (string)llGetLinkNumber());
        llSetScale(scale);
    }
}
 
GiveScriptToLinkedPrims()
{
     integer p = llGetNumberOfPrims();
     integer p = llGetNumberOfPrims();
     integer i = 0;
     integer i = 0;
     for (i = 2; i <= p; i++)
     for (i = 1; i <= p; i++)
     {
     {
         key prim = llGetLinkKey(i);
         list params = llGetLinkPrimitiveParams(i, [PRIM_SIZE]);
         llGiveInventory(prim, llGetScriptName());
        vector scale = llList2Vector(params, 0);
        integer rescaleX = FALSE;
        integer rescaleY = FALSE;
        integer rescaleZ = FALSE;
        if (scale.x < .015) {
            scale.x = .015;
            rescaleX = TRUE;
        }
        if (scale.y < .015) {
            scale.y = .015;
            rescaleY = TRUE;
         }
        if (scale.z < .015) {
            scale.z = .015;
            rescaleZ = TRUE;
        }
        if (rescaleX || rescaleY || rescaleZ) {
            llOwnerSay("Fixing size of linked prim #" + (string)i);
            llSetLinkPrimitiveParamsFast(i, [PRIM_SIZE, scale]);
        }
        rescaleFlags = rescaleFlags + [rescaleX, rescaleY, rescaleZ];
     }
     }
    llOwnerSay("Done fixing prims\n\nResize your object and type /" + (string)CHANNEL + "fsp for menu when done.\n\n");
}
}


menu() {
    llDialog(llGetOwner(),
    "Fix Small Prims\n\nMake a backup of your object first.\n\nPlease choose an option:\n",
    ["Fix", "Finish"], MENU_CHANNEL);
}
default
default
{
{
     state_entry()  
     state_entry()  
     {
     {
         integer linkNum = llGetLinkNumber();
         llListen(CHANNEL, "", llGetOwner(), "");
         if (linkNum < 2) llListen(CHANNEL, "", llGetOwner(), "");
         llListen(MENU_CHANNEL, "", llGetOwner(), "");
        llOwnerSay("FixSmallPrims Ready");
        llOwnerSay("Type /" + (string)CHANNEL + "fsp for menu");
     }
     }
 
     on_rez(integer start_param) {
     on_rez(integer start_param) {
         integer linkNum = llGetLinkNumber();
         llOwnerSay("FixSmallPrims Installed");
         if (linkNum < 2) llSay(0, "FixSmallPrims Installed");
         llOwnerSay("Type /" + (string)CHANNEL + "fsp for menu");
  }     
    }     
   
     listen(integer channel, string name, key id, string message)  
     listen(integer channel, string name, key id, string message)  
     {
     {
         if (message == "fspsetup")
         if (message == "fsp") {
        {
             menu();
            GiveScriptToLinkedPrims();
        }
        else
        {
             llMessageLinked(LINK_SET, 0, message, NULL_KEY);
         }
         }
    }
         else if (message == "fsptest") {
   
             llOwnerSay("FixSmallPrims script is installed and ready");           
    link_message(integer sender_num, integer num, string str, key id)
            if (backupStored) {
    {
                llOwnerSay("Original prim sizes have been backed up");             
        integer linkNum = llGetLinkNumber();
            }
       
         if (str == "fsptest") {
             llSay(0, "Script is installed and running in linked prim #" + (string)linkNum);             
         }
         }
         else if (str == "fspbackup") {
         else if (message == "fspbackup") {
             backup();
             backup();
         }
         }
         else if (str == "fsprestore") {
         else if (message == "fsprestore") {
             restore();
             restore();
         }
         }
         else if (str == "fspcleanup") {         
         else if ((message == "fspcleanup") || (message == "Finish")) {         
             cleanup();                     
             cleanup();                     
         }
         }
         else if (str == "fsprun") {
         else if ((message == "fsprun") || (message == "Fix")) {
             process();             
             process();             
         }
         }
 
     }
     }
}
}




 
</source>
</pre>
</div></div>
</div></div>
{{#vardefine:sort|Fix Small Prims}}{{LSLC|Library}}
{{#vardefine:sort|Fix Small Prims}}{{LSLC|Library}}

Latest revision as of 20:22, 24 January 2015

About

Fix Small Prims by Emma Nowhere

Now updated to use LLGetLinkPrimitiveParams.

In Second Life, no prim can be less that .01 meters in any given dimension (width, length, or height). When you try to resize an object, you often find you can't shrink it below a certain size. This is because one of the prims in the object is already at its minimum size in one of it's dimensions. This script checks every prim in an object and slightly increases the sizes of the prims which are already at their smallest possible sizes, so that the overall object that the prim is part of can be scaled down. This usually lets you reduce the object in size by an additional 20%. You can repeat the process several times if you're not able to shrink the object enough on the first try.

In the instructions below, we'll refer to your object that you want to resize, such as a necklace or a tree, as a "linkset". We call it this because the object consists of a linked set of prims, rather than one single prim.

If you're not familiar with how prims and linking work, please read the following wiki pages:

Prim

Link

How to use with menu:

  1. Install this script in the root prim of a linked set of prims (aka "linkset")
  2. Type /1fsp to show the menu
  3. Hit the "Fix" button to fix all the small prims
  4. Resize the linkset object to the desired size with the Viewer Editing Tools
  5. Type /1fsp to show the menu again
  6. Hit the "Finish" button to remove the script and finalize prim sizes


(Advanced) How to use with chat commands:

  1. Install this script in the root prim of a linked set of prims (aka "linkset").
  2. Type /1fsprun to fix all the small prims
  3. Resize the linkset object to the desired size with the Viewer Editing Tools
  4. Type /1fsprestore if you need to return them to their original sizes (you should only use this for no-copy objects, otherwise make a copy before you start)
  5. Type /1fspcleanup to remove the scripts from the linkset and finalize prim sizes


IMPORTANT: You should always make a backup copy of the object before using this script.


FixSmallPrims

///////////////////////////////////////////////////////////////////////////////
// FixSmallPrims2
// by Emma Nowhere
//
// Last modified: 5/30/2010
//
// How to use with menu:
// 1. Install this script in the root prim of a linked set of prims (aka "linkset")
// 2. Type /1fsp to show the menu
// 3. Hit the "Fix" button to fix all the small prims
// 4. Resize the linkset object to the desired size with the Editing Tools
// 5. Type /1fsp to show the menu again
// 6. Hit the "Finish" button to remove the script and finalize prim sizes
//
// (Advanced) How to use via chat commands:
// 1. Install this script in the root prim of a linked set of prims (aka "linkset")
// 2. Type /1fsp to show the menu
// 3. Type /1fsprun to fix all the small prims
// 4. Resize the linkset object to the desired size with the Editing Tools
// 5. Type /1fsprestore to return them to their original sizes
// 6. Type /1fspcleanup to remove the script and finalize prim sizes
 
integer CHANNEL = 1;
integer MENU_CHANNEL = -1001;
 
list backupScales = [];
integer backupStored = FALSE;
 
list rescaleFlags = [];
 
backup() {
    if (!backupStored) {
        llOwnerSay("Backing up prim sizes");
        backupScales = [];
        integer p = llGetNumberOfPrims();
        integer i = 0;
        for (i = 1; i <= p; i++)
        {
            list params = llGetLinkPrimitiveParams(i, [PRIM_SIZE]);
            vector scale = llList2Vector(params, 0);
            backupScales = backupScales + [scale];
        }
        backupStored = TRUE;
        llOwnerSay("Prim sizes backed up");
    }
}
 
restore() {
    if (backupStored) {
        llOwnerSay("Restoring previously backed up prim sizes");
        integer p = llGetNumberOfPrims();
        integer i = 0;
        for (i = 1; i <= p; i++)
        {
            vector scale = llList2Vector(backupScales, i - 1);
            llSetLinkPrimitiveParamsFast(i, [PRIM_SIZE, scale]);
        }
        llOwnerSay("Previously backed up prim sizes restored");
    }
    rescaleFlags = [];
}
 
cleanup() {
    llOwnerSay("Cleaning up FixSmallPrims data and finalizing prim sizes");
    integer p = llGetNumberOfPrims();
    integer i = 0;
    for (i = 1; i <= p; i++)
    {
        vector backupScale = llList2Vector(backupScales, i - 1);
        integer rescaleI = (i - 1) * 3;
        integer rescaleX = llList2Integer(rescaleFlags, rescaleI);
        integer rescaleY = llList2Integer(rescaleFlags, rescaleI + 1);
        integer rescaleZ = llList2Integer(rescaleFlags, rescaleI + 2);
 
        list params = llGetLinkPrimitiveParams(i, [PRIM_SIZE]);
        vector scale = llList2Vector(params, 0);
 
        if (rescaleX) {
            scale.x = backupScale.x;
        }
 
        if (rescaleY) {
            scale.y = backupScale.y;
        }
 
        if (rescaleZ) {
            scale.z = backupScale.z;
        }
 
        if (rescaleX || rescaleY || rescaleZ) {
            llOwnerSay("Cleaning size of linked prim #" + (string)i);
            llSetLinkPrimitiveParamsFast(i, [PRIM_SIZE, scale]);
        }
    }
 
    llOwnerSay("Deleting FixSmallPrims script");
    llRemoveInventory(llGetScriptName()); 
}
 
process() {
    restore();
    backup();
 
    llOwnerSay("Starting fixing prims");
    rescaleFlags = [];
    integer p = llGetNumberOfPrims();
    integer i = 0;
    for (i = 1; i <= p; i++)
    {
        list params = llGetLinkPrimitiveParams(i, [PRIM_SIZE]);
        vector scale = llList2Vector(params, 0);
 
        integer rescaleX = FALSE;
        integer rescaleY = FALSE;
        integer rescaleZ = FALSE;
 
        if (scale.x < .015) {
            scale.x = .015;
            rescaleX = TRUE;
        }
 
        if (scale.y < .015) {
            scale.y = .015;
            rescaleY = TRUE;
        }
 
        if (scale.z < .015) {
            scale.z = .015;
            rescaleZ = TRUE;
        }
 
        if (rescaleX || rescaleY || rescaleZ) {
            llOwnerSay("Fixing size of linked prim #" + (string)i);
            llSetLinkPrimitiveParamsFast(i, [PRIM_SIZE, scale]);
        }
        rescaleFlags = rescaleFlags + [rescaleX, rescaleY, rescaleZ];
    }
    llOwnerSay("Done fixing prims\n\nResize your object and type /" + (string)CHANNEL + "fsp for menu when done.\n\n");
}

menu() {
    llDialog(llGetOwner(),
    "Fix Small Prims\n\nMake a backup of your object first.\n\nPlease choose an option:\n",
    ["Fix", "Finish"], MENU_CHANNEL);
}
 
default
{
    state_entry() 
    {
        llListen(CHANNEL, "", llGetOwner(), "");
        llListen(MENU_CHANNEL, "", llGetOwner(), "");
        llOwnerSay("FixSmallPrims Ready");
        llOwnerSay("Type /" + (string)CHANNEL + "fsp for menu");
    }
 
    on_rez(integer start_param) {
        llOwnerSay("FixSmallPrims Installed");
        llOwnerSay("Type /" + (string)CHANNEL + "fsp for menu");
    }    
 
    listen(integer channel, string name, key id, string message) 
    {
        if (message == "fsp") {
            menu();
        }
        else if (message == "fsptest") {
            llOwnerSay("FixSmallPrims script is installed and ready");            
            if (backupStored) {
                llOwnerSay("Original prim sizes have been backed up");            
            }
        }
        else if (message == "fspbackup") {
            backup();
        }
        else if (message == "fsprestore") {
            restore();
        }
        else if ((message == "fspcleanup") || (message == "Finish")) {        
            cleanup();                    
        }
        else if ((message == "fsprun") || (message == "Fix")) {
            process();            
        }
 
    }
}