* working on RegionApplicationBase
* Renamed PhysicsManager to PhysicsPluginManager because it is.afrisby
parent
4a17587b8d
commit
58f4d69833
|
@ -119,7 +119,7 @@ namespace OpenSim
|
||||||
|
|
||||||
startuptime = DateTime.Now;
|
startuptime = DateTime.Now;
|
||||||
|
|
||||||
this.m_physicsManager = new PhysicsManager();
|
this.m_physicsManager = new PhysicsPluginManager();
|
||||||
this.m_physicsManager.LoadPlugins();
|
this.m_physicsManager.LoadPlugins();
|
||||||
|
|
||||||
this.SetupScene();
|
this.SetupScene();
|
||||||
|
|
|
@ -42,7 +42,7 @@ namespace OpenSim.Region.ClientStack
|
||||||
{
|
{
|
||||||
public class RegionApplicationBase
|
public class RegionApplicationBase
|
||||||
{
|
{
|
||||||
protected PhysicsManager m_physicsManager;
|
protected PhysicsPluginManager m_physicsManager;
|
||||||
protected AssetCache AssetCache;
|
protected AssetCache AssetCache;
|
||||||
protected InventoryCache InventoryCache;
|
protected InventoryCache InventoryCache;
|
||||||
protected Dictionary<EndPoint, uint> clientCircuits = new Dictionary<EndPoint, uint>();
|
protected Dictionary<EndPoint, uint> clientCircuits = new Dictionary<EndPoint, uint>();
|
||||||
|
|
|
@ -50,7 +50,7 @@ namespace SimpleApp
|
||||||
ScenePresence.LoadTextureFile("avatar-texture.dat");
|
ScenePresence.LoadTextureFile("avatar-texture.dat");
|
||||||
ScenePresence.PhysicsEngineFlying = true;
|
ScenePresence.PhysicsEngineFlying = true;
|
||||||
|
|
||||||
PhysicsManager physManager = new PhysicsManager();
|
PhysicsPluginManager physManager = new PhysicsPluginManager();
|
||||||
physManager.LoadPlugins();
|
physManager.LoadPlugins();
|
||||||
|
|
||||||
UDPServer udpServer = new UDPServer(internalEndPoint.Port, assetCache, inventoryCache, m_log, m_circuitManager);
|
UDPServer udpServer = new UDPServer(internalEndPoint.Port, assetCache, inventoryCache, m_log, m_circuitManager);
|
||||||
|
|
|
@ -36,11 +36,11 @@ namespace OpenSim.Physics.Manager
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Description of MyClass.
|
/// Description of MyClass.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class PhysicsManager
|
public class PhysicsPluginManager
|
||||||
{
|
{
|
||||||
private Dictionary<string, IPhysicsPlugin> _plugins=new Dictionary<string, IPhysicsPlugin>();
|
private Dictionary<string, IPhysicsPlugin> _plugins=new Dictionary<string, IPhysicsPlugin>();
|
||||||
|
|
||||||
public PhysicsManager()
|
public PhysicsPluginManager()
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue