diff options
author | Melanie Thielker | 2008-09-13 14:40:42 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-09-13 14:40:42 +0000 |
commit | fdb24c46ac02447e05662227180927c9bd270276 (patch) | |
tree | 7a56f38ab6bc761330e72d5c0b04a3c16a8dfbb1 /OpenSim/Region/ScriptEngine/Shared/Instance | |
parent | Change all LSL functions to return LSL types instead of base types. (diff) | |
download | opensim-SC_OLD-fdb24c46ac02447e05662227180927c9bd270276.zip opensim-SC_OLD-fdb24c46ac02447e05662227180927c9bd270276.tar.gz opensim-SC_OLD-fdb24c46ac02447e05662227180927c9bd270276.tar.bz2 opensim-SC_OLD-fdb24c46ac02447e05662227180927c9bd270276.tar.xz |
Provide a GetApi method on the IScriptEngine to get a named API reference
This allows cross-api method calls on the implementation and also allows
"Meta APIs" that only provide common functionality to other APIs
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Instance')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Instance/ScriptInstance.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Instance/ScriptInstance.cs b/OpenSim/Region/ScriptEngine/Shared/Instance/ScriptInstance.cs index 1ee6f77..8f6108d 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Instance/ScriptInstance.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Instance/ScriptInstance.cs | |||
@@ -714,5 +714,12 @@ namespace OpenSim.Region.ScriptEngine.Shared.Instance | |||
714 | throw new Exception("Completed persistence save, but no file was created"); | 714 | throw new Exception("Completed persistence save, but no file was created"); |
715 | } | 715 | } |
716 | } | 716 | } |
717 | |||
718 | public IScriptApi GetApi(string name) | ||
719 | { | ||
720 | if (m_Apis.ContainsKey(name)) | ||
721 | return m_Apis[name]; | ||
722 | return null; | ||
723 | } | ||
717 | } | 724 | } |
718 | } | 725 | } |