From 4a17587b8df120d8a588533933ffb374c87c5d7a Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Mon, 16 Jul 2007 18:10:27 +0000 Subject: * Restructured the RegionApplicationBase. --- .../Region/ClientStack/RegionApplicationBase.cs | 59 ++-------------------- 1 file changed, 3 insertions(+), 56 deletions(-) (limited to 'OpenSim/Region/ClientStack/RegionApplicationBase.cs') diff --git a/OpenSim/Region/ClientStack/RegionApplicationBase.cs b/OpenSim/Region/ClientStack/RegionApplicationBase.cs index ed7df17..610f2d9 100644 --- a/OpenSim/Region/ClientStack/RegionApplicationBase.cs +++ b/OpenSim/Region/ClientStack/RegionApplicationBase.cs @@ -42,22 +42,13 @@ namespace OpenSim.Region.ClientStack { public class RegionApplicationBase { - protected IGenericConfig localConfig; - protected PhysicsManager physManager; + protected PhysicsManager m_physicsManager; protected AssetCache AssetCache; protected InventoryCache InventoryCache; protected Dictionary clientCircuits = new Dictionary(); protected DateTime startuptime; protected NetworkServersInfo serversData; - public string m_physicsEngine; - public bool m_sandbox = false; - public bool m_loginserver; - public bool user_accounts = false; - public bool gridLocalAsset = false; - protected bool configFileSetup = false; - public string m_config; - protected List m_udpServer = new List(); protected List regionData = new List(); protected List m_localWorld = new List(); @@ -66,53 +57,9 @@ namespace OpenSim.Region.ClientStack protected LogBase m_log; - public RegionApplicationBase() - { - - } - - public RegionApplicationBase(bool sandBoxMode, bool startLoginServer, string physicsEngine, bool useConfigFile, bool silent, string configFile) - { - this.configFileSetup = useConfigFile; - m_sandbox = sandBoxMode; - m_loginserver = startLoginServer; - m_physicsEngine = physicsEngine; - m_config = configFile; - } - - /*protected World m_localWorld; - public World LocalWorld - { - get { return m_localWorld; } - }*/ - - /// - /// Performs initialisation of the world, such as loading configuration from disk. - /// - public virtual void StartUp() + public RegionApplicationBase( ) { - } - - protected virtual void SetupLocalGridServers() - { - } - - protected virtual void SetupRemoteGridServers() - { - - } - - protected virtual void SetupScene() - { - } - - protected virtual void SetupHttpListener() - { - } - - protected virtual void ConnectToRemoteGridServer() - { - + } } } -- cgit v1.1