aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application
diff options
context:
space:
mode:
authorUbitUmarov2015-09-02 19:54:53 +0100
committerUbitUmarov2015-09-02 19:54:53 +0100
commita11edceb00b5b86f825bd957bdac9edb91f893dd (patch)
treec192eae26f3aadf365a66f32fc6d9ade2f0a0c61 /OpenSim/Region/Application
parentbad merge? (diff)
downloadopensim-SC_OLD-a11edceb00b5b86f825bd957bdac9edb91f893dd.zip
opensim-SC_OLD-a11edceb00b5b86f825bd957bdac9edb91f893dd.tar.gz
opensim-SC_OLD-a11edceb00b5b86f825bd957bdac9edb91f893dd.tar.bz2
opensim-SC_OLD-a11edceb00b5b86f825bd957bdac9edb91f893dd.tar.xz
seems to compile ( tests comented out)
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r--OpenSim/Region/Application/OpenSim.cs13
-rw-r--r--OpenSim/Region/Application/OpenSimBase.cs9
2 files changed, 0 insertions, 22 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs
index a350510..a499811 100644
--- a/OpenSim/Region/Application/OpenSim.cs
+++ b/OpenSim/Region/Application/OpenSim.cs
@@ -115,13 +115,8 @@ namespace OpenSim
115 if (!String.IsNullOrEmpty(asyncCallMethodStr) && Utils.EnumTryParse<FireAndForgetMethod>(asyncCallMethodStr, out asyncCallMethod)) 115 if (!String.IsNullOrEmpty(asyncCallMethodStr) && Utils.EnumTryParse<FireAndForgetMethod>(asyncCallMethodStr, out asyncCallMethod))
116 Util.FireAndForgetMethod = asyncCallMethod; 116 Util.FireAndForgetMethod = asyncCallMethod;
117 117
118<<<<<<< HEAD
119 stpMinThreads = startupConfig.GetInt("MinPoolThreads", 15);
120 stpMaxThreads = startupConfig.GetInt("MaxPoolThreads", 300);
121=======
122 stpMinThreads = startupConfig.GetInt("MinPoolThreads", 2 ); 118 stpMinThreads = startupConfig.GetInt("MinPoolThreads", 2 );
123 stpMaxThreads = startupConfig.GetInt("MaxPoolThreads", 25); 119 stpMaxThreads = startupConfig.GetInt("MaxPoolThreads", 25);
124>>>>>>> avn/ubitvar
125 m_consolePrompt = startupConfig.GetString("ConsolePrompt", @"Region (\R) "); 120 m_consolePrompt = startupConfig.GetString("ConsolePrompt", @"Region (\R) ");
126 } 121 }
127 122
@@ -273,20 +268,12 @@ namespace OpenSim
273 SavePrimsXml2); 268 SavePrimsXml2);
274 269
275 m_console.Commands.AddCommand("Archiving", false, "load oar", 270 m_console.Commands.AddCommand("Archiving", false, "load oar",
276<<<<<<< HEAD
277=======
278
279>>>>>>> avn/ubitvar
280 "load oar [--merge] [--skip-assets]" 271 "load oar [--merge] [--skip-assets]"
281 + " [--default-user \"User Name\"]" 272 + " [--default-user \"User Name\"]"
282 + " [--force-terrain] [--force-parcels]" 273 + " [--force-terrain] [--force-parcels]"
283 + " [--no-objects]" 274 + " [--no-objects]"
284 + " [--rotation degrees] [--rotation-center \"<x,y,z>\"]" 275 + " [--rotation degrees] [--rotation-center \"<x,y,z>\"]"
285<<<<<<< HEAD
286 + " [--displacement \"<x,y,z>\"]"
287=======
288 + " [--displacement \"<x,y,z>\"]" 276 + " [--displacement \"<x,y,z>\"]"
289>>>>>>> avn/ubitvar
290 + " [<OAR path>]", 277 + " [<OAR path>]",
291 "Load a region's data from an OAR archive.", 278 "Load a region's data from an OAR archive.",
292 "--merge will merge the OAR with the existing scene (suppresses terrain and parcel info loading).\n" 279 "--merge will merge the OAR with the existing scene (suppresses terrain and parcel info loading).\n"
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs
index 760decd..5cd9045 100644
--- a/OpenSim/Region/Application/OpenSimBase.cs
+++ b/OpenSim/Region/Application/OpenSimBase.cs
@@ -276,13 +276,9 @@ namespace OpenSim
276 276
277 base.StartupSpecific(); 277 base.StartupSpecific();
278 278
279<<<<<<< HEAD
280 if (EnableInitialPluginLoad)
281 LoadPlugins();
282 279
283 // We still want to post initalize any plugins even if loading has been disabled since a test may have 280 // We still want to post initalize any plugins even if loading has been disabled since a test may have
284 // inserted them manually. 281 // inserted them manually.
285=======
286 LoadPlugins(); 282 LoadPlugins();
287 283
288 if (m_plugins.Count == 0) // We failed to load any modules. Mono Addins glitch! 284 if (m_plugins.Count == 0) // We failed to load any modules. Mono Addins glitch!
@@ -290,7 +286,6 @@ namespace OpenSim
290 Environment.Exit(1); 286 Environment.Exit(1);
291 } 287 }
292 288
293>>>>>>> avn/ubitvar
294 foreach (IApplicationPlugin plugin in m_plugins) 289 foreach (IApplicationPlugin plugin in m_plugins)
295 plugin.PostInitialise(); 290 plugin.PostInitialise();
296 291
@@ -832,10 +827,6 @@ namespace OpenSim
832 { 827 {
833 Vector3 regionExtent = new Vector3(regionInfo.RegionSizeX, regionInfo.RegionSizeY, regionInfo.RegionSizeZ); 828 Vector3 regionExtent = new Vector3(regionInfo.RegionSizeX, regionInfo.RegionSizeY, regionInfo.RegionSizeZ);
834 PhysicsScene physicsScene = GetPhysicsScene(regionInfo.RegionName, regionExtent); 829 PhysicsScene physicsScene = GetPhysicsScene(regionInfo.RegionName, regionExtent);
835<<<<<<< HEAD
836
837=======
838>>>>>>> avn/ubitvar
839 SceneCommunicationService sceneGridService = new SceneCommunicationService(); 830 SceneCommunicationService sceneGridService = new SceneCommunicationService();
840 831
841 return new Scene( 832 return new Scene(