aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine (unfollow)
Commit message (Collapse)AuthorFilesLines
2010-07-20Fix the XML serializationt to provide an empty script state element ifMelanie1-4/+28
the script hasn't yet saved state, or can't save state because of a loop
2010-07-17Bug in 0.6.9 sometimes restoring script state causes region console to crash ↵unknown1-39/+84
due to unhandled file lock exception. Attempt to resolve by wrapping several instances of file create / read logic in using statements and added some error handling for locked file exceptions. If it is IDisposable, it must be disposed! The close statements are unnecessary but harmless so I have left those in. The end of the using block will close and dispose automagically.
2010-07-08llVecNorm() now returns a zero-length vector when one is supplied as input. ↵dahlia1-7/+2
Addresses Mantis #4752
2010-07-08fix a potential division by zerodahlia1-6/+11
2010-06-30Fix scripts in rezzed objects not starting (Mantis #4775)Melanie1-0/+5
2010-06-09If a script is deleted before it gets compiled, don't even bother to tryMelanie1-0/+19
compiling it
2010-06-02Revert "Next OSG test. Don't remove app domains if they contain running ↵Melanie1-6/+4
threads." This reverts commit f831a1778baa766b4810e352f3ae2ab6736e4620. With this, post-fixes is back to normal.
2010-06-02Next OSG test. Don't remove app domains if they contain running threads.Melanie1-4/+6
2010-06-02Next OSG test. Cowardly refuse to save the state of badly behaved scripts, ↵Melanie1-2/+5
instead of forcing the issue.
2010-06-02Revert "After aborting a thread, wait for it to actually finish. ↵Melanie1-1/+0
EXPERIMENTAL for OSG" This reverts commit 241ed5734ee3c5b1417484dfa22af6cf6ae60b82.
2010-06-02After aborting a thread, wait for it to actually finish. EXPERIMENTAL for OSGMelanie1-0/+1
testing. DO NOT UPDATE TO THIS UNLESS YOU KNOW WHAT YOU'RE DOING!
2010-06-01Gosh, fixing another nullref issue in cmGetAvatarList. I deserve spanks.Tom Grimshaw1-3/+6
2010-06-01Comment and remove JScript support. Mono 2.7Dev and 2.8 no longer include theMelanie1-19/+19
needed libraries
2010-05-31Fix casting in llParcelMediaCommandList so that it actually, you know, worksTom Grimshaw1-16/+16
2010-05-20move linden notecard parsing from LSL_Api.cs to SLUtil so that region ↵Justin Clark-Casey (justincc)1-81/+2
modules can use it backport from master
2010-05-19Fix a null reference issue in cmGetAvatarList()Tom Grimshaw1-1/+1
2010-04-07Implement cmGetAvatarList(). This returns a strided list of all avatars in ↵Thomas Grimshaw3-60/+87
the region, including their UUID, position and name. The radar is often the most taxing scripts on a sim, this function can help radars reduce their impact by 66% by eliminating the need for sensors.
2010-04-07Fix llLookAt so that it doesn't "roll" the object and more closely imitates ↵Thomas Grimshaw1-4/+16
the behaviour in SL. ( http://bugs.meta7.com/view.php?id=28 )
2010-04-07Add CHANGED_REGION_START (alias for CHANGED_REGION_RESTART as per LL Jira ↵Thomas Grimshaw1-0/+1
SVC-3773)
2010-04-07Implement PSYS_SRC_INNERANGLE and PSYS_SRC_OUTERANGLEThomas Grimshaw1-0/+10
2010-04-05Add a much cheaper agent count retrieval method. This is obsoleted by 0.7 ↵Thomas Grimshaw1-1/+1
so it can be reverted then.
2010-03-17Prevent llTeleportAgentHome from affecting godsThomas Grimshaw1-0/+3
2010-03-16Debugger tags for VS2010Thomas Grimshaw2-193/+196
2010-03-14RotLookAt repaired; debug msg cleanup.Kitto Flora1-1/+3
2010-03-13Fix the delay in llGiveInventory so that it only takes effect when giving ↵CasperW1-2/+5
inventory to an avatar (this now replicates SL behaviour)
2010-03-07Small consistency changeMelanie1-1/+1
2010-03-07Small consistency changeMelanie1-1/+1
2010-03-06- implementing server 1.38 functionsunknown4-10/+114
Signed-off-by: Melanie <melanie@t-data.com>
2010-03-04Remove a superfluous array creationMelanie1-1/+0
2010-03-04Remove a superfluous array creationMelanie1-1/+0
2010-02-25llDie() should not work on attachments (results in an incosistent attachment ↵CasperW1-1/+1
state)
2010-02-15Fix an inconsistency in llSetPayPrice between SL and OS behaviourCasperW1-3/+6
2010-02-15Formatting cleanup.Jeff Ames2-33/+33
2010-02-15Implement missing llGetPrimitiveParams parametersCasperW1-32/+138
2010-02-14Revolution is on the roll again! :)Revolution2-55/+210
Fixes: Undo, T-pose of others on login, modifiedBulletX works again, feet now stand on the ground instead of in the ground, adds checks to CombatModule. Adds: Redo, Land Undo, checks to agentUpdate (so one can not fall off of a region), more vehicle parts. Finishes almost all of LSL (1 function left, 2 events). Direct flames and kudos to Revolution, please Signed-off-by: Melanie <melanie@t-data.com>
2010-02-12Apply last two patches from http://opensimulator.org/mantis/view.php?id=3522Justin Clark-Casey (justincc)2-17/+17
These patch should allow people using systems that do not have their locale set to En_US or similar to use OpenSim without suffering effects such as being a million miles up in the air on login. The problem was caused by parsing strings without forcing that parse to be En_US (hence different decimal and digit group symbols were causing problems). Thanks very much to VikingErik for doing the legwork on this fix and phacelia for spotting it in the first place.
2010-02-05Fix two inconsistencies with LightShareCasperW2-2/+7
2010-02-01minor: rename GetScriptPrimType() to GetPrimType()Justin Clark-Casey (justincc)1-2/+2
2010-02-01move hollow sphere faces bug back up to LSL_Api.csJustin Clark-Casey (justincc)1-36/+51
2010-02-01remove now duplicated shape code from LSL_Api.csJustin Clark-Casey (justincc)1-190/+45
2010-02-01Copy prim face color setting code from LSL_Api down into SOP so that non-LSL ↵Justin Clark-Casey (justincc)1-1/+0
callers can use it
2010-01-29Apply http://opensimulator.org/mantis/view.php?id=3334Justin Clark-Casey (justincc)1-1/+6
Send continuous touch() events if the left mouse button is held down while moving over an object This conforms with Linden Lab practice Thanks Revolution
2010-01-26Some merge fixupsMelanie1-15/+3
2010-01-25Fix a problem where llDie() calls were sometimes leaving dead objects behind.Justin Clark-Casey (justincc)1-6/+3
When an object was deleted, the remove script instance call was aggregating the scripting events as normal. This would queue a full update of the prim before the viewer was notifed of the deletion of that prim (QuitPacket) On some occasions, the QuitPacket would be sent before the full update was dequeued and sent. In principle, you would think that a viewer would ignore updates for deleted prims. But it appears that in the Linden viewer (1.23.5), a prim update that arrives after the prim was deleted instead makes the deleted prim persist in the viewer. Such prims have no properties and cannot be removed from the viewer except by a relog. This change stops the prim event aggregation call if it's being deleted anyway, hence removing the spurious viewer-confusing update.
2010-01-21Add glue for llSetVehicleFlags(), llRemoveVehicleFlags(). ChODE: Add ↵Kitto Flora1-2/+14
associated methods.
2010-01-20Fixed an issue with PayPrice sometimes being shared between multiple objectsCasperW1-6/+7
2010-01-12Bug in llGetNumberOfPrims always returns to script when no clients are ↵Dan Lake1-14/+3
connected to the simulator.
2010-01-11minor: formattingJustin Clark-Casey (justincc)1-1/+5
2010-01-11Whitespace cleanupMelanie3-14/+14
2010-01-11Adds llRotTarget and the events at_rot_target and not_at_rot_target.Revolution3-16/+22
Signed-off-by: Melanie <melanie@t-data.com>