diff options
author | MW | 2007-06-22 18:28:49 +0000 |
---|---|---|
committer | MW | 2007-06-22 18:28:49 +0000 |
commit | a9dde515ba7d35b6069a3b2cd8b66bb72b007801 (patch) | |
tree | 5c219b4f52c2a58d0ac507b90556afc2a6848f94 /OpenSim/OpenSim.RegionServer | |
parent | * Porting console fix from Trunk to Sugilite (diff) | |
download | opensim-SC-a9dde515ba7d35b6069a3b2cd8b66bb72b007801.zip opensim-SC-a9dde515ba7d35b6069a3b2cd8b66bb72b007801.tar.gz opensim-SC-a9dde515ba7d35b6069a3b2cd8b66bb72b007801.tar.bz2 opensim-SC-a9dde515ba7d35b6069a3b2cd8b66bb72b007801.tar.xz |
SandBox mode login now shares a base class with the grid mode user server.
To allow people to login without creating accounts first in sandbox mode anytime a login request is received without a matching account already being in the database, a new account will be made. (also in sandbox mode, passwords aren't currently used).
Diffstat (limited to 'OpenSim/OpenSim.RegionServer')
4 files changed, 8 insertions, 124 deletions
diff --git a/OpenSim/OpenSim.RegionServer/ClientView.API.cs b/OpenSim/OpenSim.RegionServer/ClientView.API.cs index 7a0cbe3..1a03216 100644 --- a/OpenSim/OpenSim.RegionServer/ClientView.API.cs +++ b/OpenSim/OpenSim.RegionServer/ClientView.API.cs | |||
@@ -189,6 +189,14 @@ namespace OpenSim | |||
189 | OutPacket(mov); | 189 | OutPacket(mov); |
190 | } | 190 | } |
191 | 191 | ||
192 | /// <summary> | ||
193 | /// | ||
194 | /// </summary> | ||
195 | /// <param name="message"></param> | ||
196 | /// <param name="type"></param> | ||
197 | /// <param name="fromPos"></param> | ||
198 | /// <param name="fromName"></param> | ||
199 | /// <param name="fromAgentID"></param> | ||
192 | public void SendChatMessage(string message, byte type, LLVector3 fromPos, string fromName, LLUUID fromAgentID) | 200 | public void SendChatMessage(string message, byte type, LLVector3 fromPos, string fromName, LLUUID fromAgentID) |
193 | { | 201 | { |
194 | SendChatMessage(Helpers.StringToField(message), type, fromPos, fromName, fromAgentID); | 202 | SendChatMessage(Helpers.StringToField(message), type, fromPos, fromName, fromAgentID); |
diff --git a/OpenSim/OpenSim.RegionServer/NetworkServersInfo.cs b/OpenSim/OpenSim.RegionServer/NetworkServersInfo.cs deleted file mode 100644 index 407ebe0..0000000 --- a/OpenSim/OpenSim.RegionServer/NetworkServersInfo.cs +++ /dev/null | |||
@@ -1,120 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://www.openmetaverse.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSim Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | * | ||
27 | */ | ||
28 | using System; | ||
29 | using System.Collections.Generic; | ||
30 | using System.Text; | ||
31 | using OpenSim.Framework.Interfaces; | ||
32 | |||
33 | namespace OpenSim | ||
34 | { | ||
35 | |||
36 | public class NetworkServersInfo | ||
37 | { | ||
38 | public string AssetURL = "http://127.0.0.1:8003/"; | ||
39 | public string AssetSendKey = ""; | ||
40 | |||
41 | public string GridURL = ""; | ||
42 | public string GridSendKey = ""; | ||
43 | public string GridRecvKey = ""; | ||
44 | public string UserURL = ""; | ||
45 | public string UserSendKey = ""; | ||
46 | public string UserRecvKey = ""; | ||
47 | public bool isSandbox; | ||
48 | |||
49 | public void InitConfig(bool sandboxMode, IGenericConfig configData) | ||
50 | { | ||
51 | this.isSandbox = sandboxMode; | ||
52 | |||
53 | try | ||
54 | { | ||
55 | if (!isSandbox) | ||
56 | { | ||
57 | string attri = ""; | ||
58 | //Grid Server URL | ||
59 | attri = ""; | ||
60 | attri = configData.GetAttribute("GridServerURL"); | ||
61 | if (attri == "") | ||
62 | { | ||
63 | this.GridURL = OpenSim.Framework.Console.MainLog.Instance.CmdPrompt("Grid server URL", "http://127.0.0.1:8001/"); | ||
64 | configData.SetAttribute("GridServerURL", this.GridURL); | ||
65 | } | ||
66 | else | ||
67 | { | ||
68 | this.GridURL = attri; | ||
69 | } | ||
70 | |||
71 | //Grid Send Key | ||
72 | attri = ""; | ||
73 | attri = configData.GetAttribute("GridSendKey"); | ||
74 | if (attri == "") | ||
75 | { | ||
76 | this.GridSendKey = OpenSim.Framework.Console.MainLog.Instance.CmdPrompt("Key to send to grid server", "null"); | ||
77 | configData.SetAttribute("GridSendKey", this.GridSendKey); | ||
78 | } | ||
79 | else | ||
80 | { | ||
81 | this.GridSendKey = attri; | ||
82 | } | ||
83 | |||
84 | //Grid Receive Key | ||
85 | attri = ""; | ||
86 | attri = configData.GetAttribute("GridRecvKey"); | ||
87 | if (attri == "") | ||
88 | { | ||
89 | this.GridRecvKey = OpenSim.Framework.Console.MainLog.Instance.CmdPrompt("Key to expect from grid server", "null"); | ||
90 | configData.SetAttribute("GridRecvKey", this.GridRecvKey); | ||
91 | } | ||
92 | else | ||
93 | { | ||
94 | this.GridRecvKey = attri; | ||
95 | } | ||
96 | |||
97 | attri = ""; | ||
98 | attri = configData.GetAttribute("AssetServerURL"); | ||
99 | if (attri == "") | ||
100 | { | ||
101 | this.AssetURL = OpenSim.Framework.Console.MainLog.Instance.CmdPrompt("Asset server URL", "http://127.0.0.1:8003/"); | ||
102 | configData.SetAttribute("AssetServerURL", this.GridURL); | ||
103 | } | ||
104 | else | ||
105 | { | ||
106 | this.AssetURL = attri; | ||
107 | } | ||
108 | |||
109 | } | ||
110 | configData.Commit(); | ||
111 | } | ||
112 | catch (Exception e) | ||
113 | { | ||
114 | OpenSim.Framework.Console.MainLog.Instance.Warn("Config.cs:InitConfig() - Exception occured"); | ||
115 | OpenSim.Framework.Console.MainLog.Instance.Warn(e.ToString()); | ||
116 | } | ||
117 | } | ||
118 | } | ||
119 | |||
120 | } | ||
diff --git a/OpenSim/OpenSim.RegionServer/OpenSim.RegionServer.csproj b/OpenSim/OpenSim.RegionServer/OpenSim.RegionServer.csproj index e569187..b1ce3eb 100644 --- a/OpenSim/OpenSim.RegionServer/OpenSim.RegionServer.csproj +++ b/OpenSim/OpenSim.RegionServer/OpenSim.RegionServer.csproj | |||
@@ -157,9 +157,6 @@ | |||
157 | <Compile Include="ClientViewBase.cs"> | 157 | <Compile Include="ClientViewBase.cs"> |
158 | <SubType>Code</SubType> | 158 | <SubType>Code</SubType> |
159 | </Compile> | 159 | </Compile> |
160 | <Compile Include="NetworkServersInfo.cs"> | ||
161 | <SubType>Code</SubType> | ||
162 | </Compile> | ||
163 | <Compile Include="PacketServer.cs"> | 160 | <Compile Include="PacketServer.cs"> |
164 | <SubType>Code</SubType> | 161 | <SubType>Code</SubType> |
165 | </Compile> | 162 | </Compile> |
diff --git a/OpenSim/OpenSim.RegionServer/OpenSim.RegionServer.dll.build b/OpenSim/OpenSim.RegionServer/OpenSim.RegionServer.dll.build index 520f826..12dca8a 100644 --- a/OpenSim/OpenSim.RegionServer/OpenSim.RegionServer.dll.build +++ b/OpenSim/OpenSim.RegionServer/OpenSim.RegionServer.dll.build | |||
@@ -18,7 +18,6 @@ | |||
18 | <include name="ClientView.PacketHandlers.cs" /> | 18 | <include name="ClientView.PacketHandlers.cs" /> |
19 | <include name="ClientView.ProcessPackets.cs" /> | 19 | <include name="ClientView.ProcessPackets.cs" /> |
20 | <include name="ClientViewBase.cs" /> | 20 | <include name="ClientViewBase.cs" /> |
21 | <include name="NetworkServersInfo.cs" /> | ||
22 | <include name="PacketServer.cs" /> | 21 | <include name="PacketServer.cs" /> |
23 | <include name="RegionApplicationBase.cs" /> | 22 | <include name="RegionApplicationBase.cs" /> |
24 | <include name="UDPServer.cs" /> | 23 | <include name="UDPServer.cs" /> |