Merge branch 'master' into careminster
Conflicts: OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.csavinationmerge
commit
e62b14024f
|
@ -98,3 +98,5 @@ OpenSim/Region/ScriptEngine/test-results/
|
||||||
OpenSim/Tests/Common/test-results/
|
OpenSim/Tests/Common/test-results/
|
||||||
OpenSim/Tests/test-results/
|
OpenSim/Tests/test-results/
|
||||||
test-results/
|
test-results/
|
||||||
|
doc/html
|
||||||
|
doc/doxygen.error.log
|
||||||
|
|
|
@ -43,6 +43,7 @@
|
||||||
<delete dir="${distbindir}/Prebuild"/>
|
<delete dir="${distbindir}/Prebuild"/>
|
||||||
<delete dir="${distbindir}/%temp%"/>
|
<delete dir="${distbindir}/%temp%"/>
|
||||||
<delete dir="${distbindir}/.nant"/>
|
<delete dir="${distbindir}/.nant"/>
|
||||||
|
<delete dir="${distbindir}/ThirdParty"/>
|
||||||
<delete>
|
<delete>
|
||||||
<fileset basedir="${distbindir}">
|
<fileset basedir="${distbindir}">
|
||||||
<include name="compile.bat"/>
|
<include name="compile.bat"/>
|
||||||
|
|
|
@ -113,12 +113,15 @@ namespace OpenSim.Data.Null
|
||||||
// Find region data
|
// Find region data
|
||||||
List<RegionData> ret = new List<RegionData>();
|
List<RegionData> ret = new List<RegionData>();
|
||||||
|
|
||||||
|
lock (m_regionData)
|
||||||
|
{
|
||||||
foreach (RegionData r in m_regionData.Values)
|
foreach (RegionData r in m_regionData.Values)
|
||||||
{
|
{
|
||||||
// m_log.DebugFormat("[NULL REGION DATA]: comparing {0} to {1}", cleanName, r.RegionName.ToLower());
|
// m_log.DebugFormat("[NULL REGION DATA]: comparing {0} to {1}", cleanName, r.RegionName.ToLower());
|
||||||
if (queryMatch(r.RegionName.ToLower()))
|
if (queryMatch(r.RegionName.ToLower()))
|
||||||
ret.Add(r);
|
ret.Add(r);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (ret.Count > 0)
|
if (ret.Count > 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -133,11 +136,14 @@ namespace OpenSim.Data.Null
|
||||||
|
|
||||||
List<RegionData> ret = new List<RegionData>();
|
List<RegionData> ret = new List<RegionData>();
|
||||||
|
|
||||||
|
lock (m_regionData)
|
||||||
|
{
|
||||||
foreach (RegionData r in m_regionData.Values)
|
foreach (RegionData r in m_regionData.Values)
|
||||||
{
|
{
|
||||||
if (r.posX == posX && r.posY == posY)
|
if (r.posX == posX && r.posY == posY)
|
||||||
ret.Add(r);
|
ret.Add(r);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (ret.Count > 0)
|
if (ret.Count > 0)
|
||||||
return ret[0];
|
return ret[0];
|
||||||
|
@ -150,8 +156,11 @@ namespace OpenSim.Data.Null
|
||||||
if (m_useStaticInstance && Instance != this)
|
if (m_useStaticInstance && Instance != this)
|
||||||
return Instance.Get(regionID, scopeID);
|
return Instance.Get(regionID, scopeID);
|
||||||
|
|
||||||
|
lock (m_regionData)
|
||||||
|
{
|
||||||
if (m_regionData.ContainsKey(regionID))
|
if (m_regionData.ContainsKey(regionID))
|
||||||
return m_regionData[regionID];
|
return m_regionData[regionID];
|
||||||
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
@ -163,11 +172,14 @@ namespace OpenSim.Data.Null
|
||||||
|
|
||||||
List<RegionData> ret = new List<RegionData>();
|
List<RegionData> ret = new List<RegionData>();
|
||||||
|
|
||||||
|
lock (m_regionData)
|
||||||
|
{
|
||||||
foreach (RegionData r in m_regionData.Values)
|
foreach (RegionData r in m_regionData.Values)
|
||||||
{
|
{
|
||||||
if (r.posX >= startX && r.posX <= endX && r.posY >= startY && r.posY <= endY)
|
if (r.posX >= startX && r.posX <= endX && r.posY >= startY && r.posY <= endY)
|
||||||
ret.Add(r);
|
ret.Add(r);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
@ -180,7 +192,10 @@ namespace OpenSim.Data.Null
|
||||||
// m_log.DebugFormat(
|
// m_log.DebugFormat(
|
||||||
// "[NULL REGION DATA]: Storing region {0} {1}, scope {2}", data.RegionName, data.RegionID, data.ScopeID);
|
// "[NULL REGION DATA]: Storing region {0} {1}, scope {2}", data.RegionName, data.RegionID, data.ScopeID);
|
||||||
|
|
||||||
|
lock (m_regionData)
|
||||||
|
{
|
||||||
m_regionData[data.RegionID] = data;
|
m_regionData[data.RegionID] = data;
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -190,10 +205,13 @@ namespace OpenSim.Data.Null
|
||||||
if (m_useStaticInstance && Instance != this)
|
if (m_useStaticInstance && Instance != this)
|
||||||
return Instance.SetDataItem(regionID, item, value);
|
return Instance.SetDataItem(regionID, item, value);
|
||||||
|
|
||||||
|
lock (m_regionData)
|
||||||
|
{
|
||||||
if (!m_regionData.ContainsKey(regionID))
|
if (!m_regionData.ContainsKey(regionID))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
m_regionData[regionID].Data[item] = value;
|
m_regionData[regionID].Data[item] = value;
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -205,10 +223,13 @@ namespace OpenSim.Data.Null
|
||||||
|
|
||||||
// m_log.DebugFormat("[NULL REGION DATA]: Deleting region {0}", regionID);
|
// m_log.DebugFormat("[NULL REGION DATA]: Deleting region {0}", regionID);
|
||||||
|
|
||||||
|
lock (m_regionData)
|
||||||
|
{
|
||||||
if (!m_regionData.ContainsKey(regionID))
|
if (!m_regionData.ContainsKey(regionID))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
m_regionData.Remove(regionID);
|
m_regionData.Remove(regionID);
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -238,11 +259,14 @@ namespace OpenSim.Data.Null
|
||||||
|
|
||||||
List<RegionData> ret = new List<RegionData>();
|
List<RegionData> ret = new List<RegionData>();
|
||||||
|
|
||||||
|
lock (m_regionData)
|
||||||
|
{
|
||||||
foreach (RegionData r in m_regionData.Values)
|
foreach (RegionData r in m_regionData.Values)
|
||||||
{
|
{
|
||||||
if ((Convert.ToInt32(r.Data["flags"]) & regionFlags) != 0)
|
if ((Convert.ToInt32(r.Data["flags"]) & regionFlags) != 0)
|
||||||
ret.Add(r);
|
ret.Add(r);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,7 +56,7 @@ namespace OpenSim.Framework.Console
|
||||||
public List<ConsoleDisplayTableRow> Rows { get; private set; }
|
public List<ConsoleDisplayTableRow> Rows { get; private set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Number of spaces to indent the table.
|
/// Number of spaces to indent the whole table.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public int Indent { get; set; }
|
public int Indent { get; set; }
|
||||||
|
|
||||||
|
@ -84,7 +84,7 @@ namespace OpenSim.Framework.Console
|
||||||
Columns.Add(new ConsoleDisplayTableColumn(name, width));
|
Columns.Add(new ConsoleDisplayTableColumn(name, width));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void AddRow(params string[] cells)
|
public void AddRow(params object[] cells)
|
||||||
{
|
{
|
||||||
Rows.Add(new ConsoleDisplayTableRow(cells));
|
Rows.Add(new ConsoleDisplayTableRow(cells));
|
||||||
}
|
}
|
||||||
|
@ -113,6 +113,7 @@ namespace OpenSim.Framework.Console
|
||||||
|
|
||||||
for (int i = 0; i < Columns.Count; i++)
|
for (int i = 0; i < Columns.Count; i++)
|
||||||
{
|
{
|
||||||
|
if (i != 0)
|
||||||
formatSb.Append(' ', TableSpacing);
|
formatSb.Append(' ', TableSpacing);
|
||||||
|
|
||||||
// Can only do left formatting for now
|
// Can only do left formatting for now
|
||||||
|
@ -139,16 +140,16 @@ namespace OpenSim.Framework.Console
|
||||||
|
|
||||||
public struct ConsoleDisplayTableRow
|
public struct ConsoleDisplayTableRow
|
||||||
{
|
{
|
||||||
public List<string> Cells { get; private set; }
|
public List<object> Cells { get; private set; }
|
||||||
|
|
||||||
public ConsoleDisplayTableRow(List<string> cells) : this()
|
public ConsoleDisplayTableRow(List<object> cells) : this()
|
||||||
{
|
{
|
||||||
Cells = cells;
|
Cells = cells;
|
||||||
}
|
}
|
||||||
|
|
||||||
public ConsoleDisplayTableRow(params string[] cells) : this()
|
public ConsoleDisplayTableRow(params object[] cells) : this()
|
||||||
{
|
{
|
||||||
Cells = new List<string>(cells);
|
Cells = new List<object>(cells);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -2114,5 +2114,16 @@ namespace OpenSim.Framework
|
||||||
return firstName + "." + lastName + " " + "@" + uri.Authority;
|
return firstName + "." + lastName + " " + "@" + uri.Authority;
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Escapes the special characters used in "LIKE".
|
||||||
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// For example: EscapeForLike("foo_bar%baz") = "foo\_bar\%baz"
|
||||||
|
/// </remarks>
|
||||||
|
public static string EscapeForLike(string str)
|
||||||
|
{
|
||||||
|
return str.Replace("_", "\\_").Replace("%", "\\%");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -722,15 +722,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Attachments
|
||||||
|
|
||||||
if (!silent)
|
if (!silent)
|
||||||
{
|
{
|
||||||
// Killing it here will cause the client to deselect it
|
if (so.HasPrivateAttachmentPoint)
|
||||||
// It then reappears on the avatar, deselected
|
|
||||||
// through the full update below
|
|
||||||
//
|
|
||||||
if (so.IsSelected)
|
|
||||||
{
|
|
||||||
m_scene.SendKillObject(new List<uint> { so.RootPart.LocalId });
|
|
||||||
}
|
|
||||||
else if (so.HasPrivateAttachmentPoint)
|
|
||||||
{
|
{
|
||||||
// m_log.DebugFormat(
|
// m_log.DebugFormat(
|
||||||
// "[ATTACHMENTS MODULE]: Killing private HUD {0} for avatars other than {1} at attachment point {2}",
|
// "[ATTACHMENTS MODULE]: Killing private HUD {0} for avatars other than {1} at attachment point {2}",
|
||||||
|
@ -745,7 +737,10 @@ namespace OpenSim.Region.CoreModules.Avatar.Attachments
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Fudge below is an extremely unhelpful comment. It's probably here so that the scheduled full update
|
||||||
|
// will succeed, as that will not update if an attachment is selected.
|
||||||
so.IsSelected = false; // fudge....
|
so.IsSelected = false; // fudge....
|
||||||
|
|
||||||
so.ScheduleGroupForFullUpdate();
|
so.ScheduleGroupForFullUpdate();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -124,7 +124,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver
|
||||||
SaveAssets = true;
|
SaveAssets = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void ReceivedAllAssets(ICollection<UUID> assetsFoundUuids, ICollection<UUID> assetsNotFoundUuids)
|
protected void ReceivedAllAssets(ICollection<UUID> assetsFoundUuids, ICollection<UUID> assetsNotFoundUuids, bool timedOut)
|
||||||
{
|
{
|
||||||
Exception reportedException = null;
|
Exception reportedException = null;
|
||||||
bool succeeded = true;
|
bool succeeded = true;
|
||||||
|
@ -143,6 +143,12 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver
|
||||||
m_saveStream.Close();
|
m_saveStream.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (timedOut)
|
||||||
|
{
|
||||||
|
succeeded = false;
|
||||||
|
reportedException = new Exception("Loading assets timed out");
|
||||||
|
}
|
||||||
|
|
||||||
m_module.TriggerInventoryArchiveSaved(
|
m_module.TriggerInventoryArchiveSaved(
|
||||||
m_id, succeeded, m_userInfo, m_invPath, m_saveStream, reportedException);
|
m_id, succeeded, m_userInfo, m_invPath, m_saveStream, reportedException);
|
||||||
}
|
}
|
||||||
|
@ -350,7 +356,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver
|
||||||
{
|
{
|
||||||
m_log.DebugFormat("[INVENTORY ARCHIVER]: Not saving assets since --noassets was specified");
|
m_log.DebugFormat("[INVENTORY ARCHIVER]: Not saving assets since --noassets was specified");
|
||||||
|
|
||||||
ReceivedAllAssets(new List<UUID>(), new List<UUID>());
|
ReceivedAllAssets(new List<UUID>(), new List<UUID>(), false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception)
|
catch (Exception)
|
||||||
|
|
|
@ -621,15 +621,20 @@ namespace OpenSim.Region.CoreModules.World.Archiver
|
||||||
/// <param name="uuid"></param>
|
/// <param name="uuid"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
private bool ResolveUserUuid(Scene scene, UUID uuid)
|
private bool ResolveUserUuid(Scene scene, UUID uuid)
|
||||||
|
{
|
||||||
|
lock (m_validUserUuids)
|
||||||
{
|
{
|
||||||
if (!m_validUserUuids.ContainsKey(uuid))
|
if (!m_validUserUuids.ContainsKey(uuid))
|
||||||
{
|
{
|
||||||
|
// Note: we call GetUserAccount() inside the lock because this UserID is likely
|
||||||
|
// to occur many times, and we only want to query the users service once.
|
||||||
UserAccount account = scene.UserAccountService.GetUserAccount(scene.RegionInfo.ScopeID, uuid);
|
UserAccount account = scene.UserAccountService.GetUserAccount(scene.RegionInfo.ScopeID, uuid);
|
||||||
m_validUserUuids.Add(uuid, account != null);
|
m_validUserUuids.Add(uuid, account != null);
|
||||||
}
|
}
|
||||||
|
|
||||||
return m_validUserUuids[uuid];
|
return m_validUserUuids[uuid];
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Look up the given group id to check whether it's one that is valid for this grid.
|
/// Look up the given group id to check whether it's one that is valid for this grid.
|
||||||
|
@ -641,20 +646,27 @@ namespace OpenSim.Region.CoreModules.World.Archiver
|
||||||
if (uuid == UUID.Zero)
|
if (uuid == UUID.Zero)
|
||||||
return true; // this means the object has no group
|
return true; // this means the object has no group
|
||||||
|
|
||||||
|
lock (m_validGroupUuids)
|
||||||
|
{
|
||||||
if (!m_validGroupUuids.ContainsKey(uuid))
|
if (!m_validGroupUuids.ContainsKey(uuid))
|
||||||
{
|
{
|
||||||
bool exists;
|
bool exists;
|
||||||
|
|
||||||
if (m_groupsModule == null)
|
if (m_groupsModule == null)
|
||||||
|
{
|
||||||
exists = false;
|
exists = false;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
|
// Note: we call GetGroupRecord() inside the lock because this GroupID is likely
|
||||||
|
// to occur many times, and we only want to query the groups service once.
|
||||||
exists = (m_groupsModule.GetGroupRecord(uuid) != null);
|
exists = (m_groupsModule.GetGroupRecord(uuid) != null);
|
||||||
|
}
|
||||||
m_validGroupUuids.Add(uuid, exists);
|
m_validGroupUuids.Add(uuid, exists);
|
||||||
}
|
}
|
||||||
|
|
||||||
return m_validGroupUuids[uuid];
|
return m_validGroupUuids[uuid];
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// Load an asset
|
/// Load an asset
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -587,8 +587,15 @@ namespace OpenSim.Region.CoreModules.World.Archiver
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void ReceivedAllAssets(
|
protected void ReceivedAllAssets(ICollection<UUID> assetsFoundUuids, ICollection<UUID> assetsNotFoundUuids, bool timedOut)
|
||||||
ICollection<UUID> assetsFoundUuids, ICollection<UUID> assetsNotFoundUuids)
|
{
|
||||||
|
string errorMessage;
|
||||||
|
|
||||||
|
if (timedOut)
|
||||||
|
{
|
||||||
|
errorMessage = "Loading assets timed out";
|
||||||
|
}
|
||||||
|
else
|
||||||
{
|
{
|
||||||
foreach (UUID uuid in assetsNotFoundUuids)
|
foreach (UUID uuid in assetsNotFoundUuids)
|
||||||
{
|
{
|
||||||
|
@ -599,7 +606,10 @@ namespace OpenSim.Region.CoreModules.World.Archiver
|
||||||
// "[ARCHIVER]: Received {0} of {1} assets requested",
|
// "[ARCHIVER]: Received {0} of {1} assets requested",
|
||||||
// assetsFoundUuids.Count, assetsFoundUuids.Count + assetsNotFoundUuids.Count);
|
// assetsFoundUuids.Count, assetsFoundUuids.Count + assetsNotFoundUuids.Count);
|
||||||
|
|
||||||
CloseArchive(String.Empty);
|
errorMessage = String.Empty;
|
||||||
|
}
|
||||||
|
|
||||||
|
CloseArchive(errorMessage);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
@ -150,12 +150,5 @@ namespace OpenSim.Region.CoreModules.World.Archiver
|
||||||
m_log.InfoFormat("[ARCHIVER]: Added {0} assets to archive", m_assetsWritten);
|
m_log.InfoFormat("[ARCHIVER]: Added {0} assets to archive", m_assetsWritten);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Only call this if you need to force a close on the underlying writer.
|
|
||||||
/// </summary>
|
|
||||||
public void ForceClose()
|
|
||||||
{
|
|
||||||
m_archiveWriter.Close();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -50,7 +50,7 @@ namespace OpenSim.Region.CoreModules.World.Archiver
|
||||||
/// Method called when all the necessary assets for an archive request have been received.
|
/// Method called when all the necessary assets for an archive request have been received.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public delegate void AssetsRequestCallback(
|
public delegate void AssetsRequestCallback(
|
||||||
ICollection<UUID> assetsFoundUuids, ICollection<UUID> assetsNotFoundUuids);
|
ICollection<UUID> assetsFoundUuids, ICollection<UUID> assetsNotFoundUuids, bool timedOut);
|
||||||
|
|
||||||
enum RequestState
|
enum RequestState
|
||||||
{
|
{
|
||||||
|
@ -148,7 +148,7 @@ namespace OpenSim.Region.CoreModules.World.Archiver
|
||||||
if (m_repliesRequired == 0)
|
if (m_repliesRequired == 0)
|
||||||
{
|
{
|
||||||
m_requestState = RequestState.Completed;
|
m_requestState = RequestState.Completed;
|
||||||
PerformAssetsRequestCallback(null);
|
PerformAssetsRequestCallback(false);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -164,7 +164,7 @@ namespace OpenSim.Region.CoreModules.World.Archiver
|
||||||
|
|
||||||
protected void OnRequestCallbackTimeout(object source, ElapsedEventArgs args)
|
protected void OnRequestCallbackTimeout(object source, ElapsedEventArgs args)
|
||||||
{
|
{
|
||||||
bool close = true;
|
bool timedOut = true;
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
@ -174,7 +174,7 @@ namespace OpenSim.Region.CoreModules.World.Archiver
|
||||||
// the final request came in (assuming that such a thing is possible)
|
// the final request came in (assuming that such a thing is possible)
|
||||||
if (m_requestState == RequestState.Completed)
|
if (m_requestState == RequestState.Completed)
|
||||||
{
|
{
|
||||||
close = false;
|
timedOut = false;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -223,8 +223,8 @@ namespace OpenSim.Region.CoreModules.World.Archiver
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
{
|
{
|
||||||
if (close)
|
if (timedOut)
|
||||||
m_assetsArchiver.ForceClose();
|
Util.FireAndForget(PerformAssetsRequestCallback, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -290,7 +290,7 @@ namespace OpenSim.Region.CoreModules.World.Archiver
|
||||||
|
|
||||||
// We want to stop using the asset cache thread asap
|
// We want to stop using the asset cache thread asap
|
||||||
// as we now need to do the work of producing the rest of the archive
|
// as we now need to do the work of producing the rest of the archive
|
||||||
Util.FireAndForget(PerformAssetsRequestCallback);
|
Util.FireAndForget(PerformAssetsRequestCallback, false);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -311,9 +311,11 @@ namespace OpenSim.Region.CoreModules.World.Archiver
|
||||||
{
|
{
|
||||||
Culture.SetCurrentCulture();
|
Culture.SetCurrentCulture();
|
||||||
|
|
||||||
|
Boolean timedOut = (Boolean)o;
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
m_assetsRequestCallback(m_foundAssetUuids, m_notFoundAssetUuids);
|
m_assetsRequestCallback(m_foundAssetUuids, m_notFoundAssetUuids, timedOut);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
|
|
@ -128,7 +128,7 @@ namespace OpenSim.Region.CoreModules.World.Estate
|
||||||
{
|
{
|
||||||
uint sun = 0;
|
uint sun = 0;
|
||||||
|
|
||||||
if (!Scene.RegionInfo.EstateSettings.UseGlobalTime)
|
if (Scene.RegionInfo.EstateSettings.FixedSun)
|
||||||
sun = (uint)(Scene.RegionInfo.EstateSettings.SunPosition * 1024.0) + 0x1800;
|
sun = (uint)(Scene.RegionInfo.EstateSettings.SunPosition * 1024.0) + 0x1800;
|
||||||
UUID estateOwner;
|
UUID estateOwner;
|
||||||
estateOwner = Scene.RegionInfo.EstateSettings.EstateOwner;
|
estateOwner = Scene.RegionInfo.EstateSettings.EstateOwner;
|
||||||
|
@ -1128,6 +1128,7 @@ namespace OpenSim.Region.CoreModules.World.Estate
|
||||||
{
|
{
|
||||||
Scene.RegionInfo.EstateSettings.UseGlobalTime = false;
|
Scene.RegionInfo.EstateSettings.UseGlobalTime = false;
|
||||||
Scene.RegionInfo.EstateSettings.SunPosition = (parms2 - 0x1800)/1024.0;
|
Scene.RegionInfo.EstateSettings.SunPosition = (parms2 - 0x1800)/1024.0;
|
||||||
|
// Warning: FixedSun should be set to True, otherwise this sun position won't be used.
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((parms1 & 0x00000010) != 0)
|
if ((parms1 & 0x00000010) != 0)
|
||||||
|
|
|
@ -141,6 +141,7 @@ namespace OpenSim.Region.CoreModules.World.Land
|
||||||
m_scene.EventManager.OnValidateLandBuy += EventManagerOnValidateLandBuy;
|
m_scene.EventManager.OnValidateLandBuy += EventManagerOnValidateLandBuy;
|
||||||
m_scene.EventManager.OnLandBuy += EventManagerOnLandBuy;
|
m_scene.EventManager.OnLandBuy += EventManagerOnLandBuy;
|
||||||
m_scene.EventManager.OnNewClient += EventManagerOnNewClient;
|
m_scene.EventManager.OnNewClient += EventManagerOnNewClient;
|
||||||
|
m_scene.EventManager.OnMakeChildAgent += EventMakeChildAgent;
|
||||||
m_scene.EventManager.OnSignificantClientMovement += EventManagerOnSignificantClientMovement;
|
m_scene.EventManager.OnSignificantClientMovement += EventManagerOnSignificantClientMovement;
|
||||||
m_scene.EventManager.OnNoticeNoLandDataFromStorage += EventManagerOnNoLandDataFromStorage;
|
m_scene.EventManager.OnNoticeNoLandDataFromStorage += EventManagerOnNoLandDataFromStorage;
|
||||||
m_scene.EventManager.OnIncomingLandDataFromStorage += EventManagerOnIncomingLandDataFromStorage;
|
m_scene.EventManager.OnIncomingLandDataFromStorage += EventManagerOnIncomingLandDataFromStorage;
|
||||||
|
@ -221,6 +222,11 @@ namespace OpenSim.Region.CoreModules.World.Land
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void EventMakeChildAgent(ScenePresence avatar)
|
||||||
|
{
|
||||||
|
avatar.currentParcelUUID = UUID.Zero;
|
||||||
|
}
|
||||||
|
|
||||||
void ClientOnPreAgentUpdate(IClientAPI remoteClient, AgentUpdateArgs agentData)
|
void ClientOnPreAgentUpdate(IClientAPI remoteClient, AgentUpdateArgs agentData)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@ -249,17 +255,15 @@ namespace OpenSim.Region.CoreModules.World.Land
|
||||||
newData.LocalID = local_id;
|
newData.LocalID = local_id;
|
||||||
ILandObject landobj = null;
|
ILandObject landobj = null;
|
||||||
|
|
||||||
|
ILandObject land;
|
||||||
lock (m_landList)
|
lock (m_landList)
|
||||||
{
|
{
|
||||||
if (m_landList.ContainsKey(local_id))
|
if (m_landList.TryGetValue(local_id, out land))
|
||||||
{
|
land.LandData = newData;
|
||||||
m_landList[local_id].LandData = newData;
|
|
||||||
landobj = m_landList[local_id];
|
|
||||||
// m_scene.EventManager.TriggerLandObjectUpdated((uint)local_id, m_landList[local_id]);
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
if(landobj != null)
|
if (land != null)
|
||||||
m_scene.EventManager.TriggerLandObjectUpdated((uint)local_id, landobj);
|
m_scene.EventManager.TriggerLandObjectUpdated((uint)local_id, land);
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool AllowedForcefulBans
|
public bool AllowedForcefulBans
|
||||||
|
@ -621,6 +625,7 @@ namespace OpenSim.Region.CoreModules.World.Land
|
||||||
/// <param name="local_id">Land.localID of the peice of land to remove.</param>
|
/// <param name="local_id">Land.localID of the peice of land to remove.</param>
|
||||||
public void removeLandObject(int local_id)
|
public void removeLandObject(int local_id)
|
||||||
{
|
{
|
||||||
|
ILandObject land;
|
||||||
lock (m_landList)
|
lock (m_landList)
|
||||||
{
|
{
|
||||||
for (int x = 0; x < 64; x++)
|
for (int x = 0; x < 64; x++)
|
||||||
|
@ -637,9 +642,11 @@ namespace OpenSim.Region.CoreModules.World.Land
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
m_scene.EventManager.TriggerLandObjectRemoved(m_landList[local_id].LandData.GlobalID);
|
land = m_landList[local_id];
|
||||||
m_landList.Remove(local_id);
|
m_landList.Remove(local_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
m_scene.EventManager.TriggerLandObjectRemoved(land.LandData.GlobalID);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -1398,6 +1405,8 @@ namespace OpenSim.Region.CoreModules.World.Land
|
||||||
}
|
}
|
||||||
|
|
||||||
public void ReturnObjectsInParcel(int localID, uint returnType, UUID[] agentIDs, UUID[] taskIDs, IClientAPI remoteClient)
|
public void ReturnObjectsInParcel(int localID, uint returnType, UUID[] agentIDs, UUID[] taskIDs, IClientAPI remoteClient)
|
||||||
|
{
|
||||||
|
if (localID != -1)
|
||||||
{
|
{
|
||||||
ILandObject selectedParcel = null;
|
ILandObject selectedParcel = null;
|
||||||
lock (m_landList)
|
lock (m_landList)
|
||||||
|
@ -1405,20 +1414,65 @@ namespace OpenSim.Region.CoreModules.World.Land
|
||||||
m_landList.TryGetValue(localID, out selectedParcel);
|
m_landList.TryGetValue(localID, out selectedParcel);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (selectedParcel == null) return;
|
if (selectedParcel == null)
|
||||||
|
return;
|
||||||
|
|
||||||
selectedParcel.ReturnLandObjects(returnType, agentIDs, taskIDs, remoteClient);
|
selectedParcel.ReturnLandObjects(returnType, agentIDs, taskIDs, remoteClient);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (returnType != 1)
|
||||||
|
{
|
||||||
|
m_log.WarnFormat("[LAND MANAGEMENT MODULE]: ReturnObjectsInParcel: unknown return type {0}", returnType);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// We get here when the user returns objects from the list of Top Colliders or Top Scripts.
|
||||||
|
// In that case we receive specific object UUID's, but no parcel ID.
|
||||||
|
|
||||||
|
Dictionary<UUID, HashSet<SceneObjectGroup>> returns = new Dictionary<UUID, HashSet<SceneObjectGroup>>();
|
||||||
|
|
||||||
|
foreach (UUID groupID in taskIDs)
|
||||||
|
{
|
||||||
|
SceneObjectGroup obj = m_scene.GetSceneObjectGroup(groupID);
|
||||||
|
if (obj != null)
|
||||||
|
{
|
||||||
|
if (!returns.ContainsKey(obj.OwnerID))
|
||||||
|
returns[obj.OwnerID] = new HashSet<SceneObjectGroup>();
|
||||||
|
returns[obj.OwnerID].Add(obj);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
m_log.WarnFormat("[LAND MANAGEMENT MODULE]: ReturnObjectsInParcel: unknown object {0}", groupID);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int num = 0;
|
||||||
|
foreach (HashSet<SceneObjectGroup> objs in returns.Values)
|
||||||
|
num += objs.Count;
|
||||||
|
m_log.DebugFormat("[LAND MANAGEMENT MODULE]: Returning {0} specific object(s)", num);
|
||||||
|
|
||||||
|
foreach (HashSet<SceneObjectGroup> objs in returns.Values)
|
||||||
|
{
|
||||||
|
List<SceneObjectGroup> objs2 = new List<SceneObjectGroup>(objs);
|
||||||
|
if (m_scene.Permissions.CanReturnObjects(null, remoteClient.AgentId, objs2))
|
||||||
|
{
|
||||||
|
m_scene.returnObjects(objs2.ToArray(), remoteClient.AgentId);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
m_log.WarnFormat("[LAND MANAGEMENT MODULE]: ReturnObjectsInParcel: not permitted to return {0} object(s) belonging to user {1}",
|
||||||
|
objs2.Count, objs2[0].OwnerID);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public void EventManagerOnNoLandDataFromStorage()
|
public void EventManagerOnNoLandDataFromStorage()
|
||||||
{
|
|
||||||
// called methods already have locks
|
|
||||||
// lock (m_landList)
|
|
||||||
{
|
{
|
||||||
ResetSimLandObjects();
|
ResetSimLandObjects();
|
||||||
CreateDefaultParcel();
|
CreateDefaultParcel();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
|
|
@ -490,12 +490,15 @@ namespace OpenSim.Region.CoreModules.World.Land
|
||||||
|
|
||||||
m_Scene.ForEachSOG(AddObject);
|
m_Scene.ForEachSOG(AddObject);
|
||||||
|
|
||||||
|
lock (m_PrimCounts)
|
||||||
|
{
|
||||||
List<UUID> primcountKeys = new List<UUID>(m_PrimCounts.Keys);
|
List<UUID> primcountKeys = new List<UUID>(m_PrimCounts.Keys);
|
||||||
foreach (UUID k in primcountKeys)
|
foreach (UUID k in primcountKeys)
|
||||||
{
|
{
|
||||||
if (!m_OwnerMap.ContainsKey(k))
|
if (!m_OwnerMap.ContainsKey(k))
|
||||||
m_PrimCounts.Remove(k);
|
m_PrimCounts.Remove(k);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
m_Tainted = false;
|
m_Tainted = false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -252,12 +252,11 @@ namespace OpenSim.Region.CoreModules
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: Decouple this, so we can get rid of Linden Hour info
|
// TODO: Decouple this, so we can get rid of Linden Hour info
|
||||||
// Update Region infor with new Sun Position and Hour
|
// Update Region with new Sun Vector
|
||||||
// set estate settings for region access to sun position
|
// set estate settings for region access to sun position
|
||||||
if (receivedEstateToolsSunUpdate)
|
if (receivedEstateToolsSunUpdate)
|
||||||
{
|
{
|
||||||
m_scene.RegionInfo.RegionSettings.SunVector = Position;
|
m_scene.RegionInfo.RegionSettings.SunVector = Position;
|
||||||
m_scene.RegionInfo.RegionSettings.SunPosition = GetCurrentTimeAsLindenSunHour();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -459,26 +458,33 @@ namespace OpenSim.Region.CoreModules
|
||||||
SunToClient(avatar.ControllingClient);
|
SunToClient(avatar.ControllingClient);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
public void EstateToolsSunUpdate(ulong regionHandle)
|
||||||
///
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="regionHandle"></param>
|
|
||||||
/// <param name="FixedTime">Is the sun's position fixed?</param>
|
|
||||||
/// <param name="useEstateTime">Use the Region or Estate Sun hour?</param>
|
|
||||||
/// <param name="FixedSunHour">What hour of the day is the Sun Fixed at?</param>
|
|
||||||
public void EstateToolsSunUpdate(ulong regionHandle, bool FixedSun, bool useEstateTime, float FixedSunHour)
|
|
||||||
{
|
{
|
||||||
if (m_scene.RegionInfo.RegionHandle == regionHandle)
|
if (m_scene.RegionInfo.RegionHandle == regionHandle)
|
||||||
{
|
{
|
||||||
|
float sunFixedHour;
|
||||||
|
bool fixedSun;
|
||||||
|
|
||||||
|
if (m_scene.RegionInfo.RegionSettings.UseEstateSun)
|
||||||
|
{
|
||||||
|
sunFixedHour = (float)m_scene.RegionInfo.EstateSettings.SunPosition;
|
||||||
|
fixedSun = m_scene.RegionInfo.EstateSettings.FixedSun;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
sunFixedHour = (float)m_scene.RegionInfo.RegionSettings.SunPosition - 6.0f;
|
||||||
|
fixedSun = m_scene.RegionInfo.RegionSettings.FixedSun;
|
||||||
|
}
|
||||||
|
|
||||||
// Must limit the Sun Hour to 0 ... 24
|
// Must limit the Sun Hour to 0 ... 24
|
||||||
while (FixedSunHour > 24.0f)
|
while (sunFixedHour > 24.0f)
|
||||||
FixedSunHour -= 24;
|
sunFixedHour -= 24;
|
||||||
|
|
||||||
while (FixedSunHour < 0)
|
while (sunFixedHour < 0)
|
||||||
FixedSunHour += 24;
|
sunFixedHour += 24;
|
||||||
|
|
||||||
m_SunFixedHour = FixedSunHour;
|
m_SunFixedHour = sunFixedHour;
|
||||||
m_SunFixed = FixedSun;
|
m_SunFixed = fixedSun;
|
||||||
|
|
||||||
// m_log.DebugFormat("[SUN]: Sun Settings Update: Fixed Sun? : {0}", m_SunFixed.ToString());
|
// m_log.DebugFormat("[SUN]: Sun Settings Update: Fixed Sun? : {0}", m_SunFixed.ToString());
|
||||||
// m_log.DebugFormat("[SUN]: Sun Settings Update: Sun Hour : {0}", m_SunFixedHour.ToString());
|
// m_log.DebugFormat("[SUN]: Sun Settings Update: Sun Hour : {0}", m_SunFixedHour.ToString());
|
||||||
|
|
|
@ -480,7 +480,7 @@ namespace OpenSim.Region.CoreModules.World.Terrain
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
m_plugineffects[pluginName] = effect;
|
m_plugineffects[pluginName] = effect;
|
||||||
m_log.Warn("E ... " + pluginName + " (Replaced)");
|
m_log.Info("E ... " + pluginName + " (Replaced)");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -755,7 +755,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
public event ScriptTimerEvent OnScriptTimerEvent;
|
public event ScriptTimerEvent OnScriptTimerEvent;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public delegate void EstateToolsSunUpdate(ulong regionHandle, bool FixedTime, bool EstateSun, float LindenHour);
|
public delegate void EstateToolsSunUpdate(ulong regionHandle);
|
||||||
public delegate void GetScriptRunning(IClientAPI controllingClient, UUID objectID, UUID itemID);
|
public delegate void GetScriptRunning(IClientAPI controllingClient, UUID objectID, UUID itemID);
|
||||||
|
|
||||||
public event EstateToolsSunUpdate OnEstateToolsSunUpdate;
|
public event EstateToolsSunUpdate OnEstateToolsSunUpdate;
|
||||||
|
@ -2536,13 +2536,10 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Updates the system as to how the position of the sun should be handled.
|
/// Called when the sun's position parameters have changed in the Region and/or Estate
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="regionHandle"></param>
|
/// <param name="regionHandle">The region that changed</param>
|
||||||
/// <param name="FixedTime">True if the Sun Position is fixed</param>
|
public void TriggerEstateToolsSunUpdate(ulong regionHandle)
|
||||||
/// <param name="useEstateTime">True if the Estate Settings should be used instead of region</param>
|
|
||||||
/// <param name="FixedSunHour">The hour 0.0 <= FixedSunHour <= 24.0 at which the sun is fixed at. Sun Hour 0 is sun-rise, when Day/Night ratio is 1:1</param>
|
|
||||||
public void TriggerEstateToolsSunUpdate(ulong regionHandle, bool FixedTime, bool useEstateTime, float FixedSunHour)
|
|
||||||
{
|
{
|
||||||
EstateToolsSunUpdate handlerEstateToolsSunUpdate = OnEstateToolsSunUpdate;
|
EstateToolsSunUpdate handlerEstateToolsSunUpdate = OnEstateToolsSunUpdate;
|
||||||
if (handlerEstateToolsSunUpdate != null)
|
if (handlerEstateToolsSunUpdate != null)
|
||||||
|
@ -2551,7 +2548,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
d(regionHandle, FixedTime, useEstateTime, FixedSunHour);
|
d(regionHandle);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5619,33 +5619,7 @@ Environment.Exit(1);
|
||||||
|
|
||||||
public void TriggerEstateSunUpdate()
|
public void TriggerEstateSunUpdate()
|
||||||
{
|
{
|
||||||
float sun;
|
EventManager.TriggerEstateToolsSunUpdate(RegionInfo.RegionHandle);
|
||||||
if (RegionInfo.RegionSettings.UseEstateSun)
|
|
||||||
{
|
|
||||||
sun = (float)RegionInfo.EstateSettings.SunPosition;
|
|
||||||
if (RegionInfo.EstateSettings.UseGlobalTime)
|
|
||||||
{
|
|
||||||
sun = EventManager.GetCurrentTimeAsSunLindenHour() - 6.0f;
|
|
||||||
}
|
|
||||||
|
|
||||||
//
|
|
||||||
EventManager.TriggerEstateToolsSunUpdate(
|
|
||||||
RegionInfo.RegionHandle,
|
|
||||||
RegionInfo.EstateSettings.FixedSun,
|
|
||||||
RegionInfo.RegionSettings.UseEstateSun,
|
|
||||||
sun);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// Use the Sun Position from the Region Settings
|
|
||||||
sun = (float)RegionInfo.RegionSettings.SunPosition - 6.0f;
|
|
||||||
|
|
||||||
EventManager.TriggerEstateToolsSunUpdate(
|
|
||||||
RegionInfo.RegionHandle,
|
|
||||||
RegionInfo.RegionSettings.FixedSun,
|
|
||||||
RegionInfo.RegionSettings.UseEstateSun,
|
|
||||||
sun);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void HandleReloadEstate(string module, string[] cmd)
|
private void HandleReloadEstate(string module, string[] cmd)
|
||||||
|
|
|
@ -945,6 +945,18 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
public UUID FromFolderID { get; set; }
|
public UUID FromFolderID { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// IDs of all avatars sat on this scene object.
|
||||||
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// We need this so that we can maintain a linkset wide ordering of avatars sat on different parts.
|
||||||
|
/// This must be locked before it is read or written.
|
||||||
|
/// SceneObjectPart sitting avatar add/remove code also locks on this object to avoid race conditions.
|
||||||
|
/// No avatar should appear more than once in this list.
|
||||||
|
/// Do not manipulate this list directly - use the Add/Remove sitting avatar methods on SceneObjectPart.
|
||||||
|
/// </remarks>
|
||||||
|
protected internal List<UUID> m_sittingAvatars = new List<UUID>();
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
// ~SceneObjectGroup()
|
// ~SceneObjectGroup()
|
||||||
|
@ -4522,6 +4534,20 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
return count;
|
return count;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Get a copy of the list of sitting avatars on all prims of this object.
|
||||||
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// This is sorted by the order in which avatars sat down. If an avatar stands up then all avatars that sat
|
||||||
|
/// down after it move one place down the list.
|
||||||
|
/// </remarks>
|
||||||
|
/// <returns>A list of the sitting avatars. Returns an empty list if there are no sitting avatars.</returns>
|
||||||
|
public List<UUID> GetSittingAvatars()
|
||||||
|
{
|
||||||
|
lock (m_sittingAvatars)
|
||||||
|
return new List<UUID>(m_sittingAvatars);
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the number of sitting avatars.
|
/// Gets the number of sitting avatars.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -4529,11 +4555,8 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public int GetSittingAvatarsCount()
|
public int GetSittingAvatarsCount()
|
||||||
{
|
{
|
||||||
int count = 0;
|
lock (m_sittingAvatars)
|
||||||
|
return m_sittingAvatars.Count;
|
||||||
Array.ForEach<SceneObjectPart>(m_parts.GetArray(), p => count += p.GetSittingAvatarsCount());
|
|
||||||
|
|
||||||
return count;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public override string ToString()
|
public override string ToString()
|
||||||
|
|
|
@ -1342,7 +1342,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
public UUID SitTargetAvatar { get; set; }
|
public UUID SitTargetAvatar { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// IDs of all avatars start on this object part.
|
/// IDs of all avatars sat on this part.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// We need to track this so that we can stop sat upon prims from being attached.
|
/// We need to track this so that we can stop sat upon prims from being attached.
|
||||||
|
@ -5195,19 +5195,23 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
/// </returns>
|
/// </returns>
|
||||||
/// <param name='avatarId'></param>
|
/// <param name='avatarId'></param>
|
||||||
protected internal bool AddSittingAvatar(UUID avatarId)
|
protected internal bool AddSittingAvatar(UUID avatarId)
|
||||||
|
{
|
||||||
|
lock (ParentGroup.m_sittingAvatars)
|
||||||
{
|
{
|
||||||
if (IsSitTargetSet && SitTargetAvatar == UUID.Zero)
|
if (IsSitTargetSet && SitTargetAvatar == UUID.Zero)
|
||||||
SitTargetAvatar = avatarId;
|
SitTargetAvatar = avatarId;
|
||||||
|
|
||||||
HashSet<UUID> sittingAvatars = m_sittingAvatars;
|
if (m_sittingAvatars == null)
|
||||||
|
m_sittingAvatars = new HashSet<UUID>();
|
||||||
|
|
||||||
if (sittingAvatars == null)
|
if (m_sittingAvatars.Add(avatarId))
|
||||||
sittingAvatars = new HashSet<UUID>();
|
|
||||||
|
|
||||||
lock (sittingAvatars)
|
|
||||||
{
|
{
|
||||||
m_sittingAvatars = sittingAvatars;
|
ParentGroup.m_sittingAvatars.Add(avatarId);
|
||||||
return m_sittingAvatars.Add(avatarId);
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5220,29 +5224,28 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
/// </returns>
|
/// </returns>
|
||||||
/// <param name='avatarId'></param>
|
/// <param name='avatarId'></param>
|
||||||
protected internal bool RemoveSittingAvatar(UUID avatarId)
|
protected internal bool RemoveSittingAvatar(UUID avatarId)
|
||||||
|
{
|
||||||
|
lock (ParentGroup.m_sittingAvatars)
|
||||||
{
|
{
|
||||||
if (SitTargetAvatar == avatarId)
|
if (SitTargetAvatar == avatarId)
|
||||||
SitTargetAvatar = UUID.Zero;
|
SitTargetAvatar = UUID.Zero;
|
||||||
|
|
||||||
HashSet<UUID> sittingAvatars = m_sittingAvatars;
|
if (m_sittingAvatars == null)
|
||||||
|
|
||||||
// This can occur under a race condition where another thread
|
|
||||||
if (sittingAvatars == null)
|
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
lock (sittingAvatars)
|
if (m_sittingAvatars.Remove(avatarId))
|
||||||
{
|
{
|
||||||
if (sittingAvatars.Remove(avatarId))
|
if (m_sittingAvatars.Count == 0)
|
||||||
{
|
|
||||||
if (sittingAvatars.Count == 0)
|
|
||||||
m_sittingAvatars = null;
|
m_sittingAvatars = null;
|
||||||
|
|
||||||
|
ParentGroup.m_sittingAvatars.Remove(avatarId);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get a copy of the list of sitting avatars.
|
/// Get a copy of the list of sitting avatars.
|
||||||
|
@ -5251,16 +5254,12 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
/// <returns>A hashset of the sitting avatars. Returns null if there are no sitting avatars.</returns>
|
/// <returns>A hashset of the sitting avatars. Returns null if there are no sitting avatars.</returns>
|
||||||
public HashSet<UUID> GetSittingAvatars()
|
public HashSet<UUID> GetSittingAvatars()
|
||||||
{
|
{
|
||||||
HashSet<UUID> sittingAvatars = m_sittingAvatars;
|
lock (ParentGroup.m_sittingAvatars)
|
||||||
|
|
||||||
if (sittingAvatars == null)
|
|
||||||
{
|
{
|
||||||
|
if (m_sittingAvatars == null)
|
||||||
return null;
|
return null;
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
return new HashSet<UUID>(m_sittingAvatars);
|
||||||
lock (sittingAvatars)
|
|
||||||
return new HashSet<UUID>(sittingAvatars);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5271,13 +5270,13 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public int GetSittingAvatarsCount()
|
public int GetSittingAvatarsCount()
|
||||||
{
|
{
|
||||||
HashSet<UUID> sittingAvatars = m_sittingAvatars;
|
lock (ParentGroup.m_sittingAvatars)
|
||||||
|
{
|
||||||
if (sittingAvatars == null)
|
if (m_sittingAvatars == null)
|
||||||
return 0;
|
return 0;
|
||||||
|
else
|
||||||
lock (sittingAvatars)
|
return m_sittingAvatars.Count;
|
||||||
return sittingAvatars.Count;
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -0,0 +1,215 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) Contributors, http://opensimulator.org/
|
||||||
|
* See CONTRIBUTORS.TXT for a full list of copyright holders.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
* * Redistributions of source code must retain the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer.
|
||||||
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
* * Neither the name of the OpenSimulator Project nor the
|
||||||
|
* names of its contributors may be used to endorse or promote products
|
||||||
|
* derived from this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
|
||||||
|
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
* DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
|
||||||
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||||
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||||
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Reflection;
|
||||||
|
using System.Text;
|
||||||
|
using log4net;
|
||||||
|
using Mono.Addins;
|
||||||
|
using Nini.Config;
|
||||||
|
using OpenMetaverse;
|
||||||
|
using OpenSim.Framework;
|
||||||
|
using OpenSim.Framework.Console;
|
||||||
|
using OpenSim.Framework.Monitoring;
|
||||||
|
using OpenSim.Region.ClientStack.LindenUDP;
|
||||||
|
using OpenSim.Region.Framework.Interfaces;
|
||||||
|
using OpenSim.Region.Framework.Scenes;
|
||||||
|
using OpenSim.Region.Framework.Scenes.Animation;
|
||||||
|
using OpenSim.Services.Interfaces;
|
||||||
|
|
||||||
|
namespace OpenSim.Region.OptionalModules.Avatar.Animations
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// A module that just holds commands for inspecting avatar animations.
|
||||||
|
/// </summary>
|
||||||
|
[Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "AnimationsCommandModule")]
|
||||||
|
public class AnimationsCommandModule : ISharedRegionModule
|
||||||
|
{
|
||||||
|
// private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||||
|
|
||||||
|
private List<Scene> m_scenes = new List<Scene>();
|
||||||
|
|
||||||
|
public string Name { get { return "Animations Command Module"; } }
|
||||||
|
|
||||||
|
public Type ReplaceableInterface { get { return null; } }
|
||||||
|
|
||||||
|
public void Initialise(IConfigSource source)
|
||||||
|
{
|
||||||
|
// m_log.DebugFormat("[ANIMATIONS COMMAND MODULE]: INITIALIZED MODULE");
|
||||||
|
}
|
||||||
|
|
||||||
|
public void PostInitialise()
|
||||||
|
{
|
||||||
|
// m_log.DebugFormat("[ANIMATIONS COMMAND MODULE]: POST INITIALIZED MODULE");
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Close()
|
||||||
|
{
|
||||||
|
// m_log.DebugFormat("[ANIMATIONS COMMAND MODULE]: CLOSED MODULE");
|
||||||
|
}
|
||||||
|
|
||||||
|
public void AddRegion(Scene scene)
|
||||||
|
{
|
||||||
|
// m_log.DebugFormat("[ANIMATIONS COMMAND MODULE]: REGION {0} ADDED", scene.RegionInfo.RegionName);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void RemoveRegion(Scene scene)
|
||||||
|
{
|
||||||
|
// m_log.DebugFormat("[ATTACHMENTS COMMAND MODULE]: REGION {0} REMOVED", scene.RegionInfo.RegionName);
|
||||||
|
|
||||||
|
lock (m_scenes)
|
||||||
|
m_scenes.Remove(scene);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void RegionLoaded(Scene scene)
|
||||||
|
{
|
||||||
|
// m_log.DebugFormat("[ANIMATIONS COMMAND MODULE]: REGION {0} LOADED", scene.RegionInfo.RegionName);
|
||||||
|
|
||||||
|
lock (m_scenes)
|
||||||
|
m_scenes.Add(scene);
|
||||||
|
|
||||||
|
scene.AddCommand(
|
||||||
|
"Users", this, "show animations",
|
||||||
|
"show animations [<first-name> <last-name>]",
|
||||||
|
"Show animation information for avatars in this simulator.",
|
||||||
|
"If no name is supplied then information for all avatars is shown.\n"
|
||||||
|
+ "Please note that for inventory animations, the animation name is the name under which the animation was originally uploaded\n"
|
||||||
|
+ ", which is not necessarily the current inventory name.",
|
||||||
|
HandleShowAnimationsCommand);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void HandleShowAnimationsCommand(string module, string[] cmd)
|
||||||
|
{
|
||||||
|
if (cmd.Length != 2 && cmd.Length < 4)
|
||||||
|
{
|
||||||
|
MainConsole.Instance.OutputFormat("Usage: show animations [<first-name> <last-name>]");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool targetNameSupplied = false;
|
||||||
|
string optionalTargetFirstName = null;
|
||||||
|
string optionalTargetLastName = null;
|
||||||
|
|
||||||
|
if (cmd.Length >= 4)
|
||||||
|
{
|
||||||
|
targetNameSupplied = true;
|
||||||
|
optionalTargetFirstName = cmd[2];
|
||||||
|
optionalTargetLastName = cmd[3];
|
||||||
|
}
|
||||||
|
|
||||||
|
StringBuilder sb = new StringBuilder();
|
||||||
|
|
||||||
|
lock (m_scenes)
|
||||||
|
{
|
||||||
|
foreach (Scene scene in m_scenes)
|
||||||
|
{
|
||||||
|
if (targetNameSupplied)
|
||||||
|
{
|
||||||
|
ScenePresence sp = scene.GetScenePresence(optionalTargetFirstName, optionalTargetLastName);
|
||||||
|
if (sp != null && !sp.IsChildAgent)
|
||||||
|
GetAttachmentsReport(sp, sb);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
scene.ForEachRootScenePresence(sp => GetAttachmentsReport(sp, sb));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
MainConsole.Instance.Output(sb.ToString());
|
||||||
|
}
|
||||||
|
|
||||||
|
private void GetAttachmentsReport(ScenePresence sp, StringBuilder sb)
|
||||||
|
{
|
||||||
|
sb.AppendFormat("Animations for {0}\n", sp.Name);
|
||||||
|
|
||||||
|
ConsoleDisplayList cdl = new ConsoleDisplayList() { Indent = 2 };
|
||||||
|
ScenePresenceAnimator spa = sp.Animator;
|
||||||
|
AnimationSet anims = sp.Animator.Animations;
|
||||||
|
|
||||||
|
string cma = spa.CurrentMovementAnimation;
|
||||||
|
cdl.AddRow(
|
||||||
|
"Current movement anim",
|
||||||
|
string.Format("{0}, {1}", DefaultAvatarAnimations.GetDefaultAnimation(cma), cma));
|
||||||
|
|
||||||
|
UUID defaultAnimId = anims.DefaultAnimation.AnimID;
|
||||||
|
cdl.AddRow(
|
||||||
|
"Default anim",
|
||||||
|
string.Format("{0}, {1}", defaultAnimId, GetAnimName(sp.Scene.AssetService, defaultAnimId)));
|
||||||
|
|
||||||
|
UUID implicitDefaultAnimId = anims.ImplicitDefaultAnimation.AnimID;
|
||||||
|
cdl.AddRow(
|
||||||
|
"Implicit default anim",
|
||||||
|
string.Format("{0}, {1}", implicitDefaultAnimId, GetAnimName(sp.Scene.AssetService, implicitDefaultAnimId)));
|
||||||
|
|
||||||
|
cdl.AddToStringBuilder(sb);
|
||||||
|
|
||||||
|
ConsoleDisplayTable cdt = new ConsoleDisplayTable() { Indent = 2 };
|
||||||
|
cdt.AddColumn("Animation ID", 36);
|
||||||
|
cdt.AddColumn("Name", 20);
|
||||||
|
cdt.AddColumn("Seq", 3);
|
||||||
|
cdt.AddColumn("Object ID", 36);
|
||||||
|
|
||||||
|
UUID[] animIds;
|
||||||
|
int[] sequenceNumbers;
|
||||||
|
UUID[] objectIds;
|
||||||
|
|
||||||
|
sp.Animator.Animations.GetArrays(out animIds, out sequenceNumbers, out objectIds);
|
||||||
|
|
||||||
|
for (int i = 0; i < animIds.Length; i++)
|
||||||
|
{
|
||||||
|
UUID animId = animIds[i];
|
||||||
|
string animName = GetAnimName(sp.Scene.AssetService, animId);
|
||||||
|
int seq = sequenceNumbers[i];
|
||||||
|
UUID objectId = objectIds[i];
|
||||||
|
|
||||||
|
cdt.AddRow(animId, animName, seq, objectId);
|
||||||
|
}
|
||||||
|
|
||||||
|
cdt.AddToStringBuilder(sb);
|
||||||
|
sb.Append("\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
private string GetAnimName(IAssetService assetService, UUID animId)
|
||||||
|
{
|
||||||
|
string animName;
|
||||||
|
|
||||||
|
if (!DefaultAvatarAnimations.AnimsNames.TryGetValue(animId, out animName))
|
||||||
|
{
|
||||||
|
AssetMetadata amd = assetService.GetMetadata(animId.ToString());
|
||||||
|
if (amd != null)
|
||||||
|
animName = amd.Name;
|
||||||
|
else
|
||||||
|
animName = "Unknown";
|
||||||
|
}
|
||||||
|
|
||||||
|
return animName;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -97,6 +97,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Attachments
|
||||||
"Users", this, "attachments show",
|
"Users", this, "attachments show",
|
||||||
"attachments show [<first-name> <last-name>]",
|
"attachments show [<first-name> <last-name>]",
|
||||||
"Show attachment information for avatars in this simulator.",
|
"Show attachment information for avatars in this simulator.",
|
||||||
|
"If no name is supplied then information for all avatars is shown.",
|
||||||
HandleShowAttachmentsCommand);
|
HandleShowAttachmentsCommand);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,7 @@ namespace OpenSim.Region.OptionalModules.World.MoneyModule
|
||||||
/// (such as land transfers). There is no money code here! Use FORGE as an example for money code.
|
/// (such as land transfers). There is no money code here! Use FORGE as an example for money code.
|
||||||
/// Demo Economy/Money Module. This is a purposely crippled module!
|
/// Demo Economy/Money Module. This is a purposely crippled module!
|
||||||
/// // To land transfer you need to add:
|
/// // To land transfer you need to add:
|
||||||
/// -helperuri <ADDRESS TO THIS SERVER>
|
/// -helperuri http://serveraddress:port/
|
||||||
/// to the command line parameters you use to start up your client
|
/// to the command line parameters you use to start up your client
|
||||||
/// This commonly looks like -helperuri http://127.0.0.1:9000/
|
/// This commonly looks like -helperuri http://127.0.0.1:9000/
|
||||||
///
|
///
|
||||||
|
@ -116,10 +116,9 @@ namespace OpenSim.Region.OptionalModules.World.MoneyModule
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Startup
|
/// Called on startup so the module can be configured.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="scene"></param>
|
/// <param name="config">Configuration source.</param>
|
||||||
/// <param name="config"></param>
|
|
||||||
public void Initialise(IConfigSource config)
|
public void Initialise(IConfigSource config)
|
||||||
{
|
{
|
||||||
m_gConfig = config;
|
m_gConfig = config;
|
||||||
|
@ -674,9 +673,12 @@ namespace OpenSim.Region.OptionalModules.World.MoneyModule
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// When the client closes the connection we remove their accounting info from memory to free up resources.
|
/// When the client closes the connection we remove their accounting
|
||||||
|
/// info from memory to free up resources.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="AgentID"></param>
|
/// <param name="AgentID">UUID of agent</param>
|
||||||
|
/// <param name="scene">Scene the agent was connected to.</param>
|
||||||
|
/// <see cref="OpenSim.Region.Framework.Scenes.EventManager.ClientClosed"/>
|
||||||
public void ClientClosed(UUID AgentID, Scene scene)
|
public void ClientClosed(UUID AgentID, Scene scene)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
@ -3298,7 +3298,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Attach the object containing this script to the avatar that owns it.
|
/// Attach the object containing this script to the avatar that owns it.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name='attachment'>The attachment point (e.g. ATTACH_CHEST)</param>
|
/// <param name='attachmentPoint'>
|
||||||
|
/// The attachment point (e.g. <see cref="OpenSim.Region.ScriptEngine.Shared.ScriptBase.ScriptBaseClass.ATTACH_CHEST">ATTACH_CHEST</see>)
|
||||||
|
/// </param>
|
||||||
/// <returns>true if the attach suceeded, false if it did not</returns>
|
/// <returns>true if the attach suceeded, false if it did not</returns>
|
||||||
public bool AttachToAvatar(int attachmentPoint)
|
public bool AttachToAvatar(int attachmentPoint)
|
||||||
{
|
{
|
||||||
|
@ -3729,21 +3731,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
bool sitting = false;
|
if (m_host.ParentGroup.GetSittingAvatars().Contains(agentID))
|
||||||
if (m_host.SitTargetAvatar == agentID)
|
|
||||||
{
|
|
||||||
sitting = true;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
foreach (SceneObjectPart p in m_host.ParentGroup.Parts)
|
|
||||||
{
|
|
||||||
if (p.SitTargetAvatar == agentID)
|
|
||||||
sitting = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (sitting)
|
|
||||||
{
|
{
|
||||||
// When agent is sitting, certain permissions are implicit if requested from sitting agent
|
// When agent is sitting, certain permissions are implicit if requested from sitting agent
|
||||||
implicitPerms = ScriptBaseClass.PERMISSION_TRIGGER_ANIMATION |
|
implicitPerms = ScriptBaseClass.PERMISSION_TRIGGER_ANIMATION |
|
||||||
|
@ -3785,7 +3773,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
INPCModule npcModule = World.RequestModuleInterface<INPCModule>();
|
INPCModule npcModule = World.RequestModuleInterface<INPCModule>();
|
||||||
if (npcModule != null && npcModule.IsNPC(agentID, World))
|
if (npcModule != null && npcModule.IsNPC(agentID, World))
|
||||||
{
|
{
|
||||||
if (agentID == m_host.ParentGroup.OwnerID || npcModule.GetOwner(agentID) == m_host.ParentGroup.OwnerID)
|
if (npcModule.CheckPermissions(agentID, m_host.OwnerID))
|
||||||
{
|
{
|
||||||
lock (m_host.TaskInventory)
|
lock (m_host.TaskInventory)
|
||||||
{
|
{
|
||||||
|
@ -4160,62 +4148,56 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
public LSL_String llGetLinkName(int linknum)
|
public LSL_String llGetLinkName(int linknum)
|
||||||
{
|
{
|
||||||
m_host.AddScriptLPS(1);
|
m_host.AddScriptLPS(1);
|
||||||
// simplest case, this prims link number
|
|
||||||
if (linknum == m_host.LinkNum || linknum == ScriptBaseClass.LINK_THIS)
|
|
||||||
return m_host.Name;
|
|
||||||
|
|
||||||
// parse for sitting avatare-names
|
|
||||||
List<String> nametable = new List<String>();
|
|
||||||
World.ForEachRootScenePresence(delegate(ScenePresence presence)
|
|
||||||
{
|
|
||||||
SceneObjectPart sitPart = presence.ParentPart;
|
|
||||||
if (sitPart != null && m_host.ParentGroup.ContainsPart(sitPart.LocalId))
|
|
||||||
nametable.Add(presence.ControllingClient.Name);
|
|
||||||
});
|
|
||||||
|
|
||||||
int totalprims = m_host.ParentGroup.PrimCount + nametable.Count;
|
|
||||||
if (totalprims > m_host.ParentGroup.PrimCount)
|
|
||||||
{
|
|
||||||
// sitting Avatar-Name with negativ linknum / SinglePrim
|
|
||||||
if (linknum < 0 && m_host.ParentGroup.PrimCount == 1 && nametable.Count == 1)
|
|
||||||
return nametable[0];
|
|
||||||
// Prim-Name / SinglePrim Sitting Avatar
|
|
||||||
if (linknum == 1 && m_host.ParentGroup.PrimCount == 1 && nametable.Count == 1)
|
|
||||||
return m_host.Name;
|
|
||||||
// LinkNumber > of Real PrimSet = AvatarName
|
|
||||||
if (linknum > m_host.ParentGroup.PrimCount && linknum <= totalprims)
|
|
||||||
return nametable[totalprims - linknum];
|
|
||||||
}
|
|
||||||
|
|
||||||
// Single prim
|
|
||||||
if (m_host.LinkNum == 0)
|
|
||||||
{
|
|
||||||
if (linknum == 0 || linknum == ScriptBaseClass.LINK_ROOT)
|
|
||||||
return m_host.Name;
|
|
||||||
else
|
|
||||||
return UUID.Zero.ToString();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Link set
|
|
||||||
SceneObjectPart part = null;
|
|
||||||
if (m_host.LinkNum == 1) // this is the Root prim
|
|
||||||
{
|
|
||||||
if (linknum < 0)
|
if (linknum < 0)
|
||||||
part = m_host.ParentGroup.GetLinkNumPart(2);
|
|
||||||
else
|
|
||||||
part = m_host.ParentGroup.GetLinkNumPart(linknum);
|
|
||||||
}
|
|
||||||
else // this is a child prim
|
|
||||||
{
|
{
|
||||||
if (linknum < 2)
|
if (linknum == ScriptBaseClass.LINK_THIS)
|
||||||
part = m_host.ParentGroup.GetLinkNumPart(1);
|
return m_host.Name;
|
||||||
else
|
else
|
||||||
part = m_host.ParentGroup.GetLinkNumPart(linknum);
|
return ScriptBaseClass.NULL_KEY;
|
||||||
}
|
}
|
||||||
if (part != null)
|
|
||||||
return part.Name;
|
int actualPrimCount = m_host.ParentGroup.PrimCount;
|
||||||
|
List<UUID> sittingAvatarIds = m_host.ParentGroup.GetSittingAvatars();
|
||||||
|
int adjustedPrimCount = actualPrimCount + sittingAvatarIds.Count;
|
||||||
|
|
||||||
|
// Special case for a single prim. In this case the linknum is zero. However, this will not match a single
|
||||||
|
// prim that has any avatars sat upon it (in which case the root prim is link 1).
|
||||||
|
if (linknum == 0)
|
||||||
|
{
|
||||||
|
if (actualPrimCount == 1 && sittingAvatarIds.Count == 0)
|
||||||
|
return m_host.Name;
|
||||||
|
|
||||||
|
return ScriptBaseClass.NULL_KEY;
|
||||||
|
}
|
||||||
|
// Special case to handle a single prim with sitting avatars. GetLinkPart() would only match zero but
|
||||||
|
// here we must match 1 (ScriptBaseClass.LINK_ROOT).
|
||||||
|
else if (linknum == 1 && actualPrimCount == 1)
|
||||||
|
{
|
||||||
|
if (sittingAvatarIds.Count > 0)
|
||||||
|
return m_host.ParentGroup.RootPart.Name;
|
||||||
else
|
else
|
||||||
return UUID.Zero.ToString();
|
return ScriptBaseClass.NULL_KEY;
|
||||||
|
}
|
||||||
|
else if (linknum <= adjustedPrimCount)
|
||||||
|
{
|
||||||
|
if (linknum <= actualPrimCount)
|
||||||
|
{
|
||||||
|
return m_host.ParentGroup.GetLinkNumPart(linknum).Name;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
ScenePresence sp = World.GetScenePresence(sittingAvatarIds[linknum - actualPrimCount - 1]);
|
||||||
|
if (sp != null)
|
||||||
|
return sp.Name;
|
||||||
|
else
|
||||||
|
return ScriptBaseClass.NULL_KEY;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return ScriptBaseClass.NULL_KEY;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public LSL_Integer llGetInventoryNumber(int type)
|
public LSL_Integer llGetInventoryNumber(int type)
|
||||||
|
@ -5828,9 +5810,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Insert the list identified by <src> into the
|
/// Insert the list identified by <paramref name="src"/> into the
|
||||||
/// list designated by <dest> such that the first
|
/// list designated by <paramref name="dest"/> such that the first
|
||||||
/// new element has the index specified by <index>
|
/// new element has the index specified by <paramref name="index"/>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
||||||
public LSL_List llListInsertList(LSL_List dest, LSL_List src, int index)
|
public LSL_List llListInsertList(LSL_List dest, LSL_List src, int index)
|
||||||
|
@ -6663,6 +6645,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
ps.BurstSpeedMax = 1.0f;
|
ps.BurstSpeedMax = 1.0f;
|
||||||
ps.BurstRate = 0.1f;
|
ps.BurstRate = 0.1f;
|
||||||
ps.PartMaxAge = 10.0f;
|
ps.PartMaxAge = 10.0f;
|
||||||
|
ps.BurstPartCount = 1;
|
||||||
return ps;
|
return ps;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6686,8 +6669,6 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
|
|
||||||
private void SetParticleSystem(SceneObjectPart part, LSL_List rules)
|
private void SetParticleSystem(SceneObjectPart part, LSL_List rules)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
if (rules.Length == 0)
|
if (rules.Length == 0)
|
||||||
{
|
{
|
||||||
part.RemoveParticleSystem();
|
part.RemoveParticleSystem();
|
||||||
|
@ -13232,7 +13213,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
/// Get a notecard line.
|
/// Get a notecard line.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="assetID"></param>
|
/// <param name="assetID"></param>
|
||||||
/// <param name="line">Lines start at index 0</param>
|
/// <param name="lineNumber">Lines start at index 0</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public static string GetLine(UUID assetID, int lineNumber)
|
public static string GetLine(UUID assetID, int lineNumber)
|
||||||
{
|
{
|
||||||
|
@ -13261,9 +13242,14 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
/// Get a notecard line.
|
/// Get a notecard line.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="assetID"></param>
|
/// <param name="assetID"></param>
|
||||||
/// <param name="line">Lines start at index 0</param>
|
/// <param name="lineNumber">Lines start at index 0</param>
|
||||||
/// <param name="maxLength">Maximum length of the returned line. Longer lines will be truncated</para>
|
/// <param name="maxLength">
|
||||||
/// <returns></returns>
|
/// Maximum length of the returned line.
|
||||||
|
/// </param>
|
||||||
|
/// <returns>
|
||||||
|
/// If the line length is longer than <paramref name="maxLength"/>,
|
||||||
|
/// the return string will be truncated.
|
||||||
|
/// </returns>
|
||||||
public static string GetLine(UUID assetID, int lineNumber, int maxLength)
|
public static string GetLine(UUID assetID, int lineNumber, int maxLength)
|
||||||
{
|
{
|
||||||
string line = GetLine(assetID, lineNumber);
|
string line = GetLine(assetID, lineNumber);
|
||||||
|
|
|
@ -1218,8 +1218,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
World.RegionInfo.RegionSettings.FixedSun = sunFixed;
|
World.RegionInfo.RegionSettings.FixedSun = sunFixed;
|
||||||
World.RegionInfo.RegionSettings.Save();
|
World.RegionInfo.RegionSettings.Save();
|
||||||
|
|
||||||
World.EventManager.TriggerEstateToolsSunUpdate(
|
World.EventManager.TriggerEstateToolsSunUpdate(World.RegionInfo.RegionHandle);
|
||||||
World.RegionInfo.RegionHandle, sunFixed, useEstateSun, (float)sunHour);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -1244,8 +1243,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
World.RegionInfo.EstateSettings.FixedSun = sunFixed;
|
World.RegionInfo.EstateSettings.FixedSun = sunFixed;
|
||||||
World.RegionInfo.EstateSettings.Save();
|
World.RegionInfo.EstateSettings.Save();
|
||||||
|
|
||||||
World.EventManager.TriggerEstateToolsSunUpdate(
|
World.EventManager.TriggerEstateToolsSunUpdate(World.RegionInfo.RegionHandle);
|
||||||
World.RegionInfo.RegionHandle, sunFixed, World.RegionInfo.RegionSettings.UseEstateSun, (float)sunHour);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
@ -634,19 +634,44 @@ namespace OpenSim.Region.ScriptEngine.Shared
|
||||||
public LSL_Types.Vector3 GetVector3Item(int itemIndex)
|
public LSL_Types.Vector3 GetVector3Item(int itemIndex)
|
||||||
{
|
{
|
||||||
if (m_data[itemIndex] is LSL_Types.Vector3)
|
if (m_data[itemIndex] is LSL_Types.Vector3)
|
||||||
|
{
|
||||||
return (LSL_Types.Vector3)m_data[itemIndex];
|
return (LSL_Types.Vector3)m_data[itemIndex];
|
||||||
|
}
|
||||||
|
else if(m_data[itemIndex] is OpenMetaverse.Vector3)
|
||||||
|
{
|
||||||
|
return new LSL_Types.Vector3(
|
||||||
|
(OpenMetaverse.Vector3)m_data[itemIndex]);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
throw new InvalidCastException(string.Format(
|
throw new InvalidCastException(string.Format(
|
||||||
"{0} expected but {1} given",
|
"{0} expected but {1} given",
|
||||||
typeof(LSL_Types.Vector3).Name,
|
typeof(LSL_Types.Vector3).Name,
|
||||||
m_data[itemIndex] != null ?
|
m_data[itemIndex] != null ?
|
||||||
m_data[itemIndex].GetType().Name : "null"));
|
m_data[itemIndex].GetType().Name : "null"));
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public LSL_Types.Quaternion GetQuaternionItem(int itemIndex)
|
public LSL_Types.Quaternion GetQuaternionItem(int itemIndex)
|
||||||
|
{
|
||||||
|
if (m_data[itemIndex] is LSL_Types.Quaternion)
|
||||||
{
|
{
|
||||||
return (LSL_Types.Quaternion)m_data[itemIndex];
|
return (LSL_Types.Quaternion)m_data[itemIndex];
|
||||||
}
|
}
|
||||||
|
else if(m_data[itemIndex] is OpenMetaverse.Quaternion)
|
||||||
|
{
|
||||||
|
return new LSL_Types.Quaternion(
|
||||||
|
(OpenMetaverse.Quaternion)m_data[itemIndex]);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
throw new InvalidCastException(string.Format(
|
||||||
|
"{0} expected but {1} given",
|
||||||
|
typeof(LSL_Types.Quaternion).Name,
|
||||||
|
m_data[itemIndex] != null ?
|
||||||
|
m_data[itemIndex].GetType().Name : "null"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public LSL_Types.key GetKeyItem(int itemIndex)
|
public LSL_Types.key GetKeyItem(int itemIndex)
|
||||||
{
|
{
|
||||||
|
|
|
@ -185,15 +185,15 @@ namespace OpenSim.Services.GridService
|
||||||
|
|
||||||
if (!m_AllowDuplicateNames)
|
if (!m_AllowDuplicateNames)
|
||||||
{
|
{
|
||||||
List<RegionData> dupe = m_Database.Get(regionInfos.RegionName, scopeID);
|
List<RegionData> dupe = m_Database.Get(Util.EscapeForLike(regionInfos.RegionName), scopeID);
|
||||||
if (dupe != null && dupe.Count > 0)
|
if (dupe != null && dupe.Count > 0)
|
||||||
{
|
{
|
||||||
foreach (RegionData d in dupe)
|
foreach (RegionData d in dupe)
|
||||||
{
|
{
|
||||||
if (d.RegionID != regionInfos.RegionID)
|
if (d.RegionID != regionInfos.RegionID)
|
||||||
{
|
{
|
||||||
m_log.WarnFormat("[GRID SERVICE]: Region {0} tried to register duplicate name with ID {1}.",
|
m_log.WarnFormat("[GRID SERVICE]: Region tried to register using a duplicate name. New region: {0} ({1}), existing region: {2} ({3}).",
|
||||||
regionInfos.RegionName, regionInfos.RegionID);
|
regionInfos.RegionName, regionInfos.RegionID, d.RegionName, d.RegionID);
|
||||||
return "Duplicate region name";
|
return "Duplicate region name";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -359,7 +359,7 @@ namespace OpenSim.Services.GridService
|
||||||
|
|
||||||
public GridRegion GetRegionByName(UUID scopeID, string name)
|
public GridRegion GetRegionByName(UUID scopeID, string name)
|
||||||
{
|
{
|
||||||
List<RegionData> rdatas = m_Database.Get(name, scopeID);
|
List<RegionData> rdatas = m_Database.Get(Util.EscapeForLike(name), scopeID);
|
||||||
if ((rdatas != null) && (rdatas.Count > 0))
|
if ((rdatas != null) && (rdatas.Count > 0))
|
||||||
return RegionData2RegionInfo(rdatas[0]); // get the first
|
return RegionData2RegionInfo(rdatas[0]); // get the first
|
||||||
|
|
||||||
|
@ -377,7 +377,7 @@ namespace OpenSim.Services.GridService
|
||||||
{
|
{
|
||||||
// m_log.DebugFormat("[GRID SERVICE]: GetRegionsByName {0}", name);
|
// m_log.DebugFormat("[GRID SERVICE]: GetRegionsByName {0}", name);
|
||||||
|
|
||||||
List<RegionData> rdatas = m_Database.Get(name + "%", scopeID);
|
List<RegionData> rdatas = m_Database.Get(Util.EscapeForLike(name) + "%", scopeID);
|
||||||
|
|
||||||
int count = 0;
|
int count = 0;
|
||||||
List<GridRegion> rinfos = new List<GridRegion>();
|
List<GridRegion> rinfos = new List<GridRegion>();
|
||||||
|
@ -586,7 +586,7 @@ namespace OpenSim.Services.GridService
|
||||||
|
|
||||||
string regionName = cmd[3];
|
string regionName = cmd[3];
|
||||||
|
|
||||||
List<RegionData> regions = m_Database.Get(regionName, UUID.Zero);
|
List<RegionData> regions = m_Database.Get(Util.EscapeForLike(regionName), UUID.Zero);
|
||||||
if (regions == null || regions.Count < 1)
|
if (regions == null || regions.Count < 1)
|
||||||
{
|
{
|
||||||
MainConsole.Instance.Output("No region with name {0} found", regionName);
|
MainConsole.Instance.Output("No region with name {0} found", regionName);
|
||||||
|
@ -716,7 +716,7 @@ namespace OpenSim.Services.GridService
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
List<RegionData> regions = m_Database.Get(cmd[3], UUID.Zero);
|
List<RegionData> regions = m_Database.Get(Util.EscapeForLike(cmd[3]), UUID.Zero);
|
||||||
if (regions == null || regions.Count < 1)
|
if (regions == null || regions.Count < 1)
|
||||||
{
|
{
|
||||||
MainConsole.Instance.Output("Region not found");
|
MainConsole.Instance.Output("Region not found");
|
||||||
|
|
|
@ -387,7 +387,7 @@ namespace OpenSim.Services.GridService
|
||||||
m_log.DebugFormat("[HYPERGRID LINKER]: Request to unlink {0}", mapName);
|
m_log.DebugFormat("[HYPERGRID LINKER]: Request to unlink {0}", mapName);
|
||||||
GridRegion regInfo = null;
|
GridRegion regInfo = null;
|
||||||
|
|
||||||
List<RegionData> regions = m_Database.Get(mapName, m_ScopeID);
|
List<RegionData> regions = m_Database.Get(Util.EscapeForLike(mapName), m_ScopeID);
|
||||||
if (regions != null && regions.Count > 0)
|
if (regions != null && regions.Count > 0)
|
||||||
{
|
{
|
||||||
OpenSim.Framework.RegionFlags rflags = (OpenSim.Framework.RegionFlags)Convert.ToInt32(regions[0].Data["flags"]);
|
OpenSim.Framework.RegionFlags rflags = (OpenSim.Framework.RegionFlags)Convert.ToInt32(regions[0].Data["flags"]);
|
||||||
|
|
1198
doc/doxygen.conf
1198
doc/doxygen.conf
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue