Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | make the namespace for the ScriptModuleComms consistent with its file system ↵ | Mic Bowman | 2012-04-17 | 1 | -1/+1 |
| | | | | location | ||||
* | Add some more overloads to allow registering overloaded methods and lists | Melanie | 2012-03-26 | 1 | -4/+14 |
| | | | | of methods. | ||||
* | Merge branch 'master' of melanie@opensimulator.org:/var/git/opensim | Melanie | 2012-03-26 | 1 | -1/+11 |
|\ | | | | | | | | | Conflicts: OpenSim/Region/OptionalModules/Scripting/ScriptModuleComms/ScriptModuleCommsModule.cs | ||||
| * | Fix compile error in ScriptModuelComms and add some debugging into the modInvoke | Mic Bowman | 2012-03-25 | 1 | -2/+12 |
| | | | | | | | | routines to simplify finding method registration issues. | ||||
* | | Add a hust UUID to the script invocations | Melanie | 2012-03-26 | 1 | -7/+8 |
|/ | |||||
* | Further simplify ScriptComms | Melanie | 2012-03-26 | 1 | -1/+3 |
| | |||||
* | Dynamically create the delegate type to reduce complexity in the caller | Melanie | 2012-03-26 | 1 | -1/+21 |
| | |||||
* | Correct the design error I introduced into ScriptComms. Untested but about to | Melanie | 2012-03-26 | 1 | -14/+22 |
| | | | | be. | ||||
* | Simplify the module invocation registration. The types and method name | Melanie | 2012-03-25 | 1 | -2/+18 |
| | | | | can be pulled fromt he delegate so we don't need to pass them explicitly | ||||
* | Add support for key, vector, rotation and list types for both | Mic Bowman | 2012-03-24 | 1 | -0/+8 |
| | | | | | | arguments and return values to the modInvoke family of functions. See http://opensimulator.org/wiki/OSSL_Script_Library/ModInvoke | ||||
* | Adds a new script command 'modInvoke' to invoke registered functions | Mic Bowman | 2012-03-15 | 1 | -2/+97 |
| | | | | | | | | | from region modules. The LSL translator is extended to generate the modInvoke format of commands for directly inlined function calls. A region module can register a function Test() with the name "Test". LSL code can call that function as "Test()". The compiler will translate that invocation into modInvoke("Test", ...) | ||||
* | Add IScriptModuleComms interface and region module to handle dispatch of | Melanie | 2009-11-10 | 1 | -0/+105 |
script messages to region modules and sending back replies. Hook IScriptModuleComms.OnScriptCommand to see commands and use DispatchReply to reply to the script. It is recommended to pass the "id" parameter from the event as the "k" parameter of the reply. The script will receive the reply as a link message from link -1. |