Difference between revisions of "LlGetEnv"

From Second Life Wiki
Jump to navigation Jump to search
m
Line 5: Line 5:
|return_type=string
|return_type=string
|p1_type=string|p1_name=name|p1_desc=The name of the data to request
|p1_type=string|p1_name=name|p1_desc=The name of the data to request
|func_footnote
|func_footnote=Note that the value returned is a string, you may need to cast it to an integer for use in calculations.
|func_desc
|func_desc
|return_text=with the requested data about the [[region]].
|return_text=with the requested data about the [[region]].
Line 11: Line 11:
|caveats
|caveats
|constants=
|constants=
{{{!}} class="sortable" {{Prettytable|style=margin-top:0;}}
<div style="margin-bottom:1em;">
{{!}}+ Table of valid '''{{LSL Param|name}}''' values.
{{{!}} class="sortable" {{Prettytable|style=margin:0;}}
{{!}}+ Table of valid '''{{LSL Param|name}}''' values.  
{{!}}-{{Hl2}}
{{!}}-{{Hl2}}
! {{!}} Name
! {{!}} Name
! class="unsortable"{{!}} Description
! {{!}} {{HoverText|Typecast|To make the value returned more useful, you will want to typecast it to this type}}
! class="unsortable" {{!}} Description
{{!}}-
{{!}}-
{{!}}"sim_channel"
{{!}} "sim_channel"
{{!}}Get the current region's [[Het-Grid_FAQ#What_is_a_channel.3F|channel]] string, for example "Second Life Server".
{{!}} align=center {{!}} NA
{{!}} Get the region's [[Het-Grid_FAQ#What_is_a_channel.3F|channel]] string, for example "Second Life Server".
{{!}}-
{{!}}-
{{!}}"sim_version"
{{!}} "sim_version"
{{!}}Get the current region's [[Version numbering|version number]] string, for example "10.11.30.215699".
{{!}} align=center {{!}} NA
{{!}} Get the region's [[Version numbering|version number]] string, for example "10.11.30.215699".
{{!}}-
{{!}}-
{{!}}"frame_number"
{{!}} "frame_number"
{{!}}Get the frame number of the simulator, for example "42042".  Note that the return value is a string, so cast to an integer for use in calculations.
{{!}} align=center {{!}} ([[integer]])
{{!}} Get the frame number of the simulator, for example "42042".
{{!}}-
{{!}}-
{{!}}"region_idle"
{{!}} "region_idle"
{{!}}Get the region's idle status, "1" or "0". Note that the return value is a string, so cast to an integer for use in calculations.
{{!}} align=center {{!}} ([[integer]])
{{!}} Get the region's idle status, "1" or "0".
{{!}}}
{{!}}}
</div>
|examples=<lsl>
|examples=<lsl>
default
default

Revision as of 22:30, 16 May 2012

Summary

Function: string llGetEnv( string name );

Returns a string with the requested data about the region.

• string name The name of the data to request

Note that the value returned is a string, you may need to cast it to an integer for use in calculations.

Table of valid name values.
Name Typecast Description
"sim_channel" NA Get the region's channel string, for example "Second Life Server".
"sim_version" NA Get the region's version number string, for example "10.11.30.215699".
"frame_number" (integer) Get the frame number of the simulator, for example "42042".
"region_idle" (integer) Get the region's idle status, "1" or "0".

Examples

<lsl> default {

   touch_start(integer total_number)
   {
       string version = llGetEnv("sim_version");
       llOwnerSay("Region " + llGetRegionName() + " is running "
                  + llGetEnv("sim_channel") + " version " + version );
       list ver = llParseString2List(version, ["."], []);
       llOwnerSay("Build: "+llList2String(ver, 3));
       llOwnerSay("Build Date: "+llList2String(ver, 2)+"-"+llList2String(ver, 1)+"-20"+llList2String(ver, 0));
   }

}

</lsl>

Notes

  • Region idling lowers a region's framerate when no avatars are currently on or looking into the region. Scripts measuring time dilation with llGetRegionTimeDilation may report significant time dilation if the region is idle.

See Also

Deep Notes

History

  • SVC-4874
  • Introduced in Second Life RC LeTigre 10.11.30.215699, deployed on 2010-12-01.
  • Deployed to rest of Agni with Second Life Server 10.11.30.215699, Second Life RC BlueSteel 10.12.06.216207, Second Life RC Magnum 10.11.30.215699
  • "frame_number" option added in Second Life RC BlueSteel 12.01.03.247042
    • Returns an integer that represents the current 'frame' of the simulator. Generally only useful for specific debugging cases.
  • Removed (temporarily?) in Second Life RC BlueSteel 12.01.06.247303

Search JIRA for related Issues

Signature

function string llGetEnv( string name );