aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack
diff options
context:
space:
mode:
authorMelanie Thielker2008-09-13 19:51:56 +0000
committerMelanie Thielker2008-09-13 19:51:56 +0000
commit8830b8b72cd53af8ed0383ab3247e23dab87776e (patch)
tree01eae3b0950712996f461224e46e1da28fd05ebd /OpenSim/Region/ClientStack
parentUpdate avatar-position while avatar is sitting and the prim is moved (#2159). (diff)
downloadopensim-SC_OLD-8830b8b72cd53af8ed0383ab3247e23dab87776e.zip
opensim-SC_OLD-8830b8b72cd53af8ed0383ab3247e23dab87776e.tar.gz
opensim-SC_OLD-8830b8b72cd53af8ed0383ab3247e23dab87776e.tar.bz2
opensim-SC_OLD-8830b8b72cd53af8ed0383ab3247e23dab87776e.tar.xz
Mantis #2018
Read animation data from avataranimations.xml to allow default animations to be started and stopped by name from scripts.
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index 57a995c..ee18a94 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -33,6 +33,7 @@ using System.Reflection;
33using System.Text; 33using System.Text;
34using System.Threading; 34using System.Threading;
35using System.Timers; 35using System.Timers;
36using System.Xml;
36using OpenMetaverse; 37using OpenMetaverse;
37using OpenMetaverse.Packets; 38using OpenMetaverse.Packets;
38using log4net; 39using log4net;
@@ -3478,6 +3479,20 @@ namespace OpenSim.Region.ClientStack.LindenUDP
3478 3479
3479 private void InitDefaultAnimations() 3480 private void InitDefaultAnimations()
3480 { 3481 {
3482 using (XmlTextReader reader = new XmlTextReader("data/avataranimations.xml"))
3483 {
3484 XmlDocument doc = new XmlDocument();
3485 doc.Load(reader);
3486 foreach (XmlNode nod in doc.DocumentElement.ChildNodes)
3487 {
3488 if (nod.Attributes["name"] != null)
3489 {
3490 string name = (string)nod.Attributes["name"].Value.ToLower();
3491 string id = (string)nod.InnerText;
3492 m_defaultAnimations.Add(name, id);
3493 }
3494 }
3495 }
3481 } 3496 }
3482 3497
3483 public UUID GetDefaultAnimation(string name) 3498 public UUID GetDefaultAnimation(string name)