During Load OAR, fix the User and Group ID's in objects that are embedded in assets (previously only rezzed objects were fixed)
Resolves http://opensimulator.org/mantis/view.php?id=69420.8.0.3
parent
5fd9411143
commit
35078e03e5
|
@ -523,6 +523,37 @@ namespace OpenSim.Region.CoreModules.World.Archiver
|
||||||
oldTelehubUUID = UUID.Zero;
|
oldTelehubUUID = UUID.Zero;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ModifySceneObject(scene, sceneObject);
|
||||||
|
|
||||||
|
if (scene.AddRestoredSceneObject(sceneObject, true, false))
|
||||||
|
{
|
||||||
|
sceneObjectsLoadedCount++;
|
||||||
|
sceneObject.CreateScriptInstances(0, false, scene.DefaultScriptEngine, 0);
|
||||||
|
sceneObject.ResumeScripts();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
m_log.InfoFormat("[ARCHIVER]: Restored {0} scene objects to the scene", sceneObjectsLoadedCount);
|
||||||
|
|
||||||
|
int ignoredObjects = serialisedSceneObjects.Count - sceneObjectsLoadedCount;
|
||||||
|
|
||||||
|
if (ignoredObjects > 0)
|
||||||
|
m_log.WarnFormat("[ARCHIVER]: Ignored {0} scene objects that already existed in the scene", ignoredObjects);
|
||||||
|
|
||||||
|
if (oldTelehubUUID != UUID.Zero)
|
||||||
|
{
|
||||||
|
m_log.WarnFormat("Telehub object not found: {0}", oldTelehubUUID);
|
||||||
|
scene.RegionInfo.RegionSettings.TelehubObject = UUID.Zero;
|
||||||
|
scene.RegionInfo.RegionSettings.ClearSpawnPoints();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Optionally modify a loaded SceneObjectGroup. Currently this just ensures that the
|
||||||
|
/// User IDs and Group IDs are valid, but other manipulations could be done as well.
|
||||||
|
/// </summary>
|
||||||
|
private void ModifySceneObject(Scene scene, SceneObjectGroup sceneObject)
|
||||||
|
{
|
||||||
// Try to retain the original creator/owner/lastowner if their uuid is present on this grid
|
// Try to retain the original creator/owner/lastowner if their uuid is present on this grid
|
||||||
// or creator data is present. Otherwise, use the estate owner instead.
|
// or creator data is present. Otherwise, use the estate owner instead.
|
||||||
foreach (SceneObjectPart part in sceneObject.Parts)
|
foreach (SceneObjectPart part in sceneObject.Parts)
|
||||||
|
@ -575,29 +606,8 @@ namespace OpenSim.Region.CoreModules.World.Archiver
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (scene.AddRestoredSceneObject(sceneObject, true, false))
|
|
||||||
{
|
|
||||||
sceneObjectsLoadedCount++;
|
|
||||||
sceneObject.CreateScriptInstances(0, false, scene.DefaultScriptEngine, 0);
|
|
||||||
sceneObject.ResumeScripts();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
m_log.InfoFormat("[ARCHIVER]: Restored {0} scene objects to the scene", sceneObjectsLoadedCount);
|
|
||||||
|
|
||||||
int ignoredObjects = serialisedSceneObjects.Count - sceneObjectsLoadedCount;
|
|
||||||
|
|
||||||
if (ignoredObjects > 0)
|
|
||||||
m_log.WarnFormat("[ARCHIVER]: Ignored {0} scene objects that already existed in the scene", ignoredObjects);
|
|
||||||
|
|
||||||
if (oldTelehubUUID != UUID.Zero)
|
|
||||||
{
|
|
||||||
m_log.WarnFormat("Telehub object not found: {0}", oldTelehubUUID);
|
|
||||||
scene.RegionInfo.RegionSettings.TelehubObject = UUID.Zero;
|
|
||||||
scene.RegionInfo.RegionSettings.ClearSpawnPoints();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Load serialized parcels.
|
/// Load serialized parcels.
|
||||||
|
@ -754,7 +764,21 @@ namespace OpenSim.Region.CoreModules.World.Archiver
|
||||||
sbyte assetType = ArchiveConstants.EXTENSION_TO_ASSET_TYPE[extension];
|
sbyte assetType = ArchiveConstants.EXTENSION_TO_ASSET_TYPE[extension];
|
||||||
|
|
||||||
if (assetType == (sbyte)AssetType.Unknown)
|
if (assetType == (sbyte)AssetType.Unknown)
|
||||||
|
{
|
||||||
m_log.WarnFormat("[ARCHIVER]: Importing {0} byte asset {1} with unknown type", data.Length, uuid);
|
m_log.WarnFormat("[ARCHIVER]: Importing {0} byte asset {1} with unknown type", data.Length, uuid);
|
||||||
|
}
|
||||||
|
else if (assetType == (sbyte)AssetType.Object)
|
||||||
|
{
|
||||||
|
data = SceneObjectSerializer.ModifySerializedObject(UUID.Parse(uuid), data,
|
||||||
|
sog =>
|
||||||
|
{
|
||||||
|
ModifySceneObject(m_rootScene, sog);
|
||||||
|
return true;
|
||||||
|
});
|
||||||
|
|
||||||
|
if (data == null)
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
//m_log.DebugFormat("[ARCHIVER]: Importing asset {0}, type {1}", uuid, assetType);
|
//m_log.DebugFormat("[ARCHIVER]: Importing asset {0}, type {1}", uuid, assetType);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue