diff options
author | lbsa71 | 2007-07-16 18:15:54 +0000 |
---|---|---|
committer | lbsa71 | 2007-07-16 18:15:54 +0000 |
commit | 58f4d6983351563719b8488957ab7885b3e9482b (patch) | |
tree | cca65d42dea88b57726277d9b408e05c28443cbb /OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs | |
parent | * Restructured the RegionApplicationBase. (diff) | |
download | opensim-SC_OLD-58f4d6983351563719b8488957ab7885b3e9482b.zip opensim-SC_OLD-58f4d6983351563719b8488957ab7885b3e9482b.tar.gz opensim-SC_OLD-58f4d6983351563719b8488957ab7885b3e9482b.tar.bz2 opensim-SC_OLD-58f4d6983351563719b8488957ab7885b3e9482b.tar.xz |
* working on RegionApplicationBase
* Renamed PhysicsManager to PhysicsPluginManager because it is.
Diffstat (limited to 'OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs')
-rw-r--r-- | OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs | 115 |
1 files changed, 115 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs b/OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs new file mode 100644 index 0000000..cb77405 --- /dev/null +++ b/OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs | |||
@@ -0,0 +1,115 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://www.openmetaverse.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSim Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | * | ||
27 | */ | ||
28 | using System; | ||
29 | using System.Collections.Generic; | ||
30 | using System.IO; | ||
31 | using System.Reflection; | ||
32 | using OpenSim.Framework.Console; | ||
33 | |||
34 | namespace OpenSim.Physics.Manager | ||
35 | { | ||
36 | /// <summary> | ||
37 | /// Description of MyClass. | ||
38 | /// </summary> | ||
39 | public class PhysicsPluginManager | ||
40 | { | ||
41 | private Dictionary<string, IPhysicsPlugin> _plugins=new Dictionary<string, IPhysicsPlugin>(); | ||
42 | |||
43 | public PhysicsPluginManager() | ||
44 | { | ||
45 | |||
46 | } | ||
47 | |||
48 | public PhysicsScene GetPhysicsScene(string engineName) | ||
49 | { | ||
50 | if (String.IsNullOrEmpty(engineName)) | ||
51 | { | ||
52 | return PhysicsScene.Null; | ||
53 | } | ||
54 | |||
55 | if(_plugins.ContainsKey(engineName)) | ||
56 | { | ||
57 | MainLog.Instance.WriteLine(LogPriority.LOW,"creating "+engineName); | ||
58 | return _plugins[engineName].GetScene(); | ||
59 | } | ||
60 | else | ||
61 | { | ||
62 | MainLog.Instance.WriteLine(LogPriority.MEDIUM,"couldn't find physicsEngine: {0}",engineName); | ||
63 | throw new ArgumentException(String.Format("couldn't find physicsEngine: {0}",engineName)); | ||
64 | } | ||
65 | } | ||
66 | |||
67 | public void LoadPlugins() | ||
68 | { | ||
69 | string path = Path.Combine(AppDomain.CurrentDomain.BaseDirectory ,"Physics"); | ||
70 | string[] pluginFiles = Directory.GetFiles(path, "*.dll"); | ||
71 | |||
72 | |||
73 | for(int i= 0; i<pluginFiles.Length; i++) | ||
74 | { | ||
75 | this.AddPlugin(pluginFiles[i]); | ||
76 | } | ||
77 | } | ||
78 | |||
79 | private void AddPlugin(string FileName) | ||
80 | { | ||
81 | Assembly pluginAssembly = Assembly.LoadFrom(FileName); | ||
82 | |||
83 | foreach (Type pluginType in pluginAssembly.GetTypes()) | ||
84 | { | ||
85 | if (pluginType.IsPublic) | ||
86 | { | ||
87 | if (!pluginType.IsAbstract) | ||
88 | { | ||
89 | Type typeInterface = pluginType.GetInterface("IPhysicsPlugin", true); | ||
90 | |||
91 | if (typeInterface != null) | ||
92 | { | ||
93 | IPhysicsPlugin plug = (IPhysicsPlugin)Activator.CreateInstance(pluginAssembly.GetType(pluginType.ToString())); | ||
94 | plug.Init(); | ||
95 | this._plugins.Add(plug.GetName(),plug); | ||
96 | |||
97 | } | ||
98 | |||
99 | typeInterface = null; | ||
100 | } | ||
101 | } | ||
102 | } | ||
103 | |||
104 | pluginAssembly = null; | ||
105 | } | ||
106 | } | ||
107 | |||
108 | public interface IPhysicsPlugin | ||
109 | { | ||
110 | bool Init(); | ||
111 | PhysicsScene GetScene(); | ||
112 | string GetName(); | ||
113 | void Dispose(); | ||
114 | } | ||
115 | } | ||