aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment
diff options
context:
space:
mode:
authorMW2007-08-27 10:34:28 +0000
committerMW2007-08-27 10:34:28 +0000
commit4c3be4e91f25d9d89b5adadd1eea3cf0b0d5cfec (patch)
tree6b52cb7da598ce859a0ed1dc72a77ba31fda1354 /OpenSim/Region/Environment
parentHere is your ocean back. You will probably need to delete your regionassets.y... (diff)
downloadopensim-SC_OLD-4c3be4e91f25d9d89b5adadd1eea3cf0b0d5cfec.zip
opensim-SC_OLD-4c3be4e91f25d9d89b5adadd1eea3cf0b0d5cfec.tar.gz
opensim-SC_OLD-4c3be4e91f25d9d89b5adadd1eea3cf0b0d5cfec.tar.bz2
opensim-SC_OLD-4c3be4e91f25d9d89b5adadd1eea3cf0b0d5cfec.tar.xz
Another small tweak to image sending.
Implemented a few ll Functions, llSetObjectName llGetObjectName, llLoadURL (all currently untested).
Diffstat (limited to 'OpenSim/Region/Environment')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.cs9
-rw-r--r--OpenSim/Region/Environment/Scenes/Scripting/IScriptHost.cs2
-rw-r--r--OpenSim/Region/Environment/Scenes/Scripting/NullScriptHost.cs1
3 files changed, 11 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs
index dcc3e16..49ba655 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.cs
@@ -1099,6 +1099,14 @@ namespace OpenSim.Region.Environment.Scenes
1099 1099
1100 #endregion 1100 #endregion
1101 1101
1102 public void SendUrlToUser(LLUUID avatarID, string objectname, LLUUID objectID, LLUUID ownerID, bool groupOwned, string message, string url)
1103 {
1104 if (Avatars.ContainsKey(avatarID))
1105 {
1106 Avatars[avatarID].ControllingClient.SendLoadURL(objectname, objectID, ownerID, groupOwned, message, url);
1107 }
1108 }
1109
1102 #region Alert Methods 1110 #region Alert Methods
1103 1111
1104 void SendPermissionAlert(LLUUID user, string reason) 1112 void SendPermissionAlert(LLUUID user, string reason)
@@ -1106,6 +1114,7 @@ namespace OpenSim.Region.Environment.Scenes
1106 SendAlertToUser(user, reason, false); 1114 SendAlertToUser(user, reason, false);
1107 } 1115 }
1108 1116
1117
1109 public void SendGeneralAlert(string message) 1118 public void SendGeneralAlert(string message)
1110 { 1119 {
1111 foreach (ScenePresence presence in this.Avatars.Values) 1120 foreach (ScenePresence presence in this.Avatars.Values)
diff --git a/OpenSim/Region/Environment/Scenes/Scripting/IScriptHost.cs b/OpenSim/Region/Environment/Scenes/Scripting/IScriptHost.cs
index 5d5f698..d2ca529 100644
--- a/OpenSim/Region/Environment/Scenes/Scripting/IScriptHost.cs
+++ b/OpenSim/Region/Environment/Scenes/Scripting/IScriptHost.cs
@@ -7,7 +7,7 @@ namespace OpenSim.Region.Environment.Scenes.Scripting
7{ 7{
8 public interface IScriptHost 8 public interface IScriptHost
9 { 9 {
10 string Name { get; } 10 string Name { get; set;}
11 LLUUID UUID { get; } 11 LLUUID UUID { get; }
12 LLVector3 AbsolutePosition { get; } 12 LLVector3 AbsolutePosition { get; }
13 void SetText(string text, Axiom.Math.Vector3 color, double alpha); 13 void SetText(string text, Axiom.Math.Vector3 color, double alpha);
diff --git a/OpenSim/Region/Environment/Scenes/Scripting/NullScriptHost.cs b/OpenSim/Region/Environment/Scenes/Scripting/NullScriptHost.cs
index 62c84a6..a9147fb1 100644
--- a/OpenSim/Region/Environment/Scenes/Scripting/NullScriptHost.cs
+++ b/OpenSim/Region/Environment/Scenes/Scripting/NullScriptHost.cs
@@ -12,6 +12,7 @@ namespace OpenSim.Region.Environment.Scenes.Scripting
12 public string Name 12 public string Name
13 { 13 {
14 get { return "Object"; } 14 get { return "Object"; }
15 set { }
15 } 16 }
16 17
17 public LLUUID UUID 18 public LLUUID UUID