more on compile..
parent
ecc1969857
commit
339f60e990
|
@ -267,11 +267,11 @@ namespace OpenSim
|
|||
|
||||
base.StartupSpecific();
|
||||
|
||||
if (EnableInitialPluginLoad)
|
||||
LoadPlugins();
|
||||
|
||||
// We still want to post initalize any plugins even if loading has been disabled since a test may have
|
||||
// inserted them manually.
|
||||
LoadPlugins();
|
||||
|
||||
foreach (IApplicationPlugin plugin in m_plugins)
|
||||
plugin.PostInitialise();
|
||||
|
||||
|
@ -293,10 +293,10 @@ namespace OpenSim
|
|||
"help " + capitalizedTopic,
|
||||
"Get help on plugin command '" + topic + "'",
|
||||
HandleCommanderHelp);
|
||||
// console.Commands.AddCommand(capitalizedTopic, false, "help " + capitalizedTopic,
|
||||
// "help " + capitalizedTopic,
|
||||
// "Get help on plugin command '" + topic + "'",
|
||||
// HandleCommanderHelp);
|
||||
console.Commands.AddCommand(capitalizedTopic, false, "help " + capitalizedTopic,
|
||||
"help " + capitalizedTopic,
|
||||
"Get help on plugin command '" + topic + "'",
|
||||
HandleCommanderHelp);
|
||||
|
||||
ICommander commander = null;
|
||||
|
||||
|
@ -773,10 +773,6 @@ namespace OpenSim
|
|||
protected override Scene CreateScene(RegionInfo regionInfo, ISimulationDataService simDataService,
|
||||
IEstateDataService estateDataService, AgentCircuitManager circuitManager)
|
||||
{
|
||||
Vector3 regionExtent = new Vector3(regionInfo.RegionSizeX, regionInfo.RegionSizeY, regionInfo.RegionSizeZ);
|
||||
PhysicsScene physicsScene = GetPhysicsScene(regionInfo.RegionName, regionExtent);
|
||||
SceneCommunicationService sceneGridService = new SceneCommunicationService();
|
||||
|
||||
return new Scene(
|
||||
regionInfo, circuitManager,
|
||||
simDataService, estateDataService,
|
||||
|
|
|
@ -170,6 +170,7 @@ namespace OpenSim.Region.PhysicsModules.UbitOde
|
|||
public class ODEScene : PhysicsScene, INonSharedRegionModule
|
||||
{
|
||||
private readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType.ToString());
|
||||
public string LogHeader = "[UbitODE]";
|
||||
private bool m_Enabled = false;
|
||||
|
||||
// private Dictionary<string, sCollisionData> m_storedCollisions = new Dictionary<string, sCollisionData>();
|
||||
|
@ -574,7 +575,7 @@ namespace OpenSim.Region.PhysicsModules.UbitOde
|
|||
d.WorldSetContactSurfaceLayer(world, contactsurfacelayer);
|
||||
d.WorldSetContactMaxCorrectingVel(world, 60.0f);
|
||||
|
||||
m_meshWorker = new ODEMeshWorker(this, m_log, meshmerizer, physicsconfig);
|
||||
m_meshWorker = new ODEMeshWorker(this, m_log, mesher, physicsconfig);
|
||||
|
||||
HalfOdeStep = ODE_STEPSIZE * 0.5f;
|
||||
odetimestepMS = (int)(1000.0f * ODE_STEPSIZE +0.5f);
|
||||
|
|
|
@ -153,15 +153,6 @@ namespace OpenSim.Tests.Common
|
|||
regInfo.RegionSizeX = sizeX;
|
||||
regInfo.RegionSizeY = sizeY;
|
||||
|
||||
SceneCommunicationService scs = new SceneCommunicationService();
|
||||
|
||||
PhysicsPluginManager physicsPluginManager = new PhysicsPluginManager();
|
||||
physicsPluginManager.LoadPluginsFromAssembly("Physics/OpenSim.Region.Physics.BasicPhysicsPlugin.dll");
|
||||
Vector3 regionExtent = new Vector3(regInfo.RegionSizeX, regInfo.RegionSizeY, regInfo.RegionSizeZ);
|
||||
PhysicsScene physicsScene
|
||||
= physicsPluginManager.GetPhysicsScene(
|
||||
"basicphysics", "ZeroMesher", new IniConfigSource(), "test", regionExtent);
|
||||
|
||||
TestScene testScene = new TestScene(
|
||||
regInfo, m_acm, SimDataService, m_estateDataService, configSource, null);
|
||||
|
||||
|
|
Loading…
Reference in New Issue