aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Apply http://opensimulator.org/mantis/view.php?id=2459Justin Clarke Casey2008-10-231-7/+35
| | | | | | | * Implements the rest of llGetAgentInfo() with the exception of AGENT_BUSY. * Thanks nlin
* Thank you kindly, Idb for a patch that:Charles Krinke2008-10-221-1/+19
| | | | | | Added AGENT_ATTACHMENTS and AGENT_SCRIPTED to llGetAgentInfo Added to llGetAgentSize to include shoes in avatar height calculation.
* Thank you kindly, Nlin for a patch that:Charles Krinke2008-10-221-0/+6
| | | | | | Attached patch adds detection of AGENT_WALKING status to LSL function llGetAgentInfo()
* cleaning up IRCBridgeModule to allow for configuration from in-world,Dr Scofield2008-10-201-1/+2
| | | | | | | | | | | | | | chat relaying via private channels, and old IRCBridgeModule behaviour. also cleaning up IRCBridgeModule's OpenSim.ini configuration variable names (still supporting "old" variable names). refactored IRCChatModule into IRCConnector and incorporating watchdog from IRCBridgeModule into IRCConnector. enabling ChatModule to be used as a super-class and utilizing it in ConciergeModule.
* Mantis #2438Melanie Thielker2008-10-203-4/+4
| | | | | | Fix llSetVehicleFloatParam to accept LSL_Float
* Thank you kindly, Idb for a patch that solves:Charles Krinke2008-10-201-65/+59
| | | | | | | | lsl conformity, llPushObject incorrectly restricts the pushing of objects based on region and parcel flags
* Thank you kindly, Idb for a patch that solves:Charles Krinke2008-10-191-1/+15
| | | | | | | llWind always returns a zero vector. In the attached patch the WindModule has been changed slightly to make wind data available for llWind
* * Fix an over compensation for bounciness on flat PrimitiveTeravus Ovares2008-10-171-3/+169
| | | | | | * Implement the linear impulse portion of llPushObject. We should have a lsl compatible implementation of that portion of the push. Angular.. well. still have yet to implement a torque accumulator. * llPushObject respects the region and parcel settings for Restrict Push, it also respects GodMode as is defined in the LSL spec.
* Fixed llDeleteSubList; the indices were swapped (Fixes Mantis#2399).Homer Horwitz2008-10-171-1/+1
|
* * Added missing dependencies that was causing build to fail in windows. ↵Teravus Ovares2008-10-172-0/+2
| | | | Mono doesn't seem to care.
* Fixed (mono-)script handling for SL viewer 1.21:Homer Horwitz2008-10-162-4/+23
| | | | | | | | | | - Added two missing caps (UpdateScriptAgent, UpdateScriptTask) - Added one missing EventQueue event (ScriptRunningReply) - Changed DNE and XEngine to use this new event As we only use the mono engine anyway, the "Mono" checkbox is set by default but doesn't have any function.
* * Apply http://opensimulator.org/mantis/view.php?id=2401Justin Clarke Casey2008-10-161-1/+21
| | | | | | | * Removes spacers that are also separators in llParseString2List * Thanks idb
* * Apply http://opensimulator.org/mantis/view.php?id=2405Justin Clarke Casey2008-10-161-2/+4
| | | | | | | * Implement llGetRegionFPS() * Thanks idb
* Thanks, idb, for a patch that fixes Mantis#2400:Homer Horwitz2008-10-151-0/+4
| | | | | | llSensor() range ignored with AGENT.
* Thanks to T. Sado and nlin for a patch that partially implements ↵Dahlia Trimble2008-10-151-2/+45
| | | | llGetAgentInfo (AGENT_FLYING, AGENT_ALWAYS_RUN, AGENT_AWAY, AGENT_MOUSELOOK, AGENT_TYPING).
* Thanks to M. Igarashi and nlin for a patch that implements llGetCameraRot().Dahlia Trimble2008-10-151-1/+15
|
* * Apply http://opensimulator.org/mantis/view.php?id=2249Justin Clarke Casey2008-10-131-2/+15
| | | | | | | * Calculate an agents height in LLGetAgentSize() from apperance parameters rather than physics avatar numbers * Another good looking patch from idb - thanks!
* * Remove warnings, including one which pointed out a bugJustin Clarke Casey2008-10-131-1/+0
|
* Update svn properties, minor formatting cleanup.Jeff Ames2008-10-121-4/+4
|
* Fix LSL bitwise OrMelanie Thielker2008-10-121-0/+6
|
* Fix llSetPos to handle child prims correctly. This will fix linked Melanie Thielker2008-10-111-1/+8
| | | | | | sliding doors
* * Change permission check for llParcelMediaCommandList to use the permissionsHomer Horwitz2008-10-111-4/+5
| | | | | | module, thus including estate owners and gods.
* Add shift operator overloads to LSLInteger. If you get error messages whenMelanie Thielker2008-10-111-0/+10
| | | | | | | | using << and >> in scripts, this will fix it. rm bin/*.dll ; rm bin/ScriptEngines/*.dll ; rm bin/ScriptEngines/*/*.dll then rebuild and reinstall
* 2nd stab at that prim loading nastyMelanie Thielker2008-10-111-3/+6
|
* * Rework llParcelMediaCommandListHomer Horwitz2008-10-112-55/+184
| | | | | | | | * Add missing PARCEL_MEDIA_COMMAND_* constants * Fix a copy/paste error in SendParcelMediaUpdate llParcelMediaCommandList should work now
* Add a + operator to LSLString, otherwise you will end up with CIL strings ifHomer Horwitz2008-10-111-0/+5
| | | | | | you have expressions with strings.
* Fix an exception handling issue in XEngineMelanie Thielker2008-10-101-1/+1
|
* * Apply http://opensimulator.org/mantis/view.php?id=2373Justin Clarke Casey2008-10-091-73/+242
| | | | | | | * Many llSensor() improvements, though sensoring isn't perfect yet * thanks idb!
* * Apply http://opensimulator.org/mantis/view.php?id=2370Justin Clarke Casey2008-10-091-164/+16
| | | | | | | * Refactor lLMessageLinked() to use internal method GetLinkParts * thanks ralphos
* * minor: remove compile warningJustin Clarke Casey2008-10-081-1/+1
|
* Mantis#2352. Thank you kindly, Jonc for a patch that:Charles Krinke2008-10-081-2/+4
| | | | | | | | | If prim is part of SOG, then ask the SOG to update the position, rather than asking the part itself. Ghosted child prims should no longer result from llSetPos. Not sure if this is the right approach for all cases , would appreciate feedback on the patch.
* Mantis#1906. Thank you kindly, Idb for a patch that:Charles Krinke2008-10-081-18/+1
| | | | | | Removed cache accesses to obtain sensed object/avatar name, it is already available.
* Fix friendly errors in DNE as wellMelanie Thielker2008-10-081-11/+10
|
* Adapt tests to new friendly errors and correct line numbersMelanie Thielker2008-10-071-2/+2
|
* Restore "friendly errors" to the XEngineMelanie Thielker2008-10-074-30/+23
|
* * Apply http://opensimulator.org/mantis/view.php?id=2345Justin Clarke Casey2008-10-071-16/+12
| | | | | | | * Bring llSetLinkTexture into line with llSetLinkColor and lLSetLinkPrimitiveParams() implementations * Thanks ralphos
* * Apply http://opensimulator.org/mantis/view.php?id=1207Justin Clarke Casey2008-10-071-1/+6
| | | | | | | * Implmements llModifyLand() and a check for the "Allow others to terraform flag" * Thanks tglion!
* From: chris yeoh <yeohc@au1.ibm.com>Dr Scofield2008-10-071-16/+13
| | | | | | | | | | | | | | | | | The attached patch fixes mantis bug 2312 (llGetPos() returns incorrect values for child prims where the root prim is rotated). Regression tests still pass. Incidentally AbsolutePosition which was used before looks a little suspicious to me as its always going to return the wrong value if the root prim is rotated. GetWorldPosition does take the rotation into account, but AbsolutePosition is used in a lot of places. Though i don't understand why there is both GetWorldPosition as well as AbsolutePosition so I've left the latter alone. [i also cleaned up some indent problems, --- dr scofield]
* From: chris yeoh <yeohc@au1.ibm.com>Dr Scofield2008-10-071-2/+3
| | | | | | | | | | | | | | | | Attached is a patch for LLGround which was just plain broken and could cause a runtime error. It now returns valid data with valid input (ie the offset does not take the position off the edge of the sim), but a runtime error will occur if invalid data is given. On invalid data the LL servers return the ground height based on a valid point closest to the effective position calculated using the supplied offset. Is the OpenSim convention to replicate the LL servers as closely as possible? If so I can submit an additional patch to replicate the LL behaviour.
* Mantis#2342. Thank you kindly, Ralphos for a patch that solves:Charles Krinke2008-10-061-78/+10
| | | | | | | llSetLinkApha is not fully implemented and has not been updated to use the recently added GetLinkParts and associated implementation pattern as per llSetLinkColor and llSetLinkPrimitiveParams.
* Revert r6697 patch as the build fails.Charles Krinke2008-10-061-6/+1
|
* 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
|