diff options
author | Tedd Hansen | 2008-01-09 17:13:02 +0000 |
---|---|---|
committer | Tedd Hansen | 2008-01-09 17:13:02 +0000 |
commit | 260145a7e62d9d30bd74ee21288d36c95c8b0443 (patch) | |
tree | 7bdaa66ceffe71129968f506e2ab7af04eacc9d6 /OpenSim/Grid/ScriptServer/RemotingObject.cs | |
parent | Prim inventory script saving phase 2. (diff) | |
download | opensim-SC_OLD-260145a7e62d9d30bd74ee21288d36c95c8b0443.zip opensim-SC_OLD-260145a7e62d9d30bd74ee21288d36c95c8b0443.tar.gz opensim-SC_OLD-260145a7e62d9d30bd74ee21288d36c95c8b0443.tar.bz2 opensim-SC_OLD-260145a7e62d9d30bd74ee21288d36c95c8b0443.tar.xz |
Dynamic loading of ScriptEngine in ScriptServer
ScriptServer event pipe (OpenSim->ScriptServer->ScriptEngine) should in theory be done
Diffstat (limited to 'OpenSim/Grid/ScriptServer/RemotingObject.cs')
-rw-r--r-- | OpenSim/Grid/ScriptServer/RemotingObject.cs | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/OpenSim/Grid/ScriptServer/RemotingObject.cs b/OpenSim/Grid/ScriptServer/RemotingObject.cs index 915d020..54aff7a 100644 --- a/OpenSim/Grid/ScriptServer/RemotingObject.cs +++ b/OpenSim/Grid/ScriptServer/RemotingObject.cs | |||
@@ -10,18 +10,10 @@ namespace OpenSim.Grid.ScriptServer | |||
10 | { | 10 | { |
11 | // This object will be exposed over remoting. It is a singleton, so it exists only in as one instance. | 11 | // This object will be exposed over remoting. It is a singleton, so it exists only in as one instance. |
12 | 12 | ||
13 | // Expose ScriptEngine directly for now ... this is not very secure :) | ||
14 | // NOTE! CURRENTLY JUST HARDWIRED DOTNETENGINE! | ||
15 | //private OpenSim.Region.ScriptEngine.DotNetEngine.ScriptEngine SE = | ||
16 | // new OpenSim.Region.ScriptEngine.DotNetEngine.ScriptEngine(); | ||
17 | //public OpenSim.Region.ScriptEngine.Common.ScriptServerInterfaces.RemoteEvents Events = | ||
18 | // (OpenSim.Region.ScriptEngine.Common.ScriptServerInterfaces.RemoteEvents)SE.m_EventManager; | ||
19 | |||
20 | //private ScriptServerInterfaces.RemoteEvents _events = new abc; | ||
21 | 13 | ||
22 | ScriptServerInterfaces.RemoteEvents ScriptServerInterfaces.ServerRemotingObject.Events() | 14 | ScriptServerInterfaces.RemoteEvents ScriptServerInterfaces.ServerRemotingObject.Events() |
23 | { | 15 | { |
24 | return null; | 16 | return ScriptServerMain.Engine.EventManager(); |
25 | } | 17 | } |
26 | } | 18 | } |
27 | } | 19 | } |