mirror of
git://opensimulator.org/git/opensim
synced 2026-08-15 17:42:16 +00:00
Currently the vm is at a early stage and very limited: currently only supports static methods (instance methods support is nearly finished though) currently a class can't have member variables, so currently only local variables in the methods. Also in this branch, connecting the vm to opensim is not completely finished: it is being uploaded just for viewing purposes.
91 lines
2.8 KiB
C#
91 lines
2.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Reflection;
|
|
using OpenSim.Framework.Interfaces;
|
|
using OpenSim.UserServer;
|
|
|
|
namespace OpenSim
|
|
{
|
|
public class Grid
|
|
{
|
|
public IAssetServer AssetServer;
|
|
public IGridServer GridServer;
|
|
public IUserServer UserServer;
|
|
public string AssetDll = "";
|
|
public string GridDll = "";
|
|
|
|
public Grid()
|
|
{
|
|
}
|
|
|
|
public virtual void Initialise()
|
|
{
|
|
//load the dlls
|
|
this.AssetServer = this.LoadAssetDll(this.AssetDll);
|
|
this.GridServer = this.LoadGridDll(this.GridDll);
|
|
}
|
|
public virtual void Close()
|
|
{
|
|
this.AssetServer.Close();
|
|
this.GridServer.Close();
|
|
}
|
|
|
|
private IAssetServer LoadAssetDll(string dllName)
|
|
{
|
|
Assembly pluginAssembly = Assembly.LoadFrom(dllName);
|
|
IAssetServer server = null;
|
|
|
|
foreach (Type pluginType in pluginAssembly.GetTypes())
|
|
{
|
|
if (pluginType.IsPublic)
|
|
{
|
|
if (!pluginType.IsAbstract)
|
|
{
|
|
Type typeInterface = pluginType.GetInterface("IAssetPlugin", true);
|
|
|
|
if (typeInterface != null)
|
|
{
|
|
IAssetPlugin plug = (IAssetPlugin)Activator.CreateInstance(pluginAssembly.GetType(pluginType.ToString()));
|
|
server = plug.GetAssetServer();
|
|
break;
|
|
}
|
|
|
|
typeInterface = null;
|
|
}
|
|
}
|
|
}
|
|
pluginAssembly = null;
|
|
return server;
|
|
}
|
|
|
|
private IGridServer LoadGridDll(string dllName)
|
|
{
|
|
Assembly pluginAssembly = Assembly.LoadFrom(dllName);
|
|
IGridServer server = null;
|
|
|
|
foreach (Type pluginType in pluginAssembly.GetTypes())
|
|
{
|
|
if (pluginType.IsPublic)
|
|
{
|
|
if (!pluginType.IsAbstract)
|
|
{
|
|
Type typeInterface = pluginType.GetInterface("IGridPlugin", true);
|
|
|
|
if (typeInterface != null)
|
|
{
|
|
IGridPlugin plug = (IGridPlugin)Activator.CreateInstance(pluginAssembly.GetType(pluginType.ToString()));
|
|
server = plug.GetGridServer();
|
|
break;
|
|
}
|
|
|
|
typeInterface = null;
|
|
}
|
|
}
|
|
}
|
|
pluginAssembly = null;
|
|
return server;
|
|
}
|
|
}
|
|
}
|