aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/MOD_Api.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-10-26minor: Add comment as to why we are pulcking plain old ints out of the ↵Justin Clark-Casey (justincc)1-0/+2
LSL_List when converting values from LSL for modInvoke()
2012-10-26Removing the apparently superfluous explicit namespace reference so that the ↵SignpostMarv1-8/+2
if-else-if-else block in ConvertFromLSL can have a consistent appearance
2012-10-26system ints can end up in LSL lists, which can cause counter-intuitive ↵SignpostMarv1-0/+2
unknown list element type errors in ConvertFromLSL (via modInvoke)
2012-10-25When scripts generate expected exceptions (e.g. due to checked bad ↵Justin Clark-Casey (justincc)1-5/+5
parameter) throw ScriptException instead of just a plain old exception. This is to make it easier to distinguish these exceptions from unexpected OpenSimulator problems internally and in regression tests. No functional changes.
2012-09-10passing in the function name to MOD_Api.ConvertFromLSL for more ↵SignpostMarv1-4/+4
user-friendly error messages
2012-09-05Enables cast from int to float for MOD* functions;Mic Bowman1-1/+1
Thanks SignpostMarv!
2012-08-18implicit operators mean one does not need to instantiate new objects manuallySignpostMarv1-4/+3
2012-08-18refactoring for Vector3 operator & constructor tweaksSignpostMarv1-4/+3
2012-07-20Enables support for UUIDs to be returned in lists fromMic Bowman1-3/+13
modInvoke commands. Thanks SignpostMarv!!!
2012-05-08refactor: Eliminate local id parameter from api initialize.Justin Clark-Casey (justincc)1-3/+1
This is always available from m_host.LocalId
2012-05-08Instead of constantly looking up unchanging self item in script code, pass ↵Justin Clark-Casey (justincc)1-5/+5
in self item on initialization.
2012-03-26Add a hust UUID to the script invocationsMelanie1-1/+10
2012-03-24Add support for key, vector, rotation and list types for bothMic Bowman1-57/+188
arguments and return values to the modInvoke family of functions. See http://opensimulator.org/wiki/OSSL_Script_Library/ModInvoke
2012-03-15Adds a new script command 'modInvoke' to invoke registered functionsMic Bowman1-0/+109
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", ...)
2009-11-10Add IScriptModuleComms interface and region module to handle dispatch ofMelanie1-3/+16
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.
2009-11-10Add modSendCommand function (note, this is a new API module, using the APIMelanie1-0/+121
extension mechanism, it's not a osFunction!