aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-09-30Mantis#2300. Thank you kindly, Idb for a patch that solves:Charles Krinke1-8/+9
A number of the deprecated functions had missing parameters causing compile errors. These included: llSound, llMakeExplosion, llMakeFountain, llMakeSmoke, llMakeFire, llPointAt, llXorBase64Strings, llSetPrimURL
2008-09-29Mantis#2299. Thank you kindly, Idb for a patch that:Charles Krinke1-6/+14
OS/SL script conformance, implement llSoundPreload and llRemoteLoadScript to behave as in SL. In SL llSoundPreload appears to do nothing. In OS llRemoteLoadScript shouts an error when invoked "Deprecated. Please use llRemoteLoadScriptPin instead."
2008-09-28Implement the plumbing for llSetVehicleType from the LSLCharles Krinke1-1/+7
subroutine down through the physics modules through PhysActor and SceneObjectPart. No connection to the physics simulators.
2008-09-28Added the plumbing for llSetVehicleRotationParamCharles Krinke1-1/+14
in the classes between the LSL implementation and the underlying physics engines.
2008-09-28A little bit further with LLSetVehicleVectorParam.Charles Krinke1-1/+8
2008-09-28Plumb the connection though from llSetVehicleVectorParamCharles Krinke1-1/+1
to the various physics engines. No connection to the underlying physics simulator yet, just plumbing through the various classes.
2008-09-28Remove llSetVehicledoubleParam. It does not exist.Charles Krinke1-6/+0
It was a mistake a year ago to add it in.
2008-09-28Plumb the connection through from llSetVehicleFloatParamCharles Krinke1-1/+8
to the various physics engines. No connection to the underlying physics simulator yet, just plumbing through the various classes.
2008-09-28Mantis#2287. Thank you kindly, Idb for a patch that solves:Charles Krinke1-5/+58
The current llGetLinkName returns an empty string if a prim with the given link number is not found in the link set. In SL an empty string is only returned if the prim name is actually blank, a NULL_KEY is returned instead with a couple of exceptions.
2008-09-26Thank you, idb, for a patch that implements the stubs for llGetAgentLanguage()Melanie Thielker1-0/+7
2008-09-26* Patch from JHurlimanTeravus Ovares1-17/+19
* Updates to libomv r2243, * Remove lots of unnecessary typecasts * Improves SendWindData() Thanks jhurliman. * Will update OpenSim-libs in 10 minutes..
2008-09-26* Apply http://opensimulator.org/mantis/view.php?id=2274Justin Clarke Casey1-1/+3
* Reapply homer's click action implementation, which accidentally got blatted * Thanks tyre
2008-09-26Full API convergence. Api is back in LSL_Api.cs and OSSL_Api.cs.Melanie Thielker1-31/+8226
The binaries are still different, but that is only a small step away now. The OSSLPrim has been removed. This commit will breal all scripts using Prim.Scale(), etc, syntax. It was not secure and will have to be brought back in another form.
2008-09-25CONVERGENCE!!!!!!Melanie Thielker1-8221/+21
The entire LSL API is now in the single, shared file OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api_Base.cs This is for both engines. The OSSL function are still separate.
2008-09-25Mantis#2123. Thank you kindly, Idb for a patch that solves:Charles Krinke1-2/+20
Under both DotNetEngine and XEngine, if an agent's UUID is passed as the parameter to llGetObjectMass(), it throws an exception.
2008-09-24Rename lots of stuff in DNE to reduce source code differences in theMelanie Thielker1-8/+8
LSL implementation files. Rename lots of stuff in XEngine for the same reason. Move methods between interfaces. Just refactor stuff.
2008-09-24Decouple AsyncCommands from XEngine and the script instance. MakeMelanie Thielker1-1/+1
all methods needed outside the API ststic. Async command processing is now wholly internal to the API. This sets the stage for the next convergence step.
2008-09-23Mantis #2243Melanie Thielker1-484/+551
Thank you, tyre, for a patch that refactors LSL to use a unified set of method signatures and type names, reorders methods and removes unused and adds new method stubs.
2008-09-22* Apply http://opensimulator.org/mantis/view.php?id=2234Justin Clarke Casey1-1/+12
* Exceptions can thrown by llGetOwnerKey() * Thanks idb
2008-09-21Update svn properties, minor formatting cleanup.Jeff Ames1-1/+1
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-18From: Robert Smart (SMARTROB@uk.ibm.com)Dr Scofield1-6/+6
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 Casey1-2/+4
2008-09-15Mantis#2197. Thank you kindly, Tyre, for a patch that:Charles Krinke1-1/+1
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.