diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim.RegionServer/RegionServerBase.cs (renamed from OpenSim.RegionServer/OpenSimApplicationBase.cs) | 28 |
1 files changed, 25 insertions, 3 deletions
diff --git a/OpenSim.RegionServer/OpenSimApplicationBase.cs b/OpenSim.RegionServer/RegionServerBase.cs index 0c5a5cf..69a8748 100644 --- a/OpenSim.RegionServer/OpenSimApplicationBase.cs +++ b/OpenSim.RegionServer/RegionServerBase.cs | |||
@@ -25,7 +25,7 @@ using OpenSim.GenericConfig; | |||
25 | 25 | ||
26 | namespace OpenSim | 26 | namespace OpenSim |
27 | { | 27 | { |
28 | public class OpenSimApplicationBase | 28 | public class RegionServerBase |
29 | { | 29 | { |
30 | protected IGenericConfig localConfig; | 30 | protected IGenericConfig localConfig; |
31 | protected PhysicsManager physManager; | 31 | protected PhysicsManager physManager; |
@@ -51,12 +51,12 @@ namespace OpenSim | |||
51 | 51 | ||
52 | protected ConsoleBase m_console; | 52 | protected ConsoleBase m_console; |
53 | 53 | ||
54 | public OpenSimApplicationBase() | 54 | public RegionServerBase() |
55 | { | 55 | { |
56 | 56 | ||
57 | } | 57 | } |
58 | 58 | ||
59 | public OpenSimApplicationBase(bool sandBoxMode, bool startLoginServer, string physicsEngine, bool useConfigFile, bool silent, string configFile) | 59 | public RegionServerBase(bool sandBoxMode, bool startLoginServer, string physicsEngine, bool useConfigFile, bool silent, string configFile) |
60 | { | 60 | { |
61 | this.configFileSetup = useConfigFile; | 61 | this.configFileSetup = useConfigFile; |
62 | m_sandbox = sandBoxMode; | 62 | m_sandbox = sandBoxMode; |
@@ -77,5 +77,27 @@ namespace OpenSim | |||
77 | public virtual void StartUp() | 77 | public virtual void StartUp() |
78 | { | 78 | { |
79 | } | 79 | } |
80 | |||
81 | protected virtual void SetupLocalGridServers() | ||
82 | { | ||
83 | } | ||
84 | |||
85 | protected virtual void SetupRemoteGridServers() | ||
86 | { | ||
87 | |||
88 | } | ||
89 | |||
90 | protected virtual void SetupLocalWorld() | ||
91 | { | ||
92 | } | ||
93 | |||
94 | protected virtual void SetupHttpListener() | ||
95 | { | ||
96 | } | ||
97 | |||
98 | protected virtual void ConnectToRemoteGridServer() | ||
99 | { | ||
100 | |||
101 | } | ||
80 | } | 102 | } |
81 | } | 103 | } |