aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add some more overloads to allow registering overloaded methods and listsMelanie2012-03-261-0/+2
| | | | of methods.
* Add a hust UUID to the script invocationsMelanie2012-03-261-1/+1
|
* Fix the omission on the interface declarationMelanie2012-03-261-1/+1
|
* Dynamically create the delegate type to reduce complexity in the callerMelanie2012-03-261-1/+2
|
* Correct the design error I introduced into ScriptComms. Untested but about toMelanie2012-03-261-4/+3
| | | | be.
* Simplify the module invocation registration. The types and method nameMelanie2012-03-251-1/+2
| | | | can be pulled fromt he delegate so we don't need to pass them explicitly
* Adds a new script command 'modInvoke' to invoke registered functionsMic Bowman2012-03-151-0/+10
| | | | | | | | | 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 interface/method documentatio nto IScriptModuleCommsJustin Clark-Casey (justincc)2010-01-111-2/+18
|
* Add IScriptModuleComms interface and region module to handle dispatch ofMelanie2009-11-101-0/+44
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.