aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine (follow)
Commit message (Collapse)AuthorAgeFilesLines
* minor: add comment explaining that GetRegionsByName needs to stay in ↵Justin Clark-Casey (justincc)2011-02-121-0/+2
| | | | TeleportAgent for its side effects.
* For now, reinstate the call to World.GridService.GetRegionsByName() ↵Justin Clark-Casey (justincc)2011-02-051-1/+3
| | | | | | commented out in 933f47e Even though we don't use the results, just getting the regions may have side effects in making hypergrid links available for the later World.RequestTeleportLocation()
* Add position to IM sent from llInstantMessage(), to better fulfill client ↵Justin Clark-Casey (justincc)2011-02-041-1/+1
| | | | expectations
* Put something in the ImprovedInstantMessage.BinaryBucket for ↵Justin Clark-Casey (justincc)2011-02-041-1/+8
| | | | | | | llInstantMessage() to stop this crashing viewer 2.4.0 (1.23.5 was fine with this). We're putting in a string of format "<region name><x pos floor int><y pos floor int><z pos floor int> which appears to be the expected value. This resolves http://opensimulator.org/mantis/view.php?id=5356
* minor: fix indentation, spacing on commit 3585130Justin Clark-Casey (justincc)2011-02-041-8/+8
| | | | | this previous commit tries to look up the texture by name first before just using the uuid. this allows correct resolution of inventory textures which have uuids as names.
* SetTexture_fixunknown2011-02-041-7/+6
|
* Comment out unused call to GridService in TeleportAgent()Justin Clark-Casey (justincc)2011-01-281-1/+1
|
* Use ToString() rather than a cast (more robust)Melanie2011-01-121-1/+1
|
* Deal with possibly un-initialized scripts in object transfers. Mantis #5310Diva Canto2011-01-061-1/+4
|
* Fix osTeleportAgent and osTeleportOwner for the case that GridService is ↵Marck2010-12-201-11/+5
| | | | used with a storage provider other than NullRegionData.
* Revamp the viewer -> banlist packet processing so fix a number of bugs.Melanie2010-12-132-34/+56
| | | | | | | Remove the too coarse CanEditParcel method in favor of a CanEditParcelProperties method that takes a GroupPowers argument to specify what action is to be taken. Also, make the method to set parcel data much more granular. Permissions in a deeded setting should now work.
* More OSSL function name normalization, this time for osParcelSetDetails.Marck2010-12-113-5/+23
|
* Normalization of OSSL function names.Marck2010-12-103-20/+103
| | | | | | | | | | | | | | | | | Added the following replacement functions for compliance to the OSSL standards stated on the wiki: osGetTerrainHeight osSetTerrainHeight osGetSunParam osSetSunParam osSetPenColor The functions that do not comply to the standard give a warning when used but work normally otherwise. The graphics primitive drawing command "PenColor" has also been added as well as dynamic texture parameter "bgcolor" as an alternative to "bgcolour". The following two functions have been renamed because they are not enabled yet aynway: osWindParamSet => osSetWindParam osWindParamGet => osGetWindParam
* Amend GetLinkPrimitiveParams with implementations for PRIM_TEXGEN, ↵Marck2010-11-271-10/+76
| | | | PRIM_BUMP_SHINY, PRIM_FULLBRIGHT, and PRIM_GLOW
* llVecNorm nant testMicheil Merlin2010-11-271-0/+24
|
* Trigger changed event with CHANGED_TELEPORT when teleporting to another region.Marck2010-11-262-8/+12
|
* Change all restarting to use the restart module. Remove hardcoded behaviorMelanie2010-11-251-3/+22
|
* Thank you, thomax, for a patch making changed events CHANGED_REGION_RESTART ↵Marck2010-11-221-2/+4
| | | | | | and CHANGED_REGION work. Fixes Mantix #5214.
* Fix global region coordinates that are delivered by llRequestSimulatorData.Marck2010-11-201-6/+6
| | | | Also did some source code clean-up by replacing literals with constants.
* Add osUnixTimeToTimestamp()Justin Clark-Casey (justincc)2010-11-173-2/+30
| | | | | This allows an input unix time to be converted to an llGetTimeStamp() format. Thanks Thomax.
* Fix osTeleportAgent for hypergrid destinations.Marck2010-11-161-1/+5
| | | | Signed-off-by: Melanie <melanie@t-data.com>
* Add osTeleportOwner.Marck2010-11-163-2/+48
| | | | | | | This provides the same functionality as osTeleportAgent but without the griefing potential. Region owners need not be concerned about the use of this function because it only allows to do what is already possible with the world map. The intended use is with HUDs. For example, a list of (hypergrid) destinations could be made available for quick access. Signed-off-by: Melanie <melanie@t-data.com>
* Can't detach an object from within the script thread because it will throw. ↵Melanie2010-11-161-6/+14
| | | | Use FireAndForget for that.
* Add PARCEL_DETAILS_ID to LSLBlueWall2010-11-122-0/+4
|
* Add lsClearWindlightScene() to the lightshare module to remove WL settingsMelanie2010-11-033-0/+22
| | | | from a region and allow normal day cycles to be reestablished
* When LightShare is enabled, the standard day cycle is bypassed and replaced byMelanie2010-11-031-0/+1
| | | | | | midday defaults when no specific LightShare profile is set. This prevents LightShare info being send out when the region has no LightShare profile, allowing normal day/night cycles to happen.
* Revert "Preliminary work on appearance layers. No user functionality yet."Melanie2010-10-291-8/+3
| | | | | | This work conflicts with cmickeyb's more extensive, related work This reverts commit 9c829c0410da89fdbb873f706d7ba63cf26b088f.
* Preliminary work on appearance layers. No user functionality yet.Melanie2010-10-291-3/+8
|
* Add PRIM_NAME, PRIM_DESC and PRIM_ROT_LOCALMelanie2010-10-242-0/+30
|
* Fix llParcelMediaCommandList() so that it applies commands only to the ↵Justin Clark-Casey (justincc)2010-10-221-4/+4
| | | | | | | parcel that the script is in, not all parcels. Patch from http://opensimulator.org/mantis/view.php?id=2738 Thanks snoopy and fineman.
* This fixes a delay in llSetLinkPrimitiveParamsFastAdelleF2010-10-211-1/+6
| | | | Signed-off-by: dahlia <dahliaTrimble@gmail.removeme.com>
* Fix the OOB error (#5102). Sorry, my bad.Melanie2010-10-211-1/+1
|
* Skip empty strings in ParseString* functionsMelanie2010-10-211-0/+6
|
* Adding osFunctions for light projectionBlueWall2010-10-173-0/+55
| | | | | | | | | | | | | | | | | | | | | Set the projection parameters in the host prim ... osSetProjectionParam(bool Enabled, key TextureMaskUUID, float FOV, float Focus, float Ambiance); Set the projection parameters in a target prim ... osSetProjectionParam(ikey target uuid, bool Enabled, key TextureMaskUUID, float FOV, float Focus, float Ambiance); Threat Level very high Signed-off-by: Melanie <melanie@t-data.com>
* Add configurable path to script engine assembliesBlueWall2010-09-264-15/+25
| | | | | | | | | Adding ability to place script engine assemblies outside the codebase directories. Uses new [XEngine] option: ScriptEnginesPath = "path_to_assemblies" Signed-off-by: Melanie <melanie@t-data.com>
* Added delay for llSetPrimitiveParams() and llSetLinkPrimitiveParams() ↵Kevin Cozens2010-09-241-100/+104
| | | | | | | | | | functions per the LSL wiki. Signed-off-by: Melanie <melanie@t-data.com> This patch also fixes a large amount of trailing whitespace. While this is beneficial, it should really be in a separate patch that fixes whitespace only. Just good practice.
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimJohn Hurliman2010-09-171-2/+24
|\
| * Revert "* Changed 11 calls for session info to the more optimized API method"root2010-09-171-2/+24
| | | | | | | | | | This reverts commit 5dc9ea2f2487804d788b4b80d40d91bd792de4c2. Also makes online indicators and IM more robust
* | Applying the llParseString2List() patch from #5036 that Melanie claims was ↵John Hurliman2010-09-171-81/+22
|/ | | | already applied
* Changed SceneObjectGroup to store parts with the fast and thread-safe ↵John Hurliman2010-09-162-60/+42
| | | | MapAndArray collection
* Formatting cleanup.Jeff Ames2010-09-124-10/+10
|
* First pass at cleaning up thread safety in EntityManager and SceneGraphJohn Hurliman2010-09-101-1/+1
|
* * Changed 11 calls for session info to the more optimized API methodJohn Hurliman2010-09-081-8/+2
|
* llRot2Euler TestsMicheil Merlin2010-09-031-0/+30
|
* Implements parcel media setting persistence and packet / CAPS handlingJonathan Freedman2010-08-301-4/+4
| | | | | | properly for the new media settings. Signed-off-by: Melanie <melanie@t-data.com>
* Improve consistency of locking for SOG.m_parts in order to avoid race ↵Justin Clark-Casey (justincc)2010-08-262-43/+68
| | | | conditions in linking and unlinking
* minor: remove mono compiler warningJustin Clark-Casey (justincc)2010-08-251-3/+1
|
* Patch by Apelsin that fixes behaviour of llSetPos and llGetLocalPos for ↵Marck2010-08-241-8/+17
| | | | | | | | attachments. This fixes Mantis #3923. Signed-off-by: Melanie <melanie@t-data.com>
* Fix bug in llGiveInventory() where items were disappearing on relogJustin Clark-Casey (justincc)2010-08-231-4/+2
| | | | | This was a regression - the code to look up the correct type folder was no longer being called if items were added without a parent folder set This may have been broken since commit bd49985a on 2010-05-02
* Remove various warnings and improve logging messages. No functional changes.Justin Clark-Casey (justincc)2010-08-231-1/+1
|