diff options
-rw-r--r-- | OpenGridServices.GridServer/OpenGridServices.GridServer.csproj | 4 | ||||
-rw-r--r-- | OpenGridServices.GridServer/OpenGridServices.GridServer.exe.build | 1 | ||||
-rw-r--r-- | OpenSim.RegionServer/CAPS/AdminWebFront.cs | 98 | ||||
-rw-r--r-- | OpenSim.RegionServer/OpenSim.RegionServer.csproj | 9 | ||||
-rw-r--r-- | OpenSim.RegionServer/OpenSim.RegionServer.dll.build | 3 | ||||
-rw-r--r-- | OpenSim.RegionServer/world/World.cs | 37 | ||||
-rw-r--r-- | OpenSim.RegionServer/world/scripting/IScriptContext.cs | 13 | ||||
-rw-r--r-- | OpenSim.RegionServer/world/scripting/IScriptHandler.cs | 62 | ||||
-rw-r--r-- | OpenSim.RegionServer/world/scripting/Script.cs | 27 | ||||
-rw-r--r-- | OpenSim.sln | 2 | ||||
-rw-r--r-- | bin/testadmin.htm | 9 | ||||
-rw-r--r-- | prebuild.xml | 1 |
12 files changed, 219 insertions, 47 deletions
diff --git a/OpenGridServices.GridServer/OpenGridServices.GridServer.csproj b/OpenGridServices.GridServer/OpenGridServices.GridServer.csproj index 6eac766..836a98b 100644 --- a/OpenGridServices.GridServer/OpenGridServices.GridServer.csproj +++ b/OpenGridServices.GridServer/OpenGridServices.GridServer.csproj | |||
@@ -70,10 +70,6 @@ | |||
70 | <HintPath>System.Xml.dll</HintPath> | 70 | <HintPath>System.Xml.dll</HintPath> |
71 | <Private>False</Private> | 71 | <Private>False</Private> |
72 | </Reference> | 72 | </Reference> |
73 | <Reference Include="OpenSim.Framework.Interfaces" > | ||
74 | <HintPath>OpenSim.Framework.Interfaces.dll</HintPath> | ||
75 | <Private>False</Private> | ||
76 | </Reference> | ||
77 | <Reference Include="libsecondlife.dll" > | 73 | <Reference Include="libsecondlife.dll" > |
78 | <HintPath>..\bin\libsecondlife.dll</HintPath> | 74 | <HintPath>..\bin\libsecondlife.dll</HintPath> |
79 | <Private>False</Private> | 75 | <Private>False</Private> |
diff --git a/OpenGridServices.GridServer/OpenGridServices.GridServer.exe.build b/OpenGridServices.GridServer/OpenGridServices.GridServer.exe.build index ca4e929..90eaf1f 100644 --- a/OpenGridServices.GridServer/OpenGridServices.GridServer.exe.build +++ b/OpenGridServices.GridServer/OpenGridServices.GridServer.exe.build | |||
@@ -25,7 +25,6 @@ | |||
25 | <include name="System.Data.dll" /> | 25 | <include name="System.Data.dll" /> |
26 | <include name="System.Xml.dll" /> | 26 | <include name="System.Xml.dll" /> |
27 | <include name="../bin/OpenSim.Framework.dll" /> | 27 | <include name="../bin/OpenSim.Framework.dll" /> |
28 | <include name="OpenSim.Framework.Interfaces.dll" /> | ||
29 | <include name="../bin/OpenSim.Framework.Console.dll" /> | 28 | <include name="../bin/OpenSim.Framework.Console.dll" /> |
30 | <include name="../bin/libsecondlife.dll" /> | 29 | <include name="../bin/libsecondlife.dll" /> |
31 | <include name="../bin/Db4objects.Db4o.dll" /> | 30 | <include name="../bin/Db4objects.Db4o.dll" /> |
diff --git a/OpenSim.RegionServer/CAPS/AdminWebFront.cs b/OpenSim.RegionServer/CAPS/AdminWebFront.cs index 7f00225..43996d0 100644 --- a/OpenSim.RegionServer/CAPS/AdminWebFront.cs +++ b/OpenSim.RegionServer/CAPS/AdminWebFront.cs | |||
@@ -7,6 +7,8 @@ using OpenSim.UserServer; | |||
7 | using OpenSim.Servers; | 7 | using OpenSim.Servers; |
8 | using OpenSim.Assets; | 8 | using OpenSim.Assets; |
9 | using OpenSim.Framework.Inventory; | 9 | using OpenSim.Framework.Inventory; |
10 | using libsecondlife; | ||
11 | using OpenSim.RegionServer.world.scripting; | ||
10 | 12 | ||
11 | namespace OpenSim.CAPS | 13 | namespace OpenSim.CAPS |
12 | { | 14 | { |
@@ -34,7 +36,10 @@ namespace OpenSim.CAPS | |||
34 | server.AddRestHandler("GET", "/Admin", GetAdminPage); | 36 | server.AddRestHandler("GET", "/Admin", GetAdminPage); |
35 | server.AddRestHandler("GET", "/Admin/Welcome", GetWelcomePage); | 37 | server.AddRestHandler("GET", "/Admin/Welcome", GetWelcomePage); |
36 | server.AddRestHandler("GET", "/Admin/Accounts", GetAccountsPage ); | 38 | server.AddRestHandler("GET", "/Admin/Accounts", GetAccountsPage ); |
37 | server.AddRestHandler("GET", "/Admin/Clients", GetConnectedClientsPage ); | 39 | server.AddRestHandler("GET", "/Admin/Clients", GetConnectedClientsPage); |
40 | server.AddRestHandler("GET", "/Admin/Entities", GetEntitiesPage); | ||
41 | server.AddRestHandler("GET", "/Admin/Scripts", GetScriptsPage); | ||
42 | server.AddRestHandler("GET", "/Admin/AddTestScript", AddTestScript ); | ||
38 | server.AddRestHandler("GET", "/ClientInventory", GetClientsInventory); | 43 | server.AddRestHandler("GET", "/ClientInventory", GetClientsInventory); |
39 | 44 | ||
40 | server.AddRestHandler("POST", "/Admin/NewAccount", PostNewAccount ); | 45 | server.AddRestHandler("POST", "/Admin/NewAccount", PostNewAccount ); |
@@ -133,6 +138,68 @@ namespace OpenSim.CAPS | |||
133 | return responseString; | 138 | return responseString; |
134 | } | 139 | } |
135 | 140 | ||
141 | |||
142 | private class TestScript : Script | ||
143 | { | ||
144 | int toggle = 0; | ||
145 | |||
146 | public TestScript() | ||
147 | : base(LLUUID.Random()) | ||
148 | { | ||
149 | OnFrame += MyOnFrame; | ||
150 | } | ||
151 | |||
152 | private void MyOnFrame(IScriptContext context) | ||
153 | { | ||
154 | toggle = 2 - toggle; | ||
155 | |||
156 | LLVector3 pos = context.GetPos(); | ||
157 | |||
158 | pos.X += (toggle - 1); | ||
159 | |||
160 | context.MoveTo(pos); | ||
161 | } | ||
162 | } | ||
163 | |||
164 | private string AddTestScript(string request, string path) | ||
165 | { | ||
166 | int index = path.LastIndexOf('/'); | ||
167 | |||
168 | string lluidStr = path.Substring(index+1); | ||
169 | |||
170 | LLUUID id; | ||
171 | |||
172 | if( LLUUID.TryParse( lluidStr, out id ) ) | ||
173 | { | ||
174 | // This is just here for concept purposes... Remove! | ||
175 | m_world.AddScript( m_world.Entities[id], new TestScript()); | ||
176 | return String.Format("Added new script to object [{0}]", id); | ||
177 | } | ||
178 | else | ||
179 | { | ||
180 | return String.Format("Couldn't parse [{0}]", lluidStr ); | ||
181 | } | ||
182 | } | ||
183 | |||
184 | private string GetScriptsPage(string request, string path) | ||
185 | { | ||
186 | return String.Empty; | ||
187 | } | ||
188 | |||
189 | private string GetEntitiesPage(string request, string path) | ||
190 | { | ||
191 | string responseString; | ||
192 | responseString = " <p> Listing current entities</p><ul>"; | ||
193 | |||
194 | foreach (Entity entity in m_world.Entities.Values) | ||
195 | { | ||
196 | string testScriptLink = "javascript:loadXMLDoc('Admin/AddTestScript/" + entity.uuid.ToString() + "');"; | ||
197 | responseString += String.Format( "<li>[{0}] \"{1}\" @ {2} <a href=\"{3}\">add test script</a></li>", entity.uuid, entity.getName(), entity.position, testScriptLink ); | ||
198 | } | ||
199 | responseString += "</ul>"; | ||
200 | return responseString; | ||
201 | } | ||
202 | |||
136 | private string GetClientsInventory(string request, string path) | 203 | private string GetClientsInventory(string request, string path) |
137 | { | 204 | { |
138 | string[] line; | 205 | string[] line; |
@@ -187,38 +254,17 @@ namespace OpenSim.CAPS | |||
187 | try | 254 | try |
188 | { | 255 | { |
189 | StreamReader SR; | 256 | StreamReader SR; |
190 | string lines; | 257 | |
191 | AdminPage = ""; | ||
192 | NewAccountForm = ""; | ||
193 | LoginForm = ""; | ||
194 | SR = File.OpenText("testadmin.htm"); | 258 | SR = File.OpenText("testadmin.htm"); |
195 | 259 | AdminPage = SR.ReadToEnd(); | |
196 | while (!SR.EndOfStream) | ||
197 | { | ||
198 | lines = SR.ReadLine(); | ||
199 | AdminPage += lines + "\n"; | ||
200 | |||
201 | } | ||
202 | SR.Close(); | 260 | SR.Close(); |
203 | 261 | ||
204 | SR = File.OpenText("newaccountform.htm"); | 262 | SR = File.OpenText("newaccountform.htm"); |
205 | 263 | NewAccountForm = SR.ReadToEnd(); | |
206 | while (!SR.EndOfStream) | ||
207 | { | ||
208 | lines = SR.ReadLine(); | ||
209 | NewAccountForm += lines + "\n"; | ||
210 | |||
211 | } | ||
212 | SR.Close(); | 264 | SR.Close(); |
213 | 265 | ||
214 | SR = File.OpenText("login.htm"); | 266 | SR = File.OpenText("login.htm"); |
215 | 267 | LoginForm = SR.ReadToEnd(); | |
216 | while (!SR.EndOfStream) | ||
217 | { | ||
218 | lines = SR.ReadLine(); | ||
219 | LoginForm += lines + "\n"; | ||
220 | |||
221 | } | ||
222 | SR.Close(); | 268 | SR.Close(); |
223 | } | 269 | } |
224 | catch (Exception e) | 270 | catch (Exception e) |
diff --git a/OpenSim.RegionServer/OpenSim.RegionServer.csproj b/OpenSim.RegionServer/OpenSim.RegionServer.csproj index b9b440f..73b627e 100644 --- a/OpenSim.RegionServer/OpenSim.RegionServer.csproj +++ b/OpenSim.RegionServer/OpenSim.RegionServer.csproj | |||
@@ -184,6 +184,15 @@ | |||
184 | <Compile Include="world\scripting\IScript.cs"> | 184 | <Compile Include="world\scripting\IScript.cs"> |
185 | <SubType>Code</SubType> | 185 | <SubType>Code</SubType> |
186 | </Compile> | 186 | </Compile> |
187 | <Compile Include="world\scripting\IScriptContext.cs"> | ||
188 | <SubType>Code</SubType> | ||
189 | </Compile> | ||
190 | <Compile Include="world\scripting\IScriptHandler.cs"> | ||
191 | <SubType>Code</SubType> | ||
192 | </Compile> | ||
193 | <Compile Include="world\scripting\Script.cs"> | ||
194 | <SubType>Code</SubType> | ||
195 | </Compile> | ||
187 | </ItemGroup> | 196 | </ItemGroup> |
188 | <Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" /> | 197 | <Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" /> |
189 | <PropertyGroup> | 198 | <PropertyGroup> |
diff --git a/OpenSim.RegionServer/OpenSim.RegionServer.dll.build b/OpenSim.RegionServer/OpenSim.RegionServer.dll.build index 926a310..bee15fd 100644 --- a/OpenSim.RegionServer/OpenSim.RegionServer.dll.build +++ b/OpenSim.RegionServer/OpenSim.RegionServer.dll.build | |||
@@ -35,6 +35,9 @@ | |||
35 | <include name="world/SurfacePatch.cs" /> | 35 | <include name="world/SurfacePatch.cs" /> |
36 | <include name="world/World.cs" /> | 36 | <include name="world/World.cs" /> |
37 | <include name="world/scripting/IScript.cs" /> | 37 | <include name="world/scripting/IScript.cs" /> |
38 | <include name="world/scripting/IScriptContext.cs" /> | ||
39 | <include name="world/scripting/IScriptHandler.cs" /> | ||
40 | <include name="world/scripting/Script.cs" /> | ||
38 | </sources> | 41 | </sources> |
39 | <references basedir="${project::get-base-directory()}"> | 42 | <references basedir="${project::get-base-directory()}"> |
40 | <lib> | 43 | <lib> |
diff --git a/OpenSim.RegionServer/world/World.cs b/OpenSim.RegionServer/world/World.cs index e848cad..6bc485f 100644 --- a/OpenSim.RegionServer/world/World.cs +++ b/OpenSim.RegionServer/world/World.cs | |||
@@ -11,6 +11,8 @@ using OpenSim.Framework.Assets; | |||
11 | using OpenSim.Framework.Terrain; | 11 | using OpenSim.Framework.Terrain; |
12 | using OpenSim.Framework.Inventory; | 12 | using OpenSim.Framework.Inventory; |
13 | using OpenSim.Assets; | 13 | using OpenSim.Assets; |
14 | using OpenSim.world.scripting; | ||
15 | using OpenSim.RegionServer.world.scripting; | ||
14 | 16 | ||
15 | namespace OpenSim.world | 17 | namespace OpenSim.world |
16 | { | 18 | { |
@@ -29,6 +31,7 @@ namespace OpenSim.world | |||
29 | private uint _primCount = 702000; | 31 | private uint _primCount = 702000; |
30 | private int storageCount; | 32 | private int storageCount; |
31 | private Dictionary<uint, SimClient> m_clientThreads; | 33 | private Dictionary<uint, SimClient> m_clientThreads; |
34 | private Dictionary<LLUUID, ScriptHandler> m_scriptHandlers; | ||
32 | private ulong m_regionHandle; | 35 | private ulong m_regionHandle; |
33 | private string m_regionName; | 36 | private string m_regionName; |
34 | private InventoryCache _inventoryCache; | 37 | private InventoryCache _inventoryCache; |
@@ -40,6 +43,8 @@ namespace OpenSim.world | |||
40 | m_regionHandle = regionHandle; | 43 | m_regionHandle = regionHandle; |
41 | m_regionName = regionName; | 44 | m_regionName = regionName; |
42 | 45 | ||
46 | m_scriptHandlers = new Dictionary<LLUUID, ScriptHandler>(); | ||
47 | |||
43 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine("World.cs - creating new entitities instance"); | 48 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine("World.cs - creating new entitities instance"); |
44 | Entities = new Dictionary<libsecondlife.LLUUID, Entity>(); | 49 | Entities = new Dictionary<libsecondlife.LLUUID, Entity>(); |
45 | 50 | ||
@@ -52,6 +57,12 @@ namespace OpenSim.world | |||
52 | Avatar.LoadAnims(); | 57 | Avatar.LoadAnims(); |
53 | } | 58 | } |
54 | 59 | ||
60 | public void AddScript(Entity entity, Script script) | ||
61 | { | ||
62 | ScriptHandler scriptHandler = new ScriptHandler(script, entity, this); | ||
63 | m_scriptHandlers.Add(scriptHandler.ScriptId, scriptHandler); | ||
64 | } | ||
65 | |||
55 | public InventoryCache InventoryCache | 66 | public InventoryCache InventoryCache |
56 | { | 67 | { |
57 | set | 68 | set |
@@ -102,6 +113,11 @@ namespace OpenSim.world | |||
102 | Entities[UUID].update(); | 113 | Entities[UUID].update(); |
103 | } | 114 | } |
104 | 115 | ||
116 | foreach (ScriptHandler scriptHandler in m_scriptHandlers.Values) | ||
117 | { | ||
118 | scriptHandler.OnFrame(); | ||
119 | } | ||
120 | |||
105 | //backup world data | 121 | //backup world data |
106 | this.storageCount++; | 122 | this.storageCount++; |
107 | if (storageCount > 1200) //set to how often you want to backup | 123 | if (storageCount > 1200) //set to how often you want to backup |
@@ -194,7 +210,7 @@ namespace OpenSim.world | |||
194 | 210 | ||
195 | foreach (SimClient client in m_clientThreads.Values) | 211 | foreach (SimClient client in m_clientThreads.Values) |
196 | { | 212 | { |
197 | this.SendLayerData(pointx , pointy , client); | 213 | this.SendLayerData(pointx, pointy, client); |
198 | } | 214 | } |
199 | } | 215 | } |
200 | } | 216 | } |
@@ -251,10 +267,10 @@ namespace OpenSim.world | |||
251 | int[] patches = new int[1]; | 267 | int[] patches = new int[1]; |
252 | int patchx, patchy; | 268 | int patchx, patchy; |
253 | patchx = px / 16; | 269 | patchx = px / 16; |
254 | /* if (patchx > 12) | 270 | /* if (patchx > 12) |
255 | { | 271 | { |
256 | patchx = 12; | 272 | patchx = 12; |
257 | }*/ | 273 | }*/ |
258 | patchy = py / 16; | 274 | patchy = py / 16; |
259 | 275 | ||
260 | patches[0] = patchx + 0 + patchy * 16; | 276 | patches[0] = patchx + 0 + patchy * 16; |
@@ -270,9 +286,10 @@ namespace OpenSim.world | |||
270 | { | 286 | { |
271 | foreach (libsecondlife.LLUUID UUID in Entities.Keys) | 287 | foreach (libsecondlife.LLUUID UUID in Entities.Keys) |
272 | { | 288 | { |
273 | if (Entities[UUID].ToString() == "OpenSim.world.Primitive") | 289 | if (Entities[UUID] is Primitive) |
274 | { | 290 | { |
275 | ((OpenSim.world.Primitive)Entities[UUID]).UpdateClient(RemoteClient); | 291 | Primitive primitive = Entities[UUID] as Primitive; |
292 | primitive.UpdateClient(RemoteClient); | ||
276 | } | 293 | } |
277 | } | 294 | } |
278 | } | 295 | } |
@@ -306,7 +323,7 @@ namespace OpenSim.world | |||
306 | prim.PhysActor = this.phyScene.AddPrim(pVec, pSize); | 323 | prim.PhysActor = this.phyScene.AddPrim(pVec, pSize); |
307 | } | 324 | } |
308 | } | 325 | } |
309 | //prim.PhysicsEnabled = true; | 326 | |
310 | this.Entities.Add(prim.uuid, prim); | 327 | this.Entities.Add(prim.uuid, prim); |
311 | this._primCount++; | 328 | this._primCount++; |
312 | } | 329 | } |
@@ -314,7 +331,7 @@ namespace OpenSim.world | |||
314 | public bool DeRezObject(SimClient simClient, Packet packet) | 331 | public bool DeRezObject(SimClient simClient, Packet packet) |
315 | { | 332 | { |
316 | DeRezObjectPacket DeRezPacket = (DeRezObjectPacket)packet; | 333 | DeRezObjectPacket DeRezPacket = (DeRezObjectPacket)packet; |
317 | // Console.WriteLine(DeRezPacket); | 334 | // Console.WriteLine(DeRezPacket); |
318 | //Needs to delete object from physics at a later date | 335 | //Needs to delete object from physics at a later date |
319 | if (DeRezPacket.AgentBlock.DestinationID == LLUUID.Zero) | 336 | if (DeRezPacket.AgentBlock.DestinationID == LLUUID.Zero) |
320 | { | 337 | { |
@@ -414,7 +431,7 @@ namespace OpenSim.world | |||
414 | public bool ModifyTerrain(SimClient simClient, Packet packet) | 431 | public bool ModifyTerrain(SimClient simClient, Packet packet) |
415 | { | 432 | { |
416 | ModifyLandPacket modify = (ModifyLandPacket)packet; | 433 | ModifyLandPacket modify = (ModifyLandPacket)packet; |
417 | 434 | ||
418 | switch (modify.ModifyBlock.Action) | 435 | switch (modify.ModifyBlock.Action) |
419 | { | 436 | { |
420 | case 1: | 437 | case 1: |
diff --git a/OpenSim.RegionServer/world/scripting/IScriptContext.cs b/OpenSim.RegionServer/world/scripting/IScriptContext.cs new file mode 100644 index 0000000..80878ef --- /dev/null +++ b/OpenSim.RegionServer/world/scripting/IScriptContext.cs | |||
@@ -0,0 +1,13 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using libsecondlife; | ||
5 | |||
6 | namespace OpenSim.RegionServer.world.scripting | ||
7 | { | ||
8 | public interface IScriptContext | ||
9 | { | ||
10 | bool MoveTo(LLVector3 newPos); | ||
11 | LLVector3 GetPos(); | ||
12 | } | ||
13 | } | ||
diff --git a/OpenSim.RegionServer/world/scripting/IScriptHandler.cs b/OpenSim.RegionServer/world/scripting/IScriptHandler.cs new file mode 100644 index 0000000..5addb35 --- /dev/null +++ b/OpenSim.RegionServer/world/scripting/IScriptHandler.cs | |||
@@ -0,0 +1,62 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using libsecondlife; | ||
5 | using OpenSim.Physics.Manager; | ||
6 | using OpenSim.world; | ||
7 | using Primitive=OpenSim.world.Primitive; | ||
8 | |||
9 | namespace OpenSim.RegionServer.world.scripting | ||
10 | { | ||
11 | public delegate void ScriptEventHandler( IScriptContext context ); | ||
12 | |||
13 | public class ScriptHandler : IScriptContext | ||
14 | { | ||
15 | private World m_world; | ||
16 | private Script m_script; | ||
17 | private Entity m_entity; | ||
18 | |||
19 | public LLUUID ScriptId | ||
20 | { | ||
21 | get | ||
22 | { | ||
23 | return m_script.ScriptId; | ||
24 | } | ||
25 | } | ||
26 | |||
27 | public void OnFrame() | ||
28 | { | ||
29 | m_script.OnFrame(this); | ||
30 | } | ||
31 | |||
32 | public ScriptHandler( Script script, Entity entity, World world ) | ||
33 | { | ||
34 | m_script = script; | ||
35 | m_entity = entity; | ||
36 | m_world = world; | ||
37 | } | ||
38 | |||
39 | #region IScriptContext Members | ||
40 | |||
41 | bool IScriptContext.MoveTo(LLVector3 newPos) | ||
42 | { | ||
43 | if (m_entity is Primitive) | ||
44 | { | ||
45 | Primitive prim = m_entity as Primitive; | ||
46 | // Of course, we really should have asked the physEngine if this is possible, and if not, returned false. | ||
47 | prim.UpdatePosition( newPos ); | ||
48 | return true; | ||
49 | } | ||
50 | |||
51 | return false; | ||
52 | } | ||
53 | |||
54 | LLVector3 IScriptContext.GetPos() | ||
55 | { | ||
56 | return m_entity.position; | ||
57 | } | ||
58 | |||
59 | #endregion | ||
60 | } | ||
61 | |||
62 | } | ||
diff --git a/OpenSim.RegionServer/world/scripting/Script.cs b/OpenSim.RegionServer/world/scripting/Script.cs new file mode 100644 index 0000000..3997b41 --- /dev/null +++ b/OpenSim.RegionServer/world/scripting/Script.cs | |||
@@ -0,0 +1,27 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using libsecondlife; | ||
5 | |||
6 | namespace OpenSim.RegionServer.world.scripting | ||
7 | { | ||
8 | public class Script | ||
9 | { | ||
10 | private LLUUID m_scriptId; | ||
11 | |||
12 | public virtual LLUUID ScriptId | ||
13 | { | ||
14 | get | ||
15 | { | ||
16 | return m_scriptId; | ||
17 | } | ||
18 | } | ||
19 | |||
20 | public Script( LLUUID scriptId ) | ||
21 | { | ||
22 | m_scriptId = scriptId; | ||
23 | } | ||
24 | |||
25 | public ScriptEventHandler OnFrame; | ||
26 | } | ||
27 | } | ||
diff --git a/OpenSim.sln b/OpenSim.sln index 01a2df2..5df577f 100644 --- a/OpenSim.sln +++ b/OpenSim.sln | |||
@@ -1,5 +1,5 @@ | |||
1 | Microsoft Visual Studio Solution File, Format Version 9.00 | 1 | Microsoft Visual Studio Solution File, Format Version 9.00 |
2 | # Visual C# Express 2005 | 2 | # Visual Studio 2005 |
3 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenSim", "OpenSim\OpenSim.csproj", "{438A9556-0000-0000-0000-000000000000}" | 3 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenSim", "OpenSim\OpenSim.csproj", "{438A9556-0000-0000-0000-000000000000}" |
4 | EndProject | 4 | EndProject |
5 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenSim.Physics.OdePlugin", "OpenSim.Physics\OdePlugin\OpenSim.Physics.OdePlugin.csproj", "{63A05FE9-0000-0000-0000-000000000000}" | 5 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenSim.Physics.OdePlugin", "OpenSim.Physics\OdePlugin\OpenSim.Physics.OdePlugin.csproj", "{63A05FE9-0000-0000-0000-000000000000}" |
diff --git a/bin/testadmin.htm b/bin/testadmin.htm index 1e34cf7..62a860d 100644 --- a/bin/testadmin.htm +++ b/bin/testadmin.htm | |||
@@ -69,7 +69,7 @@ if (http_request.readyState==4) | |||
69 | alert('Cannot create XMLHTTP instance'); | 69 | alert('Cannot create XMLHTTP instance'); |
70 | return false; | 70 | return false; |
71 | } | 71 | } |
72 | 72 | ||
73 | http_request.onreadystatechange =state_Change | 73 | http_request.onreadystatechange =state_Change |
74 | http_request.open('POST', url, true); | 74 | http_request.open('POST', url, true); |
75 | http_request.setRequestHeader("Content-type", "application/x-www-form-urlencoded"); | 75 | http_request.setRequestHeader("Content-type", "application/x-www-form-urlencoded"); |
@@ -83,14 +83,14 @@ if (http_request.readyState==4) | |||
83 | if (http_request.status == 200) { | 83 | if (http_request.status == 200) { |
84 | //alert(http_request.responseText); | 84 | //alert(http_request.responseText); |
85 | result = http_request.responseText; | 85 | result = http_request.responseText; |
86 | document.getElementById('T1').innerHTML = result; | 86 | document.getElementById('T1').innerHTML = result; |
87 | } else { | 87 | } else { |
88 | alert('There was a problem with the request.'); | 88 | alert('There was a problem with the request.'); |
89 | } | 89 | } |
90 | } | 90 | } |
91 | } | 91 | } |
92 | 92 | ||
93 | 93 | ||
94 | function get(obj) { | 94 | function get(obj) { |
95 | var poststr = "FirstName=" + encodeURI( document.getElementById("FirstName").value ) + | 95 | var poststr = "FirstName=" + encodeURI( document.getElementById("FirstName").value ) + |
96 | "&LastName=" + encodeURI( document.getElementById("LastName").value ) | 96 | "&LastName=" + encodeURI( document.getElementById("LastName").value ) |
@@ -98,7 +98,7 @@ if (http_request.readyState==4) | |||
98 | + "&AdminPass=" + adminpass; | 98 | + "&AdminPass=" + adminpass; |
99 | makePOSTRequest('Admin/NewAccount', poststr); | 99 | makePOSTRequest('Admin/NewAccount', poststr); |
100 | } | 100 | } |
101 | 101 | ||
102 | function setpass(obj) | 102 | function setpass(obj) |
103 | { | 103 | { |
104 | adminpass = encodeURI( document.getElementById("Adminpss").value ); | 104 | adminpass = encodeURI( document.getElementById("Adminpss").value ); |
@@ -115,6 +115,7 @@ if (http_request.readyState==4) | |||
115 | </div><br /> | 115 | </div><br /> |
116 | <button onclick="loadXMLDoc('Admin/Clients')">Clients</button> | 116 | <button onclick="loadXMLDoc('Admin/Clients')">Clients</button> |
117 | <button onclick="loadXMLDoc('Admin/Accounts')">Accounts</button> | 117 | <button onclick="loadXMLDoc('Admin/Accounts')">Accounts</button> |
118 | <button onclick="loadXMLDoc('Admin/Entities')">Entities</button> | ||
118 | 119 | ||
119 | </body> | 120 | </body> |
120 | 121 | ||
diff --git a/prebuild.xml b/prebuild.xml index 793da74..54acc4b 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -118,7 +118,6 @@ | |||
118 | <Reference name="System.Data" localCopy="false"/> | 118 | <Reference name="System.Data" localCopy="false"/> |
119 | <Reference name="System.Xml" localCopy="false"/> | 119 | <Reference name="System.Xml" localCopy="false"/> |
120 | <Reference name="OpenSim.Framework"/> | 120 | <Reference name="OpenSim.Framework"/> |
121 | <Reference name="OpenSim.Framework.Interfaces"/> | ||
122 | <Reference name="OpenSim.Framework.Console"/> | 121 | <Reference name="OpenSim.Framework.Console"/> |
123 | <Reference name="libsecondlife.dll"/> | 122 | <Reference name="libsecondlife.dll"/> |
124 | <Reference name="Db4objects.Db4o.dll"/> | 123 | <Reference name="Db4objects.Db4o.dll"/> |