aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-03-05Multiattach, part 1Melanie1-1/+1
2013-03-03Add support for void return typeroot1-1/+5
2013-02-28Fix potential concurrency issue since the LSL notecard cache was not being ↵Justin Clark-Casey (justincc)1-7/+10
checked for expiry under lock
2013-02-28Fix bug where simultaneous calls by different scripts to llGetNotecardLine() ↵Justin Clark-Casey (justincc)1-12/+14
or llGetNumberOfNotecardLines() would sometimes not trigger a dataserver event. This was because the notecard asset ID was being used as the request identifier. Now using a random ID, in common with other code using the DataServer
2013-02-28Add regression tests for llGetNotecardLine()Justin Clark-Casey (justincc)3-3/+273
2013-02-27Removed duplicate 'using' statement.Diva Canto1-1/+0
2013-02-27Switched to using the other Util function with a default value.Diva Canto1-2/+4
2013-02-27Moved the HG default variables out of [Startup] and into their own section ↵Diva Canto1-2/+2
[Hypergrid] in *Common.ini.example. Backwards compatible for now.
2013-02-27minor: remove some mono compiler warnings in script regression testsJustin Clark-Casey (justincc)2-2/+1
2013-02-27Add regression test for llReleaseUrl() (and for llRequestUrl)Justin Clark-Casey (justincc)1-0/+250
Forgot to add file for llRequestUrl() test in commit b8a7c8b
2013-02-26Add regression test for llRequestUrl()Justin Clark-Casey (justincc)1-0/+1
2013-02-25Remove osParseJSONNew because it's "object" return type is not useful for LSLroot3-7/+1
2013-02-22Added new Util function for reading config vars that's more generic than the ↵Diva Canto1-2/+2
one I added yesterday -- this is for helping move config vars out of [Startup]
2013-02-21Simplification of HG configs: HomeURI and GatekeeperURI now are defined as ↵Diva Canto1-2/+10
default under [Startup]. They can then be overwritten in the other sections (but probably shouldn't). I kept the existing code for backwards compatibility, so this should not cause any breaks from people's current configurations. But people should move to have these 2 vars under [Startup] -- see OpenSim.ini.example and Robust.HG.ini.example. And yes, both names now end with "URI" for consistency.
2013-02-19Deleted all AssemblyFileVersion directivesDiva Canto4-4/+4
2013-02-14Fix a very unlikely-to-occur NullReferenceException race condition in ↵Justin Clark-Casey (justincc)1-2/+7
llPushObject() where the code assumed that the physics actor it null-checked would still be null when it invoked a method on it
2013-02-12Use an integer when specifying the XWorkItem wait rather than a TimeSpan to ↵Justin Clark-Casey (justincc)3-4/+13
avoid a Windows casting issue in SmartThreadPool for large TimeSpans. TimeSpan.Milliseconds is an int64. However, STP casts this to an int (32-bit). If TimeSpan.MaxValue is given then the casting results in an invalid value for the SDK WaitHandle.WaitAll() call. This was causing the co-op script termination regression tests to fail on Windows but not Mono 2.10.8 (which is perhaps not strict in the negative values that it accepts). Solution here is to use the int millisecondsTimeout STP call rather than the TimeSpan one. This also allows us to more clearly specify Timeout.Infinite rather than TimeSpan.MaxValue Thanks to Teravus for this spot.
2013-02-07Rename Bounciness to RestitutionMelanie1-2/+2
2013-02-07Rename Bounciness to RestitutionMelanie1-2/+2
2013-02-07Rename "Bounciness" to "Restitution"Melanie1-1/+1
2013-02-06Partial port of Avination's support for the new physics parameters.Melanie2-0/+27
Implements the parameters as properties, the serialization and database storage (MySQL only). Implements llSetPrimitiveParams for prim physics shape and the other 4 extra params. Only the prim shape type "None" is currently functional. No support for the Viewer UI (yet), that will be ported in due course. Lots more to port, this is a large-ish changeset.
2013-02-06refactor: Move functions that lookup asset ids from task inventory or pass ↵Justin Clark-Casey (justincc)1-89/+15
them through to ScriptUtils class in OpenSim.Region.Framework.dll Renames functions to better reflect what they do. This is so that code registering with modInvoke() can reuse this code to provide functions that behave in a consistent manner with existing LSL/OSSL functions.
2013-02-05Make scripts shout a error but not stop when button count is overrun on llDialogMelanie1-7/+9
2013-02-05Fix bug where viewers would not see the "Module command functions not ↵Justin Clark-Casey (justincc)1-2/+62
enabled" error if these were disabled and a viewer attempted to call one. This was not working because the shouter was wrongly signalled as an agent rather than a prim
2013-02-05Bump version and assembly version numbers from 0.7.5 to 0.7.6Justin Clark-Casey (justincc)7-7/+7
This is mostly Bluewall's work but I am also bumping the general version number OpenSimulator 0.7.5 remains in the release candidate stage. I'm doing this because master is significantly adding things that will not be in 0.7.5 This update should not cause issues with existing external binary DLLs because our DLLs do not have strong names and so the exact version match requirement is not in force.
2013-02-01Revert "Update assembly version numbers"BlueWall7-7/+7
This reverts commit 141ad829f448b9138b12be7cf99c834c1f3977ec.
2013-02-01Update assembly version numbersBlueWall7-7/+7
2013-02-02Correct spelling mistake in new RayFilterFlags, LSLPhanton -> LSLPhantomJustin Clark-Casey (justincc)1-1/+1
2013-01-30Fix issue where lsl -> c# generation in co-operative termination mode did ↵Justin Clark-Casey (justincc)2-22/+171
not correctly handle single statement versions of for, while and do-while loops. Add regression tests to validate the fix. This problem will not affect the default abort termination mode.
2013-01-29minor: remove EnableLogging() left over in CoopTerminationTestsJustin Clark-Casey (justincc)1-1/+1
2013-01-29minor: remove some mono compile warnings in XEngine.csJustin Clark-Casey (justincc)1-2/+0
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.