* removed unused new-login.dat

* cleared up verbose/noverbose/disableOutput douple negation confusion in ConsoleBase
* 2d chat radius is now 3d chat sphere
* removed unused fast 2d radius calc
* added chat type 0xFF : broadcast (no sphere checking)
* OpenSimMain now exposes its LocalWorld
This commit is contained in:
lbsa71
2007-05-16 17:12:17 +00:00
parent bd6e69b97c
commit 6056247ac3
10 changed files with 194 additions and 282 deletions

View File

@@ -21,7 +21,7 @@ namespace OpenSim
bool userAccounts = false;
bool gridLocalAsset = false;
bool useConfigFile = false;
bool noverbose = false;
bool silent = false;
string configFile = "simconfig.xml";
for (int i = 0; i < args.Length; i++)
@@ -60,7 +60,7 @@ namespace OpenSim
}
if (args[i] == "-noverbose")
{
noverbose = true;
silent = true;
}
if (args[i] == "-config")
{
@@ -76,7 +76,7 @@ namespace OpenSim
}
}
OpenSimMain sim = new OpenSimMain(sandBoxMode, startLoginServer, physicsEngine, useConfigFile, noverbose, configFile);
OpenSimMain sim = new OpenSimMain(sandBoxMode, startLoginServer, physicsEngine, useConfigFile, silent, configFile);
// OpenSimRoot.Instance.Application = sim;
sim.m_sandbox = sandBoxMode;
sim.user_accounts = userAccounts;