aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/XEngine (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-02-07Add a regression test to compile and start a script. Remove ↵Justin Clark-Casey (justincc)2-22/+97
Path.GetDirectoryName when getting assembly loading path in Compiler.CompileFromDotNetText(). The Path.GetDirectoryName call in Compiler.CompileFromDotNetText is unnecessary since AppDomain.CurrentDomain.BaseDirectory is always a directory. Later path concatenation is already done by Path.Combine() which handles any trailing slash. Removing Path.GetDirectoryName() will not affect the runtime but allows NUnit to work since it doesn't add a trailing slash to AppDomain.CurrentDomain.BaseDirectory.
2012-02-01Lay out script status in property per row format, since getting too long for ↵Justin Clark-Casey (justincc)1-6/+12
console lines.
2012-02-01Add count of events queued for a particular script in "scripts show" console ↵Justin Clark-Casey (justincc)1-4/+9
command
2012-02-01Make script console commands only show for selected region.Justin Clark-Casey (justincc)1-0/+9
2012-02-01Implement "xengine status" console command to show various xengine statsJustin Clark-Casey (justincc)1-4/+28
2012-01-14Extend scripts show command to accept a single item UUID parameter to ↵Justin Clark-Casey (justincc)1-40/+47
display one script's status Usage is now scripts show [<script-item-uuid>]
2011-11-17If the entire simulator is shutting down then don't bother to unload the ↵Justin Clark-Casey (justincc)1-7/+19
scripts from the appdomain in XEngine. All the other actions (script state save, etc.) still occur. This makes shutdown where there are many scripts vastly quicker.
2011-10-27For now, comment out error message on new script engine console commands.Justin Clark-Casey (justincc)1-1/+4
This causes false positives if a simulator has more than 1 region and the current region is 'root' since this sends the command separately to each region and each region has its own XEngine
2011-10-19Extend scripts stop/start/suspend/resume console commands to allow action on ↵Justin Clark-Casey (justincc)1-67/+91
a single script by giving the script item id (which can be found via scripts show). Not an ideal way to do this on a region with many scripts. Needs refinement later.
2011-10-19Add "scripts stop" and "scripts start" console commands.Justin Clark-Casey (justincc)1-2/+48
These will stop all running scripts and start all stopped scripts respectively. A stopped script does not save any events for later processing.
2011-10-19minor: improve command help on scripts suspend/resumeJustin Clark-Casey (justincc)1-2/+5
2011-10-19Fix resume scripts.Justin Clark-Casey (justincc)1-1/+1
On resume, we need to place requeue the script for event processing if there are any events on the queue. Also need to do this under m_Script lock in order to avoid a race
2011-10-19Add "scripts suspend" and "scripts resume" commands.Justin Clark-Casey (justincc)1-1/+49
These aim currently to suspend and resume all scripts. However, resume isn't currently working due to what looks like a bug in resume functionality itself.
2011-10-19on log and "show scripts" messages, show script item UUID rather than asset UUIDJustin Clark-Casey (justincc)1-4/+4
The item ID is the one required for any script manipulation on the command line, so I think it's somewhat more useful to show this bearing in mind the limited space available
2011-10-19add current script status to "scripts show" command (running, suspended, etc.)Justin Clark-Casey (justincc)1-2/+20
2011-10-19Add "show scripts" command to show all scripts currently known to the script ↵Justin Clark-Casey (justincc)1-0/+28
engine in the current region. Also added synonym of "scripts show"
2011-10-14Don't execute rest of code in XEngine.RemoveRegion() and Close() if the ↵Justin Clark-Casey (justincc)1-0/+6
module is disabled.
2011-10-12When shutting down XEngine, log how many scripts are being shutdown so the ↵Justin Clark-Casey (justincc)1-1/+4
user knows why they are waiting.
2011-09-12minor: if the script engine fails to find a prim for a script, also print ↵Justin Clark-Casey (justincc)1-1/+1
out that prim's local id in the error message.
2011-09-09Delay loading scripts until the scene has finished loadingOren Hurvitz1-0/+3
2011-09-01Eliminate pointless checks of SOG.RootPart != nullJustin Clark-Casey (justincc)1-5/+1
It's never possible for SOG to have no RootPart, except in the first few picosends of the big bang when it's pulled from region persistence or deserialized
2011-09-01Remove pointless cluttering SOP.ParentGroup != null checks.Justin Clark-Casey (justincc)1-2/+2
The only times when ParentGroup might be null is during regression tests (which might not be a valid thing) and when scene objects are being constructed from the database. At all other times it's not possible for a SOP not to have a SOG parent.
2011-08-24Fix llAttachToAvatar()Justin Clark-Casey (justincc)1-0/+9
Apart from one obvious bug, this was failing because attempting to serialize the script from inside the script (as part of saving the attachment as an inventory asset) was triggering an extremely long delay. So we now don't do this. The state will be serialized anyway when the avatar normally logs out. The worst that can happen is that if the client/server crashes, the attachment scripts start without previous state.
2011-05-24Create a method to force the script engine to save state from outsideMelanie1-4/+9
2011-05-21Get rid of OpenSim.Tests.Common.Setup subpackage in favour of just ↵Justin Clark-Casey (justincc)1-1/+0
OpenSim.Tests.Common instead
2011-04-30First stab at cleaning up Caps. Compiles. Untested.Diva Canto1-2/+1
2010-09-26Add configurable path to script engine assembliesBlueWall1-10/+17
Adding ability to place script engine assemblies outside the codebase directories. Uses new [XEngine] option: ScriptEnginesPath = "path_to_assemblies" Signed-off-by: Melanie <melanie@t-data.com>
2010-09-12Formatting cleanup.Jeff Ames1-1/+1
2010-08-23Remove various warnings and improve logging messages. No functional changes.Justin Clark-Casey (justincc)1-1/+1
2010-07-20Adding it again.Diva Canto1-28/+36
Revert "Reverting this for now, but this needs to go in again." This reverts commit c0d9ab941dd1ab88f00f6d4f2a53a4fe5c605e57.
2010-07-19Reverting this for now, but this needs to go in again.Diva Canto1-36/+28
Revert "Another stab at http://opensimulator.org/mantis/view.php?id=4858. Eliminated more nested locks." This reverts commit ffbae52a130376ecaa04d7d475709985c62c06ed.
2010-07-19Another stab at http://opensimulator.org/mantis/view.php?id=4858. Eliminated ↵Diva Canto1-28/+36
more nested locks.
2010-07-19One more stab at http://opensimulator.org/mantis/view.php?id=4858.Diva Canto1-33/+33
Eliminated the nested locks of m_Scripts and m_PrimObjects.
2010-07-19Revert "A stab in the dark. Revert the compile lockout temporarily. If you ↵Melanie1-20/+20
know what" This reverts commit f798679b8005e532f933553007cca989112f4a1d.
2010-07-19A stab in the dark. Revert the compile lockout temporarily. If you know whatMelanie1-20/+20
this is, you should test it. If you don't, don't use it.
2010-07-11Remove localID from script controls data. It won't transfer to anotherMelanie1-2/+2
region anyway
2010-07-09Bug 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-01Add region name on the end of script startup debug messagesJustin Clark-Casey (justincc)1-2/+4
2010-06-30Fix scripts in rezzed objects not starting (Mantis #4775)Melanie1-0/+5
2010-06-29Fix 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-06-09If a script is deleted before it gets compiled, don't even bother to tryMelanie1-0/+19
compiling it
2010-04-19All scripts are now created suspended and are only unsuspended when the objectMelanie1-0/+18
is fully rezzed and all scripts in it are instantiated. This ensures that link messages will not be lost on rez/region crossing and makes heavily scripted objects reliable.
2010-02-15Formatting cleanup.Jeff Ames1-1/+1
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-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-11Whitespace cleanupMelanie1-10/+10
2010-01-11Adds llRotTarget and the events at_rot_target and not_at_rot_target.Revolution1-8/+14
Signed-off-by: Melanie <melanie@t-data.com>
2010-01-10Adds land collision events.Revolution1-17/+54
CRs cleaned from patch Signed-off-by: Melanie <melanie@t-data.com>
2010-01-04Formatting cleanup. Add copyright headers.Jeff Ames1-1/+1
2009-12-22Remove GetState. It is really unused and was reinstated by the revertMelanie1-7/+0