aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix Mantis #4429: Allow llGiveInventory to work across sim borders.Melanie2011-05-231-9/+23
|
* Add stubs for unimplemented lsl functionsBlueWall2011-05-221-18/+67
|
* Implement llGetLinKNumberOfSides().Justin Clark-Casey (justincc)2011-05-201-2/+12
| | | | Based on code in http://opensimulator.org/mantis/view.php?id=5489 Thanks onesong.
* Add stub for llGetLinkNumberOfSides(integer link)BlueWall2011-05-191-0/+6
|
* refactor: remove thisObject argument from ILandObject.Get*MaxPrimCount() ↵Justin Clark-Casey (justincc)2011-05-141-2/+2
| | | | instance methods since it didn't make sense to use anything other than the instance themselves.
* simplify code in llGetParcelMaxPrims() to use existing code in LandObject ↵Justin Clark-Casey (justincc)2011-05-141-18/+4
| | | | rather than duping the algo
* Correct llGetParcelMaxPrims() to use the same calculation as used elsewhere ↵Justin Clark-Casey (justincc)2011-05-141-6/+5
| | | | | | instead of the old 0.22 prims/meter squared fudge factor. Thanks to tglion for this.
* minor: remove some mono compiler warningsJustin Clark-Casey (justincc)2011-04-111-10/+4
|
* Add support for the new display name related functions in LSL. This does notMelanie2011-04-081-0/+49
| | | | | | implement the display names functionality as such, but it allows scripts that are display name aware to function as if the display name were implemented and set to the avatar name.
* replace magic numbers in llGetParcelPrimCount() with constantsJustin Clark-Casey (justincc)2011-04-051-22/+8
|
* switch llGetParcelPrimCount() to use new prim counts moduleJustin Clark-Casey (justincc)2011-04-051-46/+39
|
* check threat configuration for LSL print()dahlia2011-03-311-1/+6
|
* implement LSL "print()" API functiondahlia2011-03-311-1/+7
|
* 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
|
* Revamp the viewer -> banlist packet processing so fix a number of bugs.Melanie2010-12-131-33/+55
| | | | | | | 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.
* Amend GetLinkPrimitiveParams with implementations for PRIM_TEXGEN, ↵Marck2010-11-271-10/+76
| | | | PRIM_BUMP_SHINY, PRIM_FULLBRIGHT, and PRIM_GLOW
* 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.
* 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-121-0/+3
|
* 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-241-0/+27
|
* 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
|
* 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-161-53/+38
| | | | MapAndArray collection
* Formatting cleanup.Jeff Ames2010-09-121-4/+4
|
* * Changed 11 calls for session info to the more optimized API methodJohn Hurliman2010-09-081-8/+2
|
* 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-261-39/+61
| | | | conditions in linking and unlinking
* 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
* Short-circuit the grid server lookup for RequestSimulatorData if the regionMelanie Thielker2010-08-191-1/+6
| | | | info is requested for is the local region
* Prevent a bad cast in llCreateLink().Melanie Thielker2010-08-181-1/+5
|
* Work on TeleportStart: renamed method from TeleportLocationStart to ↵Diva Canto2010-08-161-1/+0
| | | | TeleportStart, and now sending this upon all teleports, not just some, and in the right place (EntityTransferModule).
* Fix a parenthesis in prior commitMelanie2010-08-061-1/+1
|
* Merge branch 'master' of melanie@opensimulator.org:/var/git/opensimMelanie2010-08-061-0/+235
|\
| * Merge branch 'moap'Justin Clark-Casey (justincc)2010-08-061-0/+235
| |\
| | * implement llClearPrimMedia()Justin Clark-Casey (justincc)2010-07-261-0/+20
| | | | | | | | | | | | untested
| | * minor: correct a few method names and change accessabilityJustin Clark-Casey (justincc)2010-07-261-3/+3
| | |
| | * implement llSetPrimMediaParams()Justin Clark-Casey (justincc)2010-07-261-1/+112
| | | | | | | | | | | | Untested
| | * Implement llGetPrimMediaParams()Justin Clark-Casey (justincc)2010-07-261-0/+104
| | | | | | | | | | | | | | | Exposes method to get media entry via IMoapModule As yet untested.