aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-01-26Add OnScriptMovingStartEvent and OnScriptMovingEndEvent to EventManager so ↵Justin Clark-Casey (justincc)1-2/+4
that these can be triggered by future code (not yet implemented). Also hooks up moving_start and moving_end script events, eliminating itemID on XEngine EventManager methods since this is completely unused. An adaptation of the patch in http://opensimulator.org/mantis/view.php?id=6515 Thanks Garmin Kawaguichi and Signpost Marv.
2013-01-26Mantis 6343: Turn a prim to flexy to OFF don't work llSetPrimParamsTalun1-3/+10
Correction so that scripts can turn Flexi off as well as on.
2013-01-24Make llGiveMoney async again. The return value is now the constant 1 to makeMelanie1-8/+10
scripts work properly. Scripts will no longer receive a failure indication through this return value;
2013-01-24Reintroduce the return value of llGiveMoney. The grid will crash and burn ↵Melanie3-12/+12
without it.
2013-01-23* This makes the non-physics llCastRay 'better'. It's not 'correctly ↵teravus1-4/+17
working', and if you look deep enough, you see that the results are not really stable depending on the direction of the ray.
2013-01-24Remove unnecessary System.Linq reference from Compiler.csJustin Clark-Casey (justincc)1-1/+0
Hopefully will fix windows build via compile.bat
2013-01-24Disable the not very useful infinite recursion co-op termination tests for ↵Justin Clark-Casey (justincc)1-2/+6
now as they appear to cause failures with testing in jenkins. These tests are not very useful anyway as they never actually get a chance to try termination before the script runs out of stack
2013-01-24Fix mono 2.4.3 build break by using CreateInstanceAndUnwrap 9 method call ↵Justin Clark-Casey (justincc)1-0/+1
deprecated in later .net versions
2013-01-23Pass narrower WaitHandle rather than EventWaitHandle as co-op termination ↵Justin Clark-Casey (justincc)5-6/+6
wait handle to script APIs. APIs don't need to reference any methods on EventWaitHandle
2013-01-23Improve logging by making it clearer which script is failing if an assembly ↵Justin Clark-Casey (justincc)3-28/+31
fails to load. Moves the noise co-op start/stop debug log messages to only display if xengine debug level >= 1 Logs which stop strategy is being used (abort or co-op) Adjusts some other logging to remove not very useful stuff
2013-01-23Add the Avination physics raycast glue so Core Physics can implement raycastMelanie1-13/+77
2013-01-23Prevent double ground collisions and prefer the physics result if there is one.Melanie1-3/+15
ODE is known to not see the ground sometimes on raycast so the double test is needed.
2013-01-23Remove the return value from llGiveMoney and add llTransferLindenDollars. AlsoMelanie3-33/+114
make llGiveMoney async so the script thread is not held up waiting for comms to an external server.
2013-01-23Fix a type (Suports => Supports). Also put the normal terrain collision checkMelanie1-8/+8
into the physics check patch for now since physics doesn't properly return land for some reason (as tested by Nebadon)
2013-01-23Remove the return value from llGiveMoney (it was a LSL extension of OpenSim) andMelanie3-31/+29
make the function async so the script thread is not held up waiting for comms to an external server.
2013-01-23Guard against XMLRPC module ref being null, which will happen if it's disabledMelanie1-3/+7
2013-01-23If ScriptStopStrategy hasn't been set to co-op in [XEngine] config, then ↵Justin Clark-Casey (justincc)5-27/+87
continue to generate C# that is functionality identical to historical generation This is to eliminate disruption until co-op termination has been well-tested. In non co-op mode, XEngine will continue to load DLLs of the existing Script class and the new XEngineScript class. Moving to co-op mode still requires existing script DLL deletion to force recompilation, either manually or by setting DeleteScriptsOnStartup = true for one run. This change also means that scripts which fail to initialize do not still show up as running scripts.
2013-01-22Add co-op termination regression test for infinite recursive manual call on ↵Justin Clark-Casey (justincc)1-0/+22
event function. Such code would normally terminate quickly with a stack overflow exception anyway.
2013-01-22Set script delay factor to 0 in co-op termination testsJustin Clark-Casey (justincc)1-0/+3
This is to ensure loops aren't actually terminating from a wait on an LSL function. This was not the case with any of the existing tests.
2013-01-22Add regression test for co-op termination on infinite user function call ↵Justin Clark-Casey (justincc)1-0/+30
regression. Such a script would probably run out of stack pretty quickly anyway.
2013-01-22Add regression test for co-op stop of an infinite jump loopJustin Clark-Casey (justincc)1-8/+41
Also fixes bug in do-while test Improves detection of failure due to invalid script in test Sets up xengine anew for each test rather than once for the while testsuite to improve isolation between tests. Stop listening for chat after the first 'script is running' chat is received to reduce test run time.
2013-01-22Add do-while co-op termination testJustin Clark-Casey (justincc)1-2/+30
Minor changes to scripts in other tests.
2013-01-22Add single and comound while loop co-op termination testJustin Clark-Casey (justincc)1-0/+44
2013-01-22Fix bug in generating termination checks in compound statement for loop.Justin Clark-Casey (justincc)2-3/+27
Add regression test for this case.
2013-01-22factor out common code in existing co-op termination regression testsJustin Clark-Casey (justincc)1-55/+24
2013-01-22Increase WaitForEventCompletionOnScriptStop to 120 secs to show that the ↵Justin Clark-Casey (justincc)1-0/+4
co-op setting is active in its regression tests.
2013-01-22minor: comment out Console.WriteLine debugging message in XEngineJustin Clark-Casey (justincc)1-1/+1
2013-01-22Add regression test TestStopOnLongForLoop()Justin Clark-Casey (justincc)1-0/+59
2013-01-22refactor: rename XEngineTest to more descriptive XEngineBasicTestsJustin Clark-Casey (justincc)1-0/+0
2013-01-21Have SOP and LSL_Api call the proper GetCenterOfMass and GetGeometricCenterRobert Adams1-1/+1
routines on the physics engine. Won't make a difference for any existing scripts since ODE always returned Vector3.Zero.
2013-01-21* Fix notecard loading - If the notecard name is formatted like a UUID but ↵teravus1-11/+35
isn't an actual asset UUID, then try to load it like an asset id first, then try to load it as a task inventoryitem name. If the passed UUID is a string, try to load it like a task inventory item name.
2013-01-19Remove an extra ScriptSleep (merge artefact) from llSetLinkPrimitiveParamsFastMelanie1-2/+0
2013-01-19Assign the SmartThreadPool name in the constructorOren Hurvitz1-2/+2
This is required because some threads are created in the constructor, so assigning the name afterwards would be too late.
2013-01-19New constants for llGetObjectDetailsTalun2-0/+92
New constants for llGetObjectDetails OBJECT_CHARACTER_TIME, OBJECT_ROOT, OBJECT_ATTACHED_POINT, OBJECT_PATHFINDING_TYPE, OBJECT_PHYSICS, OBJECT_PHANTOM and OBJECT_TEMP_ON_REZ also Pathfining constants, 3 of which are used by llGetObjectDetails
2013-01-19New constants for llGetObjectDetailsTalun2-0/+92
New constants for llGetObjectDetails OBJECT_CHARACTER_TIME, OBJECT_ROOT, OBJECT_ATTACHED_POINT, OBJECT_PATHFINDING_TYPE, OBJECT_PHYSICS, OBJECT_PHANTOM and OBJECT_TEMP_ON_REZ also Pathfining constants, 3 of which are used by llGetObjectDetails
2013-01-19Mantis 6507 keys returned by llGetAgentList incorrect for llList2KeyTalun1-2/+2
The type of the keys returned by llGetAgentList corrected to LSL_Key
2013-01-18Restore previous client AO behaviour by not allowing them to remove the ↵Justin Clark-Casey (justincc)2-2/+2
default animation but continue to allow scripts to do so. This keeps the fix from http://opensimulator.org/mantis/view.php?id=6327 and fixes the behaviour regression in http://opensimulator.org/mantis/view.php?id=6483 Animations may still exhibit different behaviour if both scripts and clients are adjusting animations. A change in the behaviour of client AO to not remove all animations may be a better long term approach.
2013-01-17Implement non-wait co-operative termination of scripts for XEngine in ↵Justin Clark-Casey (justincc)7-77/+271
addition to termination on wait. This involves inserting opensim_reserved_CheckForCoopTermination() calls in lsl -> c# translation at any place where the script could be in a loop with no wait calls. These places are for, while, do-while, label, user function call and manual event function call. Call goes through to an XEngineScriptBase which extends ScriptBase. IEngine is extended to supply necessary engine-specific parent class references and constructor parameters to Compiler. Unfortunately, since XEngineScriptBase has to be passed WaitHandle in its constructor, older compiled scripts will fail to load with an error on the OpenSim console. Such scripts will need to be recompiled, either by removing all *.dll files from the bin/ScriptEngines/<region-id> or by setting DeleteScriptsOnStartup = true in [XEngine] for one run. Automatic recompilation may be implemented in a later commit. This feature should not yet be used, default remains termination with Thread.Abort() which will work as normal once scripts are recompiled.
2013-01-16 same for SetPrimParamsUbitUmarov1-3/+4
2013-01-16 llSetPos on child prim, send only a part terse update and not a group oneUbitUmarov1-3/+4
2013-01-16JustinCC's core re-mergeMelanie17-88/+208
2013-01-16Implement co-operative script termination if termination comes during a ↵Justin Clark-Casey (justincc)17-51/+304
script wait event (llSleep(), etc.) This makes use of EventWaitHandles since various web references indicate that Thread.Interrupt() can also cause runtime instability. If co-op termination is enabled, then termination sets the wait handle instead of waiting for a timeout before possibly aborting the thread. This allows the script to cleanly terminate if it's in a llSleep/LL function delay or the next time it enters such a wait without any timeout period. Co-op termination is not yet testable since checking for termination request within loops that never trigger a wait is not yet implemented. This commit, unlike 1b5c41c, passes the wait handle as an extra parameter through IScript.Initialize() instead of passing IScriptInstance itself.
2013-01-16Revert "Implement co-operative script termination if termination comes ↵Justin Clark-Casey (justincc)6-266/+10
during a script wait event (llSleep(), etc.)" Doing this as a favour to Melanie. This will be back with passing the wait handles directly to the api. This reverts commit 1b5c41c14ad11325be249ea1cce3c65d4d6a89be.
2013-01-16Implement co-operative script termination if termination comes during a ↵Justin Clark-Casey (justincc)6-10/+266
script wait event (llSleep(), etc.) This makes use of EventWaitHandles since various web references indicate that Thread.Interrupt() can also cause runtime instability. If co-op termination is enabled, then termination sets the wait handle instead of waiting for a timeout before possibly aborting the thread. This allows the script to cleanly terminate if it's in a llSleep/LL function delay or the next time it enters such a wait without any timeout period. Co-op termination is not yet testable since checking for termination request within loops that never trigger a wait is not yet implemented.
2013-01-15Fix llSetRegionPos and detail behaviors of llSet[Link]PrimitiveParams[Fast]()Melanie1-5/+9
regarding prim positioning.
2013-01-15Instead of passing separate engine, part and item components to script APIs, ↵Justin Clark-Casey (justincc)15-79/+109
pass down IScriptInstance instead. This is to allow the future co-operative script thread terminate feature to detect and act upon termination requests. This splits the assembly and state loading out from the ScriptInstance() constructor to a separate Load() method in order to facilititate continued script logic regression testing.
2013-01-14refactor: Simplify ScriptInstance by retaining reference to SceneObjectPart ↵Justin Clark-Casey (justincc)1-72/+55
instead of sometimes but not always looking it up.
2013-01-11BulletSim: add osGetPhysicsEngineType() LSL function and updateRobert Adams3-11/+54
the physics engines to return the name that is specified in the INI file ("physics = XXX") as the type of engine. This os function is a little different than the others in that it does not throw an exception of one is not privilaged to use it. It merely returns an empty string.
2013-01-11make sure keyframe rotations are normalizedUbitUmarov1-1/+3
2013-01-10Add "show script timers" command to show script timers. For debug purposes.Justin Clark-Casey (justincc)3-35/+81
Also, "show sensors" changes to "show script sensors".