A few more changes to keyframes

avinationmerge
UbitUmarov 2012-08-29 03:19:47 +01:00
parent 72ac0665b2
commit 2e54c3cc8f
4 changed files with 117 additions and 65 deletions

View File

@ -1698,7 +1698,7 @@ namespace OpenSim.Data.MySQL
cmd.Parameters.AddWithValue("MediaURL", prim.MediaUrl); cmd.Parameters.AddWithValue("MediaURL", prim.MediaUrl);
if (prim.KeyframeMotion != null) if (prim.KeyframeMotion != null)
cmd.Parameters.AddWithValue("KeyframeMotion", prim.KeyframeMotion.Serialize(true)); cmd.Parameters.AddWithValue("KeyframeMotion", prim.KeyframeMotion.Serialize());
else else
cmd.Parameters.AddWithValue("KeyframeMotion", new Byte[0]); cmd.Parameters.AddWithValue("KeyframeMotion", new Byte[0]);

View File

@ -81,10 +81,10 @@ namespace OpenSim.Region.Framework.Scenes
private bool m_timerStopped; private bool m_timerStopped;
[NonSerialized()] [NonSerialized()]
private bool m_crossing; private bool m_isCrossing;
[NonSerialized()] [NonSerialized()]
private int m_crossFailcntr; private bool m_waitingCrossing;
// retry position for cross fail // retry position for cross fail
[NonSerialized()] [NonSerialized()]
@ -112,9 +112,7 @@ namespace OpenSim.Region.Framework.Scenes
public bool Selected public bool Selected
{ {
set set
{ {
m_crossing = false;
m_crossFailcntr = 0;
if (!value) if (!value)
{ {
// Once we're let go, recompute positions // Once we're let go, recompute positions
@ -130,6 +128,8 @@ namespace OpenSim.Region.Framework.Scenes
m_serializedPosition = m_group.AbsolutePosition; m_serializedPosition = m_group.AbsolutePosition;
} }
} }
m_isCrossing = false;
m_waitingCrossing = false;
m_selected = value; m_selected = value;
} }
} }
@ -150,6 +150,17 @@ namespace OpenSim.Region.Framework.Scenes
m_timer.Stop(); m_timer.Stop();
} }
private void RemoveTimer()
{
if (m_timer == null)
return;
m_timerStopped = true;
m_timer.Stop();
m_timer.Elapsed -= OnTimer;
m_timer = null;
}
public static KeyframeMotion FromData(SceneObjectGroup grp, Byte[] data) public static KeyframeMotion FromData(SceneObjectGroup grp, Byte[] data)
{ {
KeyframeMotion newMotion = null; KeyframeMotion newMotion = null;
@ -169,8 +180,8 @@ namespace OpenSim.Region.Framework.Scenes
newMotion.m_onTimerLock = new object(); newMotion.m_onTimerLock = new object();
newMotion.m_timerStopped = false; newMotion.m_timerStopped = false;
newMotion.m_inOnTimer = false; newMotion.m_inOnTimer = false;
newMotion.m_crossing = false; newMotion.m_isCrossing = false;
newMotion.m_crossFailcntr = 0; newMotion.m_waitingCrossing = false;
} }
catch catch
{ {
@ -184,8 +195,8 @@ namespace OpenSim.Region.Framework.Scenes
{ {
// lock (m_onTimerLock) // lock (m_onTimerLock)
{ {
m_crossing = false; m_isCrossing = false;
m_crossFailcntr = 0; m_waitingCrossing = false;
StopTimer(); StopTimer();
m_group = grp; m_group = grp;
@ -220,10 +231,13 @@ namespace OpenSim.Region.Framework.Scenes
m_onTimerLock = new object(); m_onTimerLock = new object();
m_group = grp; m_group = grp;
m_basePosition = grp.AbsolutePosition; if (grp != null)
m_baseRotation = grp.GroupRotation; {
m_crossing = false; m_basePosition = grp.AbsolutePosition;
m_crossFailcntr = 0; m_baseRotation = grp.GroupRotation;
}
m_isCrossing = false;
m_waitingCrossing = false;
} }
public void SetKeyframes(Keyframe[] frames) public void SetKeyframes(Keyframe[] frames)
@ -231,34 +245,74 @@ namespace OpenSim.Region.Framework.Scenes
m_keyframes = frames; m_keyframes = frames;
} }
public KeyframeMotion Copy(SceneObjectGroup newgrp)
{
StopTimer();
KeyframeMotion newmotion = new KeyframeMotion(newgrp, m_mode, m_data);
if (newgrp != null && newgrp.IsSelected)
newmotion.m_selected = true;
if (m_keyframes != null)
m_keyframes.CopyTo(newmotion.m_keyframes, 0);
newmotion.m_frames = new List<Keyframe>(m_frames);
newmotion.m_currentFrame = m_currentFrame;
newmotion.m_nextPosition = m_nextPosition;
if (m_selected)
newmotion.m_serializedPosition = m_serializedPosition;
else
{
if (m_group != null)
newmotion.m_serializedPosition = m_group.AbsolutePosition;
else
newmotion.m_serializedPosition = m_serializedPosition;
}
newmotion.m_iterations = m_iterations;
newmotion.m_onTimerLock = new object();
newmotion.m_timerStopped = false;
newmotion.m_inOnTimer = false;
newmotion.m_isCrossing = false;
newmotion.m_waitingCrossing = false;
if (m_running && !m_waitingCrossing)
StartTimer();
return newmotion;
}
public void Delete() public void Delete()
{ {
m_running = false; m_running = false;
m_crossing = false; RemoveTimer();
m_crossFailcntr = 0; m_isCrossing = false;
StopTimer(); m_waitingCrossing = false;
m_frames.Clear(); m_frames.Clear();
m_keyframes = null; m_keyframes = null;
if (m_timer == null)
return;
m_timer.Elapsed -= OnTimer;
m_timer = null;
} }
public void Start() public void Start()
{ {
m_crossing = false; m_isCrossing = false;
m_crossFailcntr = 0; m_waitingCrossing = false;
if (m_keyframes.Length > 0) if (m_keyframes.Length > 0)
{ {
if (m_timer == null) if (m_timer == null)
{ {
m_timer = new Timer(); m_timer = new Timer();
m_timer.Interval = (int)timerInterval; m_timer.Interval = timerInterval;
m_timer.AutoReset = true; m_timer.AutoReset = true;
m_timer.Elapsed += OnTimer; m_timer.Elapsed += OnTimer;
} }
else
{
StopTimer();
m_timer.Interval = timerInterval;
}
m_inOnTimer = false; m_inOnTimer = false;
StartTimer(); StartTimer();
@ -267,24 +321,17 @@ namespace OpenSim.Region.Framework.Scenes
else else
{ {
m_running = false; m_running = false;
if (m_timer != null) RemoveTimer();
{
StopTimer();
m_timer.Elapsed -= OnTimer;
m_timer = null;
}
} }
} }
public void Stop() public void Stop()
{ {
m_running = false; m_running = false;
m_crossing = false; m_isCrossing = false;
m_crossFailcntr = 0; m_waitingCrossing = false;
StopTimer(); RemoveTimer();
m_timer.Elapsed -= OnTimer;
m_timer = null;
m_basePosition = m_group.AbsolutePosition; m_basePosition = m_group.AbsolutePosition;
m_baseRotation = m_group.GroupRotation; m_baseRotation = m_group.GroupRotation;
@ -299,8 +346,7 @@ namespace OpenSim.Region.Framework.Scenes
public void Pause() public void Pause()
{ {
m_running = false; m_running = false;
m_crossFailcntr = 0; RemoveTimer();
StopTimer();
m_group.RootPart.Velocity = Vector3.Zero; m_group.RootPart.Velocity = Vector3.Zero;
m_group.RootPart.UpdateAngularVelocity(Vector3.Zero); m_group.RootPart.UpdateAngularVelocity(Vector3.Zero);
@ -421,7 +467,7 @@ namespace OpenSim.Region.Framework.Scenes
if (m_group == null) if (m_group == null)
return; return;
// lock (m_onTimerLock) lock (m_onTimerLock)
{ {
m_inOnTimer = true; m_inOnTimer = true;
@ -441,15 +487,15 @@ namespace OpenSim.Region.Framework.Scenes
return; return;
} }
if (m_crossing) if (m_isCrossing)
{ {
// if crossing and timer running then cross failed // if crossing and timer running then cross failed
// wait some time then // wait some time then
// retry to set the position that evtually caused the outbound // retry to set the position that evtually caused the outbound
// if still outside region this will call startCrossing below // if still outside region this will call startCrossing below
m_crossing = false; m_isCrossing = false;
m_group.AbsolutePosition = m_nextPosition; m_group.AbsolutePosition = m_nextPosition;
if (!m_crossing) if (!m_isCrossing)
{ {
StopTimer(); StopTimer();
m_timer.Interval = timerInterval; m_timer.Interval = timerInterval;
@ -552,9 +598,9 @@ namespace OpenSim.Region.Framework.Scenes
if (angle > 0.01f) if (angle > 0.01f)
*/ */
if(Math.Abs(step.X -current.X) > 0.001f if(Math.Abs(step.X - current.X) > 0.001f
|| Math.Abs(step.Y -current.Y) > 0.001f || Math.Abs(step.Y - current.Y) > 0.001f
|| Math.Abs(step.Z -current.Z) > 0.001f) || Math.Abs(step.Z - current.Z) > 0.001f)
// assuming w is a dependente var // assuming w is a dependente var
{ {
@ -563,7 +609,6 @@ namespace OpenSim.Region.Framework.Scenes
update = true; update = true;
} }
} }
} }
if (update) if (update)
@ -573,7 +618,7 @@ namespace OpenSim.Region.Framework.Scenes
catch ( Exception ex) catch ( Exception ex)
{ {
// still happening sometimes // still happening sometimes
// lets try to see what // lets try to see where
m_log.Warn("[KeyFrame]: timer overrun" + ex.Message); m_log.Warn("[KeyFrame]: timer overrun" + ex.Message);
} }
@ -585,29 +630,34 @@ namespace OpenSim.Region.Framework.Scenes
} }
} }
public Byte[] Serialize(bool StopMoveTimer) public Byte[] Serialize()
{ {
StopTimer();
MemoryStream ms = new MemoryStream(); MemoryStream ms = new MemoryStream();
if (StopMoveTimer && m_timer != null)
StopTimer();
// lock (m_onTimerLock) BinaryFormatter fmt = new BinaryFormatter();
{ SceneObjectGroup tmp = m_group;
BinaryFormatter fmt = new BinaryFormatter(); m_group = null;
SceneObjectGroup tmp = m_group; if (!m_selected && tmp != null)
m_group = null; m_serializedPosition = tmp.AbsolutePosition;
if(!m_selected) fmt.Serialize(ms, this);
m_serializedPosition = tmp.AbsolutePosition; m_group = tmp;
fmt.Serialize(ms, this); if (m_running && !m_waitingCrossing)
m_group = tmp; StartTimer();
return ms.ToArray();
} return ms.ToArray();
} }
public void StartCrossingCheck() public void StartCrossingCheck()
{ {
// timer will be restart by crossingFailure
// or never since crossing worked and this
// should be deleted
StopTimer(); StopTimer();
m_crossing = true;
m_isCrossing = true;
m_waitingCrossing = true;
// to remove / retune to smoth crossings // to remove / retune to smoth crossings
if (m_group.RootPart.Velocity != Vector3.Zero) if (m_group.RootPart.Velocity != Vector3.Zero)
{ {
@ -618,6 +668,8 @@ namespace OpenSim.Region.Framework.Scenes
public void CrossingFailure() public void CrossingFailure()
{ {
m_waitingCrossing = false;
if (m_group != null) if (m_group != null)
{ {
m_group.RootPart.Velocity = Vector3.Zero; m_group.RootPart.Velocity = Vector3.Zero;

View File

@ -2066,7 +2066,7 @@ namespace OpenSim.Region.Framework.Scenes
{ {
if (part.KeyframeMotion != null) if (part.KeyframeMotion != null)
{ {
part.KeyframeMotion = KeyframeMotion.FromData(backup_group, part.KeyframeMotion.Serialize(false)); part.KeyframeMotion = KeyframeMotion.FromData(backup_group, part.KeyframeMotion.Serialize());
// part.KeyframeMotion.UpdateSceneObject(this); // part.KeyframeMotion.UpdateSceneObject(this);
} }
}); });
@ -4419,7 +4419,7 @@ namespace OpenSim.Region.Framework.Scenes
{ {
if (part.KeyframeMotion != null) if (part.KeyframeMotion != null)
{ {
part.KeyframeMotion = KeyframeMotion.FromData(sog, part.KeyframeMotion.Serialize(true)); part.KeyframeMotion = KeyframeMotion.FromData(sog, part.KeyframeMotion.Serialize());
// this is called later // this is called later
// part.KeyframeMotion.UpdateSceneObject(this); // part.KeyframeMotion.UpdateSceneObject(this);
} }

View File

@ -1241,7 +1241,7 @@ namespace OpenSim.Region.Framework.Scenes.Serialization
if (sog.RootPart.KeyframeMotion != null) if (sog.RootPart.KeyframeMotion != null)
{ {
Byte[] data = sog.RootPart.KeyframeMotion.Serialize(true); Byte[] data = sog.RootPart.KeyframeMotion.Serialize();
writer.WriteStartElement(String.Empty, "KeyframeMotion", String.Empty); writer.WriteStartElement(String.Empty, "KeyframeMotion", String.Empty);
writer.WriteBase64(data, 0, data.Length); writer.WriteBase64(data, 0, data.Length);