aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Implementation (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-09-20- Consistency fix: Like llGetNumberOfNotecardLines, llGetNotecardLine ↵Homer Horwitz1-1/+13
returns NULL_KEY on error now - Conformance fix: If the notecard can't be found, shout on DEBUG_CHANNEL as the docs state - Bug fix: Don't let llGetNotecardLine throw an exception on freshly created notecards
2008-09-20XEngine: Fix llGetListEntryType to return the correct type for the LSL types.Melanie Thielker1-5/+5
Change serialization to omit types it can't deal with.
2008-09-19Guard LLRezObject against NaNMelanie Thielker1-2/+4
2008-09-19Mantis #2217Melanie Thielker1-1/+9
Guard against NaN being returned from llRotBetween. Return a zero rotation if the result is NaN.
2008-09-18Fix llParcelMedia queries. Correct types and add a missing ToString() (XEngine)Melanie Thielker1-3/+3
2008-09-18Remove redundant permissions check in OSSL_Api.csMelanie Thielker1-6/+0
2008-09-18From: Robert Smart (SMARTROB@uk.ibm.com)Dr Scofield2-6/+193
Patch for new scripting method osParseJSON. also, a couple of warning bugs killed.
2008-09-18Update svn properties, minor formatting cleanup.Jeff Ames1-3/+3
2008-09-18Kan-Ed fix series.Melanie Thielker1-2/+3
Correct a condition where a prim is linked before it has been persisted for the first time and is then persisted through it's former SOG with a bad offset position.
2008-09-18Another pointless multiplication/division removedMelanie Thielker1-2/+2
2008-09-18XEngine API refactor. Fully implement ALL_SIDES with sanity checks.Melanie Thielker1-88/+136
Correct color handling functions to no longer return the inverse color. Remove pointless * 256 / 256 legacy constructs.
2008-09-18Kan-Ed fix series.Melanie Thielker1-31/+64
XEngine: Change a number of methods to use the new link part method. Fix ALL_SIDES for llSetColor, llSetTexture, llSetAlpha, llSetPrimitiveParams, llGetPrimitiveParams(PRIM_TEXTURE, PRIM_COLOR).
2008-09-18Kan-Ed fix series.Melanie Thielker1-91/+58
XEngine: Introduce a common method to determine link parts to work on. Fix llSetLinkColor method.
2008-09-17Kan-Ed fix series. Fix up llRezAtRoot and llRezObject, fix llCreateLinkMelanie Thielker1-10/+5
to send a full update and do a persistence save.
2008-09-17Kan-Ed fix series. Fix llTakeControls to behave as documented.Melanie Thielker1-0/+8
XEngine fixes: prevent queue overruns, prevent spamming when no key is down. Release controls when conflicting permissions are requested or permissions are refused later. Release when prim or script are deleted. Fixes Scene script instance deletion semantics.
2008-09-17* Apply http://opensimulator.org/mantis/view.php?id=2206Justin Clarke Casey1-2/+11
* Fix/implement LSL group-related functions llDetectedGroup, llSameGroup * Thanks nlin
2008-09-16Update svn properties, minor formatting cleanup.Jeff Ames1-2/+2
2008-09-16* Apply http://opensimulator.org/mantis/view.php?id=2205 with a few small tweaksJustin Clarke Casey1-2/+2
* LSL Conformance: llSetPayPrice should accept more than four arguments in list * Thanks kcozens!
2008-09-16* Apply http://opensimulator.org/mantis/view.php?id=2204 (with a small tweak)Justin Clarke Casey1-2/+12
* Attached patch implements LSL llGetAgentSize() for DotNetEngine and XEngine. * Thanks Y. Nitta!
2008-09-16* Apply http://opensimulator.org/mantis/view.php?id=2203Justin Clarke Casey1-2/+68
* Implementation of LSL llBreakLink and llBreakAllLinks * Thanks Y. Nitta!
2008-09-16* Apply http://opensimulator.org/mantis/view.php?id=2202Justin Clarke Casey1-2/+2
* llGround causes Array out of bounds exception in KanEd#11 script * Thanks Y. Nitta!
2008-09-16* minor: oops, remove a warning I just inserted myself - naughty boyJustin Clarke Casey1-1/+1
2008-09-16* minor: method documentationJustin Clarke Casey3-4/+9
2008-09-16Minor formatting cleanup.Jeff Ames1-1/+1
2008-09-15Finish up OSSL enable/disable options in XEngine.Melanie Thielker1-8/+45
Now each function can be allowed, subject to threat level, disabled, or restricted to certain UUIDs.
2008-09-15Refactor the os functions allowed check into the threat check methodMelanie Thielker1-184/+5
2008-09-15Add the option to use Allow_osFunction = false for each OS functionMelanie Thielker1-0/+11
in the XEngine section
2008-09-15Add more granularity and a risk asessment system to the OSSL API in XEngine.Melanie Thielker1-60/+254
Adds the fix from Mantis #2197 in it's new form. Stage one of the scripting security changes, more to come.
2008-09-15Mantis#2197. Thank you kindly, Tyre, for a patch that:Charles Krinke2-1/+51
adds the new function osTeleportAgent().
2008-09-14Added some further clipping to color- and alpha-values.Homer Horwitz1-49/+51
2008-09-14Mantis #2186Melanie Thielker1-12/+12
Prevent illegal color values from being set.
2008-09-13Fixed several cases of inverted colors and alpha in DNE and XEngine.Homer Horwitz1-35/+35
Added clamping to 0.0 - 1.0 for R, G, B, and A.
2008-09-13Update svn properties. Minor formatting cleanup. Fix some minor typos. ↵Jeff Ames1-18/+2
Remove some old dead code.
2008-09-13Mantis #2018Melanie Thielker1-3/+0
Read animation data from avataranimations.xml to allow default animations to be started and stopped by name from scripts.
2008-09-13Mantis #2182Melanie Thielker1-1/+1
Thank you, tyre, for a patch that fixes the sender UUID in scripted IM
2008-09-13Fix some string to float casting nastiness. The "train script" nowMelanie Thielker1-2/+3
works. Also makes llGetFreeMemory return the constant 16384. LLGetFreeMemory is useless in SL, as it never goes up, only down. So, the only thing it is used for, in practice, is to detect an imminent stack/heap collision, a danger we don't have.
2008-09-13Change all LSL functions to return LSL types instead of base types.Melanie Thielker1-133/+95
Remove some unused osFunctions that were left in the LSL function file from the separation way back when. Inline the osSetParcelMediaURL code to get rid of the osFunction. Really need to add a way for one API to call another.
2008-09-10Update svn properties, minor formatting cleanup.Jeff Ames1-8/+8
Fix unreachable code due to typo in llDetectedGroup.
2008-09-10Mantis#2153. Thank you kindly, Godfrey for a patch that solves:Charles Krinke1-0/+8
osSetDynamicTextureData() produces error on console if ExtraParams passed empty string
2008-09-09Update svn properties, formatting cleanup.Jeff Ames1-2/+2
2008-09-09Fix delimiter access from list for llParseStringKeepNullsMelanie Thielker1-4/+4
2008-09-08Remove casting nastiness in LSL_ApiMelanie Thielker1-76/+76
2008-09-08Correct state handling and state event masks. Prims will now showMelanie Thielker1-30/+23
touch, pay, etc script states correctly.
2008-09-08Adapt the unit tests to the new list rules, change some casts toMelanie Thielker1-6/+7
new method for testing
2008-09-08Mantis #2147Melanie Thielker1-22/+24
Thank you, ralphos, for a patch the adapts llSetColor and friends to a change in the underlying types. Also, thank you for a much cleaner way of casting types out of lists, which I will adopt throughout.
2008-09-08Mantis #2144Melanie Thielker1-3/+3
Adjust XEngine llSetAlpha to a change in the underlying type
2008-09-08Mantis #2145Melanie Thielker1-24/+24
Fix a number of casting issues in XEngine's API
2008-09-08Implement proper persistence of the following prim properties:Melanie Thielker1-5/+12
Floating text, Rotation, Texture animation, Particle System This will make "Eye Candy" scripts work without modification in XEngine. The use of the CHANGED_REGION_RESTART hack is no longer needed. Implemented in MySQL only, hovertext also in SQLite.
2008-09-08Implement llEjectFromLand.Charles Krinke1-1/+12
2008-09-08Add implementation for llSetSoundRadius().Charles Krinke1-1/+1