diff options
author | gareth | 2007-03-22 10:11:15 +0000 |
---|---|---|
committer | gareth | 2007-03-22 10:11:15 +0000 |
commit | 7daa3955bc3a1918e40962851f9e8d38597a245e (patch) | |
tree | bee3e1372a7eed0c1b220a8a49f7bee7d29a6b91 /ogs/userserver/src/Main.cs | |
parent | Load XML for neighbourinfo from grid (diff) | |
download | opensim-SC-7daa3955bc3a1918e40962851f9e8d38597a245e.zip opensim-SC-7daa3955bc3a1918e40962851f9e8d38597a245e.tar.gz opensim-SC-7daa3955bc3a1918e40962851f9e8d38597a245e.tar.bz2 opensim-SC-7daa3955bc3a1918e40962851f9e8d38597a245e.tar.xz |
brought zircon branch into trunk
Diffstat (limited to '')
-rw-r--r-- | OGS/userserver/src/Main.cs (renamed from ogs/userserver/src/Main.cs) | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/ogs/userserver/src/Main.cs b/OGS/userserver/src/Main.cs index 40ef916..7e5308e 100644 --- a/ogs/userserver/src/Main.cs +++ b/OGS/userserver/src/Main.cs | |||
@@ -33,6 +33,9 @@ using System.Collections.Generic; | |||
33 | using System.Text; | 33 | using System.Text; |
34 | using libsecondlife; | 34 | using libsecondlife; |
35 | using ServerConsole; | 35 | using ServerConsole; |
36 | using OpenSim.Framework.User; | ||
37 | using OpenSim.Framework.Sims; | ||
38 | using OpenSim.Framework.Inventory; | ||
36 | 39 | ||
37 | namespace OpenGridServices | 40 | namespace OpenGridServices |
38 | { | 41 | { |
@@ -73,16 +76,17 @@ namespace OpenGridServices | |||
73 | public void Startup() { | 76 | public void Startup() { |
74 | ServerConsole.MainConsole.Instance.WriteLine("Main.cs:Startup() - Please press enter to retain default settings"); | 77 | ServerConsole.MainConsole.Instance.WriteLine("Main.cs:Startup() - Please press enter to retain default settings"); |
75 | 78 | ||
76 | this.GridURL=ServerConsole.MainConsole.Instance.CmdPrompt("Grid URL: "); | 79 | this.GridURL=ServerConsole.MainConsole.Instance.CmdPrompt("Grid URL: "); |
77 | this.GridSendKey=ServerConsole.MainConsole.Instance.CmdPrompt("Key to send to grid: "); | 80 | this.GridSendKey=ServerConsole.MainConsole.Instance.CmdPrompt("Key to send to grid: "); |
78 | this.GridRecvKey=ServerConsole.MainConsole.Instance.CmdPrompt("Key to expect from grid: "); | 81 | this.GridRecvKey=ServerConsole.MainConsole.Instance.CmdPrompt("Key to expect from grid: "); |
79 | 82 | ||
80 | this.DefaultStartupMsg=ServerConsole.MainConsole.Instance.CmdPrompt("Default startup message for clients [Welcome to OGS!] :","Welcome to OGS!"); | 83 | this.DefaultStartupMsg=ServerConsole.MainConsole.Instance.CmdPrompt("Default startup message for clients [Welcome to OGS!] :","Welcome to OGS!"); |
81 | 84 | ||
82 | ServerConsole.MainConsole.Instance.WriteLine("Main.cs:Startup() - Creating user profile manager"); | 85 | ServerConsole.MainConsole.Instance.WriteLine("Main.cs:Startup() - Creating user profile manager"); |
83 | _profilemanager = new UserProfileManager(); | 86 | _profilemanager = new UserProfileManager(); |
84 | _profilemanager.InitUserProfiles(); | 87 | _profilemanager.InitUserProfiles(); |
85 | 88 | _profilemanager.SetKeys(GridSendKey, GridRecvKey, GridURL, DefaultStartupMsg); | |
89 | |||
86 | 90 | ||
87 | string tempfirstname; | 91 | string tempfirstname; |
88 | string templastname; | 92 | string templastname; |