aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Mantis#2336. Thank you kindly, Ralphos for a patch that:Charles Krinke2008-10-061-3/+8
| | | | | | | | Prevent EventAbortException inner exceptions of TargetInvocationException being re-thrown from OpenSim.Region.ScriptEngine.Shared.ScriptBase. Executor.ExecuteEvent
* Mantis#1207. Thank you, TGlion for a patch that addresses:Charles Krinke2008-10-061-1/+6
| | | | | | | | | | Implementation of llModifyLand() and There is a bug on permission-check of land-terraforming: x an y-coordinates are interchanged on function-call ExternalChecksCanTerraformLand. Correct: x is west, and y is north. 2) Missing check of "Other allow to terraform-flag" (Parcel.ParcelFlags.AllowTerraform)
* Update svn properties, minor formatting cleanup.Jeff Ames2008-10-056-45/+45
|
* Fix Mantis #2281: touch events in non-default states in DNE work again.Homer Horwitz2008-10-041-1/+1
|
* Mantis#2316. Thank you kindly, CMickeyb for a patch that:Charles Krinke2008-10-042-7/+31
| | | | | | | | | | | | Addresses llDie issues. The attached patch catches run time exceptions that occur during method invocation (of type TargetInvocationException) and exposes the internal exception. This makes it possible to pass out the SelfDeleteException. Also added handlers in a couple places to make sure that exception was being passed out far enough to be handled correctly. Tested on DNE.
* Guard against negative scale set through LSL functionsMelanie Thielker2008-10-041-0/+3
|
* Fix: Mantis#2326: Fix: privilege escalation through attach from groundMelanie Thielker2008-10-032-2/+2
| | | | | | | | | | Fix: objects being duplicated inventory on detach. Fix: Mad jumping around of attachments while editing. Fix: Attachments being persisted to database on login. Fix: Attachments being persisted when changed by a script like invisprim refresh. Fix: Attachpoint set, but not reset correctly. Fix: prevent spurious full updates while editing attachments. Several other fixes
* Reintroduces the discovery mechanism to use llRequestSimulatorData("", 128)Melanie Thielker2008-10-037-15/+45
| | | | | | | Causes the dataserver event to return "OpenSim" when running on OpenSim. Requires ThreatLevel to be "High" or above to function.
* Plumb in the start parameter in DNEMelanie Thielker2008-10-032-1/+11
|
* Mantis#2307. Thank you kindly, Godfrey for a patch that solves:Charles Krinke2008-10-031-11/+7
| | | | | | | | | | | In Second Life's implementation of llParseString2List(), all spacer strings which occur within the source string are included in the resulting list. In OpenSim's implementation, any spacers occurring at the beginning of the string are discarded; furthermore, if multiple spacers occur between non-spacer elements, or at the end of the source string, only the first spacer is added to the resulting list; the remainder are discarded.
* Mantis #2317Melanie Thielker2008-10-034-3/+20
| | | | | | | | Thank you, fusspawn, for an implementation of osGetSimulatorVersion. This patch removes the llRequestSimulatorData(..., 128) hack and implements the functionality as an osFunction.
* Mantis #2282.Homer Horwitz2008-10-021-1/+1
| | | | | | Thanks tglion for the necessary info to solve an ArgumentOutOfRangeException during region start.
* - Added SendScriptTeleportRequest to IClientView and classes implementing it.Homer Horwitz2008-10-011-2/+11
| | | | | | - Implemented llMapDestination.
* Update svn properties, minor formatting cleanup.Jeff Ames2008-09-301-1/+1
|
* Mantis#2300. Thank you kindly, Idb for a patch that solves:Charles Krinke2008-09-303-32/+33
| | | | | | | | | A number of the deprecated functions had missing parameters causing compile errors. These included: llSound, llMakeExplosion, llMakeFountain, llMakeSmoke, llMakeFire, llPointAt, llXorBase64Strings, llSetPrimURL
* Mantis#2299. Thank you kindly, Idb for a patch that:Charles Krinke2008-09-293-12/+20
| | | | | | | | | | 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."
* From: rob smart (smartrob@uk.ibm.com)Dr Scofield2008-09-291-6/+22
| | | | | | minor fixes to osParseJSON.
* Mantis #2293Melanie Thielker2008-09-291-0/+3
| | | | | | Same fix for the DNE
* Mantis #2293Melanie Thielker2008-09-291-0/+3
| | | | | | | Fix a null reference exception when the exception thrown by a script is not a TargetInvocationException
* Implement the plumbing for llSetVehicleType from the LSLCharles Krinke2008-09-281-1/+7
| | | | | | subroutine down through the physics modules through PhysActor and SceneObjectPart. No connection to the physics simulators.
* Added the plumbing for llSetVehicleRotationParamCharles Krinke2008-09-281-1/+14
| | | | | | in the classes between the LSL implementation and the underlying physics engines.
* A little bit further with LLSetVehicleVectorParam.Charles Krinke2008-09-281-1/+8
|
* Add explicit CultureInfo to the script compile thread in DotNetEngine toMelanie Thielker2008-09-283-0/+11
| | | | | | ensure that scripts will compile on nonenglish systems
* Plumb the connection though from llSetVehicleVectorParamCharles Krinke2008-09-281-1/+1
| | | | | | | to the various physics engines. No connection to the underlying physics simulator yet, just plumbing through the various classes.
* Mantis #1922Melanie Thielker2008-09-282-1/+2
| | | | | | | Thank you, idb, for a patch that addresses hex digits erroneously being recognized as valid and parsed in a decimal number
* Remove llSetVehicledoubleParam. It does not exist.Charles Krinke2008-09-281-6/+0
| | | | | It was a mistake a year ago to add it in.
* Plumb the connection through from llSetVehicleFloatParamCharles Krinke2008-09-281-1/+8
| | | | | | | to the various physics engines. No connection to the underlying physics simulator yet, just plumbing through the various classes.
* Update svn properties. Minor formatting cleanup. Fix a compiler warning. ↵Jeff Ames2008-09-281-1/+1
| | | | Fix a UUID vs null comparison.
* Mantis#2287. Thank you kindly, Idb for a patch that solves:Charles Krinke2008-09-281-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.
* Stop DNE saying "Loading script" when it's actually unloading.Melanie Thielker2008-09-271-2/+4
|
* Update unit testsMelanie Thielker2008-09-271-13/+6
|
* Add friendly error messages to both engines.Melanie Thielker2008-09-279-109/+303
|
* Mantis #2277Melanie Thielker2008-09-262-2/+1
| | | | | | Patch up a type name change in libomv. Thanks for tracking that down, idb
* Kill "Compile successful" message when rezzing prims/wearing attachmentsMelanie Thielker2008-09-262-4/+4
| | | | | | | Changes behavior to send on_rez event to prims when rezzed from agent inventory.
* Fix listeners in multi-region instancesMelanie Thielker2008-09-261-3/+3
|
* Thank you, idb, for a patch that implements the stubs for llGetAgentLanguage()Melanie Thielker2008-09-263-0/+13
|
* Remove another interface that is no longer neededMelanie Thielker2008-09-266-40/+5
|
* Finishing the code cleanup in DNE, make llDie work again in DNE.Melanie Thielker2008-09-264-236/+288
| | | | | | Add some compile messages from XEngine into DNE as well.
* * Patch from JHurlimanTeravus Ovares2008-09-262-21/+27
| | | | | | | | | * Updates to libomv r2243, * Remove lots of unnecessary typecasts * Improves SendWindData() Thanks jhurliman. * Will update OpenSim-libs in 10 minutes..
* DNE code cleanupsMelanie Thielker2008-09-263-102/+82
|
* Adds support for the "Running" checkbox and the "Reset" button, as well asMelanie Thielker2008-09-261-0/+44
| | | | | | | ResetScripts In Selection, Set Script to [not] Running In Selection from the tools menu. Allows DNE script reset without a full recompile.
* Pluggable API module (XEngine style) support for DNEMelanie Thielker2008-09-261-7/+14
|
* Compiler Connection! One world, one compiler!Melanie Thielker2008-09-2625-47590/+22
|
* After the last commit, the old Common assembly was still being loaded.Melanie Thielker2008-09-261-2/+2
| | | | | | | Removing it made DNE scripts crash. Fixed here. Now on to converge the compilers.
* Yay! Common/ is gone! One API is achieved!Melanie Thielker2008-09-269-2949/+22
|
* * minor: remove warningsJustin Clarke Casey2008-09-261-1/+1
|
* * Apply http://opensimulator.org/mantis/view.php?id=2274Justin Clarke Casey2008-09-261-1/+3
| | | | | | | * Reapply homer's click action implementation, which accidentally got blatted * Thanks tyre
* Add per-instance date to DNE to avoid serializing stuff 10 times a second.Melanie Thielker2008-09-267-250/+180
| | | | | | Clode cleanup and removal of commented stuff in ScriptManager.
* And another fileMelanie Thielker2008-09-261-0/+479
|
* Pushing the missing fileMelanie Thielker2008-09-261-0/+35
|