aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Application.cs
diff options
context:
space:
mode:
authorMW2007-05-24 12:16:50 +0000
committerMW2007-05-24 12:16:50 +0000
commit3376b82501000692d6dac24b051af738cdaf2737 (patch)
tree90ed0a5d4955236f011fa63fce9d555186b0d179 /OpenSim/Application.cs
parentAdded "terrain save grdmap <filename> <gradientmap>" function to console. Gra... (diff)
downloadopensim-SC_OLD-3376b82501000692d6dac24b051af738cdaf2737.zip
opensim-SC_OLD-3376b82501000692d6dac24b051af738cdaf2737.tar.gz
opensim-SC_OLD-3376b82501000692d6dac24b051af738cdaf2737.tar.bz2
opensim-SC_OLD-3376b82501000692d6dac24b051af738cdaf2737.tar.xz
Some more code refactoring, plus a restructuring of the directories so that the Grid servers can be a separate solution to the region server.
Diffstat (limited to 'OpenSim/Application.cs')
-rw-r--r--OpenSim/Application.cs95
1 files changed, 0 insertions, 95 deletions
diff --git a/OpenSim/Application.cs b/OpenSim/Application.cs
deleted file mode 100644
index 3f9c0ec..0000000
--- a/OpenSim/Application.cs
+++ /dev/null
@@ -1,95 +0,0 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4using OpenSim.UserServer;
5using OpenSim.Framework.Console;
6
7namespace OpenSim
8{
9 public class Application
10 {
11 //could move our main function into OpenSimMain and kill this class
12 [STAThread]
13 public static void Main(string[] args)
14 {
15 Console.WriteLine("OpenSim " + VersionInfo.Version + "\n");
16 Console.WriteLine("Starting...\n");
17
18 bool sandBoxMode = false;
19 bool startLoginServer = false;
20 string physicsEngine = "basicphysics";
21 bool allowFlying = false;
22 bool userAccounts = false;
23 bool gridLocalAsset = false;
24 bool useConfigFile = false;
25 bool silent = false;
26 string configFile = "simconfig.xml";
27
28 for (int i = 0; i < args.Length; i++)
29 {
30 if (args[i] == "-sandbox")
31 {
32 sandBoxMode = true;
33 startLoginServer = true;
34 }
35 /*
36 if (args[i] == "-loginserver")
37 {
38 startLoginServer = true;
39 }*/
40 if (args[i] == "-accounts")
41 {
42 userAccounts = true;
43 }
44 if (args[i] == "-realphysx")
45 {
46 physicsEngine = "RealPhysX";
47 allowFlying = true;
48 }
49 if (args[i] == "-ode")
50 {
51 physicsEngine = "OpenDynamicsEngine";
52 allowFlying = true;
53 }
54 if (args[i] == "-localasset")
55 {
56 gridLocalAsset = true;
57 }
58 if (args[i] == "-configfile")
59 {
60 useConfigFile = true;
61 }
62 if (args[i] == "-noverbose")
63 {
64 silent = true;
65 }
66 if (args[i] == "-config")
67 {
68 try
69 {
70 i++;
71 configFile = args[i];
72 }
73 catch (Exception e)
74 {
75 Console.WriteLine("-config: Please specify a config file. (" + e.ToString() + ")");
76 }
77 }
78 }
79
80 OpenSimMain sim = new OpenSimMain(sandBoxMode, startLoginServer, physicsEngine, useConfigFile, silent, configFile);
81 // OpenSimRoot.Instance.Application = sim;
82 sim.m_sandbox = sandBoxMode;
83 sim.user_accounts = userAccounts;
84 sim.gridLocalAsset = gridLocalAsset;
85 OpenSim.world.Avatar.PhysicsEngineFlying = allowFlying;
86
87 sim.StartUp();
88
89 while (true)
90 {
91 OpenSim.Framework.Console.MainConsole.Instance.MainConsolePrompt();
92 }
93 }
94 }
95}