LSL_ApiAvatarTests.cs 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. /*
  2. * Copyright (c) Contributors, http://opensimulator.org/
  3. * See CONTRIBUTORS.TXT for a full list of copyright holders.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. * * Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * * Neither the name of the OpenSimulator Project nor the
  13. * names of its contributors may be used to endorse or promote products
  14. * derived from this software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
  17. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  18. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  19. * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
  20. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  21. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  22. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  23. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  25. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. using System;
  28. using System.Collections.Generic;
  29. using System.Reflection;
  30. using System.Text;
  31. using log4net;
  32. using Nini.Config;
  33. using NUnit.Framework;
  34. using OpenMetaverse;
  35. using OpenMetaverse.Assets;
  36. using OpenMetaverse.StructuredData;
  37. using OpenSim.Framework;
  38. using OpenSim.Region.CoreModules.Avatar.AvatarFactory;
  39. using OpenSim.Region.OptionalModules.World.NPC;
  40. using OpenSim.Region.Framework.Scenes;
  41. using OpenSim.Region.ScriptEngine.Shared;
  42. using OpenSim.Region.ScriptEngine.Shared.Api;
  43. using OpenSim.Region.ScriptEngine.Shared.Instance;
  44. using OpenSim.Region.ScriptEngine.Shared.ScriptBase;
  45. using OpenSim.Services.Interfaces;
  46. using OpenSim.Tests.Common;
  47. using LSL_Integer = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLInteger;
  48. using LSL_List = OpenSim.Region.ScriptEngine.Shared.LSL_Types.list;
  49. namespace OpenSim.Region.ScriptEngine.Shared.Tests
  50. {
  51. /// <summary>
  52. /// Tests relating directly to avatars
  53. /// </summary>
  54. [TestFixture]
  55. public class LSL_ApiAvatarTests : OpenSimTestCase
  56. {
  57. protected Scene m_scene;
  58. protected XEngine.XEngine m_engine;
  59. [SetUp]
  60. public override void SetUp()
  61. {
  62. base.SetUp();
  63. IConfigSource initConfigSource = new IniConfigSource();
  64. IConfig config = initConfigSource.AddConfig("XEngine");
  65. config.Set("Enabled", "true");
  66. m_scene = new SceneHelpers().SetupScene();
  67. SceneHelpers.SetupSceneModules(m_scene, initConfigSource);
  68. m_engine = new XEngine.XEngine();
  69. m_engine.Initialise(initConfigSource);
  70. m_engine.AddRegion(m_scene);
  71. }
  72. /// <summary>
  73. /// Test llSetLinkPrimtiveParams for agents.
  74. /// </summary>
  75. /// <remarks>
  76. /// Also testing entity updates here as well. Possibly that's putting 2 different concerns into one test and
  77. /// this should be separated.
  78. /// </remarks>
  79. [Test]
  80. public void TestllSetLinkPrimitiveParamsForAgent()
  81. {
  82. /* siting avatars position changed
  83. TestHelpers.InMethod();
  84. // TestHelpers.EnableLogging();
  85. UUID userId = TestHelpers.ParseTail(0x1);
  86. SceneObjectPart part = SceneHelpers.AddSceneObject(m_scene).RootPart;
  87. part.RotationOffset = new Quaternion(0.7071068f, 0, 0, 0.7071068f);
  88. LSL_Api apiGrp1 = new LSL_Api();
  89. apiGrp1.Initialize(m_engine, part, null);
  90. ScenePresence sp = SceneHelpers.AddScenePresence(m_scene, userId);
  91. // sp has to be less than 10 meters away from 0, 0, 0 (default part position)
  92. Vector3 startPos = new Vector3(3, 2, 1);
  93. sp.AbsolutePosition = startPos;
  94. sp.HandleAgentRequestSit(sp.ControllingClient, sp.UUID, part.UUID, Vector3.Zero);
  95. int entityUpdates = 0;
  96. ((TestClient)sp.ControllingClient).OnReceivedEntityUpdate += (entity, flags) => { if (entity is ScenePresence) { entityUpdates++; }};
  97. // Test position
  98. {
  99. Vector3 newPos = new Vector3(1, 2, 3);
  100. apiGrp1.llSetLinkPrimitiveParams(2, new LSL_Types.list(ScriptBaseClass.PRIM_POSITION, newPos));
  101. Assert.That(sp.OffsetPosition, Is.EqualTo(newPos));
  102. m_scene.Update(1);
  103. Assert.That(entityUpdates, Is.EqualTo(1));
  104. }
  105. // Test small reposition
  106. {
  107. Vector3 newPos = new Vector3(1.001f, 2, 3);
  108. apiGrp1.llSetLinkPrimitiveParams(2, new LSL_Types.list(ScriptBaseClass.PRIM_POSITION, newPos));
  109. Assert.That(sp.OffsetPosition, Is.EqualTo(newPos));
  110. m_scene.Update(1);
  111. Assert.That(entityUpdates, Is.EqualTo(2));
  112. }
  113. // Test world rotation
  114. {
  115. Quaternion newRot = new Quaternion(0, 0.7071068f, 0, 0.7071068f);
  116. apiGrp1.llSetLinkPrimitiveParams(2, new LSL_Types.list(ScriptBaseClass.PRIM_ROTATION, newRot));
  117. Assert.That(
  118. sp.Rotation, new QuaternionToleranceConstraint(part.GetWorldRotation() * newRot, 0.000001));
  119. m_scene.Update(1);
  120. Assert.That(entityUpdates, Is.EqualTo(3));
  121. }
  122. // Test local rotation
  123. {
  124. Quaternion newRot = new Quaternion(0, 0.7071068f, 0, 0.7071068f);
  125. apiGrp1.llSetLinkPrimitiveParams(2, new LSL_Types.list(ScriptBaseClass.PRIM_ROT_LOCAL, newRot));
  126. Assert.That(
  127. sp.Rotation, new QuaternionToleranceConstraint(newRot, 0.000001));
  128. m_scene.Update(1);
  129. Assert.That(entityUpdates, Is.EqualTo(4));
  130. }
  131. */
  132. }
  133. }
  134. }